From 8b9b73820ac413528d723576a92a3bfceedaf133 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 11 Sep 2018 10:02:48 +0800 Subject: [PATCH 001/128] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c5eba88..2c38b0b 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,8 @@ $idValidator->getInfo('610104620927690'); // 15 位 ] ``` +> 注:判断地址码是否废弃的依据是[中华人民共和国行政区划代码历史数据集](https://github.com/jxlwqq/address-code-of-china),本数据集的采集源来自:[中华人民共和国民政部](http://www.mca.gov.cn/article/sj/xzqh//1980/),每年更新一次。本数据集采用 csv 格式存储,方便大家进行数据分析或者开发其他语言的版本。 + ### 生成可通过校验的假数据 伪造符合校验的身份证: From 4599ed34f1b8774f3f390f6dfad35241e78789e6 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 11 Sep 2018 11:38:39 +0800 Subject: [PATCH 002/128] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 2c38b0b..33840e4 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ composer require "jxlwqq/id-validator" ``` +> 注:如果 require 失败,解决方案见[#13](https://github.com/jxlwqq/id-validator/pull/13)。 + ## 使用 > `440308199901101512` 和 `610104620927690` 示例大陆居民身份证均为随机生成的假数据,如撞车,请联系删除。 From cf36fe7e7ad9bf2149e9a753b74763ac6b429ad2 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 14 Sep 2018 12:41:14 +0800 Subject: [PATCH 003/128] checkdate --- src/Checker.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Checker.php b/src/Checker.php index c2a916e..feeefef 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -91,7 +91,8 @@ private function _checkBirthdayCode($birthdayCode) if ($year < 1800) { return false; } - if ($month > 12 || $month === 0 || $day > 31 || $day === 0) { + + if(!checkdate($month, $day, $year)) { return false; } From cac9970ee43b5adff9a7fceb8e69604a93e8f30a Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 14 Sep 2018 04:45:05 +0000 Subject: [PATCH 004/128] Apply fixes from StyleCI --- src/Checker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Checker.php b/src/Checker.php index feeefef..9184a85 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -92,7 +92,7 @@ private function _checkBirthdayCode($birthdayCode) return false; } - if(!checkdate($month, $day, $year)) { + if (!checkdate($month, $day, $year)) { return false; } From f386246c29fd7156a22062c5b835f9d66aa29c87 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 14 Sep 2018 13:40:33 +0800 Subject: [PATCH 005/128] Refactor --- src/Generator.php | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index e963987..236ac5b 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -139,16 +139,12 @@ private function _generatorCheckBit($body) $bodyArray = str_split($body); $count = count($bodyArray); for ($j = 0; $j < $count; $j++) { - $bodySum += (intval($bodyArray[$j], 10) * $posWeight[18 - $j]); + $bodySum += (intval($bodyArray[$j]) * $posWeight[18 - $j]); } // 生成校验码 - $checkBit = 12 - ($bodySum % 11); - if ($checkBit == 10) { - $checkBit = 'X'; - } elseif ($checkBit > 10) { - $checkBit = $checkBit % 11; - } + $checkBit = (12 - ($bodySum % 11)) % 11; + $checkBit = $checkBit == 10 ? 'X' : $checkBit; return $checkBit; } From 64704988886dc466f1fe74b31a9aed65b1b0e250 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 14 Sep 2018 13:40:56 +0800 Subject: [PATCH 006/128] composer test --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index 2b91922..7ed4765 100644 --- a/composer.json +++ b/composer.json @@ -21,5 +21,8 @@ }, "require-dev": { "phpunit/phpunit": "^5.6" + }, + "scripts": { + "test": "./vendor/bin/phpunit" } } From 8d9a0b1128200827616ecce67a80a991ce8d6874 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 15 Sep 2018 19:39:55 +0800 Subject: [PATCH 007/128] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=9A=8F=E6=9C=BA?= =?UTF-8?q?=E7=94=9F=E6=88=90=20ID=20=E7=9A=84=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Generator.php | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index 236ac5b..a27eac0 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -83,10 +83,11 @@ private function _generatorAddressCode($address) return $addressCode; } + $keys = array_keys($this->_addressCodeList); + if ($addressCode) { // 省级 if (substr($addressCode, 2, 4) == '0000') { - $keys = array_keys($this->_addressCodeList); $provinceCode = substr($addressCode, 0, 2); $pattern = '/^'.$provinceCode.'\d{2}[^0]{2}$/'; $result = preg_grep($pattern, $keys); @@ -94,24 +95,15 @@ private function _generatorAddressCode($address) } // 市级 if (substr($addressCode, 4, 2) == '00') { - $keys = array_keys($this->_addressCodeList); $cityCode = substr($addressCode, 0, 4); $pattern = '/^'.$cityCode.'[^0]{2}$/'; $result = preg_grep($pattern, $keys); $addressCode = $result[array_rand($result)]; } } else { - $addressCode = '110100'; // Default value - for ($i = 0; $i < 100; $i++) { - $province = $this->_getStrPad($this->_getRandInt(66), 2, '0'); - $city = $this->_getStrPad($this->_getRandInt(20), 2, '0'); - $district = $this->_getStrPad($this->_getRandInt(20), 2, '0'); - $fakeAddressCode = $province.$city.$district; - if (isset($this->_addressCodeList[$fakeAddressCode])) { - $addressCode = $fakeAddressCode; - break; - } - } + $pattern = '/\d{4}[^0]{2}$/'; + $result = preg_grep($pattern, $keys); + $addressCode = $result[array_rand($result)]; } return $addressCode; From 07cebf6dfecc74541e2fc80857c1e373c9fd43fa Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 15 Sep 2018 19:49:30 +0800 Subject: [PATCH 008/128] Fix --- src/IdValidator.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/IdValidator.php b/src/IdValidator.php index 9727619..c10fa1a 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -118,13 +118,13 @@ public function fakeId($eighteen = true, $address = null, $birthday = null, $sex // 出生日期码 $birthdayCode = $this->_generatorBirthdayCode($birthday); + // 顺序码 + $orderCode = $this->_generatorOrderCode($sex); + if (!$eighteen) { - return $addressCode.substr($birthdayCode, 2) - .$this->_getStrPad($this->_getRandInt(999, 1), 3, '1'); + return $addressCode.substr($birthdayCode, 2).$orderCode; } - $orderCode = $this->_generatorOrderCode($sex); - $body = $addressCode.$birthdayCode.$orderCode; $checkBit = $this->_generatorCheckBit($body); From 821ef1a469dfe2a38edabcf96eab622206bae87b Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 15 Sep 2018 22:34:11 +0800 Subject: [PATCH 009/128] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 33840e4..88dca63 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ **中华人民共和国居民身份证**、**中华人民共和国港澳居民居住证**以及**中华人民共和国台湾居民居住证**号码验证工具(PHP Composer 版)支持 15 位与 18 位号码。基于 [JavaScript 版本](https://github.com/mc-zone/IDValidator)。 +* [Python 版本](https://github.com/jxlwqq/id-validator.py) + [![Build Status](https://travis-ci.org/jxlwqq/id-validator.svg?branch=master)](https://travis-ci.org/jxlwqq/id-validator) [![StyleCI](https://github.styleci.io/repos/147758862/shield?branch=master)](https://github.styleci.io/repos/147758862) From 1a43e98c07efda9298f5d1963346efb06825bac8 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 15 Sep 2018 22:35:03 +0800 Subject: [PATCH 010/128] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 88dca63..3f31d93 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # IdValidator.php -**中华人民共和国居民身份证**、**中华人民共和国港澳居民居住证**以及**中华人民共和国台湾居民居住证**号码验证工具(PHP Composer 版)支持 15 位与 18 位号码。基于 [JavaScript 版本](https://github.com/mc-zone/IDValidator)。 +**中华人民共和国居民身份证**、**中华人民共和国港澳居民居住证**以及**中华人民共和国台湾居民居住证**号码验证工具(PHP Composer 版)支持 15 位与 18 位号码。 * [Python 版本](https://github.com/jxlwqq/id-validator.py) @@ -93,6 +93,8 @@ $idValidator->fakeId(true, '香港特别行政区', '19970701', 0); // 生成出 * ~~GB 2260-1995 中华人民共和国行政区划代码~~ +* [IDValidator JavaScript 版本](https://github.com/mc-zone/IDValidator) + * [中华人民共和国公民身份号码](https://zh.wikipedia.org/wiki/中华人民共和国公民身份号码) * [中华人民共和国民政部:行政区划代码](http://www.mca.gov.cn/article/sj/xzqh/) From ba4dd30740dc59aef5a2e8f27504398565385a90 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sat, 22 Sep 2018 16:06:55 +0200 Subject: [PATCH 011/128] Optimize the tests. --- tests/IdValidatorTest.php | 42 +++++++++++++++++++++++---------------- 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index b4649ee..0634ad5 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -12,28 +12,37 @@ class IdValidatorTest extends TestCase { + /** + * @var \Jxlwqq\IdValidator\IdValidator + */ + private $idValidator; + + protected function setUp() + { + parent::setUp(); + + $this->idValidator = new IdValidator(); + } + public function testIsValid() { - $idValidator = new IdValidator(); - $this->assertEquals(true, $idValidator->isValid('440308199901101512')); - $this->assertEquals(false, $idValidator->isValid('440308199901101513')); - $this->assertEquals(true, $idValidator->isValid('610104620927690')); - $this->assertEquals(false, $idValidator->isValid('610104620932690')); + $this->assertTrue($this->idValidator->isValid('440308199901101512')); + $this->assertFalse($this->idValidator->isValid('440308199901101513')); + $this->assertTrue($this->idValidator->isValid('610104620927690')); + $this->assertFalse($this->idValidator->isValid('610104620932690')); } public function testFakeId() { - $idValidator = new IdValidator(); - $this->assertEquals(true, $idValidator->isValid($idValidator->fakeId())); - $this->assertEquals(true, $idValidator->isValid($idValidator->fakeId(false))); - $this->assertEquals(true, $idValidator->isValid($idValidator->fakeId(true, '上海市', '2000', 1))); - $this->assertEquals(true, $idValidator->isValid($idValidator->fakeId(true, '江苏省', '20000101', 1))); - $this->assertEquals(true, $idValidator->isValid($idValidator->fakeId(true, '台湾省', '20131010', 0))); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId())); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(false))); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '上海市', '2000', 1))); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '江苏省', '20000101', 1))); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '台湾省', '20131010', 0))); } public function testGetInfo() { - $idValidator = new IdValidator(); $this->assertEquals([ 'addressCode' => '440308', 'abandoned' => 0, @@ -44,10 +53,9 @@ public function testGetInfo() 'sex' => 1, 'length' => 18, 'checkBit' => '2', ], - $idValidator->getInfo('440308199901101512')); - $this->assertEquals(false, $idValidator->isValid('440308199901101513')); + $this->idValidator->getInfo('440308199901101512')); + $this->assertFalse($this->idValidator->isValid('440308199901101513')); - $idValidator = new IdValidator(); $this->assertEquals([ 'addressCode' => '610104', 'abandoned' => 0, @@ -58,7 +66,7 @@ public function testGetInfo() 'sex' => 0, 'length' => 15, 'checkBit' => '', ], - $idValidator->getInfo('610104620927690')); - $this->assertEquals(false, $idValidator->isValid('610104620932690')); + $this->idValidator->getInfo('610104620927690')); + $this->assertFalse($this->idValidator->isValid('610104620932690')); } } From 04f7b27b1feb54ad17c6f72a9b727455c1cd6344 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sat, 22 Sep 2018 19:29:07 +0200 Subject: [PATCH 012/128] Ensure all large arrays are multiline. --- data/chineseZodiac.php | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/data/chineseZodiac.php b/data/chineseZodiac.php index 7a88309..53dbffd 100644 --- a/data/chineseZodiac.php +++ b/data/chineseZodiac.php @@ -2,4 +2,18 @@ /** * 生肖信息 */ -return ['子鼠', '丑牛', '寅虎', '卯兔', '辰龙', '巳蛇', '午马', '未羊', '申猴', '酉鸡', '戌狗', '亥猪']; + +return [ + '子鼠', + '丑牛', + '寅虎', + '卯兔', + '辰龙', + '巳蛇', + '午马', + '未羊', + '申猴', + '酉鸡', + '戌狗', + '亥猪', +]; From 1dd08daff5af2fbe6d2c6bc0c86c202f7f26a2bb Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sat, 22 Sep 2018 17:03:00 +0200 Subject: [PATCH 013/128] Enforce PSR2. --- tests/IdValidatorTest.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 0634ad5..b69a99e 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -43,7 +43,8 @@ public function testFakeId() public function testGetInfo() { - $this->assertEquals([ + $this->assertEquals( + [ 'addressCode' => '440308', 'abandoned' => 0, 'address' => '广东省深圳市盐田区', @@ -53,10 +54,12 @@ public function testGetInfo() 'sex' => 1, 'length' => 18, 'checkBit' => '2', ], - $this->idValidator->getInfo('440308199901101512')); + $this->idValidator->getInfo('440308199901101512') + ); $this->assertFalse($this->idValidator->isValid('440308199901101513')); - $this->assertEquals([ + $this->assertEquals( + [ 'addressCode' => '610104', 'abandoned' => 0, 'address' => '陕西省西安市莲湖区', @@ -66,7 +69,8 @@ public function testGetInfo() 'sex' => 0, 'length' => 15, 'checkBit' => '', ], - $this->idValidator->getInfo('610104620927690')); + $this->idValidator->getInfo('610104620927690') + ); $this->assertFalse($this->idValidator->isValid('610104620932690')); } } From 8f683136628626f0305fd5de36b645dc9b37eb7e Mon Sep 17 00:00:00 2001 From: Samuel NELA Date: Sat, 22 Sep 2018 17:31:30 +0200 Subject: [PATCH 014/128] Added autoload-dev --- composer.json | 5 +++++ tests/IdValidatorTest.php | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7ed4765..3ffb132 100644 --- a/composer.json +++ b/composer.json @@ -19,6 +19,11 @@ "Jxlwqq\\IdValidator\\": "src/" } }, + "autoload-dev": { + "psr-4": { + "Jxlwqq\\IdValidator\\Tests\\" : "tests/" + } + }, "require-dev": { "phpunit/phpunit": "^5.6" }, diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index b69a99e..347c1de 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -6,8 +6,9 @@ * Time: 21:51. */ -namespace Jxlwqq\IdValidator; +namespace Jxlwqq\IdValidator\Tests; +use Jxlwqq\IdValidator\IdValidator; use PHPUnit\Framework\TestCase; class IdValidatorTest extends TestCase From 4e6d92425db6296cae31945ede22f8a22f057c73 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sat, 22 Sep 2018 18:48:25 +0200 Subject: [PATCH 015/128] Add .gitattributes and .editorconfig dotfiles --- .editorconfig | 16 ++++++++++++++++ .gitattributes | 11 +++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1492202 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.yml] +indent_style = space +indent_size = 2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fac6f23 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +* text=auto + +/data export-ignore +/tests export-ignore +.editorconfig export-ignore +.gitattributes export-ignore +.gitignore export-ignore +.scrutinizer.yml export-ignore +.styleci.yml export-ignore +.travis.yml export-ignore +phpunit.xml export-ignore From e1b1ab993b7ad1126f1c66f7e6575be4cb4bddc1 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sat, 22 Sep 2018 19:10:25 +0200 Subject: [PATCH 016/128] Sort all abandonned adddress codes by key --- data/abandonedAddressCode.php | 2390 ++++++++++++++++----------------- 1 file changed, 1195 insertions(+), 1195 deletions(-) diff --git a/data/abandonedAddressCode.php b/data/abandonedAddressCode.php index 0329967..35c0093 100644 --- a/data/abandonedAddressCode.php +++ b/data/abandonedAddressCode.php @@ -17,6 +17,15 @@ '110207' => '怀柔县', '110208' => '密云县', '110209' => '延庆县', + '110221' => '昌平县', + '110222' => '顺义县', + '110223' => '通县', + '110224' => '大兴县', + '110225' => '房山县', + '110226' => '平谷县', + '110227' => '怀柔县', + '110228' => '密云县', + '110229' => '延庆县', '120107' => '塘沽区', '120108' => '汉沽区', '120109' => '大港区', @@ -25,9 +34,48 @@ '120203' => '静海县', '120204' => '宝坻县', '120205' => '蓟县', + '120221' => '宁河县', + '120222' => '武清县', + '120223' => '静海县', + '120224' => '宝坻县', + '120225' => '蓟县', '130103' => '桥东区', '130106' => '郊区', + '130122' => '获鹿县', + '130124' => '正定县', + '130182' => '藁城市', + '130185' => '鹿泉市', '130206' => '新区', + '130221' => '丰润县', + '130222' => '丰南县', + '130226' => '玉田县', + '130228' => '迁安县', + '130230' => '遵化县', + '130282' => '丰南市', + '130305' => '郊区', + '130323' => '抚宁县', + '130405' => '郊区', + '130421' => '邯郸县', + '130422' => '武安县', + '130428' => '肥乡县', + '130429' => '永年县', + '130504' => '郊区', + '130603' => '北市区', + '130604' => '南市区', + '130605' => '郊区', + '130621' => '满城县', + '130622' => '清苑县', + '130625' => '徐水县', + '130704' => '茶坊区', + '130707' => '庞家堡区', + '130721' => '宣化县', + '130729' => '万全县', + '130733' => '崇礼县', + '130823' => '平泉县', + '130904' => '郊区', + '131021' => '三河县', + '131027' => '霸县', + '131181' => '冀州市', '132100' => '邯郸地区', '132101' => '邯郸市', '132102' => '邯山区', @@ -73,6 +121,10 @@ '132236' => '清河县', '132237' => '临西县', '132300' => '石家庄地区', + '132301' => '辛集市', + '132302' => '藁城市', + '132303' => '晋州市', + '132304' => '新乐市', '132321' => '束鹿县', '132322' => '晋县', '132323' => '深泽县', @@ -171,7 +223,9 @@ '132730' => '迁西县', '132731' => '遵化县', '132732' => '玉田县', + '132733' => '唐海县', '132800' => '廊坊地区', + '132801' => '廊坊市', '132821' => '三河县', '132822' => '大厂回族自治县', '132823' => '香河县', @@ -186,6 +240,7 @@ '132902' => '新华区', '132903' => '运河区', '132904' => '郊区', + '132905' => '泊头市', '132921' => '沧县', '132922' => '河间县', '132923' => '肃宁县', @@ -201,6 +256,9 @@ '132933' => '任丘县', '132934' => '海兴县', '133000' => '衡水地区', + '133001' => '衡水市', + '133002' => '冀州市', + '133003' => '深州市', '133021' => '衡水县', '133022' => '冀县', '133023' => '枣强县', @@ -212,6 +270,26 @@ '133029' => '故城县', '133030' => '景县', '133031' => '阜城县', + '139001' => '武安市', + '139002' => '霸州市', + '139003' => '遵化市', + '139004' => '辛集市', + '139005' => '藁城市', + '139006' => '晋州市', + '139007' => '新乐市', + '139008' => '泊头市', + '139009' => '任丘市', + '139010' => '黄骅市', + '139011' => '河间市', + '139012' => '三河县', + '139013' => '南宫市', + '139014' => '沙河市', + '139015' => '定州市', + '139016' => '涿州市', + '139017' => '安国市', + '139018' => '高碑店市', + '139019' => '鹿泉市', + '139020' => '丰南市', '140102' => '南城区', '140103' => '北城区', '140104' => '河西区', @@ -221,6 +299,10 @@ '140202' => '城区', '140203' => '矿区', '140211' => '南郊区', + '140227' => '大同县', + '140422' => '潞城县', + '140503' => '郊区', + '140523' => '高平县', '142100' => '雁北地区', '142121' => '大同县', '142122' => '阳高县', @@ -236,6 +318,8 @@ '142132' => '左云县', '142133' => '右玉县', '142200' => '忻县地区', + '142201' => '忻州市', + '142202' => '原平市', '142221' => '忻县', '142222' => '原平县', '142223' => '代县', @@ -252,6 +336,8 @@ '142234' => '宁武县', '142300' => '晋中地区', '142301' => '榆次市', + '142302' => '离石市', + '142303' => '汾阳市', '142321' => '榆次县', '142322' => '寿阳县', '142323' => '盂县', @@ -266,6 +352,8 @@ '142332' => '介休县', '142333' => '灵石县', '142400' => '吕梁地区', + '142401' => '榆次市', + '142402' => '介休市', '142421' => '离石县', '142422' => '孝义县', '142423' => '兴县', @@ -280,6 +368,7 @@ '142432' => '柳林县', '142433' => '汾阳县', '142500' => '晋东南地区', + '142501' => '晋城市', '142521' => '长治县', '142522' => '潞城县', '142523' => '襄垣县', @@ -299,6 +388,7 @@ '142600' => '临汾地区', '142601' => '临汾市', '142602' => '侯马市', + '142603' => '霍州市', '142621' => '临汾县', '142622' => '隰县', '142623' => '汾西县', @@ -316,6 +406,9 @@ '142635' => '大宁县', '142636' => '蒲县', '142700' => '运城地区', + '142701' => '运城市', + '142702' => '河津市', + '142703' => '永济市', '142721' => '运城县', '142722' => '夏县', '142723' => '闻喜县', @@ -329,9 +422,16 @@ '142731' => '新绛县', '142732' => '稷山县', '142733' => '河津县', + '149001' => '古交市', + '149002' => '高平市', + '149003' => '潞城市', '152100' => '呼伦贝尔盟', '152101' => '海拉尔市', '152102' => '满洲里市', + '152103' => '扎兰屯市', + '152104' => '牙克石市', + '152105' => '根河市', + '152106' => '额尔古纳市', '152121' => '布特哈旗', '152122' => '阿荣旗', '152123' => '莫力达瓦达斡尔族自治旗', @@ -345,6 +445,7 @@ '152131' => '陈巴尔虎旗', '152300' => '哲里木盟', '152301' => '通辽市', + '152302' => '霍林郭勒市', '152321' => '通辽县', '152322' => '科尔沁左翼中旗', '152323' => '科尔沁左翼后旗', @@ -360,6 +461,7 @@ '152424' => '林西县', '152425' => '克什克腾旗', '152426' => '翁牛特旗', + '152427' => '赤峰县', '152428' => '喀喇沁旗', '152429' => '宁城县', '152430' => '敖汉旗', @@ -367,6 +469,7 @@ '152521' => '东胜县', '152600' => '锡林郭勒盟', '152601' => '二连浩特市', + '152602' => '丰镇市', '152621' => '阿巴哈纳尔旗', '152622' => '阿巴嘎旗', '152623' => '苏尼特左旗', @@ -378,7 +481,11 @@ '152629' => '正镶白旗', '152630' => '正蓝旗', '152631' => '多伦县', + '152632' => '察哈尔右翼后旗', + '152633' => '达尔罕茂明安联合旗', + '152634' => '四子王旗', '152700' => '巴彦淖尔盟', + '152701' => '东胜市', '152721' => '临河县', '152722' => '五原县', '152723' => '磴口县', @@ -386,6 +493,7 @@ '152725' => '乌拉特中后联合旗', '152726' => '杭锦后旗', '152727' => '潮格旗', + '152728' => '伊金霍洛旗', '152800' => '乌兰察布盟', '152801' => '集宁市', '152821' => '武川县', @@ -404,15 +512,22 @@ '152834' => '四子王旗', '210121' => '新民县', '210122' => '辽中县', + '210219' => '瓦房店市', '210221' => '金县', '210222' => '新金县', '210223' => '复县', '210225' => '庄河县', + '210282' => '普兰店市', + '210319' => '海城市', '210322' => '海城县', '210511' => '立新区', '210621' => '凤城县', '210622' => '岫岩县', '210623' => '东沟县', + '210704' => '南票区', + '210705' => '葫芦岛区', + '210706' => '太和区', + '210719' => '锦西市', '210721' => '锦西县', '210722' => '兴城县', '210723' => '绥中县', @@ -423,8 +538,20 @@ '210823' => '大洼县', '210824' => '盖县', '211022' => '灯塔县', + '211111' => '郊区', + '211121' => '大洼县', + '211203' => '铁法区', + '211222' => '开原县', + '211225' => '康平县', + '211226' => '法库县', + '211319' => '北票市', + '211323' => '凌源县', + '211325' => '建昌县', + '211326' => '北票县', + '211405' => '葫芦岛区', '212100' => '铁岭地区', '212101' => '铁岭市', + '212102' => '铁法市', '212121' => '铁岭县', '212122' => '开原县', '212123' => '西丰县', @@ -439,15 +566,44 @@ '212224' => '喀喇沁左翼蒙古族自治县', '212225' => '建昌县', '212226' => '北票县', + '219001' => '瓦房店市', + '219002' => '海城市', + '219003' => '锦西市', + '219004' => '兴城市', + '219005' => '铁法市', + '219006' => '北票市', + '219007' => '开原市', + '219008' => '普兰店市', + '219009' => '凌源市', + '219010' => '庄河市', + '219011' => '大石桥市', + '219012' => '盖州市', + '219013' => '新民市', + '219014' => '东港市', + '219015' => '凌海市', + '219016' => '凤城市', '220111' => '郊区', '220121' => '榆树县', '220123' => '九台县', '220124' => '德惠县', '220125' => '双阳县', + '220181' => '九台市', '220222' => '舒兰县', '220223' => '磐石县', '220224' => '蛟河县', '220225' => '桦甸县', + '220301' => '铁西区', + '220319' => '公主岭市', + '220321' => '怀德县', + '220324' => '双辽县', + '220401' => '龙山区', + '220519' => '梅河口市', + '220522' => '集安县', + '220603' => '三岔子区', + '220604' => '临江区', + '220624' => '临江县', + '220625' => '江源县', + '220724' => '扶余县', '222100' => '四平地区', '222101' => '四平市', '222102' => '辽源市', @@ -469,6 +625,9 @@ '222228' => '长白朝鲜族自治县', '222300' => '白城地区', '222301' => '白城市', + '222302' => '洮南市', + '222303' => '扶余市', + '222304' => '大安市', '222321' => '扶余县', '222322' => '洮安县', '222323' => '长岭县', @@ -481,13 +640,72 @@ '222422' => '敦化县', '222423' => '和龙县', '222425' => '珲春县', + '222427' => '龙井县', + '222500' => '德惠地区', + '222521' => '榆树县', + '222522' => '农安县', + '222523' => '九台县', + '222524' => '德惠县', + '222525' => '双阳县', + '222600' => '永吉地区', + '222621' => '永吉县', + '222622' => '舒兰县', + '222623' => '磐石县', + '222624' => '蛟河县', + '222625' => '桦甸县', + '229001' => '公主岭市', + '229002' => '梅河口市', + '229003' => '集安市', + '229004' => '桦甸市', + '229005' => '九台市', + '229006' => '蛟河市', + '229007' => '榆树市', + '229008' => '舒兰市', + '229009' => '大安市', + '229010' => '洮南市', + '229011' => '临江市', + '229012' => '德惠市', '230105' => '太平区', '230106' => '香坊区', '230107' => '动力区', + '230121' => '阿城县', + '230122' => '呼兰县', + '230181' => '阿城市', + '230182' => '双城市', + '230222' => '讷河县', + '230226' => '杜尔伯特蒙古族自治县', + '230228' => '林甸县', + '230322' => '虎林县', '230504' => '南山区', '230507' => '兴山区', '230721' => '铁力县', + '230802' => '永红区', + '230821' => '富锦县', + '230823' => '依兰县', + '230824' => '友谊县', + '230825' => '集贤县', + '230827' => '宝清县', + '230829' => '绥滨县', + '230830' => '萝北县', + '230831' => '同江县', + '230832' => '饶河县', + '230833' => '抚远县', + '231006' => '爱民区', + '231007' => '阳明区', + '231011' => '郊区', + '231020' => '绥芬河市', + '231021' => '宁安县', + '231022' => '海林县', + '231023' => '穆棱县', + '231024' => '东宁县', + '231026' => '密山县', + '231027' => '虎林县', + '231101' => '绥芬河市', + '231122' => '德都县', '232100' => '绥化地区', + '232101' => '双城市', + '232102' => '尚志市', + '232103' => '五常市', '232121' => '海伦县', '232122' => '肇东县', '232123' => '绥化县', @@ -513,6 +731,10 @@ '232230' => '通河县', '232231' => '方正县', '232300' => '嫩江地区', + '232301' => '绥化市', + '232302' => '安达市', + '232303' => '肇东市', + '232304' => '海伦市', '232321' => '讷河县', '232322' => '拜泉县', '232323' => '龙江县', @@ -524,6 +746,7 @@ '232329' => '富裕县', '232330' => '林甸县', '232331' => '杜尔伯特蒙古族自治县', + '232332' => '绥棱县', '232400' => '合江地区', '232401' => '佳木斯市', '232402' => '七台河市', @@ -551,8 +774,8 @@ '232503' => '先锋区', '232504' => '爱民区', '232505' => '阳明区', + '232506' => '阳明区', '232511' => '郊区', - '232581' => '绥芬河市', '232521' => '海林县', '232522' => '宁安县', '232523' => '林口县', @@ -561,18 +784,34 @@ '232526' => '虎林县', '232527' => '鸡东县', '232528' => '东宁县', + '232581' => '绥芬河市', '232600' => '黑河地区', '232601' => '黑河市', + '232602' => '北安市', + '232603' => '五大连池市', '232621' => '嫩江县', '232622' => '北安县', '232623' => '德都县', '232624' => '爱辉县', '232625' => '逊克县', '232626' => '孙吴县', + '232627' => '通北县', + '239001' => '绥芬河市', + '239002' => '镜泊湖市', + '239003' => '同江市', + '239004' => '富锦市', + '239005' => '铁力市', + '239006' => '密山市', + '239007' => '海林市', + '239008' => '讷河市', + '239009' => '北安市', + '239010' => '五大连池市', + '239011' => '宁安市', '310102' => '南市区', '310103' => '卢湾区', '310108' => '闸北区', '310111' => '吴淞区', + '310119' => '南汇区', '310201' => '上海县', '310202' => '嘉定县', '310203' => '宝山县', @@ -583,25 +822,105 @@ '310208' => '金山县', '310209' => '青浦县', '310210' => '崇明县', + '310221' => '上海县', + '310222' => '嘉定县', + '310223' => '宝山县', + '310224' => '川沙县', + '310225' => '南汇县', + '310226' => '奉贤县', + '310227' => '松江县', + '310228' => '金山县', + '310229' => '青浦县', + '310230' => '崇明县', '320103' => '白下区', '320107' => '下关区', '320112' => '大厂区', '320121' => '江宁县', '320122' => '江浦县', '320123' => '六合县', + '320124' => '溧水县', + '320125' => '高淳县', '320202' => '崇安区', '320203' => '南长区', '320204' => '北塘区', - '320304' => '矿区', - '320403' => '广化区', - '320405' => '戚墅堰区', + '320221' => '江阴县', + '320222' => '无锡县', + '320223' => '宜兴县', + '320283' => '锡山市', + '320304' => '矿区', + '320323' => '铜山县', + '320325' => '邳县', + '320326' => '新沂县', + '320403' => '广化区', + '320405' => '戚墅堰区', + '320421' => '武进县', + '320422' => '金坛县', + '320423' => '溧阳县', + '320482' => '金坛市', + '320483' => '武进市', '320502' => '沧浪区', '320503' => '平江区', '320504' => '金阊区', + '320511' => '郊区', + '320521' => '沙洲县', + '320522' => '太仓县', + '320523' => '昆山县', + '320524' => '吴县', + '320525' => '吴江县', + '320584' => '吴江市', + '320586' => '吴县市', '320603' => '港闸区', + '320621' => '海安县', + '320622' => '如皋县', + '320624' => '南通县', + '320625' => '海门县', + '320626' => '启东县', + '320683' => '通州市', '320702' => '连云港区', '320704' => '新浦区', '320705' => '海州区', + '320711' => '郊区', + '320721' => '赣榆县', + '320802' => '清河区', + '320811' => '清浦区', + '320821' => '淮阴县', + '320822' => '灌南县', + '320823' => '沭阳县', + '320824' => '宿迁县', + '320825' => '泗阳县', + '320827' => '泗洪县', + '320828' => '淮安县', + '320829' => '洪泽县', + '320881' => '宿迁市', + '320882' => '淮安市', + '320911' => '郊区', + '320926' => '大丰县', + '320927' => '东台县', + '320928' => '盐都县', + '320982' => '大丰市', + '321011' => '郊区', + '321021' => '兴化县', + '321022' => '高邮县', + '321024' => '靖江县', + '321025' => '泰兴县', + '321026' => '江都县', + '321027' => '邗江县', + '321028' => '泰县', + '321029' => '仪征县', + '321082' => '泰州市', + '321083' => '兴化市', + '321085' => '靖江市', + '321086' => '泰兴市', + '321087' => '姜堰市', + '321088' => '江都市', + '321121' => '丹徒县', + '321122' => '丹阳县', + '321123' => '句容县', + '321124' => '扬中县', + '321201' => '泰州市', + '321284' => '姜堰市', + '321301' => '常熟市', + '321321' => '宿豫县', '322100' => '徐州地区', '322121' => '丰县', '322122' => '沛县', @@ -674,15 +993,75 @@ '322726' => '昆山县', '322727' => '吴县', '322728' => '吴江县', + '329001' => '泰州市', + '329002' => '仪征市', + '329003' => '常熟市', + '329004' => '张家港市', + '329005' => '江阴市', + '329006' => '宿迁市', + '329007' => '丹阳市', + '329008' => '东台市', + '329009' => '兴化市', + '329010' => '淮安市', + '329011' => '宜兴市', + '329012' => '昆山市', + '329013' => '启东市', + '329014' => '新沂市', + '329015' => '溧阳市', + '329016' => '如皋市', + '329017' => '高邮市', + '329018' => '吴江市', + '329019' => '邳州市', + '329020' => '泰兴市', + '329021' => '通州市', + '329022' => '太仓市', + '329023' => '靖江市', + '329024' => '金坛市', + '329025' => '江都市', + '329026' => '海门市', + '329027' => '扬中市', + '329028' => '姜堰市', '330107' => '半山区', '330121' => '萧山县', '330123' => '富阳县', '330124' => '临安县', '330125' => '余杭县', '330126' => '建德县', + '330181' => '萧山市', + '330183' => '富阳市', + '330184' => '余杭市', + '330185' => '临安市', '330202' => '镇明区', '330204' => '江东区', + '330219' => '余姚市', + '330221' => '镇海县', + '330222' => '慈溪县', + '330223' => '余姚县', + '330224' => '奉化县', + '330227' => '鄞县', + '330283' => '奉化市', '330301' => '东城区', + '330321' => '洞头县', + '330322' => '永嘉县', + '330323' => '瑞安县', + '330325' => '平阳县', + '330422' => '平湖县', + '330423' => '海宁县', + '330425' => '桐乡县', + '330511' => '郊区', + '330621' => '绍兴县', + '330622' => '上虞县', + '330623' => '嵊县', + '330625' => '诸暨县', + '330682' => '上虞市', + '330701' => '兰溪市', + '330721' => '金华县', + '330722' => '永康县', + '330724' => '东阳县', + '330725' => '义乌县', + '330821' => '衢县', + '330823' => '江山县', + '331021' => '玉环县', '332100' => '嘉兴地区', '332101' => '湖州市', '332102' => '嘉兴市', @@ -712,6 +1091,8 @@ '332324' => '新昌县', '332325' => '诸暨县', '332400' => '温州地区', + '332401' => '金华市', + '332402' => '衢州市', '332421' => '洞头县', '332422' => '永嘉县', '332423' => '瑞安县', @@ -719,6 +1100,10 @@ '332425' => '平阳县', '332426' => '乐清县', '332427' => '泰顺县', + '332428' => '江山县', + '332429' => '开化县', + '332430' => '龙游县', + '332431' => '磐安县', '332500' => '金华地区', '332501' => '金华市', '332502' => '衢州市', @@ -733,7 +1118,12 @@ '332529' => '常山县', '332530' => '江山县', '332531' => '开化县', + '332581' => '龙泉市', + '332582' => '丽水市', '332600' => '丽水地区', + '332601' => '椒江市', + '332602' => '临海市', + '332603' => '黄岩市', '332621' => '丽水县', '332622' => '青田县', '332623' => '云和县', @@ -742,6 +1132,7 @@ '332626' => '缙云县', '332627' => '遂昌县', '332700' => '台州地区', + '332701' => '椒江市', '332721' => '临海县', '332722' => '黄岩县', '332723' => '温岭县', @@ -754,19 +1145,60 @@ '332822' => '普陀县', '332823' => '岱山县', '332824' => '嵊泗县', + '339001' => '余姚市', + '339002' => '海宁市', + '339003' => '兰溪市', + '339004' => '瑞安市', + '339005' => '萧山市', + '339006' => '江山市', + '339007' => '安徽省', + '339008' => '合肥市', + '339009' => '慈溪市', + '339010' => '奉化市', + '339011' => '诸暨市', + '339012' => '平湖市', + '339013' => '建德市', + '339014' => '永康市', + '339015' => '上虞市', + '339016' => '桐乡市', + '339017' => '乐清市', + '339018' => '临海市', + '339019' => '富阳市', + '339020' => '温岭市', + '339021' => '余杭市', '340204' => '新芜区', '340205' => '裕溪口区', '340206' => '四褐山区', '340211' => '郊区', + '340224' => '青阳县', '340502' => '金家庄区', '340505' => '向山区', + '340511' => '郊区', '340611' => '郊区', '340702' => '铜官山区', '340703' => '狮子山区', '340704' => '铜山区', '340721' => '铜陵县', + '340821' => '桐城县', + '340823' => '枞阳县', + '340901' => '黄山市', + '341121' => '天长县', + '341127' => '嘉山县', + '341223' => '涡阳县', + '341224' => '蒙城县', + '341227' => '利辛县', + '341281' => '亳州市', + '341400' => '巢湖市', + '341402' => '居巢区', + '341421' => '庐江县', + '341422' => '无为县', + '341423' => '含山县', + '341424' => '和县', + '341521' => '寿县', '342100' => '阜阳地区', '342101' => '阜阳市', + '342102' => '亳州市', + '342103' => '界首市', '342121' => '阜阳县', '342122' => '临泉县', '342123' => '太和县', @@ -788,6 +1220,7 @@ '342227' => '五河县', '342228' => '固镇县', '342300' => '滁县地区', + '342301' => '滁州市', '342321' => '天长县', '342322' => '来安县', '342323' => '滁县', @@ -800,17 +1233,26 @@ '342421' => '六安县', '342422' => '寿县', '342423' => '霍邱县', + '342424' => '肥西县', '342425' => '舒城县', '342426' => '金寨县', '342427' => '霍山县', '342500' => '宣城地区', + '342501' => '宣城市', + '342502' => '宁国市', '342521' => '宣城县', '342522' => '郎溪县', '342523' => '广德县', '342524' => '宁国县', - '340224' => '青阳县', + '342525' => '当涂县', + '342526' => '繁昌县', + '342527' => '南陵县', + '342528' => '青阳县', '342529' => '泾县', + '342530' => '旌德县', + '342531' => '绩溪县', '342600' => '巢湖地区', + '342601' => '巢湖市', '342621' => '肥东县', '342622' => '庐江县', '342623' => '无为县', @@ -838,11 +1280,47 @@ '342828' => '岳西县', '342829' => '东至县', '342830' => '贵池县', + '342831' => '石台县', + '342900' => '池州地区', + '342901' => '贵池市', + '342921' => '东至县', + '342922' => '石台县', + '342923' => '青阳县', + '349001' => '天长市', + '349002' => '明光市', + '350126' => '长乐县', + '350127' => '福清县', + '350182' => '长乐市', '350202' => '鼓浪屿区', '350204' => '开元区', '350221' => '同安县', + '350321' => '莆田县', + '350420' => '永安市', + '350422' => '永安县', + '350501' => '永安市', + '350522' => '晋江县', + '350523' => '南安县', + '350621' => '龙海县', + '350784' => '建阳市', + '350822' => '永定县', + '352100' => '建阳地区', + '352101' => '南平市', + '352102' => '邵武市', + '352103' => '武夷山市', + '352104' => '建瓯市', + '352121' => '顺昌县', + '352122' => '建阳县', + '352123' => '建瓯县', + '352124' => '浦城县', + '352125' => '邵武县', + '352126' => '崇安县', + '352127' => '光泽县', + '352128' => '松溪县', + '352129' => '政和县', '352200' => '建阳地区', '352201' => '南平市', + '352202' => '福安市', + '352203' => '福鼎市', '352221' => '顺昌县', '352222' => '建阳县', '352223' => '建瓯县', @@ -852,6 +1330,8 @@ '352227' => '光泽县', '352228' => '松溪县', '352229' => '政和县', + '352230' => '周宁县', + '352231' => '柘荣县', '352300' => '宁德地区', '352321' => '宁德县', '352322' => '连江县', @@ -865,6 +1345,7 @@ '352330' => '周宁县', '352331' => '柘荣县', '352400' => '莆田地区', + '352401' => '泉州市', '352421' => '闽清县', '352422' => '永泰县', '352423' => '长乐县', @@ -881,8 +1362,11 @@ '352525' => '永春县', '352526' => '德化县', '352527' => '金门县', + '352528' => '平和县', + '352529' => '华安县', '352600' => '龙溪地区', '352601' => '漳州市', + '352602' => '漳平市', '352621' => '龙海县', '352622' => '云霄县', '352623' => '漳浦县', @@ -893,6 +1377,7 @@ '352628' => '平和县', '352629' => '华安县', '352700' => '龙岩地区', + '352701' => '龙岩市', '352721' => '龙岩县', '352722' => '长汀县', '352723' => '永定县', @@ -900,6 +1385,9 @@ '352725' => '武平县', '352726' => '漳平县', '352727' => '连城县', + '352728' => '将乐县', + '352729' => '泰宁县', + '352730' => '建宁县', '352800' => '三明地区', '352801' => '三明市', '352821' => '明溪县', @@ -912,14 +1400,37 @@ '352828' => '将乐县', '352829' => '泰宁县', '352830' => '建宁县', + '359001' => '永安市', + '359002' => '石狮市', + '359003' => '福清市', + '359004' => '晋江市', + '359005' => '南安市', + '359006' => '龙海市', + '359007' => '邵武市', + '359008' => '武夷山市', + '359009' => '建瓯市', + '359010' => '建阳市', + '359011' => '长乐市', '360122' => '南昌县', '360211' => '鹅湖区', '360212' => '蛟潭区', + '360221' => '乐平县', '360311' => '上栗区', '360312' => '芦溪区', '360411' => '郊区', - '362100' => '九江地区', - '362121' => '九江县', + '360421' => '九江县', + '360422' => '瑞昌县', + '360427' => '星子县', + '360621' => '贵溪县', + '360721' => '赣县', + '360782' => '南康市', + '361029' => '东乡县', + '361122' => '广丰县', + '362100' => '九江地区', + '362101' => '赣州市', + '362102' => '瑞金市', + '362103' => '南康市', + '362121' => '九江县', '362122' => '永修县', '362123' => '彭泽县', '362124' => '德安县', @@ -929,9 +1440,19 @@ '362128' => '武宁县', '362129' => '星子县', '362130' => '修水县', + '362131' => '宁都县', + '362132' => '于都县', + '362133' => '兴国县', + '362134' => '瑞金县', + '362135' => '会昌县', + '362136' => '寻乌县', + '362137' => '石城县', + '362138' => '广昌县', '362200' => '上饶地区', '362201' => '上饶市', '362202' => '鹰潭市', + '362203' => '樟树市', + '362204' => '高安市', '362221' => '上饶县', '362222' => '贵溪县', '362223' => '婺源县', @@ -948,6 +1469,7 @@ '362234' => '弋阳县', '362300' => '宜春地区', '362301' => '宜春市', + '362302' => '鹰潭市', '362321' => '宜春县', '362322' => '高安县', '362323' => '万载县', @@ -961,8 +1483,10 @@ '362331' => '安义县', '362332' => '靖安县', '362333' => '奉新县', + '362334' => '婺源县', '362400' => '抚州地区', '362401' => '抚州市', + '362402' => '井冈山市', '362421' => '临川县', '362422' => '宜黄县', '362423' => '金溪县', @@ -974,6 +1498,8 @@ '362429' => '南丰县', '362430' => '进贤县', '362431' => '南城县', + '362432' => '宁冈县', + '362433' => '井冈山县', '362500' => '吉安地区', '362501' => '吉安市', '362521' => '吉安县', @@ -988,6 +1514,7 @@ '362530' => '莲花县', '362531' => '泰和县', '362532' => '安福县', + '362533' => '井冈山县', '362600' => '赣州地区', '362601' => '赣州市', '362621' => '广昌县', @@ -1008,10 +1535,13 @@ '362636' => '崇义县', '362637' => '寻乌县', '362638' => '大余县', + '369001' => '瑞昌市', + '369002' => '乐平市', '370111' => '郊区', '370121' => '历城县', '370122' => '章丘县', '370123' => '长清县', + '370181' => '章丘市', '370204' => '台东区', '370205' => '四方区', '370206' => '沧口区', @@ -1019,7 +1549,47 @@ '370222' => '即墨县', '370223' => '胶南县', '370224' => '胶县', + '370225' => '莱西县', + '370226' => '平度县', + '370282' => '即墨市', + '370284' => '胶南市', '370421' => '滕县', + '370504' => '牛庄区', + '370521' => '垦利县', + '370620' => '威海市', + '370622' => '蓬莱县', + '370623' => '黄县', + '370624' => '招远县', + '370625' => '掖县', + '370627' => '莱阳县', + '370628' => '栖霞县', + '370629' => '海阳县', + '370630' => '乳山县', + '370631' => '牟平县', + '370632' => '文登县', + '370633' => '荣成县', + '370721' => '益都县', + '370722' => '安丘县', + '370723' => '寿光县', + '370726' => '昌邑县', + '370727' => '高密县', + '370728' => '诸城县', + '370729' => '五莲县', + '370802' => '市中区', + '370822' => '兖州县', + '370823' => '曲阜县', + '370825' => '邹县', + '370882' => '兖州市', + '370901' => '威海市', + '370922' => '肥城县', + '370981' => '莱芜市', + '371021' => '乳山县', + '371022' => '文登县', + '371023' => '荣成县', + '371081' => '文登市', + '371421' => '陵县', + '371624' => '沾化县', + '371727' => '定陶县', '372100' => '烟台地区', '372101' => '烟台市', '372102' => '威海市', @@ -1051,6 +1621,7 @@ '372230' => '平度县', '372231' => '潍县', '372300' => '惠民地区', + '372301' => '滨州市', '372321' => '惠民县', '372322' => '滨县', '372323' => '阳信县', @@ -1065,6 +1636,8 @@ '372332' => '垦利县', '372400' => '德州地区', '372401' => '德州市', + '372402' => '乐陵市', + '372403' => '禹城市', '372421' => '陵县', '372422' => '平原县', '372423' => '夏津县', @@ -1078,6 +1651,8 @@ '372431' => '宁津县', '372432' => '庆云县', '372500' => '聊城地区', + '372501' => '聊城市', + '372502' => '临清市', '372521' => '阳谷县', '372522' => '莘县', '372523' => '茌平县', @@ -1087,6 +1662,9 @@ '372527' => '临清县', '372528' => '聊城县', '372600' => '泰安地区', + '372601' => '泰安市', + '372602' => '新汶市', + '372603' => '新泰市', '372621' => '泰安县', '372622' => '莱芜县', '372623' => '新泰县', @@ -1095,6 +1673,8 @@ '372626' => '东平县', '372627' => '平阴县', '372628' => '新汶县', + '372629' => '汶上县', + '372630' => '泗水县', '372700' => '济宁地区', '372701' => '济宁市', '372721' => '济宁县', @@ -1108,6 +1688,7 @@ '372729' => '嘉祥县', '372730' => '汶上县', '372800' => '临沂地区', + '372801' => '临沂市', '372821' => '临沂县', '372822' => '郯城县', '372823' => '苍山县', @@ -1122,6 +1703,7 @@ '372832' => '沂南县', '372833' => '临沭县', '372900' => '菏泽地区', + '372901' => '菏泽市', '372921' => '菏泽县', '372922' => '曹县', '372923' => '定陶县', @@ -1132,11 +1714,71 @@ '372928' => '郓城县', '372929' => '鄄城县', '372930' => '东明县', + '379001' => '青州市', + '379002' => '龙口市', + '379003' => '曲阜市', + '379004' => '莱芜市', + '379005' => '新泰市', + '379006' => '威海市', + '379007' => '诸城市', + '379008' => '莱阳市', + '379009' => '莱州市', + '379010' => '滕州市', + '379011' => '文登市', + '379012' => '荣成市', + '379013' => '即墨市', + '379014' => '平度市', + '379015' => '莱西市', + '379016' => '胶南市', + '379017' => '蓬莱市', + '379018' => '招远市', + '379019' => '肥城市', + '379020' => '章丘市', + '379021' => '兖州市', + '379022' => '邹城市', + '379023' => '寿光市', + '379024' => '乳山市', + '379025' => '乐陵市', + '379026' => '禹城市', + '379027' => '安丘市', + '379028' => '昌邑市', + '379029' => '高密市', + '410107' => '新密区', + '410111' => '金海区', '410112' => '郊区', '410121' => '荥阳县', + '410123' => '新郑县', + '410124' => '巩县', + '410125' => '登封县', + '410126' => '密县', '410211' => '郊区', + '410224' => '开封县', + '410321' => '偃师县', + '410412' => '舞钢区', + '410424' => '临汝县', + '410426' => '襄城县', + '410504' => '铁西区', '410511' => '郊区', + '410521' => '林县', + '410524' => '淇县', + '410525' => '浚县', '410604' => '马村区', + '410722' => '汲县', + '410723' => '辉县', + '410824' => '沁阳县', + '410826' => '孟县', + '410827' => '济源县', + '410881' => '济源市', + '410911' => '郊区', + '410921' => '滑县', + '410924' => '内黄县', + '410925' => '长垣县', + '411021' => '禹县', + '411022' => '长葛县', + '411023' => '许昌县', + '411123' => '郾城县', + '411222' => '陕县', + '411223' => '灵宝县', '412100' => '安阳地区', '412101' => '安阳市', '412102' => '文峰区', @@ -1160,6 +1802,7 @@ '412201' => '新乡市', '412202' => '红旗区', '412203' => '新华区', + '412204' => '北站区', '412211' => '郊区', '412221' => '沁阳县', '412222' => '博爱县', @@ -1177,6 +1820,7 @@ '412234' => '封丘县', '412300' => '商丘地区', '412301' => '商丘市', + '412302' => '永城市', '412321' => '虞城县', '412322' => '商丘县', '412323' => '民权县', @@ -1198,6 +1842,7 @@ '412430' => '兰考县', '412500' => '洛阳地区', '412501' => '三门峡市', + '412502' => '义马市', '412521' => '偃师县', '412522' => '孟津县', '412523' => '新安县', @@ -1229,6 +1874,7 @@ '412632' => '舞阳县', '412700' => '周口地区', '412701' => '周口市', + '412702' => '项城市', '412721' => '扶沟县', '412722' => '西华县', '412723' => '商水县', @@ -1251,6 +1897,7 @@ '412829' => '正阳县', '412900' => '南阳地区', '412901' => '南阳市', + '412902' => '邓州市', '412921' => '南召县', '412922' => '方城县', '412923' => '西峡县', @@ -1274,13 +1921,51 @@ '413027' => '商城县', '413028' => '罗山县', '413029' => '新县', + '419002' => '汝州市', + '419003' => '济源市', + '419004' => '禹州市', + '419005' => '卫辉市', + '419006' => '辉县市', + '419007' => '沁阳市', + '419008' => '舞钢市', + '419009' => '巩义市', + '419010' => '灵宝市', + '419011' => '长葛市', + '419012' => '偃师市', + '419013' => '邓州市', + '419014' => '林州市', + '419015' => '新密市', + '419016' => '荥阳市', + '419017' => '新郑市', + '419018' => '登封市', '420121' => '汉阳县', '420122' => '武昌县', + '420123' => '黄陂县', + '420124' => '新洲县', '420211' => '郊区', '420221' => '大冶县', + '420321' => '郧县', '420400' => '沙市市', + '420521' => '宜昌县', + '420523' => '枝江县', + '420603' => '樊东区', + '420604' => '樊西区', + '420611' => '郊区', + '420621' => '襄阳县', + '420622' => '枣阳县', + '420623' => '宜城县', + '420803' => '沙洋区', + '420901' => '随州市', + '420924' => '汉川县', + '420983' => '广水市', + '421001' => '老河口市', + '421004' => '江陵区', + '421025' => '京山县', + '421082' => '钟祥市', '422100' => '黄冈地区', '422101' => '鄂城市', + '422102' => '武穴市', + '422103' => '黄州市', '422121' => '黄冈县', '422122' => '新洲县', '422123' => '红安县', @@ -1293,6 +1978,10 @@ '422130' => '黄梅县', '422131' => '鄂城县', '422200' => '孝感地区', + '422201' => '孝感市', + '422202' => '应城市', + '422203' => '安陆市', + '422204' => '广水市', '422221' => '孝感县', '422222' => '黄陂县', '422223' => '大悟县', @@ -1302,6 +1991,8 @@ '422227' => '应城县', '422228' => '汉川县', '422300' => '咸宁地区', + '422301' => '咸宁市', + '422302' => '蒲圻市', '422321' => '咸宁县', '422322' => '嘉鱼县', '422323' => '蒲圻县', @@ -1311,6 +2002,11 @@ '422327' => '阳新县', '422400' => '荆州地区', '422401' => '荆门市', + '422402' => '石首市', + '422403' => '洪湖市', + '422404' => '天门市', + '422405' => '潜江市', + '422406' => '钟祥市', '422421' => '江陵县', '422422' => '松滋县', '422423' => '公安县', @@ -1335,6 +2031,7 @@ '422527' => '谷城县', '422528' => '保康县', '422600' => '郧阳地区', + '422601' => '丹江口市', '422621' => '均县', '422622' => '郧县', '422623' => '郧西县', @@ -1343,6 +2040,8 @@ '422626' => '房县', '422627' => '神农架林区', '422700' => '宜昌地区', + '422701' => '枝城市', + '422702' => '当阳市', '422721' => '宜昌县', '422722' => '宜都县', '422723' => '枝江县', @@ -1354,15 +2053,41 @@ '422729' => '五峰县', '422821' => '恩施县', '422824' => '利川县', + '422921' => '神农架林区', + '429001' => '随州市', + '429002' => '老河口市', + '429003' => '枣阳市', + '429007' => '枝城市', + '429008' => '当阳市', + '429009' => '应城市', + '429010' => '安陆市', + '429011' => '广水市', + '429012' => '石首市', + '429013' => '洪湖市', + '429014' => '钟祥市', + '429015' => '丹江口市', + '429016' => '大冶市', + '429017' => '宜城市', '430122' => '望城县', + '430123' => '浏阳县', + '430124' => '宁乡县', + '430219' => '醴陵市', + '430222' => '醴陵县', '430303' => '湘江区', '430305' => '板塘区', + '430306' => '韶山区', '430311' => '郊区', + '430322' => '新邵县', '430402' => '江东区', '430403' => '城南区', '430404' => '城北区', '430411' => '郊区', + '430425' => '常宁县', + '430427' => '耒阳县', '430504' => '桥头区', + '430526' => '祁东县', + '430622' => '临湘县', + '430627' => '汨罗县', '432100' => '湘潭地区', '432121' => '湘潭县', '432122' => '湘乡县', @@ -1381,6 +2106,7 @@ '432226' => '华容县', '432300' => '益阳地区', '432301' => '益阳市', + '432302' => '沅江市', '432321' => '益阳县', '432322' => '南县', '432323' => '沅江县', @@ -1401,6 +2127,7 @@ '432500' => '涟源地区', '432501' => '娄底市', '432502' => '冷水江市', + '432503' => '涟源市', '432521' => '涟源县', '432522' => '双峰县', '432523' => '邵东县', @@ -1424,6 +2151,7 @@ '432727' => '祁阳县', '432800' => '郴州地区', '432801' => '郴州市', + '432802' => '资兴市', '432821' => '郴县', '432822' => '桂阳县', '432823' => '永兴县', @@ -1436,6 +2164,8 @@ '432830' => '耒阳县', '432831' => '安仁县', '432900' => '零陵地区', + '432901' => '永州市', + '432902' => '冷水滩市', '432921' => '零陵县', '432922' => '东安县', '432923' => '道县', @@ -1445,6 +2175,7 @@ '432927' => '蓝山县', '432928' => '新田县', '432929' => '双牌县', + '432930' => '祁阳县', '433000' => '黔阳地区', '433001' => '洪江市', '433002' => '怀化市', @@ -1459,27 +2190,123 @@ '433029' => '会同县', '433030' => '靖县', '433031' => '通道侗族自治县', + '433102' => '大庸市', '433121' => '吉首县', '433128' => '大庸县', '433129' => '桑植县', + '439001' => '醴陵市', + '439002' => '湘乡市', + '439003' => '耒阳市', + '439004' => '汨罗市', + '439005' => '津市市', + '439006' => '韶山市', + '439007' => '临湘市', + '439008' => '浏阳市', + '439009' => '资兴市', + '439010' => '沅江市', + '439011' => '武冈市', '440102' => '东山区', + '440107' => '天河区', + '440116' => '萝岗区', '440121' => '花县', '440122' => '从化县', '440123' => '新丰县', '440124' => '龙门县', '440125' => '增城县', '440126' => '番禺县', + '440127' => '清远县', + '440128' => '佛冈县', + '440181' => '番禺市', + '440182' => '花都市', + '440183' => '增城市', + '440184' => '从化市', + '440202' => '北江区', '440221' => '曲江县', - '440502' => '同平区', - '440503' => '安平区', + '440223' => '南雄县', + '440225' => '乐昌县', + '440226' => '连县', + '440227' => '阳山县', + '440228' => '英德县', + '440230' => '连山壮族瑶族自治县', + '440231' => '连南瑶族自治县', + '440321' => '宝安县', + '440421' => '斗门县', + '440502' => '同平区', + '440503' => '安平区', '440504' => '公园区', '440505' => '金沙区', + '440506' => '达豪区', + '440508' => '金园区', + '440509' => '升平区', + '440510' => '河浦区', + '440521' => '澄海县', + '440522' => '饶平县', + '440524' => '潮阳县', + '440525' => '揭阳县', + '440526' => '揭西县', + '440527' => '普宁县', + '440528' => '惠来县', + '440582' => '潮阳市', + '440583' => '澄海市', + '440602' => '汾江区', + '440603' => '石湾区', + '440620' => '中山市', + '440621' => '三水县', + '440622' => '南海县', + '440623' => '顺德县', + '440624' => '高明县', + '440681' => '顺德市', + '440682' => '南海市', + '440683' => '三水市', + '440684' => '高明市', + '440702' => '城区', + '440711' => '郊区', + '440721' => '新会县', + '440722' => '台山县', + '440723' => '恩平县', + '440724' => '开平县', + '440725' => '鹤山县', + '440726' => '阳江县', + '440727' => '阳春县', + '440782' => '新会市', + '440821' => '吴川县', + '440822' => '廉江县', + '440824' => '海康县', + '440903' => '茂港区', + '440921' => '信宜县', + '440922' => '高州县', + '440923' => '电白县', + '440924' => '化州县', '441000' => '海口市', + '441001' => '潮州市', '441002' => '新华区', '441003' => '立新区', '441004' => '东方红区', '441005' => '秀英区', + '441100' => '三亚市', + '441221' => '高要县', + '441222' => '四会县', + '441227' => '云浮县', + '441228' => '新兴县', + '441229' => '郁南县', + '441230' => '罗定县', + '441283' => '高要市', + '441321' => '惠阳县', + '441381' => '惠阳市', + '441421' => '梅县', + '441425' => '兴宁县', + '441522' => '陆丰县', + '441611' => '郊区', + '441703' => '阳东区', + '441722' => '阳春县', + '441723' => '阳东县', + '441811' => '清郊区', + '441822' => '英德县', + '441824' => '连县', + '441827' => '清新县', '442100' => '海南行政区', + '442101' => '海口市', + '442102' => '通什市', '442121' => '琼山县', '442122' => '文昌县', '442123' => '琼海县', @@ -1489,7 +2316,16 @@ '442127' => '澄迈县', '442128' => '临高县', '442129' => '儋县', + '442130' => '东方黎族自治县', + '442131' => '乐东黎族自治县', + '442132' => '琼中黎族苗族自治县', + '442133' => '保亭黎族苗族自治县', + '442134' => '陵水黎族自治县', + '442135' => '白沙黎族自治县', + '442136' => '昌江黎族自治县', '442200' => '海南黎族苗族自治州', + '442201' => '三亚市', + '442202' => '通什市', '442221' => '崖县', '442222' => '东方县', '442223' => '乐东县', @@ -1500,6 +2336,7 @@ '442228' => '昌江县', '442300' => '汕头地区', '442301' => '潮州市', + '442302' => '潮州市', '442321' => '潮安县', '442322' => '澄海县', '442323' => '饶平县', @@ -1522,6 +2359,7 @@ '442427' => '蕉岭县', '442500' => '惠阳地区', '442501' => '惠州市', + '442502' => '东莞市', '442521' => '惠阳县', '442522' => '紫金县', '442523' => '和平县', @@ -1531,6 +2369,8 @@ '442527' => '东莞县', '442528' => '惠东县', '442529' => '龙川县', + '442530' => '陆丰县', + '442531' => '海丰县', '442600' => '韶关地区', '442621' => '始兴县', '442622' => '南雄县', @@ -1556,6 +2396,8 @@ '442728' => '恩平县', '442729' => '开平县', '442730' => '高鹤县', + '442731' => '鹤山县', + '442732' => '高明县', '442800' => '肇庆地区', '442801' => '肇庆市', '442821' => '高要县', @@ -1580,10 +2422,52 @@ '442929' => '遂溪县', '442930' => '海康县', '442931' => '徐闻县', + '445121' => '潮安县', + '445221' => '揭东县', + '445223' => '普宁县', + '445323' => '云安县', + '449001' => '潮州市', + '449002' => '中山市', + '449003' => '海口市', + '449004' => '南海市', + '449005' => '云浮市', + '449006' => '新会市', + '449007' => '开平市', + '449008' => '三水市', + '449009' => '普宁市', + '449010' => '罗定市', + '449011' => '潮阳市', + '449012' => '高州市', + '449013' => '花都市', + '449014' => '高要市', + '449015' => '鹤山市', + '449016' => '四会市', + '449017' => '增城市', + '449018' => '廉江市', + '449019' => '英德市', + '449020' => '恩平市', + '449021' => '从化市', + '449022' => '澄海市', + '449023' => '高明市', + '449024' => '连州市', + '449025' => '雷州市', + '449026' => '乐昌市', + '449027' => '阳春市', + '449028' => '惠阳市', + '449029' => '吴川市', + '449030' => '兴宁市', + '449031' => '化州市', '450104' => '城北区', '450106' => '永新区', + '450121' => '邕宁县', + '450122' => '武鸣县', + '450221' => '柳江县', + '450306' => '市郊区', + '450322' => '临桂县', '450402' => '白云区', '450404' => '蝶山区', + '451025' => '靖西县', + '451281' => '宜州市', '452100' => '南宁地区', '452101' => '凭祥市', '452121' => '邕宁县', @@ -1600,6 +2484,7 @@ '452132' => '宁明县', '452133' => '龙州县', '452200' => '柳州地区', + '452201' => '合山市', '452221' => '柳江县', '452222' => '柳城县', '452223' => '鹿寨县', @@ -1625,6 +2510,8 @@ '452331' => '荔浦县', '452332' => '恭城县', '452400' => '梧州地区', + '452401' => '岑溪市', + '452402' => '贺州市', '452421' => '岑溪县', '452422' => '苍梧县', '452423' => '藤县', @@ -1634,6 +2521,10 @@ '452427' => '钟山县', '452428' => '富川县', '452500' => '玉林地区', + '452501' => '玉林市', + '452502' => '贵港市', + '452503' => '桂平市', + '452504' => '北流市', '452521' => '玉林县', '452522' => '贵县', '452523' => '桂平县', @@ -1643,6 +2534,7 @@ '452527' => '陆川县', '452528' => '博白县', '452600' => '百色地区', + '452601' => '百色市', '452621' => '百色县', '452622' => '田阳县', '452623' => '田东县', @@ -1656,6 +2548,8 @@ '452631' => '隆林各族自治县', '452632' => '西林县', '452700' => '河池地区', + '452701' => '河池市', + '452702' => '宜州市', '452721' => '河池县', '452722' => '宜山县', '452723' => '罗城县', @@ -1666,18 +2560,69 @@ '452728' => '东兰县', '452729' => '巴马瑶族自治县', '452730' => '都安瑶族自治县', + '452731' => '大化瑶族自治县', '452800' => '钦州地区', '452801' => '北海市', + '452802' => '钦州市', '452821' => '上思县', '452822' => '防城各族自治县', '452823' => '钦州县', '452824' => '灵山县', '452825' => '合浦县', '452826' => '浦北县', + '460001' => '通什市', + '460002' => '琼海市', + '460003' => '儋州市', + '460004' => '琼山市', + '460005' => '文昌市', + '460006' => '万宁市', + '460007' => '东方市', + '460021' => '琼山县', + '460022' => '文昌县', + '460023' => '琼海县', + '460024' => '万宁县', + '460025' => '定安县', + '460026' => '屯昌县', + '460027' => '澄迈县', + '460028' => '临高县', + '460029' => '儋县', + '460030' => '白沙黎族自治县', + '460031' => '昌江黎族自治县', + '460032' => '东方黎族自治县', + '460033' => '乐东黎族自治县', + '460034' => '陵水黎族自治县', + '460035' => '保亭黎族苗族自治县', + '460036' => '琼中黎族苗族自治县', + '460102' => '振东区', + '460103' => '新华区', + '460104' => '秀英区', + '469003' => '儋州市', + '500221' => '长寿县', + '500222' => '綦江县', + '500223' => '潼南县', + '500224' => '铜梁县', + '500225' => '大足县', + '500226' => '荣昌县', + '500227' => '璧山县', + '500228' => '梁平县', + '500232' => '武隆县', + '500234' => '开县', + '500239' => '黔江土家族苗族自治县', + '500381' => '江津市', + '500382' => '合川市', + '500383' => '永川市', + '500384' => '南川市', '510102' => '东城区', '510103' => '西城区', '510111' => '金牛区', '510122' => '双流县', + '510123' => '温江县', + '510124' => '郫县', + '510125' => '新都县', + '510126' => '彭县', + '510127' => '灌县', + '510128' => '崇庆县', + '510130' => '邛崃县', '510200' => '重庆市', '510202' => '市中区', '510203' => '大渡口区', @@ -1688,10 +2633,66 @@ '510215' => '北碚区', '510216' => '南桐矿区', '510217' => '双桥区', + '510218' => '渝北区', + '510219' => '巴南区', '510221' => '长寿县', '510222' => '巴县', '510223' => '綦江县', '510224' => '江北县', + '510225' => '江津县', + '510226' => '合川县', + '510227' => '潼南县', + '510228' => '铜梁县', + '510229' => '永川县', + '510230' => '大足县', + '510231' => '荣昌县', + '510232' => '璧山县', + '510281' => '永川市', + '510282' => '合川市', + '510283' => '江津市', + '510523' => '纳溪县', + '510602' => '市中区', + '510621' => '德阳县', + '510622' => '绵竹县', + '510624' => '广汉县', + '510625' => '什邡县', + '510626' => '罗江县', + '510702' => '市中区', + '510721' => '江油县', + '510724' => '安县', + '510902' => '市中区', + '511021' => '内江县', + '511022' => '乐至县', + '511023' => '安岳县', + '511026' => '资阳县', + '511027' => '简阳县', + '511028' => '隆昌县', + '511081' => '资阳市', + '511082' => '简阳市', + '511121' => '仁寿县', + '511122' => '眉山县', + '511125' => '峨眉县', + '511127' => '洪雅县', + '511128' => '彭山县', + '511130' => '青神县', + '511131' => '丹棱县', + '511200' => '万县市', + '511202' => '龙宝区', + '511203' => '天城区', + '511204' => '五桥区', + '511221' => '开县', + '511222' => '忠县', + '511223' => '梁平县', + '511224' => '云阳县', + '511225' => '奉节县', + '511226' => '巫山县', + '511227' => '巫溪县', + '511228' => '城口县', + '511422' => '彭山县', + '511522' => '南溪县', + '511721' => '达县', + '511821' => '名山县', + '512081' => '简阳市', '512100' => '温江地区', '512121' => '温江县', '512122' => '郫县', @@ -1727,6 +2728,7 @@ '512237' => '北川县', '512300' => '内江地区', '512301' => '内江市', + '512302' => '南川市', '512321' => '内江县', '512322' => '乐至县', '512323' => '安岳县', @@ -1734,6 +2736,9 @@ '512325' => '资中县', '512326' => '资阳县', '512327' => '简阳县', + '512328' => '黔江县', + '512329' => '酉阳县', + '512330' => '秀山县', '512400' => '宜宾地区', '512401' => '宜宾市', '512402' => '泸州市', @@ -1755,6 +2760,7 @@ '512436' => '屏山县', '512500' => '乐山地区', '512501' => '乐山市', + '512502' => '泸州市', '512521' => '夹江县', '512522' => '洪雅县', '512523' => '丹棱县', @@ -1767,7 +2773,11 @@ '512530' => '沐川县', '512531' => '峨眉县', '512532' => '金口河工农区', + '512533' => '峨边县', + '512534' => '马边县', + '512535' => '屏山县', '512600' => '江津地区', + '512601' => '乐山市', '512621' => '永川县', '512622' => '大足县', '512623' => '铜梁县', @@ -1776,6 +2786,12 @@ '512626' => '璧山县', '512627' => '江津县', '512628' => '荣昌县', + '512629' => '沐川县', + '512630' => '青神县', + '512631' => '丹棱县', + '512632' => '峨边县', + '512633' => '马边县', + '512634' => '金口河工农区', '512700' => '涪陵地区', '512721' => '涪陵县', '512722' => '垫江县', @@ -1787,8 +2803,11 @@ '512728' => '彭水县', '512729' => '武隆县', '512730' => '南川县', + '512731' => '蒲江县', + '512732' => '新津县', '512800' => '万县地区', '512801' => '万县市', + '512802' => '市中区', '512821' => '万县', '512822' => '开县', '512823' => '城口县', @@ -1798,8 +2817,18 @@ '512827' => '云阳县', '512828' => '忠县', '512829' => '梁平县', + '512830' => '平武县', + '512831' => '北川县', + '512832' => '遂宁县', + '512833' => '三台县', + '512834' => '中江县', + '512835' => '蓬溪县', + '512836' => '射洪县', + '512837' => '盐亭县', '512900' => '南充地区', '512901' => '南充市', + '512902' => '华蓥市', + '512903' => '阆中市', '512921' => '南充县', '512922' => '苍溪县', '512923' => '阆中县', @@ -1814,6 +2843,7 @@ '512932' => '华云工农区', '513000' => '达县地区', '513001' => '达县市', + '513002' => '万源市', '513021' => '达县', '513022' => '万源县', '513023' => '宣汉县', @@ -1827,6 +2857,7 @@ '513031' => '通江县', '513032' => '白沙工农区', '513100' => '雅安地区', + '513101' => '雅安市', '513121' => '雅安县', '513122' => '芦山县', '513123' => '名山县', @@ -1840,9 +2871,64 @@ '513421' => '西昌县', '513438' => '木里藏族自治县', '513439' => '冕宁县', + '513500' => '黔江地区', + '513521' => '石柱土家族自治县', + '513522' => '秀山土家族苗族自治县', + '513523' => '黔江土家族苗族自治县', + '513524' => '酉阳土家族苗族自治县', + '513525' => '彭水苗族土家族自治县', + '513600' => '广安地区', + '513601' => '华蓥市', + '513621' => '岳池县', + '513622' => '广安县', + '513623' => '武胜县', + '513624' => '邻水县', + '513700' => '巴中地区', + '513701' => '巴中市', + '513721' => '通江县', + '513722' => '南江县', + '513723' => '平昌县', + '513800' => '眉山地区', + '513821' => '眉山县', + '513822' => '仁寿县', + '513823' => '彭山县', + '513824' => '洪雅县', + '513825' => '丹棱县', + '513826' => '青神县', + '513900' => '资阳地区', + '513901' => '资阳市', + '513902' => '简阳市', + '513921' => '安岳县', + '513922' => '乐至县', + '517000' => '涪陵市', + '517002' => '枳城区', + '517003' => '李渡区', + '517021' => '垫江县', + '517022' => '丰都县', + '517023' => '武隆县', + '517081' => '南川市', + '519001' => '广汉市', + '519002' => '江油市', + '519003' => '都江堰市', + '519004' => '峨眉山市', + '519005' => '永川市', + '519006' => '合川市', + '519007' => '江津市', + '519008' => '阆中市', + '519009' => '资阳市', + '519010' => '彭州市', + '519011' => '简阳市', + '519012' => '邛崃市', + '519013' => '崇州市', + '520114' => '小河区', '520202' => '盘县特区', + '520222' => '盘县', + '520321' => '遵义县', + '520421' => '平坝县', '522100' => '遵义地区', '522101' => '遵义市', + '522102' => '赤水市', + '522103' => '仁怀市', '522121' => '遵义县', '522122' => '桐梓县', '522123' => '绥阳县', @@ -1856,6 +2942,7 @@ '522131' => '赤水县', '522132' => '习水县', '522200' => '铜仁地区', + '522201' => '铜仁市', '522221' => '铜仁县', '522222' => '江口县', '522223' => '玉屏县', @@ -1868,6 +2955,7 @@ '522230' => '万山特区', '522321' => '兴义县', '522400' => '毕节地区', + '522401' => '毕节市', '522421' => '毕节县', '522422' => '大方县', '522423' => '黔西县', @@ -1878,6 +2966,7 @@ '522428' => '赫章县', '522500' => '安顺地区', '522501' => '安顺市', + '522502' => '清镇市', '522521' => '安顺县', '522522' => '开阳县', '522523' => '息烽县', @@ -1895,7 +2984,13 @@ '530122' => '呈贡县', '530123' => '富民县', '530200' => '东川市', + '530321' => '马龙县', + '530327' => '寻甸回族彝族自治县', + '530328' => '沾益县', + '530421' => '江川县', + '530522' => '腾冲县', '532100' => '昭通地区', + '532101' => '昭通市', '532121' => '昭通县', '532122' => '鲁甸县', '532123' => '巧家县', @@ -1906,7 +3001,10 @@ '532128' => '镇雄县', '532129' => '彝良县', '532130' => '威信县', + '532131' => '水富县', '532200' => '曲靖地区', + '532201' => '曲靖市', + '532202' => '宣威市', '532221' => '曲靖县', '532222' => '沾益县', '532223' => '马龙县', @@ -1923,6 +3021,7 @@ '532321' => '楚雄县', '532330' => '禄劝县', '532400' => '玉溪地区', + '532401' => '玉溪市', '532421' => '玉溪县', '532422' => '江川县', '532423' => '澄江县', @@ -1937,6 +3036,8 @@ '532526' => '弥勒县', '532621' => '文山县', '532700' => '思茅地区', + '532701' => '思茅市', + '532721' => '思茅县', '532722' => '普洱县', '532723' => '墨江哈尼族自治县', '532724' => '景东县', @@ -1949,11 +3050,13 @@ '532821' => '景洪县', '532921' => '大理县', '533000' => '保山地区', + '533001' => '保山市', '533021' => '保山县', '533022' => '施甸县', '533023' => '腾冲县', '533024' => '龙陵县', '533025' => '昌宁县', + '533101' => '畹町市', '533121' => '潞西县', '533125' => '瑞丽县', '533126' => '畹町镇', @@ -1966,9 +3069,9 @@ '533322' => '福贡县', '533421' => '中甸县', '533500' => '临沧地区', + '533521' => '临沧县', '533522' => '凤庆县', '533523' => '云县', - '533521' => '临沧县', '533524' => '永德县', '533525' => '镇康县', '533526' => '双江县', @@ -1994,6 +3097,10 @@ '542131' => '察隅县', '542132' => '洛隆县', '542133' => '边坝县', + '542134' => '盐井县', + '542135' => '碧土县', + '542136' => '妥坝县', + '542137' => '生达县', '542200' => '山南地区', '542221' => '乃东县', '542222' => '扎囊县', @@ -2009,6 +3116,7 @@ '542232' => '错那县', '542233' => '浪卡子县', '542300' => '日喀则地区', + '542301' => '日喀则市', '542321' => '日喀则县', '542322' => '南木林县', '542323' => '江孜县', @@ -2037,11 +3145,44 @@ '542427' => '索县', '542428' => '班戈县', '542429' => '巴青县', + '542430' => '尼玛县', + '542431' => '双湖县', + '542528' => '隆格尔县', + '542600' => '林芝地区', + '542621' => '林芝县', + '542622' => '工布江达县', + '542623' => '米林县', + '542624' => '墨脱县', + '542625' => '波密县', + '542626' => '察隅县', + '542627' => '朗县', + '542700' => '江孜地区', + '542721' => '江孜县', + '542722' => '浪卡子县', + '542723' => '白朗县', + '542724' => '仁布县', + '542725' => '康马县', + '542726' => '亚东县', + '542727' => '岗巴县', '610121' => '长安县', + '610123' => '临潼县', + '610125' => '户县', + '610126' => '高陵县', '610221' => '耀县', '610321' => '宝鸡县', '610325' => '武功县', + '610401' => '咸阳市', + '610421' => '兴平县', + '610427' => '彬县', + '610521' => '华县', + '610624' => '安塞县', + '610721' => '南郑县', + '610821' => '神木县', + '610823' => '横山县', '612100' => '渭南地区', + '612101' => '渭南市', + '612102' => '韩城市', + '612103' => '华阴市', '612121' => '蓝田县', '612122' => '临潼县', '612123' => '渭南县', @@ -2083,6 +3224,7 @@ '612329' => '留坝县', '612330' => '佛坪县', '612400' => '安康地区', + '612401' => '安康市', '612421' => '安康县', '612422' => '汉阴县', '612423' => '石泉县', @@ -2094,6 +3236,7 @@ '612429' => '旬阳县', '612430' => '白河县', '612500' => '商洛地区', + '612501' => '商州市', '612521' => '商县', '612522' => '洛南县', '612523' => '丹凤县', @@ -2117,6 +3260,7 @@ '612632' => '黄陵县', '612633' => '宜君县', '612700' => '榆林地区', + '612701' => '榆林市', '612721' => '榆林县', '612722' => '神木县', '612723' => '府谷县', @@ -2129,9 +3273,15 @@ '612730' => '吴堡县', '612731' => '清涧县', '612732' => '子洲县', + '619001' => '兴平市', + '619002' => '韩城市', + '619003' => '华阴市', '620112' => '白银区', + '620925' => '安西县', '622100' => '酒泉地区', '622101' => '玉门市', + '622102' => '酒泉市', + '622103' => '敦煌市', '622121' => '酒泉县', '622122' => '敦煌县', '622123' => '金塔县', @@ -2139,6 +3289,7 @@ '622125' => '阿克塞哈萨克族自治县', '622126' => '安西县', '622200' => '张掖地区', + '622201' => '张掖市', '622221' => '张掖县', '622222' => '肃南裕固族自治县', '622223' => '民乐县', @@ -2146,6 +3297,7 @@ '622225' => '高台县', '622226' => '山丹县', '622300' => '武威地区', + '622301' => '武威市', '622321' => '武威县', '622322' => '民勤县', '622323' => '古浪县', @@ -2160,6 +3312,8 @@ '622425' => '陇西县', '622426' => '渭源县', '622427' => '临洮县', + '622428' => '漳县', + '622429' => '岷县', '622500' => '天水地区', '622501' => '天水市', '622521' => '张家川回族自治县', @@ -2180,7 +3334,12 @@ '622624' => '成县', '622625' => '康县', '622626' => '文县', + '622627' => '西和县', + '622628' => '礼县', + '622629' => '两当县', + '622630' => '徽县', '622700' => '平凉地区', + '622701' => '平凉市', '622721' => '平凉县', '622722' => '泾川县', '622723' => '灵台县', @@ -2189,6 +3348,7 @@ '622726' => '庄浪县', '622727' => '静宁县', '622800' => '庆阳地区', + '622801' => '西峰市', '622821' => '庆阳县', '622822' => '环县', '622823' => '华池县', @@ -2197,6 +3357,7 @@ '622826' => '宁县', '622827' => '镇原县', '630111' => '郊区', + '630221' => '平安县', '632100' => '海东地区', '632121' => '平安县', '632122' => '民和县', @@ -2213,7 +3374,15 @@ '640204' => '石炭井区', '640211' => '郊区', '640222' => '陶乐县', + '640223' => '惠农县', + '640321' => '中卫县', + '640322' => '中宁县', + '640382' => '灵武市', + '640421' => '海原县', '642100' => '银南地区', + '642101' => '吴忠市', + '642102' => '青铜峡市', + '642103' => '灵武市', '642121' => '吴忠县', '642122' => '青铜峡县', '642123' => '中卫县', @@ -2227,8 +3396,11 @@ '642223' => '西吉县', '642224' => '隆德县', '642225' => '泾源县', + '642226' => '彭阳县', + '650108' => '东山区', '650300' => '石河子市', '652100' => '吐鲁番地区', + '652101' => '吐鲁番市', '652121' => '吐鲁番县', '652122' => '鄯善县', '652123' => '托克逊县', @@ -2237,6 +3409,7 @@ '652221' => '哈密县', '652222' => '巴里坤哈萨克自治县', '652223' => '伊吾县', + '652303' => '米泉市', '652321' => '昌吉县', '652322' => '米泉县', '652326' => '阜康县', @@ -2273,1189 +3446,16 @@ '652821' => '库尔勒县', '652921' => '阿克苏县', '653021' => '阿图什县', - '132801' => '廊坊市', - '212102' => '铁法市', - '320711' => '郊区', - '330321' => '洞头县', - '330322' => '永嘉县', - '330323' => '瑞安县', - '330325' => '平阳县', - '332701' => '椒江市', - '352701' => '龙岩市', - '362533' => '井冈山县', - '410111' => '金海区', - '412502' => '义马市', - '442731' => '鹤山县', - '442732' => '高明县', - '452201' => '合山市', - '512533' => '峨边县', - '512534' => '马边县', - '532101' => '昭通市', - '532131' => '水富县', - '532721' => '思茅县', - '110221' => '昌平县', - '110222' => '顺义县', - '110223' => '通县', - '110224' => '大兴县', - '110225' => '房山县', - '110226' => '平谷县', - '110227' => '怀柔县', - '110228' => '密云县', - '110229' => '延庆县', - '120221' => '宁河县', - '120222' => '武清县', - '120223' => '静海县', - '120224' => '宝坻县', - '120225' => '蓟县', - '132733' => '唐海县', - '132905' => '泊头市', - '133001' => '衡水市', - '142401' => '榆次市', - '152427' => '赤峰县', - '152632' => '察哈尔右翼后旗', - '152633' => '达尔罕茂明安联合旗', - '152634' => '四子王旗', - '152728' => '伊金霍洛旗', - '210704' => '南票区', - '210705' => '葫芦岛区', - '210706' => '太和区', - '222500' => '德惠地区', - '222521' => '榆树县', - '222522' => '农安县', - '222523' => '九台县', - '222524' => '德惠县', - '222525' => '双阳县', - '222600' => '永吉地区', - '222621' => '永吉县', - '222622' => '舒兰县', - '222623' => '磐石县', - '222624' => '蛟河县', - '222625' => '桦甸县', - '232301' => '绥化市', - '232332' => '绥棱县', - '232506' => '阳明区', - '232602' => '北安市', - '232627' => '通北县', - '310221' => '上海县', - '310222' => '嘉定县', - '310223' => '宝山县', - '310224' => '川沙县', - '310225' => '南汇县', - '310226' => '奉贤县', - '310227' => '松江县', - '310228' => '金山县', - '310229' => '青浦县', - '310230' => '崇明县', - '330221' => '镇海县', - '332401' => '金华市', - '332402' => '衢州市', - '332428' => '江山县', - '332429' => '开化县', - '332601' => '椒江市', - '342301' => '滁州市', - '342424' => '肥西县', - '342525' => '当涂县', - '342526' => '繁昌县', - '342527' => '南陵县', - '342528' => '青阳县', - '342601' => '巢湖市', - '352100' => '建阳地区', - '352101' => '南平市', - '352121' => '顺昌县', - '352122' => '建阳县', - '352123' => '建瓯县', - '352124' => '浦城县', - '352125' => '邵武县', - '352126' => '崇安县', - '352127' => '光泽县', - '352128' => '松溪县', - '352129' => '政和县', - '352230' => '周宁县', - '352231' => '柘荣县', - '352401' => '泉州市', - '352528' => '平和县', - '352529' => '华安县', - '352728' => '将乐县', - '352729' => '泰宁县', - '352730' => '建宁县', - '362101' => '赣州市', - '362131' => '宁都县', - '362132' => '于都县', - '362133' => '兴国县', - '362134' => '瑞金县', - '362135' => '会昌县', - '362136' => '寻乌县', - '362137' => '石城县', - '362138' => '广昌县', - '362302' => '鹰潭市', - '362334' => '婺源县', - '362432' => '宁冈县', - '362433' => '井冈山县', - '370504' => '牛庄区', - '370521' => '垦利县', - '372301' => '滨州市', - '372601' => '泰安市', - '372602' => '新汶市', - '410107' => '新密区', - '410412' => '舞钢区', - '412204' => '北站区', - '432901' => '永州市', - '440321' => '宝安县', - '442302' => '潮州市', - '512328' => '黔江县', - '512329' => '酉阳县', - '512330' => '秀山县', - '512502' => '泸州市', - '512535' => '屏山县', - '512601' => '乐山市', - '512629' => '沐川县', - '512630' => '青神县', - '512631' => '丹棱县', - '512632' => '峨边县', - '512633' => '马边县', - '512634' => '金口河工农区', - '512731' => '蒲江县', - '512732' => '新津县', - '512802' => '市中区', - '512830' => '平武县', - '512831' => '北川县', - '512832' => '遂宁县', - '512833' => '三台县', - '512834' => '中江县', - '512835' => '蓬溪县', - '512836' => '射洪县', - '512837' => '盐亭县', - '130122' => '获鹿县', - '130221' => '丰润县', - '130222' => '丰南县', - '130226' => '玉田县', - '130228' => '迁安县', - '130230' => '遵化县', - '130305' => '郊区', - '130323' => '抚宁县', - '130405' => '郊区', - '130421' => '邯郸县', - '130504' => '郊区', - '130603' => '北市区', - '130604' => '南市区', - '130605' => '郊区', - '130621' => '满城县', - '130704' => '茶坊区', - '130707' => '庞家堡区', - '130721' => '宣化县', - '130904' => '郊区', - '140422' => '潞城县', - '142201' => '忻州市', - '142501' => '晋城市', - '142701' => '运城市', - '152103' => '扎兰屯市', - '152104' => '牙克石市', - '152701' => '东胜市', - '220301' => '铁西区', - '220321' => '怀德县', - '220324' => '双辽县', - '220401' => '龙山区', - '222427' => '龙井县', - '230121' => '阿城县', - '230122' => '呼兰县', - '230802' => '永红区', - '231006' => '爱民区', - '231007' => '阳明区', - '231011' => '郊区', - '231021' => '宁安县', - '231022' => '海林县', - '231023' => '穆棱县', - '231024' => '东宁县', - '231026' => '密山县', - '231027' => '虎林县', - '231101' => '绥芬河市', - '232603' => '五大连池市', - '320124' => '溧水县', - '320125' => '高淳县', - '320221' => '江阴县', - '320222' => '无锡县', - '320223' => '宜兴县', - '320323' => '铜山县', - '320325' => '邳县', - '320326' => '新沂县', - '320421' => '武进县', - '320422' => '金坛县', - '320423' => '溧阳县', - '320511' => '郊区', - '320521' => '沙洲县', - '320522' => '太仓县', - '320523' => '昆山县', - '320524' => '吴县', - '320525' => '吴江县', - '320621' => '海安县', - '320622' => '如皋县', - '320624' => '南通县', - '320625' => '海门县', - '320626' => '启东县', - '320721' => '赣榆县', - '320802' => '清河区', - '320811' => '清浦区', - '320821' => '淮阴县', - '320822' => '灌南县', - '320823' => '沭阳县', - '320824' => '宿迁县', - '320825' => '泗阳县', - '320827' => '泗洪县', - '320828' => '淮安县', - '320829' => '洪泽县', - '320911' => '郊区', - '320926' => '大丰县', - '320927' => '东台县', - '321021' => '兴化县', - '321022' => '高邮县', - '321024' => '靖江县', - '321025' => '泰兴县', - '321026' => '江都县', - '321027' => '邗江县', - '321028' => '泰县', - '321029' => '仪征县', - '321121' => '丹徒县', - '321122' => '丹阳县', - '321123' => '句容县', - '321124' => '扬中县', - '321201' => '泰州市', - '321301' => '常熟市', - '330222' => '慈溪县', - '330223' => '余姚县', - '330224' => '奉化县', - '330227' => '鄞县', - '330422' => '平湖县', - '330423' => '海宁县', - '330425' => '桐乡县', - '330511' => '郊区', - '330621' => '绍兴县', - '330622' => '上虞县', - '330623' => '嵊县', - '330625' => '诸暨县', - '332430' => '龙游县', - '332431' => '磐安县', - '340511' => '郊区', - '340901' => '黄山市', - '350126' => '长乐县', - '350127' => '福清县', - '350321' => '莆田县', - '350422' => '永安县', - '352102' => '邵武市', - '360221' => '乐平县', - '360421' => '九江县', - '360422' => '瑞昌县', - '360427' => '星子县', - '360621' => '贵溪县', - '370225' => '莱西县', - '370226' => '平度县', - '370622' => '蓬莱县', - '370623' => '黄县', - '370624' => '招远县', - '370625' => '掖县', - '370627' => '莱阳县', - '370628' => '栖霞县', - '370629' => '海阳县', - '370630' => '乳山县', - '370631' => '牟平县', - '370632' => '文登县', - '370633' => '荣成县', - '370721' => '益都县', - '370722' => '安丘县', - '370723' => '寿光县', - '370726' => '昌邑县', - '370727' => '高密县', - '370728' => '诸城县', - '370729' => '五莲县', - '370802' => '市中区', - '370822' => '兖州县', - '370823' => '曲阜县', - '370825' => '邹县', - '370901' => '威海市', - '372501' => '聊城市', - '372502' => '临清市', - '372603' => '新泰市', - '372629' => '汶上县', - '372630' => '泗水县', - '372801' => '临沂市', - '372901' => '菏泽市', - '410123' => '新郑县', - '410124' => '巩县', - '410125' => '登封县', - '410126' => '密县', - '410224' => '开封县', - '410321' => '偃师县', - '410722' => '汲县', - '410921' => '滑县', - '410924' => '内黄县', - '410925' => '长垣县', - '420123' => '黄陂县', - '420124' => '新洲县', - '420621' => '襄阳县', - '420622' => '枣阳县', - '420623' => '宜城县', - '420901' => '随州市', - '421001' => '老河口市', - '422201' => '孝感市', - '422301' => '咸宁市', - '422601' => '丹江口市', - '422921' => '神农架林区', - '430123' => '浏阳县', - '430124' => '宁乡县', - '430222' => '醴陵县', - '430322' => '新邵县', - '430526' => '祁东县', - '432930' => '祁阳县', - '440127' => '清远县', - '440128' => '佛冈县', - '440223' => '南雄县', - '440225' => '乐昌县', - '440226' => '连县', - '440227' => '阳山县', - '440228' => '英德县', - '440230' => '连山壮族瑶族自治县', - '440231' => '连南瑶族自治县', - '440421' => '斗门县', - '440521' => '澄海县', - '440522' => '饶平县', - '440524' => '潮阳县', - '440525' => '揭阳县', - '440526' => '揭西县', - '440527' => '普宁县', - '440528' => '惠来县', - '440620' => '中山市', - '440621' => '三水县', - '440622' => '南海县', - '440623' => '顺德县', - '440624' => '高明县', - '440721' => '新会县', - '440722' => '台山县', - '440723' => '恩平县', - '440724' => '开平县', - '440725' => '鹤山县', - '440726' => '阳江县', - '440727' => '阳春县', - '440821' => '吴川县', - '440822' => '廉江县', - '440824' => '海康县', - '440921' => '信宜县', - '440922' => '高州县', - '440923' => '电白县', - '440924' => '化州县', - '441001' => '潮州市', - '442101' => '海口市', - '442530' => '陆丰县', - '442531' => '海丰县', - '450121' => '邕宁县', - '450122' => '武鸣县', - '450221' => '柳江县', - '450322' => '临桂县', - '452501' => '玉林市', - '452601' => '百色市', - '452701' => '河池市', - '452802' => '钦州市', - '510123' => '温江县', - '510124' => '郫县', - '510125' => '新都县', - '510126' => '彭县', - '510127' => '灌县', - '510128' => '崇庆县', - '510130' => '邛崃县', - '510225' => '江津县', - '510226' => '合川县', - '510227' => '潼南县', - '510228' => '铜梁县', - '510229' => '永川县', - '510230' => '大足县', - '510231' => '荣昌县', - '510232' => '璧山县', - '510523' => '纳溪县', - '510621' => '德阳县', - '510622' => '绵竹县', - '510624' => '广汉县', - '510625' => '什邡县', - '513101' => '雅安市', - '532201' => '曲靖市', - '532401' => '玉溪市', - '533001' => '保山市', - '542134' => '盐井县', - '542135' => '碧土县', - '542136' => '妥坝县', - '542137' => '生达县', - '542430' => '尼玛县', - '542528' => '隆格尔县', - '542600' => '林芝地区', - '542621' => '林芝县', - '542622' => '工布江达县', - '542623' => '米林县', - '542624' => '墨脱县', - '542625' => '波密县', - '542626' => '察隅县', - '542627' => '朗县', - '542700' => '江孜地区', - '542721' => '江孜县', - '542722' => '浪卡子县', - '542723' => '白朗县', - '542724' => '仁布县', - '542725' => '康马县', - '542726' => '亚东县', - '542727' => '岗巴县', - '610123' => '临潼县', - '610125' => '户县', - '610126' => '高陵县', - '610401' => '咸阳市', - '610421' => '兴平县', - '610427' => '彬县', - '612101' => '渭南市', - '612102' => '韩城市', - '622701' => '平凉市', - '642101' => '吴忠市', - '642226' => '彭阳县', - '211111' => '郊区', - '211121' => '大洼县', - '211203' => '铁法区', - '211222' => '开原县', - '211225' => '康平县', - '211226' => '法库县', - '211323' => '凌源县', - '211325' => '建昌县', - '211326' => '北票县', - '230222' => '讷河县', - '230226' => '杜尔伯特蒙古族自治县', - '230228' => '林甸县', - '230821' => '富锦县', - '230823' => '依兰县', - '230824' => '友谊县', - '230825' => '集贤县', - '230827' => '宝清县', - '230829' => '绥滨县', - '230830' => '萝北县', - '230831' => '同江县', - '230832' => '饶河县', - '230833' => '抚远县', - '231020' => '绥芬河市', - '232302' => '安达市', - '321011' => '郊区', - '329001' => '泰州市', - '329003' => '常熟市', - '350501' => '永安市', - '362402' => '井冈山市', - '410504' => '铁西区', - '410521' => '林县', - '410524' => '淇县', - '410525' => '浚县', - '410911' => '郊区', - '420603' => '樊东区', - '420604' => '樊西区', - '420611' => '郊区', - '429001' => '随州市', - '429002' => '老河口市', - '430425' => '常宁县', - '430427' => '耒阳县', - '432802' => '资兴市', - '432902' => '冷水滩市', - '440202' => '北江区', - '440506' => '达豪区', - '440602' => '汾江区', - '440603' => '石湾区', - '440702' => '城区', - '440711' => '郊区', - '449001' => '潮州市', - '449002' => '中山市', - '442201' => '三亚市', - '450306' => '市郊区', - '510602' => '市中区', - '642102' => '青铜峡市', - '652101' => '吐鲁番市', - '654001' => '奎屯市', - '654100' => '伊犁地区', - '654101' => '伊宁市', - '654121' => '伊宁县', - '654122' => '察布查尔锡伯自治县', - '654123' => '霍城县', - '654124' => '巩留县', - '654125' => '新源县', - '654126' => '昭苏县', - '654127' => '特克斯县', - '654128' => '尼勒克县', - '654222' => '乌苏县', - '140503' => '郊区', - '140523' => '高平县', - '152302' => '霍林郭勒市', - '210219' => '瓦房店市', - '210319' => '海城市', - '210719' => '锦西市', - '211319' => '北票市', - '220319' => '公主岭市', - '220519' => '梅河口市', - '220522' => '集安县', - '330219' => '余姚市', - '330701' => '兰溪市', - '330721' => '金华县', - '330722' => '永康县', - '330724' => '东阳县', - '330725' => '义乌县', - '330821' => '衢县', - '330823' => '江山县', - '350420' => '永安市', - '350522' => '晋江县', - '350523' => '南安县', - '350621' => '龙海县', - '370620' => '威海市', - '370922' => '肥城县', - '370981' => '莱芜市', - '420803' => '沙洋区', - '430219' => '醴陵市', - '433102' => '大庸市', - '440107' => '天河区', - '442502' => '东莞市', - '510702' => '市中区', - '510721' => '江油县', - '510724' => '安县', - '510902' => '市中区', - '511021' => '内江县', - '511022' => '乐至县', - '511023' => '安岳县', - '511026' => '资阳县', - '511027' => '简阳县', - '511028' => '隆昌县', - '511121' => '仁寿县', - '511122' => '眉山县', - '511125' => '峨眉县', - '511127' => '洪雅县', - '511128' => '彭山县', - '511130' => '青神县', - '511131' => '丹棱县', - '512902' => '华蓥市', - '533101' => '畹町市', - '622102' => '酒泉市', - '622201' => '张掖市', - '622301' => '武威市', - '622428' => '漳县', - '622429' => '岷县', - '622627' => '西和县', - '622628' => '礼县', - '622629' => '两当县', - '622630' => '徽县', - '622801' => '西峰市', - '130124' => '正定县', - '130422' => '武安县', - '130622' => '清苑县', - '132301' => '辛集市', - '219001' => '瓦房店市', - '219002' => '海城市', - '219003' => '锦西市', - '219004' => '兴城市', - '219005' => '铁法市', - '219006' => '北票市', - '220603' => '三岔子区', - '220604' => '临江区', - '232303' => '肇东市', - '239001' => '绥芬河市', - '239002' => '镜泊湖市', - '329002' => '仪征市', - '329004' => '张家港市', - '332602' => '临海市', - '339001' => '余姚市', - '339002' => '海宁市', - '339003' => '兰溪市', - '342102' => '亳州市', - '359001' => '永安市', - '379001' => '青州市', - '379002' => '龙口市', - '379003' => '曲阜市', - '379004' => '莱芜市', - '379005' => '新泰市', - '379006' => '威海市', - '410424' => '临汝县', - '410426' => '襄城县', - '410723' => '辉县', - '410824' => '沁阳县', - '410826' => '孟县', - '410827' => '济源县', - '411021' => '禹县', - '411022' => '长葛县', - '411023' => '许昌县', - '411123' => '郾城县', - '411222' => '陕县', - '411223' => '灵宝县', - '422202' => '应城市', - '422302' => '蒲圻市', - '422402' => '石首市', - '430622' => '临湘县', - '430627' => '汨罗县', - '439001' => '醴陵市', - '439002' => '湘乡市', - '439003' => '耒阳市', - '442202' => '通什市', - '449003' => '海口市', - '542301' => '日喀则市', - '222302' => '洮南市', - '222303' => '扶余市', - '239003' => '同江市', - '329005' => '江阴市', - '329006' => '宿迁市', - '329007' => '丹阳市', - '329008' => '东台市', - '329009' => '兴化市', - '329010' => '淮安市', - '339004' => '瑞安市', - '339005' => '萧山市', - '339006' => '江山市', - '339007' => '安徽省', - '339008' => '合肥市', - '342501' => '宣城市', - '342530' => '旌德县', - '342531' => '绩溪县', - '342831' => '石台县', - '359002' => '石狮市', - '371021' => '乳山县', - '371022' => '文登县', - '371023' => '荣成县', - '379007' => '诸城市', - '379008' => '莱阳市', - '422102' => '武穴市', - '422203' => '安陆市', - '422403' => '洪湖市', - '422404' => '天门市', - '422701' => '枝城市', - '432503' => '涟源市', - '439004' => '汨罗市', - '441100' => '三亚市', - '442102' => '通什市', - '442130' => '东方黎族自治县', - '442131' => '乐东黎族自治县', - '442132' => '琼中黎族苗族自治县', - '442133' => '保亭黎族苗族自治县', - '442134' => '陵水黎族自治县', - '442135' => '白沙黎族自治县', - '442136' => '昌江黎族自治县', - '452731' => '大化瑶族自治县', - '522201' => '铜仁市', - '622103' => '敦煌市', - '640223' => '惠农县', - '650108' => '东山区', - '131021' => '三河县', - '131027' => '霸县', - '139001' => '武安市', - '149001' => '古交市', - '219007' => '开原市', - '222304' => '大安市', - '229001' => '公主岭市', - '229002' => '梅河口市', - '229003' => '集安市', - '229004' => '桦甸市', - '229005' => '九台市', - '232101' => '双城市', - '232102' => '尚志市', - '239004' => '富锦市', - '239005' => '铁力市', - '239006' => '密山市', - '329011' => '宜兴市', - '339009' => '慈溪市', - '339010' => '奉化市', - '340821' => '桐城县', - '340823' => '枞阳县', - '342900' => '池州地区', - '342901' => '贵池市', - '342921' => '东至县', - '342922' => '石台县', - '342923' => '青阳县', - '362203' => '樟树市', - '372402' => '乐陵市', - '379009' => '莱州市', - '379010' => '滕州市', - '379011' => '文登市', - '379012' => '荣成市', - '412902' => '邓州市', - '419002' => '汝州市', - '419003' => '济源市', - '419004' => '禹州市', - '419005' => '卫辉市', - '419006' => '辉县市', - '422204' => '广水市', - '422405' => '潜江市', - '422702' => '当阳市', - '429003' => '枣阳市', - '430306' => '韶山区', - '432302' => '沅江市', - '439005' => '津市市', - '441221' => '高要县', - '441222' => '四会县', - '441227' => '云浮县', - '441228' => '新兴县', - '441229' => '郁南县', - '441230' => '罗定县', - '441321' => '惠阳县', - '441421' => '梅县', - '441425' => '兴宁县', - '441522' => '陆丰县', - '441611' => '郊区', - '441703' => '阳东区', - '441722' => '阳春县', - '441811' => '清郊区', - '441822' => '英德县', - '441824' => '连县', - '452502' => '贵港市', - '460001' => '通什市', - '460021' => '琼山县', - '460022' => '文昌县', - '460023' => '琼海县', - '460024' => '万宁县', - '460025' => '定安县', - '460026' => '屯昌县', - '460027' => '澄迈县', - '460028' => '临高县', - '460029' => '儋县', - '460030' => '白沙黎族自治县', - '460031' => '昌江黎族自治县', - '460032' => '东方黎族自治县', - '460033' => '乐东黎族自治县', - '460034' => '陵水黎族自治县', - '460035' => '保亭黎族苗族自治县', - '460036' => '琼中黎族苗族自治县', - '513500' => '黔江地区', - '513521' => '石柱土家族自治县', - '513522' => '秀山土家族苗族自治县', - '513523' => '黔江土家族苗族自治县', - '513524' => '酉阳土家族苗族自治县', - '513525' => '彭水苗族土家族自治县', - '519001' => '广汉市', - '519002' => '江油市', - '519003' => '都江堰市', - '519004' => '峨眉山市', - '612401' => '安康市', - '612501' => '商州市', - '612701' => '榆林市', - '132302' => '藁城市', - '142603' => '霍州市', - '211405' => '葫芦岛区', - '229006' => '蛟河市', - '232304' => '海伦市', - '329012' => '昆山市', - '329013' => '启东市', - '332603' => '黄岩市', - '339011' => '诸暨市', - '342103' => '界首市', - '352103' => '武夷山市', - '352202' => '福安市', - '369001' => '瑞昌市', - '379013' => '即墨市', - '379014' => '平度市', - '419007' => '沁阳市', - '139002' => '霸州市', - '152602' => '丰镇市', - '229007' => '榆树市', - '329014' => '新沂市', - '329015' => '溧阳市', - '352602' => '漳平市', - '359003' => '福清市', - '379015' => '莱西市', - '379016' => '胶南市', - '419008' => '舞钢市', - '422103' => '黄州市', - '439006' => '韶山市', - '460102' => '振东区', - '460103' => '新华区', - '460104' => '秀英区', - '522102' => '赤水市', - '612103' => '华阴市', - '132303' => '晋州市', - '219008' => '普兰店市', - '219009' => '凌源市', - '329016' => '如皋市', - '329017' => '高邮市', - '339012' => '平湖市', - '379017' => '蓬莱市', - '379018' => '招远市', - '419009' => '巩义市', - '441723' => '阳东县', - '445121' => '潮安县', - '445221' => '揭东县', - '445223' => '普宁县', - '512903' => '阆中市', - '132304' => '新乐市', - '139003' => '遵化市', - '142402' => '介休市', - '219010' => '庄河市', - '219011' => '大石桥市', - '219012' => '盖州市', - '220624' => '临江县', - '229008' => '舒兰市', - '239007' => '海林市', - '239008' => '讷河市', - '329018' => '吴江市', - '329019' => '邳州市', - '329020' => '泰兴市', - '339013' => '建德市', - '339014' => '永康市', - '339015' => '上虞市', - '341121' => '天长县', - '341127' => '嘉山县', - '352104' => '建瓯市', - '359004' => '晋江市', - '369002' => '乐平市', - '379019' => '肥城市', - '379020' => '章丘市', - '379021' => '兖州市', - '379022' => '邹城市', - '420521' => '宜昌县', - '420523' => '枝江县', - '422406' => '钟祥市', - '429007' => '枝城市', - '429008' => '当阳市', - '439007' => '临湘市', - '441827' => '清新县', - '449004' => '南海市', - '449005' => '云浮市', - '449006' => '新会市', - '460002' => '琼海市', - '511200' => '万县市', - '511202' => '龙宝区', - '511203' => '天城区', - '511204' => '五桥区', - '511221' => '开县', - '511222' => '忠县', - '511223' => '梁平县', - '511224' => '云阳县', - '511225' => '奉节县', - '511226' => '巫山县', - '511227' => '巫溪县', - '511228' => '城口县', - '519005' => '永川市', - '519006' => '合川市', - '519007' => '江津市', - '522502' => '清镇市', - '130428' => '肥乡县', - '130429' => '永年县', - '130729' => '万全县', - '130733' => '崇礼县', - '130823' => '平泉县', - '133002' => '冀州市', - '139004' => '辛集市', - '139005' => '藁城市', - '139006' => '晋州市', - '139007' => '新乐市', - '139008' => '泊头市', - '139009' => '任丘市', - '139010' => '黄骅市', - '139011' => '河间市', - '139012' => '三河县', - '139013' => '南宫市', - '139014' => '沙河市', - '140227' => '大同县', - '142202' => '原平市', - '149002' => '高平市', - '219013' => '新民市', - '219014' => '东港市', - '219015' => '凌海市', - '229009' => '大安市', - '229010' => '洮南市', - '229011' => '临江市', - '230322' => '虎林县', - '231122' => '德都县', - '232103' => '五常市', - '239009' => '北安市', - '239010' => '五大连池市', - '239011' => '宁安市', - '329021' => '通州市', - '329022' => '太仓市', - '329023' => '靖江市', - '329024' => '金坛市', - '339016' => '桐乡市', - '339017' => '乐清市', - '349001' => '天长市', - '359005' => '南安市', - '359006' => '龙海市', - '362204' => '高安市', - '372403' => '禹城市', - '379023' => '寿光市', - '379024' => '乳山市', - '412702' => '项城市', - '419010' => '灵宝市', - '419011' => '长葛市', - '419012' => '偃师市', - '420924' => '汉川县', - '429009' => '应城市', - '429010' => '安陆市', - '429011' => '广水市', - '439008' => '浏阳市', - '449007' => '开平市', - '449008' => '三水市', - '449009' => '普宁市', - '449010' => '罗定市', - '449011' => '潮阳市', - '449012' => '高州市', - '449013' => '花都市', - '449014' => '高要市', - '449015' => '鹤山市', - '449016' => '四会市', - '449017' => '增城市', - '449018' => '廉江市', - '452702' => '宜州市', - '460003' => '儋州市', - '513002' => '万源市', - '513600' => '广安地区', - '513601' => '华蓥市', - '513621' => '岳池县', - '513622' => '广安县', - '513623' => '武胜县', - '513624' => '邻水县', - '513700' => '巴中地区', - '513701' => '巴中市', - '513721' => '通江县', - '513722' => '南江县', - '513723' => '平昌县', - '519008' => '阆中市', - '519009' => '资阳市', - '519010' => '彭州市', - '522401' => '毕节市', - '532701' => '思茅市', - '619001' => '兴平市', - '130625' => '徐水县', - '133003' => '深州市', - '139015' => '定州市', - '139016' => '涿州市', - '139017' => '安国市', - '139018' => '高碑店市', - '139019' => '鹿泉市', - '139020' => '丰南市', - '142702' => '河津市', - '142703' => '永济市', - '149003' => '潞城市', - '152105' => '根河市', - '152106' => '额尔古纳市', - '219016' => '凤城市', - '229012' => '德惠市', - '329025' => '江都市', - '329026' => '海门市', - '329027' => '扬中市', - '329028' => '姜堰市', - '331021' => '玉环县', - '339018' => '临海市', - '339019' => '富阳市', - '339020' => '温岭市', - '339021' => '余杭市', - '349002' => '明光市', - '359007' => '邵武市', - '359008' => '武夷山市', - '359009' => '建瓯市', - '359010' => '建阳市', - '359011' => '长乐市', - '362102' => '瑞金市', - '371421' => '陵县', - '379025' => '乐陵市', - '379026' => '禹城市', - '379027' => '安丘市', - '379028' => '昌邑市', - '379029' => '高密市', - '419013' => '邓州市', - '419014' => '林州市', - '419015' => '新密市', - '419016' => '荥阳市', - '419017' => '新郑市', - '419018' => '登封市', - '420321' => '郧县', - '421004' => '江陵区', - '421025' => '京山县', - '429012' => '石首市', - '429013' => '洪湖市', - '429014' => '钟祥市', - '429015' => '丹江口市', - '429016' => '大冶市', - '429017' => '宜城市', - '439009' => '资兴市', - '439010' => '沅江市', - '439011' => '武冈市', - '440508' => '金园区', - '440509' => '升平区', - '440510' => '河浦区', - '449019' => '英德市', - '449020' => '恩平市', - '449021' => '从化市', - '449022' => '澄海市', - '449023' => '高明市', - '449024' => '连州市', - '449025' => '雷州市', - '449026' => '乐昌市', - '449027' => '阳春市', - '449028' => '惠阳市', - '449029' => '吴川市', - '449030' => '兴宁市', - '449031' => '化州市', - '452503' => '桂平市', - '452504' => '北流市', - '460004' => '琼山市', - '510218' => '渝北区', - '510219' => '巴南区', - '512302' => '南川市', - '519011' => '简阳市', - '519012' => '邛崃市', - '519013' => '崇州市', - '532202' => '宣威市', - '610521' => '华县', - '619002' => '韩城市', - '619003' => '华阴市', - '130182' => '藁城市', - '130185' => '鹿泉市', - '130282' => '丰南市', - '210282' => '普兰店市', - '220181' => '九台市', - '220625' => '江源县', - '220724' => '扶余县', - '230181' => '阿城市', - '320283' => '锡山市', - '320482' => '金坛市', - '320483' => '武进市', - '320584' => '吴江市', - '320586' => '吴县市', - '320683' => '通州市', - '320881' => '宿迁市', - '320882' => '淮安市', - '321082' => '泰州市', - '321083' => '兴化市', - '321085' => '靖江市', - '321086' => '泰兴市', - '321087' => '姜堰市', - '321088' => '江都市', - '330181' => '萧山市', - '330183' => '富阳市', - '330184' => '余杭市', - '330283' => '奉化市', - '330682' => '上虞市', - '332581' => '龙泉市', - '332582' => '丽水市', - '350182' => '长乐市', - '350784' => '建阳市', - '352203' => '福鼎市', - '362103' => '南康市', - '370181' => '章丘市', - '370282' => '即墨市', - '370284' => '胶南市', - '370882' => '兖州市', - '371081' => '文登市', - '410881' => '济源市', - '420983' => '广水市', - '421082' => '钟祥市', - '440181' => '番禺市', - '440182' => '花都市', - '440183' => '增城市', - '440184' => '从化市', - '440582' => '潮阳市', - '440583' => '澄海市', - '440681' => '顺德市', - '440682' => '南海市', - '440683' => '三水市', - '440684' => '高明市', - '440782' => '新会市', - '441283' => '高要市', - '441381' => '惠阳市', - '452401' => '岑溪市', - '460005' => '文昌市', - '510281' => '永川市', - '510282' => '合川市', - '510283' => '江津市', - '511081' => '资阳市', - '511082' => '简阳市', - '517000' => '涪陵市', - '517002' => '枳城区', - '517003' => '李渡区', - '517021' => '垫江县', - '517022' => '丰都县', - '517023' => '武隆县', - '517081' => '南川市', - '522103' => '仁怀市', - '131181' => '冀州市', - '142302' => '离石市', - '142303' => '汾阳市', - '230182' => '双城市', - '320928' => '盐都县', - '320982' => '大丰市', - '321284' => '姜堰市', - '321321' => '宿豫县', - '330185' => '临安市', - '341223' => '涡阳县', - '341224' => '蒙城县', - '341227' => '利辛县', - '341281' => '亳州市', - '350822' => '永定县', - '412302' => '永城市', - '445323' => '云安县', - '460006' => '万宁市', - '510626' => '罗江县', - '511522' => '南溪县', - '610624' => '安塞县', - '610721' => '南郑县', - '642103' => '灵武市', - '652303' => '米泉市', - '342502' => '宁国市', - '452402' => '贺州市', - '460007' => '东方市', - '500221' => '长寿县', - '500222' => '綦江县', - '500223' => '潼南县', - '500224' => '铜梁县', - '500225' => '大足县', - '500226' => '荣昌县', - '500227' => '璧山县', - '500228' => '梁平县', - '500232' => '武隆县', - '500234' => '开县', - '500239' => '黔江土家族苗族自治县', - '500381' => '江津市', - '500382' => '合川市', - '500383' => '永川市', - '500384' => '南川市', - '513800' => '眉山地区', - '513821' => '眉山县', - '513822' => '仁寿县', - '513823' => '彭山县', - '513824' => '洪雅县', - '513825' => '丹棱县', - '513826' => '青神县', - '520321' => '遵义县', - '530321' => '马龙县', - '530327' => '寻甸回族彝族自治县', - '530328' => '沾益县', - '530421' => '江川县', - '360721' => '赣县', - '360782' => '南康市', - '513900' => '资阳地区', - '513901' => '资阳市', - '513902' => '简阳市', - '513921' => '安岳县', - '513922' => '乐至县', - '640321' => '中卫县', - '640322' => '中宁县', - '640382' => '灵武市', - '341400' => '巢湖市', - '341402' => '居巢区', - '341421' => '庐江县', - '341422' => '无为县', - '341423' => '含山县', - '341424' => '和县', - '341521' => '寿县', - '511721' => '达县', - '520222' => '盘县', - '610821' => '神木县', - '610823' => '横山县', - '361029' => '东乡县', - '361122' => '广丰县', - '371624' => '沾化县', - '371727' => '定陶县', - '511422' => '彭山县', - '511821' => '名山县', - '512081' => '简阳市', - '520114' => '小河区', - '520421' => '平坝县', - '530522' => '腾冲县', - '310119' => '南汇区', - '440903' => '茂港区', - '640421' => '海原县', - '451025' => '靖西县', - '451281' => '宜州市', - '620925' => '安西县', - '469003' => '儋州市', - '440116' => '萝岗区', - '542431' => '双湖县', - '630221' => '平安县', + '654001' => '奎屯市', + '654100' => '伊犁地区', + '654101' => '伊宁市', + '654121' => '伊宁县', + '654122' => '察布查尔锡伯自治县', + '654123' => '霍城县', + '654124' => '巩留县', + '654125' => '新源县', + '654126' => '昭苏县', + '654127' => '特克斯县', + '654128' => '尼勒克县', + '654222' => '乌苏县', ]; From d6bbba919c08ec594d565e93d09a08c9eb8d27dc Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sat, 22 Sep 2018 19:21:51 +0200 Subject: [PATCH 017/128] Simplify lots of boolean and array returns. --- src/Checker.php | 16 +++------------- src/Generator.php | 6 ++---- src/IdValidator.php | 30 +++++++++++++----------------- 3 files changed, 18 insertions(+), 34 deletions(-) diff --git a/src/Checker.php b/src/Checker.php index 9184a85..3b50e95 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -54,9 +54,7 @@ private function _checkIdArgument($id) */ private function _checkAddressCode($addressCode) { - $addressInfo = $this->_getAddressInfo($addressCode); - - return $addressInfo ? true : false; + return (bool) $this->_getAddressInfo($addressCode); } /** @@ -68,11 +66,7 @@ private function _checkAddressCode($addressCode) */ private function _checkOrderCode($orderCode) { - if (strlen($orderCode) == 3) { - return true; - } else { - return false; - } + return strlen($orderCode) == 3; } /** @@ -92,10 +86,6 @@ private function _checkBirthdayCode($birthdayCode) return false; } - if (!checkdate($month, $day, $year)) { - return false; - } - - return true; + return checkdate($month, $day, $year); } } diff --git a/src/Generator.php b/src/Generator.php index a27eac0..3869dc8 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -59,9 +59,8 @@ private function _generatorBirthdayCode($birthday) $month = $this->_getStrPad($this->_getRandInt(12, 1), 2, '0'); $day = $this->_getStrPad($this->_getRandInt(28, 1), 2, '0'); } - $birthdayCode = $year.$month.$day; - return $birthdayCode; + return $year.$month.$day; } /** @@ -136,8 +135,7 @@ private function _generatorCheckBit($body) // 生成校验码 $checkBit = (12 - ($bodySum % 11)) % 11; - $checkBit = $checkBit == 10 ? 'X' : $checkBit; - return $checkBit; + return $checkBit == 10 ? 'X' : $checkBit; } } diff --git a/src/IdValidator.php b/src/IdValidator.php index c10fa1a..0f1a67d 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -64,11 +64,7 @@ public function isValid($id) $checkBit = $this->_generatorCheckBit($code['body']); // 检查校验码 - if ($checkBit != $code['checkBit']) { - return false; - } else { - return true; - } + return $checkBit == $code['checkBit']; } /** @@ -86,18 +82,18 @@ public function getInfo($id) } $code = $this->_checkIdArgument($id); $addressInfo = $this->_getAddressInfo($code['addressCode']); - $info = []; - $info['addressCode'] = $code['addressCode']; - $info['abandoned'] = isset($this->_abandonedAddressCodeList[$code['addressCode']]) ? 1 : 0; - $info['address'] = is_array($addressInfo) ? implode($addressInfo) : ''; - $info['birthdayCode'] = date('Y-m-d', strtotime($code['birthdayCode'])); - $info['constellation'] = $this->_getConstellation($code['birthdayCode']); - $info['chineseZodiac'] = $this->_getChineseZodiac($code['birthdayCode']); - $info['sex'] = ($code['order'] % 2 === 0 ? 0 : 1); - $info['length'] = $code['type']; - $info['checkBit'] = $code['checkBit']; - - return $info; + + return [ + 'addressCode' => $code['addressCode'], + 'abandoned' => isset($this->_abandonedAddressCodeList[$code['addressCode']]) ? 1 : 0, + 'address' => is_array($addressInfo) ? implode($addressInfo) : '', + 'birthdayCode' => date('Y-m-d', strtotime($code['birthdayCode'])), + 'constellation' => $this->_getConstellation($code['birthdayCode']), + 'chineseZodiac' => $this->_getChineseZodiac($code['birthdayCode']), + 'sex' => ($code['order'] % 2 === 0 ? 0 : 1), + 'length' => $code['type'], + 'checkBit' => $code['checkBit'], + ]; } /** From 6ffda41d016b40bd26ed36dc3b6cd88837a32916 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sat, 22 Sep 2018 19:24:00 +0200 Subject: [PATCH 018/128] Fix code style. --- src/IdValidator.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/IdValidator.php b/src/IdValidator.php index 0f1a67d..54af7da 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -84,15 +84,15 @@ public function getInfo($id) $addressInfo = $this->_getAddressInfo($code['addressCode']); return [ - 'addressCode' => $code['addressCode'], - 'abandoned' => isset($this->_abandonedAddressCodeList[$code['addressCode']]) ? 1 : 0, - 'address' => is_array($addressInfo) ? implode($addressInfo) : '', - 'birthdayCode' => date('Y-m-d', strtotime($code['birthdayCode'])), + 'addressCode' => $code['addressCode'], + 'abandoned' => isset($this->_abandonedAddressCodeList[$code['addressCode']]) ? 1 : 0, + 'address' => is_array($addressInfo) ? implode($addressInfo) : '', + 'birthdayCode' => date('Y-m-d', strtotime($code['birthdayCode'])), 'constellation' => $this->_getConstellation($code['birthdayCode']), 'chineseZodiac' => $this->_getChineseZodiac($code['birthdayCode']), - 'sex' => ($code['order'] % 2 === 0 ? 0 : 1), - 'length' => $code['type'], - 'checkBit' => $code['checkBit'], + 'sex' => ($code['order'] % 2 === 0 ? 0 : 1), + 'length' => $code['type'], + 'checkBit' => $code['checkBit'], ]; } From 3cc22e5811379ba65f883d924d09b80e7e9be4e6 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sun, 23 Sep 2018 15:09:45 +0200 Subject: [PATCH 019/128] Simplify and clean-up Checker trait. --- src/Checker.php | 83 ++++++++++++++++++++++++++++++------------------- 1 file changed, 51 insertions(+), 32 deletions(-) diff --git a/src/Checker.php b/src/Checker.php index 3b50e95..729b54c 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -2,6 +2,8 @@ namespace Jxlwqq\IdValidator; +use DateTime; + /** * Trait Checker. */ @@ -18,31 +20,54 @@ private function _checkIdArgument($id) { $id = strtoupper($id); $length = strlen($id); - $code = false; - switch ($length) { - case 18: - $code = [ - 'body' => substr($id, 0, 17), - 'addressCode' => substr($id, 0, 6), - 'birthdayCode' => substr($id, 6, 8), - 'order' => substr($id, 14, 3), - 'checkBit' => substr($id, -1), - 'type' => 18, - ]; - break; - case 15: - $code = [ - 'body' => $id, - 'addressCode' => substr($id, 0, 6), - 'birthdayCode' => '19'.substr($id, 6, 6), - 'order' => substr($id, 12, 3), - 'checkBit' => '', - 'type' => 15, - ]; - break; + + if ($length === 15) { + return $this->_generateShortType($id); + } elseif ($length === 18) { + return $this->_generatelongType($id); } - return $code; + return false; + } + + /** + * Generation for the short type. + * + * @param string $id + * @return array + */ + private function _generateShortType($id) + { + preg_match('/(.{6})(.{6})(.{3})/', $id, $matches); + + return [ + 'body' => $matches[0], + 'addressCode' => $matches[1], + 'birthdayCode' => '19'.$matches[2], + 'order' => $matches[3], + 'checkBit' => '', + 'type' => 15, + ]; + } + + /** + * Generation for the long type. + * + * @param string $id + * @return array + */ + private function _generateLongType($id) + { + preg_match('/((.{6})(.{8})(.{3}))(.)/', $id, $matches); + + return [ + 'body' => $matches[1], + 'addressCode' => $matches[2], + 'birthdayCode' => $matches[3], + 'order' => $matches[4], + 'checkBit' => $matches[5], + 'type' => 18, + ]; } /** @@ -66,7 +91,7 @@ private function _checkAddressCode($addressCode) */ private function _checkOrderCode($orderCode) { - return strlen($orderCode) == 3; + return strlen($orderCode) === 3; } /** @@ -78,14 +103,8 @@ private function _checkOrderCode($orderCode) */ private function _checkBirthdayCode($birthdayCode) { - $year = intval(substr($birthdayCode, 0, 4)); - $month = intval(substr($birthdayCode, 4, 2)); - $day = intval(substr($birthdayCode, -2)); - - if ($year < 1800) { - return false; - } + $date = DateTime::createFromFormat('Ymd', $birthdayCode); - return checkdate($month, $day, $year); + return $date->format('Ymd') === $birthdayCode && (int) $date->format('Y') >= 1800; } } From 20f3691865253841e75aa599f60d643292e2f7e0 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sun, 23 Sep 2018 15:11:40 +0200 Subject: [PATCH 020/128] Fix CS. --- src/Checker.php | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/Checker.php b/src/Checker.php index 729b54c..1645370 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -34,6 +34,7 @@ private function _checkIdArgument($id) * Generation for the short type. * * @param string $id + * * @return array */ private function _generateShortType($id) @@ -41,12 +42,12 @@ private function _generateShortType($id) preg_match('/(.{6})(.{6})(.{3})/', $id, $matches); return [ - 'body' => $matches[0], - 'addressCode' => $matches[1], + 'body' => $matches[0], + 'addressCode' => $matches[1], 'birthdayCode' => '19'.$matches[2], - 'order' => $matches[3], - 'checkBit' => '', - 'type' => 15, + 'order' => $matches[3], + 'checkBit' => '', + 'type' => 15, ]; } @@ -54,6 +55,7 @@ private function _generateShortType($id) * Generation for the long type. * * @param string $id + * * @return array */ private function _generateLongType($id) @@ -61,12 +63,12 @@ private function _generateLongType($id) preg_match('/((.{6})(.{8})(.{3}))(.)/', $id, $matches); return [ - 'body' => $matches[1], - 'addressCode' => $matches[2], + 'body' => $matches[1], + 'addressCode' => $matches[2], 'birthdayCode' => $matches[3], - 'order' => $matches[4], - 'checkBit' => $matches[5], - 'type' => 18, + 'order' => $matches[4], + 'checkBit' => $matches[5], + 'type' => 18, ]; } From 611ac5dcacb41b6aca4c56cc14036fe467b0ced1 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sun, 23 Sep 2018 23:02:59 +0200 Subject: [PATCH 021/128] Extract date format. --- src/Checker.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Checker.php b/src/Checker.php index 1645370..98f6c1a 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -105,8 +105,8 @@ private function _checkOrderCode($orderCode) */ private function _checkBirthdayCode($birthdayCode) { - $date = DateTime::createFromFormat('Ymd', $birthdayCode); + $date = DateTime::createFromFormat($format = 'Ymd', $birthdayCode); - return $date->format('Ymd') === $birthdayCode && (int) $date->format('Y') >= 1800; + return $date->format($format) === $birthdayCode && (int) $date->format('Y') >= 1800; } } From 07fcbe96c87cceb45a21c046465c419b24b957d6 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sun, 23 Sep 2018 23:00:40 +0200 Subject: [PATCH 022/128] Simplify _getStrPad --- src/Helper.php | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index b0c5de9..d7cceef 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -128,19 +128,6 @@ private function _getRandInt($max, $min = 1) */ private function _getStrPad($str, $len = 2, $chr = '0', $right = false) { - $str = strval($str); - if (strlen($str) >= $len) { - return $str; - } else { - for ($i = 0, $j = $len - strlen($str); $i < $j; $i++) { - if ($right) { - $str = $str.$chr; - } else { - $str = $chr.$str; - } - } - - return $str; - } + return str_pad((string) $str, $len, $chr, $right === true ? STR_PAD_RIGHT : STR_PAD_LEFT); } } From 7fbc8e01b1d21d5acbf73f2baa6d87e47d6ecc35 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Sun, 23 Sep 2018 22:56:53 +0200 Subject: [PATCH 023/128] Simplify _generatorOrderCode --- src/Generator.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index 3869dc8..8e745cc 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -17,11 +17,9 @@ trait Generator private function _generatorOrderCode($sex) { $orderCode = $this->_getStrPad($this->_getRandInt(999, 1), 3, '1'); - if ($sex === 1) { - $orderCode = $orderCode % 2 === 0 ? $orderCode - 1 : $orderCode; - } - if ($sex === 0) { - $orderCode = $orderCode % 2 === 0 ? $orderCode : $orderCode - 1; + + if ((bool) $sex && $orderCode % 2 === 0) { + $orderCode -= 1; } return $orderCode; From d9ad2662406c8589b6e2b6fa207b0ee55845119f Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Mon, 24 Sep 2018 07:48:38 +0200 Subject: [PATCH 024/128] No need to cast to boolean. --- src/Generator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.php b/src/Generator.php index 8e745cc..f0589c9 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -18,7 +18,7 @@ private function _generatorOrderCode($sex) { $orderCode = $this->_getStrPad($this->_getRandInt(999, 1), 3, '1'); - if ((bool) $sex && $orderCode % 2 === 0) { + if ($sex && $orderCode % 2) { $orderCode -= 1; } From c968d1690662117c4bee1d118ee39557a27ff543 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 24 Sep 2018 17:46:31 +0800 Subject: [PATCH 025/128] Fix --- src/Generator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.php b/src/Generator.php index f0589c9..66521f3 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -18,7 +18,7 @@ private function _generatorOrderCode($sex) { $orderCode = $this->_getStrPad($this->_getRandInt(999, 1), 3, '1'); - if ($sex && $orderCode % 2) { + if ($sex !== $orderCode % 2) { $orderCode -= 1; } From 45fda2481ca2c30df6537fcc117f703a90d8f156 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 24 Sep 2018 18:17:30 +0800 Subject: [PATCH 026/128] Add Missing parameter comment --- src/Checker.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Checker.php b/src/Checker.php index 98f6c1a..4294c68 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -33,7 +33,7 @@ private function _checkIdArgument($id) /** * Generation for the short type. * - * @param string $id + * @param string $id 身份证号 * * @return array */ @@ -54,7 +54,7 @@ private function _generateShortType($id) /** * Generation for the long type. * - * @param string $id + * @param string $id 身份证号 * * @return array */ From 2c0cd32f0a36a264c7bbb7baebcfa89851d0a8d0 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 24 Sep 2018 18:20:07 +0800 Subject: [PATCH 027/128] Refactor --- src/Generator.php | 2 +- src/IdValidator.php | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index 66521f3..39d9e9f 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -18,7 +18,7 @@ private function _generatorOrderCode($sex) { $orderCode = $this->_getStrPad($this->_getRandInt(999, 1), 3, '1'); - if ($sex !== $orderCode % 2) { + if ($sex !== null && $sex !== $orderCode % 2) { $orderCode -= 1; } diff --git a/src/IdValidator.php b/src/IdValidator.php index 54af7da..709f6ac 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -99,14 +99,14 @@ public function getInfo($id) /** * * 生成假数据. * - * @param bool $eighteen 是否为 18 位 - * @param null|string $address 地址 - * @param null|string|int $birthday 出生日期 - * @param null|int $sex 性别(1为男性,0位女性) + * @param bool $isEighteen 是否为 18 位 + * @param null|string $address 地址 + * @param null|string|int $birthday 出生日期 + * @param null|int $sex 性别(1为男性,0位女性) * * @return string */ - public function fakeId($eighteen = true, $address = null, $birthday = null, $sex = null) + public function fakeId($isEighteen = true, $address = null, $birthday = null, $sex = null) { // 生成地址码 $addressCode = $this->_generatorAddressCode($address); @@ -117,7 +117,7 @@ public function fakeId($eighteen = true, $address = null, $birthday = null, $sex // 顺序码 $orderCode = $this->_generatorOrderCode($sex); - if (!$eighteen) { + if (!$isEighteen) { return $addressCode.substr($birthdayCode, 2).$orderCode; } From d3a45b9b1928a0eefcf2a3ece927aa3d97effe29 Mon Sep 17 00:00:00 2001 From: Samuel NELA Date: Mon, 24 Sep 2018 21:35:14 +0200 Subject: [PATCH 028/128] Choosing last PHP versions to test against --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 976636b..ebbf2d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,8 @@ language: php php: - '5.6' - '7.0' + - '7.1' + - '7.2' matrix: fast_finish: true From b39af85d59e9596c3fdf27cb494066e90ec18f67 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Wed, 26 Sep 2018 19:01:09 +0200 Subject: [PATCH 029/128] No need to pad. --- src/Generator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.php b/src/Generator.php index 39d9e9f..e756aa7 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -16,7 +16,7 @@ trait Generator */ private function _generatorOrderCode($sex) { - $orderCode = $this->_getStrPad($this->_getRandInt(999, 1), 3, '1'); + $orderCode = $this->_getRandInt(999, 111); if ($sex !== null && $sex !== $orderCode % 2) { $orderCode -= 1; From 31fd5f533bac0fcd23dc846fd76a261b99825ac6 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 27 Sep 2018 18:45:17 +0800 Subject: [PATCH 030/128] Refactor --- src/IdValidator.php | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/src/IdValidator.php b/src/IdValidator.php index 709f6ac..0494e75 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -40,18 +40,8 @@ public function isValid($id) return false; } - // 验证:地址码 - if (!$this->_checkAddressCode($code['addressCode'])) { - return false; - } - - // 验证:出生日期码 - if (!$this->_checkBirthdayCode($code['birthdayCode'])) { - return false; - } - - // 验证:顺序码 - if (!$this->_checkOrderCode($code['order'])) { + // 分别验证:*地址码*、*出生日期码*和*顺序码* + if (!$this->_checkAddressCode($code['addressCode']) || !$this->_checkBirthdayCode($code['birthdayCode']) || !$this->_checkOrderCode($code['order'])) { return false; } From c6bc39fef9f564bd84b79ee2038be541a463a6e0 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 27 Sep 2018 20:12:44 +0800 Subject: [PATCH 031/128] Refactor --- src/Generator.php | 22 +++++++++++++++------- src/Helper.php | 2 +- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index e756aa7..dab1ebe 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -80,27 +80,23 @@ private function _generatorAddressCode($address) return $addressCode; } - $keys = array_keys($this->_addressCodeList); if ($addressCode) { // 省级 if (substr($addressCode, 2, 4) == '0000') { $provinceCode = substr($addressCode, 0, 2); $pattern = '/^'.$provinceCode.'\d{2}[^0]{2}$/'; - $result = preg_grep($pattern, $keys); - $addressCode = $result[array_rand($result)]; + $addressCode= $this->_get_rand_address_code($pattern); } // 市级 if (substr($addressCode, 4, 2) == '00') { $cityCode = substr($addressCode, 0, 4); $pattern = '/^'.$cityCode.'[^0]{2}$/'; - $result = preg_grep($pattern, $keys); - $addressCode = $result[array_rand($result)]; + $addressCode = $this->_get_rand_address_code($pattern); } } else { $pattern = '/\d{4}[^0]{2}$/'; - $result = preg_grep($pattern, $keys); - $addressCode = $result[array_rand($result)]; + $addressCode = $this->_get_rand_address_code($pattern); } return $addressCode; @@ -136,4 +132,16 @@ private function _generatorCheckBit($body) return $checkBit == 10 ? 'X' : $checkBit; } + + /** + * @param $pattern + * @param $keys + * @return array + */ + private function _get_rand_address_code($pattern) + { + $keys = array_keys($this->_addressCodeList); + $result = preg_grep($pattern, $keys); + return $result[array_rand($result)]; + } } diff --git a/src/Helper.php b/src/Helper.php index d7cceef..38306b2 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -60,7 +60,7 @@ private function _getConstellation($birthdayCode) $day = substr($birthdayCode, 6, 2); // 1月份与12月份特殊处理 - if (($month == '01' && $day < 20) || ($month == '12' && $day > 21)) { + if (($month == '01' && $day < '20') || ($month == '12' && $day > '21')) { return $this->_constellationList['12']['name']; } elseif ($month == '01') { return $this->_constellationList['01']['name']; From ba60fcabfffe93f841aa3bd543fa90db53da6d72 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 27 Sep 2018 12:21:04 +0000 Subject: [PATCH 032/128] Apply fixes from StyleCI --- src/Generator.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index dab1ebe..280dd4e 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -80,13 +80,12 @@ private function _generatorAddressCode($address) return $addressCode; } - if ($addressCode) { // 省级 if (substr($addressCode, 2, 4) == '0000') { $provinceCode = substr($addressCode, 0, 2); $pattern = '/^'.$provinceCode.'\d{2}[^0]{2}$/'; - $addressCode= $this->_get_rand_address_code($pattern); + $addressCode = $this->_get_rand_address_code($pattern); } // 市级 if (substr($addressCode, 4, 2) == '00') { @@ -136,12 +135,14 @@ private function _generatorCheckBit($body) /** * @param $pattern * @param $keys + * * @return array */ private function _get_rand_address_code($pattern) { $keys = array_keys($this->_addressCodeList); $result = preg_grep($pattern, $keys); + return $result[array_rand($result)]; } } From 9ae3e61afcd36315b018614a808762a73fc02a12 Mon Sep 17 00:00:00 2001 From: Samuel NELA Date: Thu, 27 Sep 2018 13:15:39 +0200 Subject: [PATCH 033/128] Remove setUp template method --- tests/IdValidatorTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 347c1de..2206af5 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -20,8 +20,6 @@ class IdValidatorTest extends TestCase protected function setUp() { - parent::setUp(); - $this->idValidator = new IdValidator(); } From 1897fbb5b3b9951916619a3fa227d5b482be1116 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 27 Sep 2018 22:05:46 +0800 Subject: [PATCH 034/128] Add test cases --- tests/IdValidatorTest.php | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 2206af5..dfb111f 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -25,10 +25,13 @@ protected function setUp() public function testIsValid() { + $this->assertFalse($this->idValidator->isValid('44030819990110')); // 号码位数不合法 + $this->assertFalse($this->idValidator->isValid('111111199901101512')); // 地址码不合法 + $this->assertFalse($this->idValidator->isValid('440308199902301512')); // 出生日期码错不合法 + $this->assertFalse($this->idValidator->isValid('440308199901101513')); // 验证码不合法 + $this->assertFalse($this->idValidator->isValid('610104620932690')); // 验证码不合法 $this->assertTrue($this->idValidator->isValid('440308199901101512')); - $this->assertFalse($this->idValidator->isValid('440308199901101513')); $this->assertTrue($this->idValidator->isValid('610104620927690')); - $this->assertFalse($this->idValidator->isValid('610104620932690')); } public function testFakeId() @@ -36,8 +39,13 @@ public function testFakeId() $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId())); $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(false))); $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '上海市', '2000', 1))); - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '江苏省', '20000101', 1))); - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '台湾省', '20131010', 0))); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '黄浦区', '2001', 0))); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '江苏省', '200001', 1))); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '南京市', '2002', 0))); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '秦淮区', '2003', 0))); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '台湾省', '20181010', 0))); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '香港特别行政区', '20181010', 1))); + $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '澳门特别行政区', '20181111', 0))); } public function testGetInfo() From b51dbf786f31aeff29ed6812a8355b6a4d53bc4b Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 27 Sep 2018 22:43:03 +0800 Subject: [PATCH 035/128] Fix --- src/Generator.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index 280dd4e..c59065d 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -85,17 +85,17 @@ private function _generatorAddressCode($address) if (substr($addressCode, 2, 4) == '0000') { $provinceCode = substr($addressCode, 0, 2); $pattern = '/^'.$provinceCode.'\d{2}[^0]{2}$/'; - $addressCode = $this->_get_rand_address_code($pattern); + $addressCode = $this->_getRandAddressCode($pattern); } // 市级 if (substr($addressCode, 4, 2) == '00') { $cityCode = substr($addressCode, 0, 4); $pattern = '/^'.$cityCode.'[^0]{2}$/'; - $addressCode = $this->_get_rand_address_code($pattern); + $addressCode = $this->_getRandAddressCode($pattern); } } else { $pattern = '/\d{4}[^0]{2}$/'; - $addressCode = $this->_get_rand_address_code($pattern); + $addressCode = $this->_getRandAddressCode($pattern); } return $addressCode; @@ -133,12 +133,12 @@ private function _generatorCheckBit($body) } /** - * @param $pattern - * @param $keys + * 获取随机地址码. + * @param string $pattern 模式 * - * @return array + * @return string */ - private function _get_rand_address_code($pattern) + private function _getRandAddressCode($pattern) { $keys = array_keys($this->_addressCodeList); $result = preg_grep($pattern, $keys); From efb8125b8e1ccb61043970797f6b92c42f5e50ff Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 27 Sep 2018 22:48:26 +0800 Subject: [PATCH 036/128] cs fixer --- src/Generator.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Generator.php b/src/Generator.php index c59065d..c63e196 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -134,6 +134,7 @@ private function _generatorCheckBit($body) /** * 获取随机地址码. + * * @param string $pattern 模式 * * @return string From 25598f973004722932b1c8edb6c90e9e8f6d1c3d Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 28 Sep 2018 21:40:24 +0800 Subject: [PATCH 037/128] Refactor _generatorAddressCode method --- src/Generator.php | 60 +++++++++++++++++++++++++++++++---------------- 1 file changed, 40 insertions(+), 20 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index c63e196..89dcffd 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -70,34 +70,25 @@ private function _generatorBirthdayCode($birthday) */ private function _generatorAddressCode($address) { - $addressCode = ''; - if ($address) { - $addressCode = array_search($address, $this->_addressCodeList); - } - - if ($addressCode && substr($addressCode, 0, 1) == 8) { - // 台湾省、香港特别行政区和澳门特别行政区(8字开头)暂缺地市和区县信息 - return $addressCode; - } - if ($addressCode) { - // 省级 - if (substr($addressCode, 2, 4) == '0000') { + $addressCode = array_search($address, $this->_addressCodeList); + $classification = $this->_addressCodeClassification($addressCode); + switch ($classification) { + case 'province': $provinceCode = substr($addressCode, 0, 2); $pattern = '/^'.$provinceCode.'\d{2}[^0]{2}$/'; $addressCode = $this->_getRandAddressCode($pattern); - } - // 市级 - if (substr($addressCode, 4, 2) == '00') { + break; + case 'city': $cityCode = substr($addressCode, 0, 4); $pattern = '/^'.$cityCode.'[^0]{2}$/'; $addressCode = $this->_getRandAddressCode($pattern); - } - } else { - $pattern = '/\d{4}[^0]{2}$/'; - $addressCode = $this->_getRandAddressCode($pattern); + break; + case 'random': + $pattern = '/\d{4}[^0]{2}$/'; + $addressCode = $this->_getRandAddressCode($pattern); + break; } - return $addressCode; } @@ -132,6 +123,35 @@ private function _generatorCheckBit($body) return $checkBit == 10 ? 'X' : $checkBit; } + /** + * 地址码分类. + * + * @param $addressCode + * + * @return string + */ + protected function _addressCodeClassification($addressCode) + { + if (!$addressCode) { + // 全国 + return 'country'; + } + if (substr($addressCode, 0, 1) == 8) { + // 港澳台 + return 'special'; + } + if (substr($addressCode, 2, 4) == '0000') { + // 省级 + return 'province'; + } + if (substr($addressCode, 4, 2) == '00') { + // 市级 + return 'city'; + } + // 县级 + return 'district'; + } + /** * 获取随机地址码. * From 97598687ee34597b4faa9f7e46baece97be7bd38 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 28 Sep 2018 21:42:31 +0800 Subject: [PATCH 038/128] Fix --- src/Generator.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index 89dcffd..99be112 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -74,6 +74,10 @@ private function _generatorAddressCode($address) $addressCode = array_search($address, $this->_addressCodeList); $classification = $this->_addressCodeClassification($addressCode); switch ($classification) { + case 'country': + $pattern = '/\d{4}[^0]{2}$/'; + $addressCode = $this->_getRandAddressCode($pattern); + break; case 'province': $provinceCode = substr($addressCode, 0, 2); $pattern = '/^'.$provinceCode.'\d{2}[^0]{2}$/'; @@ -84,10 +88,6 @@ private function _generatorAddressCode($address) $pattern = '/^'.$cityCode.'[^0]{2}$/'; $addressCode = $this->_getRandAddressCode($pattern); break; - case 'random': - $pattern = '/\d{4}[^0]{2}$/'; - $addressCode = $this->_getRandAddressCode($pattern); - break; } return $addressCode; } From dc530a6740fcd9e81e8b914bfe5a8c1c457ffaf1 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 28 Sep 2018 21:43:40 +0800 Subject: [PATCH 039/128] cs fixer --- src/Generator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.php b/src/Generator.php index 99be112..58b0ec8 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -70,7 +70,6 @@ private function _generatorBirthdayCode($birthday) */ private function _generatorAddressCode($address) { - $addressCode = array_search($address, $this->_addressCodeList); $classification = $this->_addressCodeClassification($addressCode); switch ($classification) { @@ -89,6 +88,7 @@ private function _generatorAddressCode($address) $addressCode = $this->_getRandAddressCode($pattern); break; } + return $addressCode; } From 3fd1210d1a4454f222370a93770cfd217ea22106 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 28 Sep 2018 22:06:55 +0800 Subject: [PATCH 040/128] Refactor _getConstellation & _getChineseZodiac methods --- data/chineseZodiac.php | 19 ----------- data/constellation.php | 59 --------------------------------- src/Helper.php | 70 +++++++++++++++++++++++---------------- src/IdValidator.php | 4 --- tests/IdValidatorTest.php | 2 +- 5 files changed, 43 insertions(+), 111 deletions(-) delete mode 100644 data/chineseZodiac.php delete mode 100644 data/constellation.php diff --git a/data/chineseZodiac.php b/data/chineseZodiac.php deleted file mode 100644 index 53dbffd..0000000 --- a/data/chineseZodiac.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'name' => '水瓶座', - 'start_date' => '01-20', - 'end_date' => '02-18', - ], - '02' => [ - 'name' => '双鱼座', - 'start_date' => '02-19', - 'end_date' => '03-20', - ], - '03' => [ - 'name' => '白羊座', - 'start_date' => '03-21', - 'end_date' => '04-19', - ], - '04' => [ - 'name' => '金牛座', - 'start_date' => '04-20', - 'end_date' => '05-20', - ], '05' => [ - 'name' => '双子座', - 'start_date' => '05-21', - 'end_date' => '06-21', - ], '06' => [ - 'name' => '巨蟹座', - 'start_date' => '06-22', - 'end_date' => '07-22', - ], '07' => [ - 'name' => '狮子座', - 'start_date' => '07-23', - 'end_date' => '08-22', - ], '08' => [ - 'name' => '处女座', - 'start_date' => '08-23', - 'end_date' => '09-22', - ], '09' => [ - 'name' => '天秤座', - 'start_date' => '09-23', - 'end_date' => '10-23', - ], '10' => [ - 'name' => '天蝎座', - 'start_date' => '10-24', - 'end_date' => '11-22', - ], '11' => [ - 'name' => '射手座', - 'start_date' => '11-23', - 'end_date' => '12-21', - ], '12' => [ - 'name' => '水瓶座', - 'start_date' => '12-22', - 'end_date' => '01-19', - ], -]; diff --git a/src/Helper.php b/src/Helper.php index 38306b2..9a24f36 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -54,36 +54,36 @@ private function _getAddressInfo($addressCode) */ private function _getConstellation($birthdayCode) { - $time = strtotime($birthdayCode); - $year = substr($birthdayCode, 0, 4); $month = substr($birthdayCode, 4, 2); $day = substr($birthdayCode, 6, 2); - - // 1月份与12月份特殊处理 - if (($month == '01' && $day < '20') || ($month == '12' && $day > '21')) { - return $this->_constellationList['12']['name']; - } elseif ($month == '01') { - return $this->_constellationList['01']['name']; - } elseif ($month == '12') { - return $this->_constellationList['12']['name']; - } - - $startDate = $year.'-'.$this->_constellationList[$month]['start_date']; - $endDate = $year.'-'.$this->_constellationList[$month]['end_date']; - if (strtotime($startDate) <= $time && strtotime($endDate) >= $time) { - return $this->_constellationList[$month]['name']; + switch ($month) { + case 1: + return $day >= 21 ? '水瓶座' : '摩羯座'; + case 2: + return $day >= 20 ? '双鱼座' : '水瓶座'; + case 3: + return $day >= 21 ? '白羊座' : '双鱼座'; + case 4: + return $day >= 21 ? '金牛座' : '白羊座'; + case 5: + return $day >= 22 ? '双子座' : '金牛座'; + case 6: + return $day >= 23 ? '巨蟹座' : '双子座'; + case 7: + return $day >= 24 ? '狮子座' : '巨蟹座'; + case 8: + return $day >= 24 ? '处女座' : '狮子座'; + case 9: + return $day >= 24 ? '天秤座' : '处女座'; + case 10: + return $day >= 24 ? '天蝎座' : '天秤座'; + case 11: + return $day >= 23 ? '射手座' : '天蝎座'; + case 12: + return $day >= 22 ? '摩羯座' : '射手座'; + default: + return ''; } - - $key = (int) $month - 1; // 1月份以特殊处理 - $key = strlen($key) == 1 ? $this->_getStrPad($key) : (string) $key; - - $startDate = $year.'-'.$this->_constellationList[$key]['start_date']; - $endDate = $year.'-'.$this->_constellationList[$key]['end_date']; - if (strtotime($startDate) <= $time && strtotime($endDate) >= $time) { - return $this->_constellationList[$key]['name']; - } - - return ''; } /** @@ -95,12 +95,26 @@ private function _getConstellation($birthdayCode) */ private function _getChineseZodiac($birthdayCode) { + $chineseZodiacList = [ + '子鼠', + '丑牛', + '寅虎', + '卯兔', + '辰龙', + '巳蛇', + '午马', + '未羊', + '申猴', + '酉鸡', + '戌狗', + '亥猪', + ]; $start = 1900; // 子鼠 $end = substr($birthdayCode, 0, 4); $key = ($end - $start) % 12; $key = $key >= 0 ? $key : ($key + 12); - return $this->_chineseZodiacList[$key]; + return $chineseZodiacList[$key]; } /** diff --git a/src/IdValidator.php b/src/IdValidator.php index 0494e75..dd4bd65 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -11,8 +11,6 @@ class IdValidator private $_addressCodeList = []; // 现行地址码数据 private $_abandonedAddressCodeList = []; // 废弃地址码数据 - private $_constellationList = []; - private $_chineseZodiacList = []; /** * IdValidator constructor. @@ -21,8 +19,6 @@ public function __construct() { $this->_addressCodeList = include __DIR__.'/../data/addressCode.php'; $this->_abandonedAddressCodeList = include __DIR__.'/../data/abandonedAddressCode.php'; - $this->_constellationList = include __DIR__.'/../data/constellation.php'; - $this->_chineseZodiacList = include __DIR__.'/../data/chineseZodiac.php'; } /** diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index dfb111f..606e5c3 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -56,7 +56,7 @@ public function testGetInfo() 'abandoned' => 0, 'address' => '广东省深圳市盐田区', 'birthdayCode' => '1999-01-10', - 'constellation' => '水瓶座', + 'constellation' => '摩羯座', 'chineseZodiac' => '卯兔', 'sex' => 1, 'length' => 18, From 318beac1542549a1100ab9a38ecbc60e4abbc7fb Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 28 Sep 2018 22:12:12 +0800 Subject: [PATCH 041/128] Refactor --- src/Helper.php | 49 +++++++++++++++++++++++++++++++------------------ 1 file changed, 31 insertions(+), 18 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 9a24f36..9b18e7e 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -58,32 +58,45 @@ private function _getConstellation($birthdayCode) $day = substr($birthdayCode, 6, 2); switch ($month) { case 1: - return $day >= 21 ? '水瓶座' : '摩羯座'; + $constellation = $day >= 21 ? '水瓶座' : '摩羯座'; + break; case 2: - return $day >= 20 ? '双鱼座' : '水瓶座'; + $constellation = $day >= 20 ? '双鱼座' : '水瓶座'; + break; case 3: - return $day >= 21 ? '白羊座' : '双鱼座'; + $constellation = $day >= 21 ? '白羊座' : '双鱼座'; + break; case 4: - return $day >= 21 ? '金牛座' : '白羊座'; + $constellation = $day >= 21 ? '金牛座' : '白羊座'; + break; case 5: - return $day >= 22 ? '双子座' : '金牛座'; + $constellation = $day >= 22 ? '双子座' : '金牛座'; + break; case 6: - return $day >= 23 ? '巨蟹座' : '双子座'; + $constellation = $day >= 23 ? '巨蟹座' : '双子座'; + break; case 7: - return $day >= 24 ? '狮子座' : '巨蟹座'; + $constellation = $day >= 24 ? '狮子座' : '巨蟹座'; + break; case 8: - return $day >= 24 ? '处女座' : '狮子座'; + $constellation = $day >= 24 ? '处女座' : '狮子座'; + break; case 9: - return $day >= 24 ? '天秤座' : '处女座'; + $constellation = $day >= 24 ? '天秤座' : '处女座'; + break; case 10: - return $day >= 24 ? '天蝎座' : '天秤座'; + $constellation = $day >= 24 ? '天蝎座' : '天秤座'; + break; case 11: - return $day >= 23 ? '射手座' : '天蝎座'; + $constellation = $day >= 23 ? '射手座' : '天蝎座'; + break; case 12: - return $day >= 22 ? '摩羯座' : '射手座'; + $constellation = $day >= 22 ? '摩羯座' : '射手座'; + break; default: - return ''; + $constellation = ''; } + return $constellation; } /** @@ -133,15 +146,15 @@ private function _getRandInt($max, $min = 1) /** * 获取数字补位. * - * @param string|int $str 字符串 - * @param int $len 长度 - * @param string $chr 补位值 - * @param bool $right 左右 + * @param string|int $str 字符串 + * @param int $len 长度 + * @param string $chr 补位值 + * @param bool $right 左右 * * @return string */ private function _getStrPad($str, $len = 2, $chr = '0', $right = false) { - return str_pad((string) $str, $len, $chr, $right === true ? STR_PAD_RIGHT : STR_PAD_LEFT); + return str_pad((string)$str, $len, $chr, $right === true ? STR_PAD_RIGHT : STR_PAD_LEFT); } } From 2c5bf90fd5f1f6eaaa2d49ce3e38530e94d0142f Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 28 Sep 2018 22:24:57 +0800 Subject: [PATCH 042/128] _getAddressInfo --- src/Generator.php | 2 +- src/Helper.php | 44 ++++++++++++++++++++++++-------------------- 2 files changed, 25 insertions(+), 21 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index 58b0ec8..1c9f90b 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -130,7 +130,7 @@ private function _generatorCheckBit($body) * * @return string */ - protected function _addressCodeClassification($addressCode) + private function _addressCodeClassification($addressCode) { if (!$addressCode) { // 全国 diff --git a/src/Helper.php b/src/Helper.php index 9b18e7e..9363462 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -16,33 +16,37 @@ trait Helper */ private function _getAddressInfo($addressCode) { - $addressInfo = []; - $firstCharacter = substr($addressCode, 0, 1); // 用于判断是否是港澳台居民居住证(8字开头) + $addressInfo = [ + 'province' => '', + 'city' => '', + 'district' => '', + ]; // 省级信息 $provinceAddressCode = substr($addressCode, 0, 2).'0000'; - $addressInfo['province'] = isset($this->_addressCodeList[$provinceAddressCode]) ? $this->_addressCodeList[$provinceAddressCode] : (isset($this->_abandonedAddressCodeList[$provinceAddressCode]) ? $this->_abandonedAddressCodeList[$provinceAddressCode] : ''); - - // 市级信息(港澳台居民居住证无市级信息) - if ($firstCharacter != '8') { - $cityAddressCode = substr($addressCode, 0, 4).'00'; - $addressInfo['city'] = isset($this->_addressCodeList[$cityAddressCode]) ? $this->_addressCodeList[$cityAddressCode] : (isset($this->_abandonedAddressCodeList[$cityAddressCode]) ? $this->_abandonedAddressCodeList[$cityAddressCode] : ''); - } else { - $addressInfo['city'] = ''; - } + $addressInfo['province'] = $this->_getAddress($provinceAddressCode); - // 县级信息(港澳台居民居住证无县级信息) - if ($firstCharacter != '8') { - $addressInfo['district'] = isset($this->_addressCodeList[$addressCode]) ? $this->_addressCodeList[$addressCode] : (isset($this->_abandonedAddressCodeList[$addressCode]) ? $this->_abandonedAddressCodeList[$addressCode] : ''); - } else { - $addressInfo['district'] = ''; - } + $firstCharacter = substr($addressCode, 0, 1); // 用于判断是否是港澳台居民居住证(8字开头) - if (empty($addressInfo)) { - return false; - } else { + // 港澳台居民居住证无市级、县级信息 + if ($firstCharacter == '8') { return $addressInfo; } + + // 市级信息 + $cityAddressCode = substr($addressCode, 0, 4).'00'; + $addressInfo['city'] = $this->_getAddress($cityAddressCode); + + // 县级信息 + $addressInfo['district'] = $this->_getAddress($addressCode); + + return empty($addressInfo) ? false : $addressInfo; + } + + + private function _getAddress($addressCode) + { + return isset($this->_addressCodeList[$addressCode]) ? $this->_addressCodeList[$addressCode] : (isset($this->_abandonedAddressCodeList[$addressCode]) ? $this->_abandonedAddressCodeList[$addressCode] : ''); } /** From 39ded53063408911ef874ec38f8e284787c8cc3e Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 28 Sep 2018 22:40:56 +0800 Subject: [PATCH 043/128] Refactor --- data/chineseZodiac.php | 19 ++++++++++ data/constellation.php | 59 ++++++++++++++++++++++++++++++ src/Helper.php | 83 +++++++++++++++--------------------------- 3 files changed, 107 insertions(+), 54 deletions(-) create mode 100644 data/chineseZodiac.php create mode 100644 data/constellation.php diff --git a/data/chineseZodiac.php b/data/chineseZodiac.php new file mode 100644 index 0000000..53dbffd --- /dev/null +++ b/data/chineseZodiac.php @@ -0,0 +1,19 @@ + [ + 'name' => '水瓶座', + 'start_date' => '01-20', + 'end_date' => '02-18', + ], + '02' => [ + 'name' => '双鱼座', + 'start_date' => '02-19', + 'end_date' => '03-20', + ], + '03' => [ + 'name' => '白羊座', + 'start_date' => '03-21', + 'end_date' => '04-19', + ], + '04' => [ + 'name' => '金牛座', + 'start_date' => '04-20', + 'end_date' => '05-20', + ], '05' => [ + 'name' => '双子座', + 'start_date' => '05-21', + 'end_date' => '06-21', + ], '06' => [ + 'name' => '巨蟹座', + 'start_date' => '06-22', + 'end_date' => '07-22', + ], '07' => [ + 'name' => '狮子座', + 'start_date' => '07-23', + 'end_date' => '08-22', + ], '08' => [ + 'name' => '处女座', + 'start_date' => '08-23', + 'end_date' => '09-22', + ], '09' => [ + 'name' => '天秤座', + 'start_date' => '09-23', + 'end_date' => '10-23', + ], '10' => [ + 'name' => '天蝎座', + 'start_date' => '10-24', + 'end_date' => '11-22', + ], '11' => [ + 'name' => '射手座', + 'start_date' => '11-23', + 'end_date' => '12-21', + ], '12' => [ + 'name' => '摩羯座', + 'start_date' => '12-22', + 'end_date' => '01-19', + ], +]; diff --git a/src/Helper.php b/src/Helper.php index 9363462..1a1cca7 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -58,49 +58,37 @@ private function _getAddress($addressCode) */ private function _getConstellation($birthdayCode) { + $constellationList = require __DIR__.'/../data/constellation.php'; + $time = strtotime($birthdayCode); + $year = substr($birthdayCode, 0, 4); $month = substr($birthdayCode, 4, 2); $day = substr($birthdayCode, 6, 2); - switch ($month) { - case 1: - $constellation = $day >= 21 ? '水瓶座' : '摩羯座'; - break; - case 2: - $constellation = $day >= 20 ? '双鱼座' : '水瓶座'; - break; - case 3: - $constellation = $day >= 21 ? '白羊座' : '双鱼座'; - break; - case 4: - $constellation = $day >= 21 ? '金牛座' : '白羊座'; - break; - case 5: - $constellation = $day >= 22 ? '双子座' : '金牛座'; - break; - case 6: - $constellation = $day >= 23 ? '巨蟹座' : '双子座'; - break; - case 7: - $constellation = $day >= 24 ? '狮子座' : '巨蟹座'; - break; - case 8: - $constellation = $day >= 24 ? '处女座' : '狮子座'; - break; - case 9: - $constellation = $day >= 24 ? '天秤座' : '处女座'; - break; - case 10: - $constellation = $day >= 24 ? '天蝎座' : '天秤座'; - break; - case 11: - $constellation = $day >= 23 ? '射手座' : '天蝎座'; - break; - case 12: - $constellation = $day >= 22 ? '摩羯座' : '射手座'; - break; - default: - $constellation = ''; + + // 1月份与12月份特殊处理 + if (($month == '01' && $day < '20') || ($month == '12' && $day > '21')) { + return $constellationList['12']['name']; + } elseif ($month == '01') { + return $constellationList['01']['name']; + } elseif ($month == '12') { + return $constellationList['12']['name']; + } + + $startDate = $year.'-'.$constellationList[$month]['start_date']; + $endDate = $year.'-'.$constellationList[$month]['end_date']; + if (strtotime($startDate) <= $time && strtotime($endDate) >= $time) { + return $constellationList[$month]['name']; + } + + $key = (int)$month - 1; // 1月份已特殊处理 + $key = strlen($key) == 1 ? $this->_getStrPad($key) : (string)$key; + + $startDate = $year.'-'.$constellationList[$key]['start_date']; + $endDate = $year.'-'.$constellationList[$key]['end_date']; + if (strtotime($startDate) <= $time && strtotime($endDate) >= $time) { + return $constellationList[$key]['name']; } - return $constellation; + + return ''; } /** @@ -112,20 +100,7 @@ private function _getConstellation($birthdayCode) */ private function _getChineseZodiac($birthdayCode) { - $chineseZodiacList = [ - '子鼠', - '丑牛', - '寅虎', - '卯兔', - '辰龙', - '巳蛇', - '午马', - '未羊', - '申猴', - '酉鸡', - '戌狗', - '亥猪', - ]; + $chineseZodiacList = require __DIR__.'/../data/chineseZodiac.php'; $start = 1900; // 子鼠 $end = substr($birthdayCode, 0, 4); $key = ($end - $start) % 12; From 89d0c3a0f0bb263dd32af39dee2776fa9711b0f4 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 28 Sep 2018 14:41:20 +0000 Subject: [PATCH 044/128] Apply fixes from StyleCI --- src/Helper.php | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 1a1cca7..47b6a44 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -18,7 +18,7 @@ private function _getAddressInfo($addressCode) { $addressInfo = [ 'province' => '', - 'city' => '', + 'city' => '', 'district' => '', ]; @@ -43,7 +43,6 @@ private function _getAddressInfo($addressCode) return empty($addressInfo) ? false : $addressInfo; } - private function _getAddress($addressCode) { return isset($this->_addressCodeList[$addressCode]) ? $this->_addressCodeList[$addressCode] : (isset($this->_abandonedAddressCodeList[$addressCode]) ? $this->_abandonedAddressCodeList[$addressCode] : ''); @@ -79,8 +78,8 @@ private function _getConstellation($birthdayCode) return $constellationList[$month]['name']; } - $key = (int)$month - 1; // 1月份已特殊处理 - $key = strlen($key) == 1 ? $this->_getStrPad($key) : (string)$key; + $key = (int) $month - 1; // 1月份已特殊处理 + $key = strlen($key) == 1 ? $this->_getStrPad($key) : (string) $key; $startDate = $year.'-'.$constellationList[$key]['start_date']; $endDate = $year.'-'.$constellationList[$key]['end_date']; @@ -125,15 +124,15 @@ private function _getRandInt($max, $min = 1) /** * 获取数字补位. * - * @param string|int $str 字符串 - * @param int $len 长度 - * @param string $chr 补位值 - * @param bool $right 左右 + * @param string|int $str 字符串 + * @param int $len 长度 + * @param string $chr 补位值 + * @param bool $right 左右 * * @return string */ private function _getStrPad($str, $len = 2, $chr = '0', $right = false) { - return str_pad((string)$str, $len, $chr, $right === true ? STR_PAD_RIGHT : STR_PAD_LEFT); + return str_pad((string) $str, $len, $chr, $right === true ? STR_PAD_RIGHT : STR_PAD_LEFT); } } From bbd8c6889e51d5d9d50b04aa4ad7b3a7d920d3fe Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 28 Sep 2018 22:52:42 +0800 Subject: [PATCH 045/128] File is being conditionally included --- src/Helper.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 47b6a44..584f31d 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -43,6 +43,13 @@ private function _getAddressInfo($addressCode) return empty($addressInfo) ? false : $addressInfo; } + /** + * 获取省市区地址码. + * + * @param string $addressCode 地址码 + * + * @return string + */ private function _getAddress($addressCode) { return isset($this->_addressCodeList[$addressCode]) ? $this->_addressCodeList[$addressCode] : (isset($this->_abandonedAddressCodeList[$addressCode]) ? $this->_abandonedAddressCodeList[$addressCode] : ''); @@ -57,7 +64,7 @@ private function _getAddress($addressCode) */ private function _getConstellation($birthdayCode) { - $constellationList = require __DIR__.'/../data/constellation.php'; + $constellationList = include __DIR__.'/../data/constellation.php'; $time = strtotime($birthdayCode); $year = substr($birthdayCode, 0, 4); $month = substr($birthdayCode, 4, 2); @@ -99,7 +106,7 @@ private function _getConstellation($birthdayCode) */ private function _getChineseZodiac($birthdayCode) { - $chineseZodiacList = require __DIR__.'/../data/chineseZodiac.php'; + $chineseZodiacList = include __DIR__.'/../data/chineseZodiac.php'; $start = 1900; // 子鼠 $end = substr($birthdayCode, 0, 4); $key = ($end - $start) % 12; From 87ba28d9d3922f0a3b0ecfbd98ad27bb8d504791 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 28 Sep 2018 14:53:14 +0000 Subject: [PATCH 046/128] Apply fixes from StyleCI --- src/Helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Helper.php b/src/Helper.php index 584f31d..f0f36f6 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -45,7 +45,7 @@ private function _getAddressInfo($addressCode) /** * 获取省市区地址码. - * + * * @param string $addressCode 地址码 * * @return string From 462851f59341a48e9ec339e2c793bfda88bc7c6c Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sun, 30 Sep 2018 14:38:03 +0800 Subject: [PATCH 047/128] =?UTF-8?q?=E6=B7=BB=E5=8A=A015=E5=8F=B7=E5=8F=B7?= =?UTF-8?q?=E7=A0=81=E5=8D=87=E7=BA=A7=E4=BD=8D18=E4=BD=8D=E7=9A=84?= =?UTF-8?q?=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++++++ src/IdValidator.php | 17 +++++++++++++++++ tests/IdValidatorTest.php | 5 +++++ 3 files changed, 30 insertions(+) diff --git a/README.md b/README.md index 3f31d93..0c2f1fe 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,14 @@ $idValidator->fakeId(true, '台湾省', '20131010', 0); // 生成出生 $idValidator->fakeId(true, '香港特别行政区', '19970701', 0); // 生成出生于 1997 年 7 月 1 日香港特别行政区的女性居民居住证 ``` +### 15 位号码升级为 18 位 +```php +use Jxlwqq\IdValidator\IdValidator; + +$idValidator = new IdValidator(); +$idValidator->upgradeId('610104620927690'); // 15 位号码升级为 18 位 +``` + ## 参考资料 * ~~GB 11643-1999 公民身份证号码~~ diff --git a/src/IdValidator.php b/src/IdValidator.php index dd4bd65..ea9d0ba 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -113,4 +113,21 @@ public function fakeId($isEighteen = true, $address = null, $birthday = null, $s return $body.$checkBit; } + + /** + * 15位升级18位号码. + * + * @param string $id 身份证号 + * + * @return bool|string + */ + public function upgradeId($id) + { + if (!$this->isValid($id)) { + return false; + } + $code = $this->_generateShortType($id); + return $code['addressCode'].$code['birthdayCode'].$code['order'].$this->_generatorCheckBit($code['body']); + + } } diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 606e5c3..949bcb4 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -80,4 +80,9 @@ public function testGetInfo() ); $this->assertFalse($this->idValidator->isValid('610104620932690')); } + + public function testUpgradeId() + { + $this->assertEquals('610104196209276903', $this->idValidator->upgradeId('610104620927690')); + } } From 1f02187caa3d571d9016b54a37dfc453c943ce13 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sun, 30 Sep 2018 14:39:07 +0800 Subject: [PATCH 048/128] cs fixer --- src/IdValidator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IdValidator.php b/src/IdValidator.php index ea9d0ba..5ff2ee7 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -127,7 +127,7 @@ public function upgradeId($id) return false; } $code = $this->_generateShortType($id); - return $code['addressCode'].$code['birthdayCode'].$code['order'].$this->_generatorCheckBit($code['body']); + return $code['addressCode'].$code['birthdayCode'].$code['order'].$this->_generatorCheckBit($code['body']); } } From af4e5ca49c4cfab7b1af69b987e8da2004c862b3 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sun, 30 Sep 2018 14:40:55 +0800 Subject: [PATCH 049/128] Add Change Log --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 0c2f1fe..309f6a9 100644 --- a/README.md +++ b/README.md @@ -124,6 +124,8 @@ $idValidator->upgradeId('610104620927690'); // 15 位号码升级为 18 位 * 1.4.2 `fakeId()` 方法增加可选参数; +* 1.4.11 支持 15 位身份证号码升级为 18 位; + ## License MIT From dcf6104319e1a89aecf13d45d520bef07c23285a Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 11 Oct 2018 10:15:43 +0800 Subject: [PATCH 050/128] Fix --- .gitattributes | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitattributes b/.gitattributes index fac6f23..57f1922 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,7 +1,5 @@ * text=auto -/data export-ignore -/tests export-ignore .editorconfig export-ignore .gitattributes export-ignore .gitignore export-ignore From 3e75cd773e3840b246f0ec0f51c7f5c1fe51b530 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 16 Oct 2018 16:34:32 +0800 Subject: [PATCH 051/128] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 309f6a9..1966c76 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ composer require "jxlwqq/id-validator" ``` -> 注:如果 require 失败,解决方案见[#13](https://github.com/jxlwqq/id-validator/pull/13)。 +> 注:如果 require 失败,解决方案见 [#13](https://github.com/jxlwqq/id-validator/pull/13)。 ## 使用 @@ -88,7 +88,8 @@ $idValidator->fakeId(true, '台湾省', '20131010', 0); // 生成出生 $idValidator->fakeId(true, '香港特别行政区', '19970701', 0); // 生成出生于 1997 年 7 月 1 日香港特别行政区的女性居民居住证 ``` -### 15 位号码升级为 18 位 +### 升级身份证号码 +15 位号码升级为 18 位: ```php use Jxlwqq\IdValidator\IdValidator; From 2692fa2c29d59908dca93c5d86eb95297c43ed4b Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 19 Oct 2018 21:52:33 +0800 Subject: [PATCH 052/128] Fix --- src/Generator.php | 6 +++--- src/Helper.php | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index 1c9f90b..ab7e3a7 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -74,17 +74,17 @@ private function _generatorAddressCode($address) $classification = $this->_addressCodeClassification($addressCode); switch ($classification) { case 'country': - $pattern = '/\d{4}[^0]{2}$/'; + $pattern = '/\d{4}(?!00)[0-9]{2}$/'; $addressCode = $this->_getRandAddressCode($pattern); break; case 'province': $provinceCode = substr($addressCode, 0, 2); - $pattern = '/^'.$provinceCode.'\d{2}[^0]{2}$/'; + $pattern = '/^'.$provinceCode.'\d{2}(?!00)[0-9]{2}$/'; $addressCode = $this->_getRandAddressCode($pattern); break; case 'city': $cityCode = substr($addressCode, 0, 4); - $pattern = '/^'.$cityCode.'[^0]{2}$/'; + $pattern = '/^'.$cityCode.'(?!00)[0-9]{2}$/'; $addressCode = $this->_getRandAddressCode($pattern); break; } diff --git a/src/Helper.php b/src/Helper.php index f0f36f6..d52c2e1 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -110,7 +110,6 @@ private function _getChineseZodiac($birthdayCode) $start = 1900; // 子鼠 $end = substr($birthdayCode, 0, 4); $key = ($end - $start) % 12; - $key = $key >= 0 ? $key : ($key + 12); return $chineseZodiacList[$key]; } From 6376ef526e6fc92319a5ebd6465432871b1b7eed Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 20 Oct 2018 13:51:09 +0800 Subject: [PATCH 053/128] Fix upgradeId --- src/IdValidator.php | 4 ++-- tests/IdValidatorTest.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/IdValidator.php b/src/IdValidator.php index 5ff2ee7..c338c46 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -127,7 +127,7 @@ public function upgradeId($id) return false; } $code = $this->_generateShortType($id); - - return $code['addressCode'].$code['birthdayCode'].$code['order'].$this->_generatorCheckBit($code['body']); + $body = $code['addressCode'].$code['birthdayCode'].$code['order']; + return $body.$this->_generatorCheckBit($body); } } diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 949bcb4..7a74402 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -83,6 +83,6 @@ public function testGetInfo() public function testUpgradeId() { - $this->assertEquals('610104196209276903', $this->idValidator->upgradeId('610104620927690')); + $this->assertEquals('610104196209276908', $this->idValidator->upgradeId('610104620927690')); } } From c33ce554013154ab1d1afd37da95c49aec9f828d Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 20 Oct 2018 13:52:27 +0800 Subject: [PATCH 054/128] cs fix --- src/IdValidator.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/IdValidator.php b/src/IdValidator.php index c338c46..5d2892a 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -128,6 +128,7 @@ public function upgradeId($id) } $code = $this->_generateShortType($id); $body = $code['addressCode'].$code['birthdayCode'].$code['order']; + return $body.$this->_generatorCheckBit($body); } } From 4ecc3cd17241449bdf194bcf32e248dee1588ebb Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 20 Oct 2018 05:53:22 +0000 Subject: [PATCH 055/128] Apply fixes from StyleCI --- src/IdValidator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IdValidator.php b/src/IdValidator.php index 5d2892a..aeac0a9 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -128,7 +128,7 @@ public function upgradeId($id) } $code = $this->_generateShortType($id); $body = $code['addressCode'].$code['birthdayCode'].$code['order']; - + return $body.$this->_generatorCheckBit($body); } } From 4a2dd9bea19a5bcaa54e34a4513bcdd98b5ce4e3 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 20 Oct 2018 13:56:38 +0800 Subject: [PATCH 056/128] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1966c76..d9b3e9a 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ $idValidator->fakeId(false); // 15 位 $idValidator->fakeId(true, '上海市', '2000', 1); // 生成出生于 2000 年上海市的男性居民身份证 $idValidator->fakeId(true, '南山区', '1999', 0); // 生成出生于 1999 年广东省深圳市南山区的女性居民身份证 $idValidator->fakeId(true, '江苏省', '200001', 1)); // 生成出生于 2000 年 1 月江苏省的男性居民身份证 -$idValidator->fakeId(true, '厦门市', '199701', 0)); // 生成出生于 2000 年 1 月福建省厦门市的女性居民身份证 +$idValidator->fakeId(true, '厦门市', '199701', 0)); // 生成出生于 1997 年 1 月福建省厦门市的女性居民身份证 $idValidator->fakeId(true, '台湾省', '20131010', 0); // 生成出生于 2013 年 10 月 10 日台湾省的女性居民居住证 $idValidator->fakeId(true, '香港特别行政区', '19970701', 0); // 生成出生于 1997 年 7 月 1 日香港特别行政区的女性居民居住证 ``` From f0afebf4af03db7e1ed88617e0165b27ea4f1057 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 20 Oct 2018 19:06:21 +0800 Subject: [PATCH 057/128] Refactor _getConstellation function --- data/constellation.php | 32 ++++++++++++++++++++------------ src/Helper.php | 36 +++++++++--------------------------- 2 files changed, 29 insertions(+), 39 deletions(-) diff --git a/data/constellation.php b/data/constellation.php index 125027e..713d095 100644 --- a/data/constellation.php +++ b/data/constellation.php @@ -4,54 +4,62 @@ */ return [ - '01' => [ + 1 => [ 'name' => '水瓶座', 'start_date' => '01-20', 'end_date' => '02-18', ], - '02' => [ + 2 => [ 'name' => '双鱼座', 'start_date' => '02-19', 'end_date' => '03-20', ], - '03' => [ + 3 => [ 'name' => '白羊座', 'start_date' => '03-21', 'end_date' => '04-19', ], - '04' => [ + 4 => [ 'name' => '金牛座', 'start_date' => '04-20', 'end_date' => '05-20', - ], '05' => [ + ], + 5 => [ 'name' => '双子座', 'start_date' => '05-21', 'end_date' => '06-21', - ], '06' => [ + ], + 6 => [ 'name' => '巨蟹座', 'start_date' => '06-22', 'end_date' => '07-22', - ], '07' => [ + ], + 7 => [ 'name' => '狮子座', 'start_date' => '07-23', 'end_date' => '08-22', - ], '08' => [ + ], + 8 => [ 'name' => '处女座', 'start_date' => '08-23', 'end_date' => '09-22', - ], '09' => [ + ], + 9 => [ 'name' => '天秤座', 'start_date' => '09-23', 'end_date' => '10-23', - ], '10' => [ + ], + 10 => [ 'name' => '天蝎座', 'start_date' => '10-24', 'end_date' => '11-22', - ], '11' => [ + ], + 11 => [ 'name' => '射手座', 'start_date' => '11-23', 'end_date' => '12-21', - ], '12' => [ + ], + 12 => [ 'name' => '摩羯座', 'start_date' => '12-22', 'end_date' => '01-19', diff --git a/src/Helper.php b/src/Helper.php index d52c2e1..c171712 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -65,36 +65,18 @@ private function _getAddress($addressCode) private function _getConstellation($birthdayCode) { $constellationList = include __DIR__.'/../data/constellation.php'; - $time = strtotime($birthdayCode); - $year = substr($birthdayCode, 0, 4); - $month = substr($birthdayCode, 4, 2); - $day = substr($birthdayCode, 6, 2); - - // 1月份与12月份特殊处理 - if (($month == '01' && $day < '20') || ($month == '12' && $day > '21')) { - return $constellationList['12']['name']; - } elseif ($month == '01') { - return $constellationList['01']['name']; - } elseif ($month == '12') { - return $constellationList['12']['name']; - } - - $startDate = $year.'-'.$constellationList[$month]['start_date']; - $endDate = $year.'-'.$constellationList[$month]['end_date']; - if (strtotime($startDate) <= $time && strtotime($endDate) >= $time) { - return $constellationList[$month]['name']; - } + $month = (int)substr($birthdayCode, 4, 2); + $day = (int)substr($birthdayCode, 6, 2); - $key = (int) $month - 1; // 1月份已特殊处理 - $key = strlen($key) == 1 ? $this->_getStrPad($key) : (string) $key; + $start_date = $constellationList[$month]['start_date']; + $start_day = (int)explode('-', $start_date)[1]; - $startDate = $year.'-'.$constellationList[$key]['start_date']; - $endDate = $year.'-'.$constellationList[$key]['end_date']; - if (strtotime($startDate) <= $time && strtotime($endDate) >= $time) { - return $constellationList[$key]['name']; + if ($day < $start_day) { + $tmp_month = $month == 1 ? 12 : $month - 1; + return $constellationList[$tmp_month]['name']; + } else { + return $constellationList[$month]['name']; } - - return ''; } /** From 42262173420ef4f440a4f8e5a02c73239f17cf26 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 20 Oct 2018 11:08:18 +0000 Subject: [PATCH 058/128] Apply fixes from StyleCI --- src/Helper.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index c171712..c9d8e0a 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -65,14 +65,15 @@ private function _getAddress($addressCode) private function _getConstellation($birthdayCode) { $constellationList = include __DIR__.'/../data/constellation.php'; - $month = (int)substr($birthdayCode, 4, 2); - $day = (int)substr($birthdayCode, 6, 2); + $month = (int) substr($birthdayCode, 4, 2); + $day = (int) substr($birthdayCode, 6, 2); $start_date = $constellationList[$month]['start_date']; - $start_day = (int)explode('-', $start_date)[1]; + $start_day = (int) explode('-', $start_date)[1]; if ($day < $start_day) { $tmp_month = $month == 1 ? 12 : $month - 1; + return $constellationList[$tmp_month]['name']; } else { return $constellationList[$month]['name']; From 92237c3868ed4fc617bf4b9956ee2ed702b0818c Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 20 Oct 2018 19:15:55 +0800 Subject: [PATCH 059/128] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20Ruby=20=E7=89=88?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d9b3e9a..975774e 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ **中华人民共和国居民身份证**、**中华人民共和国港澳居民居住证**以及**中华人民共和国台湾居民居住证**号码验证工具(PHP Composer 版)支持 15 位与 18 位号码。 * [Python 版本](https://github.com/jxlwqq/id-validator.py) +* [Ruby 版本](https://github.com/renyijiu/id_validator) [![Build Status](https://travis-ci.org/jxlwqq/id-validator.svg?branch=master)](https://travis-ci.org/jxlwqq/id-validator) From 325c82b558d113b26def37875af50d323498cbb0 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 22 Oct 2018 17:28:56 +0800 Subject: [PATCH 060/128] =?UTF-8?q?=E5=A2=9E=E5=8A=A0"=E5=9C=B0=E5=9D=80?= =?UTF-8?q?=E7=A0=81=E6=9B=B4=E6=96=B0=E6=97=B6=E9=97=B4=E7=BA=BF"?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/abandonedAddressCode.php | 3461 -- data/addressCode.php | 6441 ++-- data/addressCodeTimeline.php | 65632 ++++++++++++++++++++++++++++++++ src/Checker.php | 5 +- src/Helper.php | 27 +- src/IdValidator.php | 10 +- 6 files changed, 68884 insertions(+), 6692 deletions(-) delete mode 100644 data/abandonedAddressCode.php create mode 100644 data/addressCodeTimeline.php diff --git a/data/abandonedAddressCode.php b/data/abandonedAddressCode.php deleted file mode 100644 index 35c0093..0000000 --- a/data/abandonedAddressCode.php +++ /dev/null @@ -1,3461 +0,0 @@ - '崇文区', - '110104' => '宣武区', - '110110' => '燕山区', - '110201' => '昌平县', - '110202' => '顺义县', - '110203' => '通县', - '110204' => '大兴县', - '110205' => '房山县', - '110206' => '平谷县', - '110207' => '怀柔县', - '110208' => '密云县', - '110209' => '延庆县', - '110221' => '昌平县', - '110222' => '顺义县', - '110223' => '通县', - '110224' => '大兴县', - '110225' => '房山县', - '110226' => '平谷县', - '110227' => '怀柔县', - '110228' => '密云县', - '110229' => '延庆县', - '120107' => '塘沽区', - '120108' => '汉沽区', - '120109' => '大港区', - '120201' => '宁河县', - '120202' => '武清县', - '120203' => '静海县', - '120204' => '宝坻县', - '120205' => '蓟县', - '120221' => '宁河县', - '120222' => '武清县', - '120223' => '静海县', - '120224' => '宝坻县', - '120225' => '蓟县', - '130103' => '桥东区', - '130106' => '郊区', - '130122' => '获鹿县', - '130124' => '正定县', - '130182' => '藁城市', - '130185' => '鹿泉市', - '130206' => '新区', - '130221' => '丰润县', - '130222' => '丰南县', - '130226' => '玉田县', - '130228' => '迁安县', - '130230' => '遵化县', - '130282' => '丰南市', - '130305' => '郊区', - '130323' => '抚宁县', - '130405' => '郊区', - '130421' => '邯郸县', - '130422' => '武安县', - '130428' => '肥乡县', - '130429' => '永年县', - '130504' => '郊区', - '130603' => '北市区', - '130604' => '南市区', - '130605' => '郊区', - '130621' => '满城县', - '130622' => '清苑县', - '130625' => '徐水县', - '130704' => '茶坊区', - '130707' => '庞家堡区', - '130721' => '宣化县', - '130729' => '万全县', - '130733' => '崇礼县', - '130823' => '平泉县', - '130904' => '郊区', - '131021' => '三河县', - '131027' => '霸县', - '131181' => '冀州市', - '132100' => '邯郸地区', - '132101' => '邯郸市', - '132102' => '邯山区', - '132103' => '丛台区', - '132104' => '复兴区', - '132105' => '郊区', - '132106' => '峰峰矿区', - '132121' => '大名县', - '132122' => '魏县', - '132123' => '曲周县', - '132124' => '丘县', - '132125' => '鸡泽县', - '132126' => '肥乡县', - '132127' => '广平县', - '132128' => '成安县', - '132129' => '临漳县', - '132130' => '磁县', - '132131' => '武安县', - '132132' => '涉县', - '132133' => '永年县', - '132134' => '邯郸县', - '132135' => '馆陶县', - '132200' => '邢台地区', - '132201' => '邢台市', - '132202' => '桥东区', - '132203' => '桥西区', - '132204' => '郊区', - '132221' => '邢台县', - '132222' => '沙河县', - '132223' => '临城县', - '132224' => '内丘县', - '132225' => '柏乡县', - '132226' => '隆尧县', - '132227' => '任县', - '132228' => '南和县', - '132229' => '宁晋县', - '132230' => '南宫县', - '132231' => '巨鹿县', - '132232' => '新河县', - '132233' => '广宗县', - '132234' => '平乡县', - '132235' => '威县', - '132236' => '清河县', - '132237' => '临西县', - '132300' => '石家庄地区', - '132301' => '辛集市', - '132302' => '藁城市', - '132303' => '晋州市', - '132304' => '新乐市', - '132321' => '束鹿县', - '132322' => '晋县', - '132323' => '深泽县', - '132324' => '无极县', - '132325' => '藁城县', - '132326' => '赵县', - '132327' => '栾城县', - '132328' => '正定县', - '132329' => '新乐县', - '132330' => '高邑县', - '132331' => '元氏县', - '132332' => '赞皇县', - '132333' => '井陉县', - '132334' => '获鹿县', - '132335' => '平山县', - '132336' => '灵寿县', - '132337' => '行唐县', - '132400' => '保定地区', - '132401' => '保定市', - '132402' => '新市区', - '132403' => '北市区', - '132404' => '南市区', - '132405' => '郊区', - '132421' => '易县', - '132422' => '满城县', - '132423' => '徐水县', - '132424' => '涞源县', - '132425' => '定兴县', - '132426' => '完县', - '132427' => '唐县', - '132428' => '望都县', - '132429' => '涞水县', - '132430' => '涿县', - '132431' => '清苑县', - '132432' => '高阳县', - '132433' => '安新县', - '132434' => '雄县', - '132435' => '容城县', - '132436' => '新城县', - '132437' => '曲阳县', - '132438' => '阜平县', - '132439' => '定县', - '132440' => '安国县', - '132441' => '博野县', - '132442' => '蠡县', - '132500' => '张家口地区', - '132501' => '张家口市', - '132502' => '桥东区', - '132503' => '桥西区', - '132504' => '茶坊区', - '132505' => '宣化区', - '132506' => '下花园区', - '132507' => '庞家堡区', - '132521' => '张北县', - '132522' => '康保县', - '132523' => '沽源县', - '132524' => '尚义县', - '132525' => '蔚县', - '132526' => '阳原县', - '132527' => '怀安县', - '132528' => '万全县', - '132529' => '怀来县', - '132530' => '涿鹿县', - '132531' => '宣化县', - '132532' => '赤城县', - '132533' => '崇礼县', - '132600' => '承德地区', - '132601' => '承德市', - '132602' => '双桥区', - '132603' => '双滦区', - '132604' => '鹰手营子矿区', - '132621' => '青龙县', - '132622' => '宽城县', - '132623' => '兴隆县', - '132624' => '平泉县', - '132625' => '承德县', - '132626' => '滦平县', - '132627' => '丰宁县', - '132628' => '隆化县', - '132629' => '围场县', - '132700' => '唐山地区', - '132701' => '秦皇岛市', - '132702' => '海港区', - '132703' => '山海关区', - '132704' => '北戴河区', - '132705' => '郊区', - '132721' => '丰润县', - '132722' => '丰南县', - '132723' => '滦县', - '132724' => '滦南县', - '132725' => '乐亭县', - '132726' => '昌黎县', - '132727' => '抚宁县', - '132728' => '卢龙县', - '132729' => '迁安县', - '132730' => '迁西县', - '132731' => '遵化县', - '132732' => '玉田县', - '132733' => '唐海县', - '132800' => '廊坊地区', - '132801' => '廊坊市', - '132821' => '三河县', - '132822' => '大厂回族自治县', - '132823' => '香河县', - '132824' => '安次县', - '132825' => '永清县', - '132826' => '固安县', - '132827' => '霸县', - '132828' => '文安县', - '132829' => '大城县', - '132900' => '沧州地区', - '132901' => '沧州市', - '132902' => '新华区', - '132903' => '运河区', - '132904' => '郊区', - '132905' => '泊头市', - '132921' => '沧县', - '132922' => '河间县', - '132923' => '肃宁县', - '132924' => '献县', - '132925' => '交河县', - '132926' => '吴桥县', - '132927' => '东光县', - '132928' => '南皮县', - '132929' => '盐山县', - '132930' => '黄骅县', - '132931' => '孟村回族自治县', - '132932' => '青县', - '132933' => '任丘县', - '132934' => '海兴县', - '133000' => '衡水地区', - '133001' => '衡水市', - '133002' => '冀州市', - '133003' => '深州市', - '133021' => '衡水县', - '133022' => '冀县', - '133023' => '枣强县', - '133024' => '武邑县', - '133025' => '深县', - '133026' => '武强县', - '133027' => '饶阳县', - '133028' => '安平县', - '133029' => '故城县', - '133030' => '景县', - '133031' => '阜城县', - '139001' => '武安市', - '139002' => '霸州市', - '139003' => '遵化市', - '139004' => '辛集市', - '139005' => '藁城市', - '139006' => '晋州市', - '139007' => '新乐市', - '139008' => '泊头市', - '139009' => '任丘市', - '139010' => '黄骅市', - '139011' => '河间市', - '139012' => '三河县', - '139013' => '南宫市', - '139014' => '沙河市', - '139015' => '定州市', - '139016' => '涿州市', - '139017' => '安国市', - '139018' => '高碑店市', - '139019' => '鹿泉市', - '139020' => '丰南市', - '140102' => '南城区', - '140103' => '北城区', - '140104' => '河西区', - '140111' => '古交工矿区', - '140112' => '南郊区', - '140113' => '北郊区', - '140202' => '城区', - '140203' => '矿区', - '140211' => '南郊区', - '140227' => '大同县', - '140422' => '潞城县', - '140503' => '郊区', - '140523' => '高平县', - '142100' => '雁北地区', - '142121' => '大同县', - '142122' => '阳高县', - '142123' => '天镇县', - '142124' => '广灵县', - '142125' => '灵丘县', - '142126' => '浑源县', - '142127' => '怀仁县', - '142128' => '应县', - '142129' => '山阴县', - '142130' => '朔县', - '142131' => '平鲁县', - '142132' => '左云县', - '142133' => '右玉县', - '142200' => '忻县地区', - '142201' => '忻州市', - '142202' => '原平市', - '142221' => '忻县', - '142222' => '原平县', - '142223' => '代县', - '142224' => '繁峙县', - '142225' => '五台县', - '142226' => '定襄县', - '142227' => '静乐县', - '142228' => '岢岚县', - '142229' => '保德县', - '142230' => '五寨县', - '142231' => '河曲县', - '142232' => '偏关县', - '142233' => '神池县', - '142234' => '宁武县', - '142300' => '晋中地区', - '142301' => '榆次市', - '142302' => '离石市', - '142303' => '汾阳市', - '142321' => '榆次县', - '142322' => '寿阳县', - '142323' => '盂县', - '142324' => '平定县', - '142325' => '昔阳县', - '142326' => '和顺县', - '142327' => '左权县', - '142328' => '榆社县', - '142329' => '太谷县', - '142330' => '祁县', - '142331' => '平遥县', - '142332' => '介休县', - '142333' => '灵石县', - '142400' => '吕梁地区', - '142401' => '榆次市', - '142402' => '介休市', - '142421' => '离石县', - '142422' => '孝义县', - '142423' => '兴县', - '142424' => '交口县', - '142425' => '方山县', - '142426' => '石楼县', - '142427' => '岚县', - '142428' => '中阳县', - '142429' => '交城县', - '142430' => '临县', - '142431' => '文水县', - '142432' => '柳林县', - '142433' => '汾阳县', - '142500' => '晋东南地区', - '142501' => '晋城市', - '142521' => '长治县', - '142522' => '潞城县', - '142523' => '襄垣县', - '142524' => '武乡县', - '142525' => '黎城县', - '142526' => '平顺县', - '142527' => '壶关县', - '142528' => '陵川县', - '142529' => '高平县', - '142530' => '晋城县', - '142531' => '阳城县', - '142532' => '沁水县', - '142533' => '长子县', - '142534' => '屯留县', - '142535' => '沁源县', - '142536' => '沁县', - '142600' => '临汾地区', - '142601' => '临汾市', - '142602' => '侯马市', - '142603' => '霍州市', - '142621' => '临汾县', - '142622' => '隰县', - '142623' => '汾西县', - '142624' => '永和县', - '142625' => '安泽县', - '142626' => '洪洞县', - '142627' => '古县', - '142628' => '霍县', - '142629' => '翼城县', - '142630' => '浮山县', - '142631' => '曲沃县', - '142632' => '襄汾县', - '142633' => '吉县', - '142634' => '乡宁县', - '142635' => '大宁县', - '142636' => '蒲县', - '142700' => '运城地区', - '142701' => '运城市', - '142702' => '河津市', - '142703' => '永济市', - '142721' => '运城县', - '142722' => '夏县', - '142723' => '闻喜县', - '142724' => '绛县', - '142725' => '垣曲县', - '142726' => '平陆县', - '142727' => '芮城县', - '142728' => '永济县', - '142729' => '临猗县', - '142730' => '万荣县', - '142731' => '新绛县', - '142732' => '稷山县', - '142733' => '河津县', - '149001' => '古交市', - '149002' => '高平市', - '149003' => '潞城市', - '152100' => '呼伦贝尔盟', - '152101' => '海拉尔市', - '152102' => '满洲里市', - '152103' => '扎兰屯市', - '152104' => '牙克石市', - '152105' => '根河市', - '152106' => '额尔古纳市', - '152121' => '布特哈旗', - '152122' => '阿荣旗', - '152123' => '莫力达瓦达斡尔族自治旗', - '152124' => '喜桂图旗', - '152125' => '额尔古纳右旗', - '152126' => '额尔古纳左旗', - '152127' => '鄂伦春自治旗', - '152128' => '鄂温克族自治旗', - '152129' => '新巴尔虎右旗', - '152130' => '新巴尔虎左旗', - '152131' => '陈巴尔虎旗', - '152300' => '哲里木盟', - '152301' => '通辽市', - '152302' => '霍林郭勒市', - '152321' => '通辽县', - '152322' => '科尔沁左翼中旗', - '152323' => '科尔沁左翼后旗', - '152324' => '开鲁县', - '152325' => '库伦旗', - '152326' => '奈曼旗', - '152327' => '扎鲁特旗', - '152400' => '昭乌达盟', - '152401' => '赤峰市', - '152421' => '赤峰县', - '152422' => '巴林左旗', - '152423' => '巴林右旗', - '152424' => '林西县', - '152425' => '克什克腾旗', - '152426' => '翁牛特旗', - '152427' => '赤峰县', - '152428' => '喀喇沁旗', - '152429' => '宁城县', - '152430' => '敖汉旗', - '152431' => '阿鲁科尔沁旗', - '152521' => '东胜县', - '152600' => '锡林郭勒盟', - '152601' => '二连浩特市', - '152602' => '丰镇市', - '152621' => '阿巴哈纳尔旗', - '152622' => '阿巴嘎旗', - '152623' => '苏尼特左旗', - '152624' => '苏尼特右旗', - '152625' => '东乌珠穆沁旗', - '152626' => '西乌珠穆沁旗', - '152627' => '太仆寺旗', - '152628' => '镶黄旗', - '152629' => '正镶白旗', - '152630' => '正蓝旗', - '152631' => '多伦县', - '152632' => '察哈尔右翼后旗', - '152633' => '达尔罕茂明安联合旗', - '152634' => '四子王旗', - '152700' => '巴彦淖尔盟', - '152701' => '东胜市', - '152721' => '临河县', - '152722' => '五原县', - '152723' => '磴口县', - '152724' => '乌拉特前旗', - '152725' => '乌拉特中后联合旗', - '152726' => '杭锦后旗', - '152727' => '潮格旗', - '152728' => '伊金霍洛旗', - '152800' => '乌兰察布盟', - '152801' => '集宁市', - '152821' => '武川县', - '152822' => '和林格尔县', - '152823' => '清水河县', - '152824' => '卓资县', - '152825' => '化德县', - '152826' => '商都县', - '152827' => '兴和县', - '152828' => '丰镇县', - '152829' => '凉城县', - '152830' => '察哈尔右翼前旗', - '152831' => '察哈尔右翼中旗', - '152832' => '察哈尔右翼后旗', - '152833' => '达尔罕茂明安联合旗', - '152834' => '四子王旗', - '210121' => '新民县', - '210122' => '辽中县', - '210219' => '瓦房店市', - '210221' => '金县', - '210222' => '新金县', - '210223' => '复县', - '210225' => '庄河县', - '210282' => '普兰店市', - '210319' => '海城市', - '210322' => '海城县', - '210511' => '立新区', - '210621' => '凤城县', - '210622' => '岫岩县', - '210623' => '东沟县', - '210704' => '南票区', - '210705' => '葫芦岛区', - '210706' => '太和区', - '210719' => '锦西市', - '210721' => '锦西县', - '210722' => '兴城县', - '210723' => '绥中县', - '210724' => '锦县', - '210725' => '北镇县', - '210821' => '营口县', - '210822' => '盘山县', - '210823' => '大洼县', - '210824' => '盖县', - '211022' => '灯塔县', - '211111' => '郊区', - '211121' => '大洼县', - '211203' => '铁法区', - '211222' => '开原县', - '211225' => '康平县', - '211226' => '法库县', - '211319' => '北票市', - '211323' => '凌源县', - '211325' => '建昌县', - '211326' => '北票县', - '211405' => '葫芦岛区', - '212100' => '铁岭地区', - '212101' => '铁岭市', - '212102' => '铁法市', - '212121' => '铁岭县', - '212122' => '开原县', - '212123' => '西丰县', - '212124' => '昌图县', - '212125' => '康平县', - '212126' => '法库县', - '212200' => '朝阳地区', - '212201' => '朝阳市', - '212221' => '朝阳县', - '212222' => '建平县', - '212223' => '凌源县', - '212224' => '喀喇沁左翼蒙古族自治县', - '212225' => '建昌县', - '212226' => '北票县', - '219001' => '瓦房店市', - '219002' => '海城市', - '219003' => '锦西市', - '219004' => '兴城市', - '219005' => '铁法市', - '219006' => '北票市', - '219007' => '开原市', - '219008' => '普兰店市', - '219009' => '凌源市', - '219010' => '庄河市', - '219011' => '大石桥市', - '219012' => '盖州市', - '219013' => '新民市', - '219014' => '东港市', - '219015' => '凌海市', - '219016' => '凤城市', - '220111' => '郊区', - '220121' => '榆树县', - '220123' => '九台县', - '220124' => '德惠县', - '220125' => '双阳县', - '220181' => '九台市', - '220222' => '舒兰县', - '220223' => '磐石县', - '220224' => '蛟河县', - '220225' => '桦甸县', - '220301' => '铁西区', - '220319' => '公主岭市', - '220321' => '怀德县', - '220324' => '双辽县', - '220401' => '龙山区', - '220519' => '梅河口市', - '220522' => '集安县', - '220603' => '三岔子区', - '220604' => '临江区', - '220624' => '临江县', - '220625' => '江源县', - '220724' => '扶余县', - '222100' => '四平地区', - '222101' => '四平市', - '222102' => '辽源市', - '222121' => '怀德县', - '222122' => '梨树县', - '222123' => '伊通县', - '222124' => '东丰县', - '222125' => '双辽县', - '222200' => '通化地区', - '222201' => '通化市', - '222202' => '浑江市', - '222221' => '海龙县', - '222222' => '通化县', - '222223' => '柳河县', - '222224' => '辉南县', - '222225' => '集安县', - '222226' => '抚松县', - '222227' => '靖宇县', - '222228' => '长白朝鲜族自治县', - '222300' => '白城地区', - '222301' => '白城市', - '222302' => '洮南市', - '222303' => '扶余市', - '222304' => '大安市', - '222321' => '扶余县', - '222322' => '洮安县', - '222323' => '长岭县', - '222324' => '前郭尔罗斯蒙古族自治县', - '222325' => '大安县', - '222326' => '镇赉县', - '222327' => '通榆县', - '222328' => '乾安县', - '222421' => '延吉县', - '222422' => '敦化县', - '222423' => '和龙县', - '222425' => '珲春县', - '222427' => '龙井县', - '222500' => '德惠地区', - '222521' => '榆树县', - '222522' => '农安县', - '222523' => '九台县', - '222524' => '德惠县', - '222525' => '双阳县', - '222600' => '永吉地区', - '222621' => '永吉县', - '222622' => '舒兰县', - '222623' => '磐石县', - '222624' => '蛟河县', - '222625' => '桦甸县', - '229001' => '公主岭市', - '229002' => '梅河口市', - '229003' => '集安市', - '229004' => '桦甸市', - '229005' => '九台市', - '229006' => '蛟河市', - '229007' => '榆树市', - '229008' => '舒兰市', - '229009' => '大安市', - '229010' => '洮南市', - '229011' => '临江市', - '229012' => '德惠市', - '230105' => '太平区', - '230106' => '香坊区', - '230107' => '动力区', - '230121' => '阿城县', - '230122' => '呼兰县', - '230181' => '阿城市', - '230182' => '双城市', - '230222' => '讷河县', - '230226' => '杜尔伯特蒙古族自治县', - '230228' => '林甸县', - '230322' => '虎林县', - '230504' => '南山区', - '230507' => '兴山区', - '230721' => '铁力县', - '230802' => '永红区', - '230821' => '富锦县', - '230823' => '依兰县', - '230824' => '友谊县', - '230825' => '集贤县', - '230827' => '宝清县', - '230829' => '绥滨县', - '230830' => '萝北县', - '230831' => '同江县', - '230832' => '饶河县', - '230833' => '抚远县', - '231006' => '爱民区', - '231007' => '阳明区', - '231011' => '郊区', - '231020' => '绥芬河市', - '231021' => '宁安县', - '231022' => '海林县', - '231023' => '穆棱县', - '231024' => '东宁县', - '231026' => '密山县', - '231027' => '虎林县', - '231101' => '绥芬河市', - '231122' => '德都县', - '232100' => '绥化地区', - '232101' => '双城市', - '232102' => '尚志市', - '232103' => '五常市', - '232121' => '海伦县', - '232122' => '肇东县', - '232123' => '绥化县', - '232124' => '安达县', - '232125' => '望奎县', - '232126' => '兰西县', - '232127' => '青冈县', - '232128' => '肇源县', - '232129' => '肇州县', - '232130' => '庆安县', - '232131' => '明水县', - '232132' => '绥棱县', - '232200' => '松花江地区', - '232221' => '五常县', - '232222' => '双城县', - '232223' => '巴彦县', - '232224' => '呼兰县', - '232225' => '宾县', - '232226' => '阿城县', - '232227' => '尚志县', - '232228' => '木兰县', - '232229' => '延寿县', - '232230' => '通河县', - '232231' => '方正县', - '232300' => '嫩江地区', - '232301' => '绥化市', - '232302' => '安达市', - '232303' => '肇东市', - '232304' => '海伦市', - '232321' => '讷河县', - '232322' => '拜泉县', - '232323' => '龙江县', - '232324' => '依安县', - '232325' => '克山县', - '232326' => '甘南县', - '232327' => '泰来县', - '232328' => '克东县', - '232329' => '富裕县', - '232330' => '林甸县', - '232331' => '杜尔伯特蒙古族自治县', - '232332' => '绥棱县', - '232400' => '合江地区', - '232401' => '佳木斯市', - '232402' => '七台河市', - '232403' => '永红区', - '232404' => '向阳区', - '232405' => '前进区', - '232406' => '东风区', - '232411' => '郊区', - '232421' => '桦南县', - '232422' => '集贤县', - '232423' => '宝清县', - '232424' => '富锦县', - '232425' => '依兰县', - '232426' => '勃利县', - '232427' => '汤原县', - '232428' => '桦川县', - '232429' => '萝北县', - '232430' => '绥滨县', - '232431' => '饶河县', - '232432' => '同江县', - '232433' => '抚远县', - '232500' => '牡丹江地区', - '232501' => '牡丹江市', - '232502' => '东凤区', - '232503' => '先锋区', - '232504' => '爱民区', - '232505' => '阳明区', - '232506' => '阳明区', - '232511' => '郊区', - '232521' => '海林县', - '232522' => '宁安县', - '232523' => '林口县', - '232524' => '密山县', - '232525' => '穆棱县', - '232526' => '虎林县', - '232527' => '鸡东县', - '232528' => '东宁县', - '232581' => '绥芬河市', - '232600' => '黑河地区', - '232601' => '黑河市', - '232602' => '北安市', - '232603' => '五大连池市', - '232621' => '嫩江县', - '232622' => '北安县', - '232623' => '德都县', - '232624' => '爱辉县', - '232625' => '逊克县', - '232626' => '孙吴县', - '232627' => '通北县', - '239001' => '绥芬河市', - '239002' => '镜泊湖市', - '239003' => '同江市', - '239004' => '富锦市', - '239005' => '铁力市', - '239006' => '密山市', - '239007' => '海林市', - '239008' => '讷河市', - '239009' => '北安市', - '239010' => '五大连池市', - '239011' => '宁安市', - '310102' => '南市区', - '310103' => '卢湾区', - '310108' => '闸北区', - '310111' => '吴淞区', - '310119' => '南汇区', - '310201' => '上海县', - '310202' => '嘉定县', - '310203' => '宝山县', - '310204' => '川沙县', - '310205' => '南汇县', - '310206' => '奉贤县', - '310207' => '松江县', - '310208' => '金山县', - '310209' => '青浦县', - '310210' => '崇明县', - '310221' => '上海县', - '310222' => '嘉定县', - '310223' => '宝山县', - '310224' => '川沙县', - '310225' => '南汇县', - '310226' => '奉贤县', - '310227' => '松江县', - '310228' => '金山县', - '310229' => '青浦县', - '310230' => '崇明县', - '320103' => '白下区', - '320107' => '下关区', - '320112' => '大厂区', - '320121' => '江宁县', - '320122' => '江浦县', - '320123' => '六合县', - '320124' => '溧水县', - '320125' => '高淳县', - '320202' => '崇安区', - '320203' => '南长区', - '320204' => '北塘区', - '320221' => '江阴县', - '320222' => '无锡县', - '320223' => '宜兴县', - '320283' => '锡山市', - '320304' => '矿区', - '320323' => '铜山县', - '320325' => '邳县', - '320326' => '新沂县', - '320403' => '广化区', - '320405' => '戚墅堰区', - '320421' => '武进县', - '320422' => '金坛县', - '320423' => '溧阳县', - '320482' => '金坛市', - '320483' => '武进市', - '320502' => '沧浪区', - '320503' => '平江区', - '320504' => '金阊区', - '320511' => '郊区', - '320521' => '沙洲县', - '320522' => '太仓县', - '320523' => '昆山县', - '320524' => '吴县', - '320525' => '吴江县', - '320584' => '吴江市', - '320586' => '吴县市', - '320603' => '港闸区', - '320621' => '海安县', - '320622' => '如皋县', - '320624' => '南通县', - '320625' => '海门县', - '320626' => '启东县', - '320683' => '通州市', - '320702' => '连云港区', - '320704' => '新浦区', - '320705' => '海州区', - '320711' => '郊区', - '320721' => '赣榆县', - '320802' => '清河区', - '320811' => '清浦区', - '320821' => '淮阴县', - '320822' => '灌南县', - '320823' => '沭阳县', - '320824' => '宿迁县', - '320825' => '泗阳县', - '320827' => '泗洪县', - '320828' => '淮安县', - '320829' => '洪泽县', - '320881' => '宿迁市', - '320882' => '淮安市', - '320911' => '郊区', - '320926' => '大丰县', - '320927' => '东台县', - '320928' => '盐都县', - '320982' => '大丰市', - '321011' => '郊区', - '321021' => '兴化县', - '321022' => '高邮县', - '321024' => '靖江县', - '321025' => '泰兴县', - '321026' => '江都县', - '321027' => '邗江县', - '321028' => '泰县', - '321029' => '仪征县', - '321082' => '泰州市', - '321083' => '兴化市', - '321085' => '靖江市', - '321086' => '泰兴市', - '321087' => '姜堰市', - '321088' => '江都市', - '321121' => '丹徒县', - '321122' => '丹阳县', - '321123' => '句容县', - '321124' => '扬中县', - '321201' => '泰州市', - '321284' => '姜堰市', - '321301' => '常熟市', - '321321' => '宿豫县', - '322100' => '徐州地区', - '322121' => '丰县', - '322122' => '沛县', - '322123' => '铜山县', - '322124' => '睢宁县', - '322125' => '邳县', - '322126' => '新沂县', - '322127' => '东海县', - '322128' => '赣榆县', - '322200' => '淮阴地区', - '322201' => '清江市', - '322221' => '淮阴县', - '322222' => '灌云县', - '322223' => '灌南县', - '322224' => '沭阳县', - '322225' => '宿迁县', - '322226' => '泗阳县', - '322227' => '涟水县', - '322228' => '泗洪县', - '322229' => '淮安县', - '322230' => '洪泽县', - '322231' => '盱眙县', - '322232' => '金湖县', - '322300' => '盐城地区', - '322321' => '响水县', - '322322' => '滨海县', - '322323' => '阜宁县', - '322324' => '射阳县', - '322325' => '建湖县', - '322326' => '盐城县', - '322327' => '大丰县', - '322328' => '东台县', - '322400' => '扬州地区', - '322401' => '扬州市', - '322402' => '泰州市', - '322421' => '兴化县', - '322422' => '高邮县', - '322423' => '宝应县', - '322424' => '靖江县', - '322425' => '泰兴县', - '322426' => '江都县', - '322427' => '邗江县', - '322428' => '泰县', - '322429' => '仪征县', - '322500' => '南通地区', - '322521' => '海安县', - '322522' => '如皋县', - '322523' => '如东县', - '322524' => '南通县', - '322525' => '海门县', - '322526' => '启东县', - '322600' => '镇江地区', - '322601' => '镇江市', - '322621' => '丹徒县', - '322622' => '武进县', - '322623' => '丹阳县', - '322624' => '句容县', - '322625' => '金坛县', - '322626' => '溧水县', - '322627' => '高淳县', - '322628' => '溧阳县', - '322629' => '宜兴县', - '322630' => '扬中县', - '322700' => '苏州地区', - '322721' => '江阴县', - '322722' => '无锡县', - '322723' => '沙洲县', - '322724' => '常熟县', - '322725' => '太仓县', - '322726' => '昆山县', - '322727' => '吴县', - '322728' => '吴江县', - '329001' => '泰州市', - '329002' => '仪征市', - '329003' => '常熟市', - '329004' => '张家港市', - '329005' => '江阴市', - '329006' => '宿迁市', - '329007' => '丹阳市', - '329008' => '东台市', - '329009' => '兴化市', - '329010' => '淮安市', - '329011' => '宜兴市', - '329012' => '昆山市', - '329013' => '启东市', - '329014' => '新沂市', - '329015' => '溧阳市', - '329016' => '如皋市', - '329017' => '高邮市', - '329018' => '吴江市', - '329019' => '邳州市', - '329020' => '泰兴市', - '329021' => '通州市', - '329022' => '太仓市', - '329023' => '靖江市', - '329024' => '金坛市', - '329025' => '江都市', - '329026' => '海门市', - '329027' => '扬中市', - '329028' => '姜堰市', - '330107' => '半山区', - '330121' => '萧山县', - '330123' => '富阳县', - '330124' => '临安县', - '330125' => '余杭县', - '330126' => '建德县', - '330181' => '萧山市', - '330183' => '富阳市', - '330184' => '余杭市', - '330185' => '临安市', - '330202' => '镇明区', - '330204' => '江东区', - '330219' => '余姚市', - '330221' => '镇海县', - '330222' => '慈溪县', - '330223' => '余姚县', - '330224' => '奉化县', - '330227' => '鄞县', - '330283' => '奉化市', - '330301' => '东城区', - '330321' => '洞头县', - '330322' => '永嘉县', - '330323' => '瑞安县', - '330325' => '平阳县', - '330422' => '平湖县', - '330423' => '海宁县', - '330425' => '桐乡县', - '330511' => '郊区', - '330621' => '绍兴县', - '330622' => '上虞县', - '330623' => '嵊县', - '330625' => '诸暨县', - '330682' => '上虞市', - '330701' => '兰溪市', - '330721' => '金华县', - '330722' => '永康县', - '330724' => '东阳县', - '330725' => '义乌县', - '330821' => '衢县', - '330823' => '江山县', - '331021' => '玉环县', - '332100' => '嘉兴地区', - '332101' => '湖州市', - '332102' => '嘉兴市', - '332121' => '嘉兴县', - '332122' => '嘉善县', - '332123' => '平湖县', - '332124' => '海宁县', - '332125' => '海盐县', - '332126' => '桐乡县', - '332127' => '德清县', - '332128' => '吴兴县', - '332129' => '长兴县', - '332130' => '安吉县', - '332200' => '宁波地区', - '332221' => '慈溪县', - '332222' => '余姚县', - '332223' => '奉化县', - '332224' => '象山县', - '332225' => '宁海县', - '332226' => '鄞县', - '332227' => '镇海县', - '332300' => '绍兴地区', - '332301' => '绍兴市', - '332321' => '绍兴县', - '332322' => '上虞县', - '332323' => '嵊县', - '332324' => '新昌县', - '332325' => '诸暨县', - '332400' => '温州地区', - '332401' => '金华市', - '332402' => '衢州市', - '332421' => '洞头县', - '332422' => '永嘉县', - '332423' => '瑞安县', - '332424' => '文成县', - '332425' => '平阳县', - '332426' => '乐清县', - '332427' => '泰顺县', - '332428' => '江山县', - '332429' => '开化县', - '332430' => '龙游县', - '332431' => '磐安县', - '332500' => '金华地区', - '332501' => '金华市', - '332502' => '衢州市', - '332521' => '金华县', - '332522' => '兰溪县', - '332523' => '永康县', - '332524' => '武义县', - '332525' => '东阳县', - '332526' => '义乌县', - '332527' => '浦江县', - '332528' => '衢县', - '332529' => '常山县', - '332530' => '江山县', - '332531' => '开化县', - '332581' => '龙泉市', - '332582' => '丽水市', - '332600' => '丽水地区', - '332601' => '椒江市', - '332602' => '临海市', - '332603' => '黄岩市', - '332621' => '丽水县', - '332622' => '青田县', - '332623' => '云和县', - '332624' => '龙泉县', - '332625' => '庆元县', - '332626' => '缙云县', - '332627' => '遂昌县', - '332700' => '台州地区', - '332701' => '椒江市', - '332721' => '临海县', - '332722' => '黄岩县', - '332723' => '温岭县', - '332724' => '仙居县', - '332725' => '天台县', - '332726' => '三门县', - '332727' => '玉环县', - '332800' => '舟山地区', - '332821' => '定海县', - '332822' => '普陀县', - '332823' => '岱山县', - '332824' => '嵊泗县', - '339001' => '余姚市', - '339002' => '海宁市', - '339003' => '兰溪市', - '339004' => '瑞安市', - '339005' => '萧山市', - '339006' => '江山市', - '339007' => '安徽省', - '339008' => '合肥市', - '339009' => '慈溪市', - '339010' => '奉化市', - '339011' => '诸暨市', - '339012' => '平湖市', - '339013' => '建德市', - '339014' => '永康市', - '339015' => '上虞市', - '339016' => '桐乡市', - '339017' => '乐清市', - '339018' => '临海市', - '339019' => '富阳市', - '339020' => '温岭市', - '339021' => '余杭市', - '340204' => '新芜区', - '340205' => '裕溪口区', - '340206' => '四褐山区', - '340211' => '郊区', - '340224' => '青阳县', - '340502' => '金家庄区', - '340505' => '向山区', - '340511' => '郊区', - '340611' => '郊区', - '340702' => '铜官山区', - '340703' => '狮子山区', - '340704' => '铜山区', - '340721' => '铜陵县', - '340821' => '桐城县', - '340823' => '枞阳县', - '340901' => '黄山市', - '341121' => '天长县', - '341127' => '嘉山县', - '341223' => '涡阳县', - '341224' => '蒙城县', - '341227' => '利辛县', - '341281' => '亳州市', - '341400' => '巢湖市', - '341402' => '居巢区', - '341421' => '庐江县', - '341422' => '无为县', - '341423' => '含山县', - '341424' => '和县', - '341521' => '寿县', - '342100' => '阜阳地区', - '342101' => '阜阳市', - '342102' => '亳州市', - '342103' => '界首市', - '342121' => '阜阳县', - '342122' => '临泉县', - '342123' => '太和县', - '342124' => '涡阳县', - '342125' => '蒙城县', - '342126' => '亳县', - '342127' => '阜南县', - '342128' => '颍上县', - '342129' => '界首县', - '342130' => '利辛县', - '342200' => '宿县地区', - '342201' => '宿州市', - '342221' => '砀山县', - '342222' => '萧县', - '342223' => '宿县', - '342224' => '灵璧县', - '342225' => '泗县', - '342226' => '怀远县', - '342227' => '五河县', - '342228' => '固镇县', - '342300' => '滁县地区', - '342301' => '滁州市', - '342321' => '天长县', - '342322' => '来安县', - '342323' => '滁县', - '342324' => '全椒县', - '342325' => '定远县', - '342326' => '凤阳县', - '342327' => '嘉山县', - '342400' => '六安地区', - '342401' => '六安市', - '342421' => '六安县', - '342422' => '寿县', - '342423' => '霍邱县', - '342424' => '肥西县', - '342425' => '舒城县', - '342426' => '金寨县', - '342427' => '霍山县', - '342500' => '宣城地区', - '342501' => '宣城市', - '342502' => '宁国市', - '342521' => '宣城县', - '342522' => '郎溪县', - '342523' => '广德县', - '342524' => '宁国县', - '342525' => '当涂县', - '342526' => '繁昌县', - '342527' => '南陵县', - '342528' => '青阳县', - '342529' => '泾县', - '342530' => '旌德县', - '342531' => '绩溪县', - '342600' => '巢湖地区', - '342601' => '巢湖市', - '342621' => '肥东县', - '342622' => '庐江县', - '342623' => '无为县', - '342624' => '巢县', - '342625' => '含山县', - '342626' => '和县', - '342700' => '徽州地区', - '342701' => '屯溪市', - '342721' => '绩溪县', - '342722' => '旌德县', - '342723' => '歙县', - '342724' => '休宁县', - '342725' => '黟县', - '342726' => '祁门县', - '342727' => '太平县', - '342728' => '石台县', - '342800' => '安庆地区', - '342821' => '怀宁县', - '342822' => '桐城县', - '342823' => '枞阳县', - '342824' => '潜山县', - '342825' => '太湖县', - '342826' => '宿松县', - '342827' => '望江县', - '342828' => '岳西县', - '342829' => '东至县', - '342830' => '贵池县', - '342831' => '石台县', - '342900' => '池州地区', - '342901' => '贵池市', - '342921' => '东至县', - '342922' => '石台县', - '342923' => '青阳县', - '349001' => '天长市', - '349002' => '明光市', - '350126' => '长乐县', - '350127' => '福清县', - '350182' => '长乐市', - '350202' => '鼓浪屿区', - '350204' => '开元区', - '350221' => '同安县', - '350321' => '莆田县', - '350420' => '永安市', - '350422' => '永安县', - '350501' => '永安市', - '350522' => '晋江县', - '350523' => '南安县', - '350621' => '龙海县', - '350784' => '建阳市', - '350822' => '永定县', - '352100' => '建阳地区', - '352101' => '南平市', - '352102' => '邵武市', - '352103' => '武夷山市', - '352104' => '建瓯市', - '352121' => '顺昌县', - '352122' => '建阳县', - '352123' => '建瓯县', - '352124' => '浦城县', - '352125' => '邵武县', - '352126' => '崇安县', - '352127' => '光泽县', - '352128' => '松溪县', - '352129' => '政和县', - '352200' => '建阳地区', - '352201' => '南平市', - '352202' => '福安市', - '352203' => '福鼎市', - '352221' => '顺昌县', - '352222' => '建阳县', - '352223' => '建瓯县', - '352224' => '浦城县', - '352225' => '邵武县', - '352226' => '崇安县', - '352227' => '光泽县', - '352228' => '松溪县', - '352229' => '政和县', - '352230' => '周宁县', - '352231' => '柘荣县', - '352300' => '宁德地区', - '352321' => '宁德县', - '352322' => '连江县', - '352323' => '罗源县', - '352324' => '福鼎县', - '352325' => '霞浦县', - '352326' => '福安县', - '352327' => '古田县', - '352328' => '屏南县', - '352329' => '寿宁县', - '352330' => '周宁县', - '352331' => '柘荣县', - '352400' => '莆田地区', - '352401' => '泉州市', - '352421' => '闽清县', - '352422' => '永泰县', - '352423' => '长乐县', - '352424' => '福清县', - '352425' => '平潭县', - '352426' => '莆田县', - '352427' => '仙游县', - '352500' => '晋江地区', - '352501' => '泉州市', - '352521' => '惠安县', - '352522' => '晋江县', - '352523' => '南安县', - '352524' => '安溪县', - '352525' => '永春县', - '352526' => '德化县', - '352527' => '金门县', - '352528' => '平和县', - '352529' => '华安县', - '352600' => '龙溪地区', - '352601' => '漳州市', - '352602' => '漳平市', - '352621' => '龙海县', - '352622' => '云霄县', - '352623' => '漳浦县', - '352624' => '诏安县', - '352625' => '长泰县', - '352626' => '东山县', - '352627' => '南靖县', - '352628' => '平和县', - '352629' => '华安县', - '352700' => '龙岩地区', - '352701' => '龙岩市', - '352721' => '龙岩县', - '352722' => '长汀县', - '352723' => '永定县', - '352724' => '上杭县', - '352725' => '武平县', - '352726' => '漳平县', - '352727' => '连城县', - '352728' => '将乐县', - '352729' => '泰宁县', - '352730' => '建宁县', - '352800' => '三明地区', - '352801' => '三明市', - '352821' => '明溪县', - '352822' => '永安县', - '352823' => '清流县', - '352824' => '宁化县', - '352825' => '大田县', - '352826' => '尤溪县', - '352827' => '沙县', - '352828' => '将乐县', - '352829' => '泰宁县', - '352830' => '建宁县', - '359001' => '永安市', - '359002' => '石狮市', - '359003' => '福清市', - '359004' => '晋江市', - '359005' => '南安市', - '359006' => '龙海市', - '359007' => '邵武市', - '359008' => '武夷山市', - '359009' => '建瓯市', - '359010' => '建阳市', - '359011' => '长乐市', - '360122' => '南昌县', - '360211' => '鹅湖区', - '360212' => '蛟潭区', - '360221' => '乐平县', - '360311' => '上栗区', - '360312' => '芦溪区', - '360411' => '郊区', - '360421' => '九江县', - '360422' => '瑞昌县', - '360427' => '星子县', - '360621' => '贵溪县', - '360721' => '赣县', - '360782' => '南康市', - '361029' => '东乡县', - '361122' => '广丰县', - '362100' => '九江地区', - '362101' => '赣州市', - '362102' => '瑞金市', - '362103' => '南康市', - '362121' => '九江县', - '362122' => '永修县', - '362123' => '彭泽县', - '362124' => '德安县', - '362125' => '湖口县', - '362126' => '瑞昌县', - '362127' => '都昌县', - '362128' => '武宁县', - '362129' => '星子县', - '362130' => '修水县', - '362131' => '宁都县', - '362132' => '于都县', - '362133' => '兴国县', - '362134' => '瑞金县', - '362135' => '会昌县', - '362136' => '寻乌县', - '362137' => '石城县', - '362138' => '广昌县', - '362200' => '上饶地区', - '362201' => '上饶市', - '362202' => '鹰潭市', - '362203' => '樟树市', - '362204' => '高安市', - '362221' => '上饶县', - '362222' => '贵溪县', - '362223' => '婺源县', - '362224' => '余江县', - '362225' => '德兴县', - '362226' => '万年县', - '362227' => '玉山县', - '362228' => '乐平县', - '362229' => '广丰县', - '362230' => '波阳县', - '362231' => '铅山县', - '362232' => '余干县', - '362233' => '横峰县', - '362234' => '弋阳县', - '362300' => '宜春地区', - '362301' => '宜春市', - '362302' => '鹰潭市', - '362321' => '宜春县', - '362322' => '高安县', - '362323' => '万载县', - '362324' => '丰城县', - '362325' => '铜鼓县', - '362326' => '清江县', - '362327' => '宜丰县', - '362328' => '新余县', - '362329' => '上高县', - '362330' => '分宜县', - '362331' => '安义县', - '362332' => '靖安县', - '362333' => '奉新县', - '362334' => '婺源县', - '362400' => '抚州地区', - '362401' => '抚州市', - '362402' => '井冈山市', - '362421' => '临川县', - '362422' => '宜黄县', - '362423' => '金溪县', - '362424' => '崇仁县', - '362425' => '资溪县', - '362426' => '乐安县', - '362427' => '黎川县', - '362428' => '东乡县', - '362429' => '南丰县', - '362430' => '进贤县', - '362431' => '南城县', - '362432' => '宁冈县', - '362433' => '井冈山县', - '362500' => '吉安地区', - '362501' => '吉安市', - '362521' => '吉安县', - '362522' => '万安县', - '362523' => '新干县', - '362524' => '遂川县', - '362525' => '峡江县', - '362526' => '宁冈县', - '362527' => '吉水县', - '362528' => '永新县', - '362529' => '永丰县', - '362530' => '莲花县', - '362531' => '泰和县', - '362532' => '安福县', - '362533' => '井冈山县', - '362600' => '赣州地区', - '362601' => '赣州市', - '362621' => '广昌县', - '362622' => '定南县', - '362623' => '石城县', - '362624' => '龙南县', - '362625' => '宁都县', - '362626' => '全南县', - '362627' => '兴国县', - '362628' => '信丰县', - '362629' => '于都县', - '362630' => '赣县', - '362631' => '瑞金县', - '362632' => '南康县', - '362633' => '会昌县', - '362634' => '上犹县', - '362635' => '安远县', - '362636' => '崇义县', - '362637' => '寻乌县', - '362638' => '大余县', - '369001' => '瑞昌市', - '369002' => '乐平市', - '370111' => '郊区', - '370121' => '历城县', - '370122' => '章丘县', - '370123' => '长清县', - '370181' => '章丘市', - '370204' => '台东区', - '370205' => '四方区', - '370206' => '沧口区', - '370221' => '崂山县', - '370222' => '即墨县', - '370223' => '胶南县', - '370224' => '胶县', - '370225' => '莱西县', - '370226' => '平度县', - '370282' => '即墨市', - '370284' => '胶南市', - '370421' => '滕县', - '370504' => '牛庄区', - '370521' => '垦利县', - '370620' => '威海市', - '370622' => '蓬莱县', - '370623' => '黄县', - '370624' => '招远县', - '370625' => '掖县', - '370627' => '莱阳县', - '370628' => '栖霞县', - '370629' => '海阳县', - '370630' => '乳山县', - '370631' => '牟平县', - '370632' => '文登县', - '370633' => '荣成县', - '370721' => '益都县', - '370722' => '安丘县', - '370723' => '寿光县', - '370726' => '昌邑县', - '370727' => '高密县', - '370728' => '诸城县', - '370729' => '五莲县', - '370802' => '市中区', - '370822' => '兖州县', - '370823' => '曲阜县', - '370825' => '邹县', - '370882' => '兖州市', - '370901' => '威海市', - '370922' => '肥城县', - '370981' => '莱芜市', - '371021' => '乳山县', - '371022' => '文登县', - '371023' => '荣成县', - '371081' => '文登市', - '371421' => '陵县', - '371624' => '沾化县', - '371727' => '定陶县', - '372100' => '烟台地区', - '372101' => '烟台市', - '372102' => '威海市', - '372121' => '福山县', - '372122' => '蓬莱县', - '372123' => '黄县', - '372124' => '招远县', - '372125' => '掖县', - '372126' => '莱西县', - '372127' => '莱阳县', - '372128' => '栖霞县', - '372129' => '海阳县', - '372130' => '乳山县', - '372131' => '牟平县', - '372132' => '文登县', - '372133' => '荣成县', - '372134' => '长岛县', - '372200' => '昌潍地区', - '372201' => '潍坊市', - '372221' => '益都县', - '372222' => '安丘县', - '372223' => '寿光县', - '372224' => '临朐县', - '372225' => '昌乐县', - '372226' => '昌邑县', - '372227' => '高密县', - '372228' => '诸城县', - '372229' => '五莲县', - '372230' => '平度县', - '372231' => '潍县', - '372300' => '惠民地区', - '372301' => '滨州市', - '372321' => '惠民县', - '372322' => '滨县', - '372323' => '阳信县', - '372324' => '无棣县', - '372325' => '沾化县', - '372326' => '利津县', - '372327' => '广饶县', - '372328' => '博兴县', - '372329' => '桓台县', - '372330' => '邹平县', - '372331' => '高青县', - '372332' => '垦利县', - '372400' => '德州地区', - '372401' => '德州市', - '372402' => '乐陵市', - '372403' => '禹城市', - '372421' => '陵县', - '372422' => '平原县', - '372423' => '夏津县', - '372424' => '武城县', - '372425' => '齐河县', - '372426' => '禹城县', - '372427' => '乐陵县', - '372428' => '临邑县', - '372429' => '商河县', - '372430' => '济阳县', - '372431' => '宁津县', - '372432' => '庆云县', - '372500' => '聊城地区', - '372501' => '聊城市', - '372502' => '临清市', - '372521' => '阳谷县', - '372522' => '莘县', - '372523' => '茌平县', - '372524' => '东阿县', - '372525' => '冠县', - '372526' => '高唐县', - '372527' => '临清县', - '372528' => '聊城县', - '372600' => '泰安地区', - '372601' => '泰安市', - '372602' => '新汶市', - '372603' => '新泰市', - '372621' => '泰安县', - '372622' => '莱芜县', - '372623' => '新泰县', - '372624' => '宁阳县', - '372625' => '肥城县', - '372626' => '东平县', - '372627' => '平阴县', - '372628' => '新汶县', - '372629' => '汶上县', - '372630' => '泗水县', - '372700' => '济宁地区', - '372701' => '济宁市', - '372721' => '济宁县', - '372722' => '兖州县', - '372723' => '曲阜县', - '372724' => '泗水县', - '372725' => '邹县', - '372726' => '微山县', - '372727' => '鱼台县', - '372728' => '金乡县', - '372729' => '嘉祥县', - '372730' => '汶上县', - '372800' => '临沂地区', - '372801' => '临沂市', - '372821' => '临沂县', - '372822' => '郯城县', - '372823' => '苍山县', - '372824' => '莒南县', - '372825' => '日照县', - '372826' => '莒县', - '372827' => '沂水县', - '372828' => '沂源县', - '372829' => '蒙阴县', - '372830' => '平邑县', - '372831' => '费县', - '372832' => '沂南县', - '372833' => '临沭县', - '372900' => '菏泽地区', - '372901' => '菏泽市', - '372921' => '菏泽县', - '372922' => '曹县', - '372923' => '定陶县', - '372924' => '成武县', - '372925' => '单县', - '372926' => '巨野县', - '372927' => '梁山县', - '372928' => '郓城县', - '372929' => '鄄城县', - '372930' => '东明县', - '379001' => '青州市', - '379002' => '龙口市', - '379003' => '曲阜市', - '379004' => '莱芜市', - '379005' => '新泰市', - '379006' => '威海市', - '379007' => '诸城市', - '379008' => '莱阳市', - '379009' => '莱州市', - '379010' => '滕州市', - '379011' => '文登市', - '379012' => '荣成市', - '379013' => '即墨市', - '379014' => '平度市', - '379015' => '莱西市', - '379016' => '胶南市', - '379017' => '蓬莱市', - '379018' => '招远市', - '379019' => '肥城市', - '379020' => '章丘市', - '379021' => '兖州市', - '379022' => '邹城市', - '379023' => '寿光市', - '379024' => '乳山市', - '379025' => '乐陵市', - '379026' => '禹城市', - '379027' => '安丘市', - '379028' => '昌邑市', - '379029' => '高密市', - '410107' => '新密区', - '410111' => '金海区', - '410112' => '郊区', - '410121' => '荥阳县', - '410123' => '新郑县', - '410124' => '巩县', - '410125' => '登封县', - '410126' => '密县', - '410211' => '郊区', - '410224' => '开封县', - '410321' => '偃师县', - '410412' => '舞钢区', - '410424' => '临汝县', - '410426' => '襄城县', - '410504' => '铁西区', - '410511' => '郊区', - '410521' => '林县', - '410524' => '淇县', - '410525' => '浚县', - '410604' => '马村区', - '410722' => '汲县', - '410723' => '辉县', - '410824' => '沁阳县', - '410826' => '孟县', - '410827' => '济源县', - '410881' => '济源市', - '410911' => '郊区', - '410921' => '滑县', - '410924' => '内黄县', - '410925' => '长垣县', - '411021' => '禹县', - '411022' => '长葛县', - '411023' => '许昌县', - '411123' => '郾城县', - '411222' => '陕县', - '411223' => '灵宝县', - '412100' => '安阳地区', - '412101' => '安阳市', - '412102' => '文峰区', - '412103' => '北关区', - '412104' => '铁西区', - '412111' => '郊区', - '412121' => '林县', - '412122' => '安阳县', - '412123' => '汤阴县', - '412124' => '淇县', - '412125' => '浚县', - '412126' => '濮阳县', - '412127' => '滑县', - '412128' => '清丰县', - '412129' => '南乐县', - '412130' => '内黄县', - '412131' => '长垣县', - '412132' => '范县', - '412133' => '台前县', - '412200' => '新乡地区', - '412201' => '新乡市', - '412202' => '红旗区', - '412203' => '新华区', - '412204' => '北站区', - '412211' => '郊区', - '412221' => '沁阳县', - '412222' => '博爱县', - '412223' => '济源县', - '412224' => '孟县', - '412225' => '温县', - '412226' => '武陟县', - '412227' => '修武县', - '412228' => '获嘉县', - '412229' => '新乡县', - '412230' => '辉县', - '412231' => '汲县', - '412232' => '原阳县', - '412233' => '延津县', - '412234' => '封丘县', - '412300' => '商丘地区', - '412301' => '商丘市', - '412302' => '永城市', - '412321' => '虞城县', - '412322' => '商丘县', - '412323' => '民权县', - '412324' => '宁陵县', - '412325' => '睢县', - '412326' => '夏邑县', - '412327' => '柘城县', - '412328' => '永城县', - '412400' => '开封地区', - '412421' => '杞县', - '412422' => '通许县', - '412423' => '尉氏县', - '412424' => '开封县', - '412425' => '中牟县', - '412426' => '新郑县', - '412427' => '巩县', - '412428' => '登封县', - '412429' => '密县', - '412430' => '兰考县', - '412500' => '洛阳地区', - '412501' => '三门峡市', - '412502' => '义马市', - '412521' => '偃师县', - '412522' => '孟津县', - '412523' => '新安县', - '412524' => '渑池县', - '412525' => '陕县', - '412526' => '灵宝县', - '412527' => '伊川县', - '412528' => '汝阳县', - '412529' => '嵩县', - '412530' => '洛宁县', - '412531' => '卢氏县', - '412532' => '栾川县', - '412533' => '临汝县', - '412534' => '宜阳县', - '412600' => '许昌地区', - '412601' => '许昌市', - '412602' => '漯河市', - '412621' => '长葛县', - '412622' => '禹县', - '412623' => '鄢陵县', - '412624' => '许昌县', - '412625' => '郏县', - '412626' => '临颍县', - '412627' => '襄城县', - '412628' => '宝丰县', - '412629' => '郾城县', - '412630' => '叶县', - '412631' => '鲁山县', - '412632' => '舞阳县', - '412700' => '周口地区', - '412701' => '周口市', - '412702' => '项城市', - '412721' => '扶沟县', - '412722' => '西华县', - '412723' => '商水县', - '412724' => '太康县', - '412725' => '鹿邑县', - '412726' => '郸城县', - '412727' => '淮阳县', - '412728' => '沈丘县', - '412729' => '项城县', - '412800' => '驻马店地区', - '412801' => '驻马店市', - '412821' => '确山县', - '412822' => '泌阳县', - '412823' => '遂平县', - '412824' => '西平县', - '412825' => '上蔡县', - '412826' => '汝南县', - '412827' => '平舆县', - '412828' => '新蔡县', - '412829' => '正阳县', - '412900' => '南阳地区', - '412901' => '南阳市', - '412902' => '邓州市', - '412921' => '南召县', - '412922' => '方城县', - '412923' => '西峡县', - '412924' => '南阳县', - '412925' => '镇平县', - '412926' => '内乡县', - '412927' => '淅川县', - '412928' => '社旗县', - '412929' => '唐河县', - '412930' => '邓县', - '412931' => '新野县', - '412932' => '桐柏县', - '413000' => '信阳地区', - '413001' => '信阳市', - '413021' => '息县', - '413022' => '淮滨县', - '413023' => '信阳县', - '413024' => '潢川县', - '413025' => '光山县', - '413026' => '固始县', - '413027' => '商城县', - '413028' => '罗山县', - '413029' => '新县', - '419002' => '汝州市', - '419003' => '济源市', - '419004' => '禹州市', - '419005' => '卫辉市', - '419006' => '辉县市', - '419007' => '沁阳市', - '419008' => '舞钢市', - '419009' => '巩义市', - '419010' => '灵宝市', - '419011' => '长葛市', - '419012' => '偃师市', - '419013' => '邓州市', - '419014' => '林州市', - '419015' => '新密市', - '419016' => '荥阳市', - '419017' => '新郑市', - '419018' => '登封市', - '420121' => '汉阳县', - '420122' => '武昌县', - '420123' => '黄陂县', - '420124' => '新洲县', - '420211' => '郊区', - '420221' => '大冶县', - '420321' => '郧县', - '420400' => '沙市市', - '420521' => '宜昌县', - '420523' => '枝江县', - '420603' => '樊东区', - '420604' => '樊西区', - '420611' => '郊区', - '420621' => '襄阳县', - '420622' => '枣阳县', - '420623' => '宜城县', - '420803' => '沙洋区', - '420901' => '随州市', - '420924' => '汉川县', - '420983' => '广水市', - '421001' => '老河口市', - '421004' => '江陵区', - '421025' => '京山县', - '421082' => '钟祥市', - '422100' => '黄冈地区', - '422101' => '鄂城市', - '422102' => '武穴市', - '422103' => '黄州市', - '422121' => '黄冈县', - '422122' => '新洲县', - '422123' => '红安县', - '422124' => '麻城县', - '422125' => '罗田县', - '422126' => '英山县', - '422127' => '浠水县', - '422128' => '蕲春县', - '422129' => '广济县', - '422130' => '黄梅县', - '422131' => '鄂城县', - '422200' => '孝感地区', - '422201' => '孝感市', - '422202' => '应城市', - '422203' => '安陆市', - '422204' => '广水市', - '422221' => '孝感县', - '422222' => '黄陂县', - '422223' => '大悟县', - '422224' => '应山县', - '422225' => '安陆县', - '422226' => '云梦县', - '422227' => '应城县', - '422228' => '汉川县', - '422300' => '咸宁地区', - '422301' => '咸宁市', - '422302' => '蒲圻市', - '422321' => '咸宁县', - '422322' => '嘉鱼县', - '422323' => '蒲圻县', - '422324' => '通城县', - '422325' => '崇阳县', - '422326' => '通山县', - '422327' => '阳新县', - '422400' => '荆州地区', - '422401' => '荆门市', - '422402' => '石首市', - '422403' => '洪湖市', - '422404' => '天门市', - '422405' => '潜江市', - '422406' => '钟祥市', - '422421' => '江陵县', - '422422' => '松滋县', - '422423' => '公安县', - '422424' => '石首县', - '422425' => '监利县', - '422426' => '洪湖县', - '422427' => '沔阳县', - '422428' => '天门县', - '422429' => '潜江县', - '422430' => '荆门县', - '422431' => '钟祥县', - '422432' => '京山县', - '422500' => '襄阳地区', - '422501' => '随州市', - '422502' => '老河口市', - '422521' => '樊阳县', - '422522' => '枣阳县', - '422523' => '随县', - '422524' => '宜城县', - '422525' => '南漳县', - '422526' => '光化县', - '422527' => '谷城县', - '422528' => '保康县', - '422600' => '郧阳地区', - '422601' => '丹江口市', - '422621' => '均县', - '422622' => '郧县', - '422623' => '郧西县', - '422624' => '竹山县', - '422625' => '竹溪县', - '422626' => '房县', - '422627' => '神农架林区', - '422700' => '宜昌地区', - '422701' => '枝城市', - '422702' => '当阳市', - '422721' => '宜昌县', - '422722' => '宜都县', - '422723' => '枝江县', - '422724' => '当阳县', - '422725' => '远安县', - '422726' => '兴山县', - '422727' => '秭归县', - '422728' => '长阳县', - '422729' => '五峰县', - '422821' => '恩施县', - '422824' => '利川县', - '422921' => '神农架林区', - '429001' => '随州市', - '429002' => '老河口市', - '429003' => '枣阳市', - '429007' => '枝城市', - '429008' => '当阳市', - '429009' => '应城市', - '429010' => '安陆市', - '429011' => '广水市', - '429012' => '石首市', - '429013' => '洪湖市', - '429014' => '钟祥市', - '429015' => '丹江口市', - '429016' => '大冶市', - '429017' => '宜城市', - '430122' => '望城县', - '430123' => '浏阳县', - '430124' => '宁乡县', - '430219' => '醴陵市', - '430222' => '醴陵县', - '430303' => '湘江区', - '430305' => '板塘区', - '430306' => '韶山区', - '430311' => '郊区', - '430322' => '新邵县', - '430402' => '江东区', - '430403' => '城南区', - '430404' => '城北区', - '430411' => '郊区', - '430425' => '常宁县', - '430427' => '耒阳县', - '430504' => '桥头区', - '430526' => '祁东县', - '430622' => '临湘县', - '430627' => '汨罗县', - '432100' => '湘潭地区', - '432121' => '湘潭县', - '432122' => '湘乡县', - '432123' => '醴陵县', - '432124' => '浏阳县', - '432125' => '攸县', - '432126' => '茶陵县', - '432127' => '酃县', - '432200' => '岳阳地区', - '432201' => '岳阳市', - '432221' => '岳阳县', - '432222' => '平江县', - '432223' => '湘阴县', - '432224' => '汨罗县', - '432225' => '临湘县', - '432226' => '华容县', - '432300' => '益阳地区', - '432301' => '益阳市', - '432302' => '沅江市', - '432321' => '益阳县', - '432322' => '南县', - '432323' => '沅江县', - '432324' => '宁乡县', - '432325' => '桃江县', - '432326' => '安化县', - '432400' => '常德地区', - '432401' => '常德市', - '432402' => '津市市', - '432421' => '常德县', - '432422' => '安乡县', - '432423' => '汉寿县', - '432424' => '澧县', - '432425' => '临澧县', - '432426' => '桃源县', - '432427' => '石门县', - '432428' => '慈利县', - '432500' => '涟源地区', - '432501' => '娄底市', - '432502' => '冷水江市', - '432503' => '涟源市', - '432521' => '涟源县', - '432522' => '双峰县', - '432523' => '邵东县', - '432524' => '新化县', - '432525' => '新邵县', - '432600' => '邵阳地区', - '432621' => '邵阳县', - '432622' => '隆回县', - '432623' => '武冈县', - '432624' => '洞口县', - '432625' => '新宁县', - '432626' => '绥宁县', - '432627' => '城步苗族自治县', - '432700' => '衡阳地区', - '432721' => '衡阳县', - '432722' => '衡南县', - '432723' => '衡山县', - '432724' => '衡东县', - '432725' => '常宁县', - '432726' => '祁东县', - '432727' => '祁阳县', - '432800' => '郴州地区', - '432801' => '郴州市', - '432802' => '资兴市', - '432821' => '郴县', - '432822' => '桂阳县', - '432823' => '永兴县', - '432824' => '宜章县', - '432825' => '资兴县', - '432826' => '嘉禾县', - '432827' => '临武县', - '432828' => '汝城县', - '432829' => '桂东县', - '432830' => '耒阳县', - '432831' => '安仁县', - '432900' => '零陵地区', - '432901' => '永州市', - '432902' => '冷水滩市', - '432921' => '零陵县', - '432922' => '东安县', - '432923' => '道县', - '432924' => '宁远县', - '432925' => '江永县', - '432926' => '江华瑶族自治县', - '432927' => '蓝山县', - '432928' => '新田县', - '432929' => '双牌县', - '432930' => '祁阳县', - '433000' => '黔阳地区', - '433001' => '洪江市', - '433002' => '怀化市', - '433021' => '黔阳县', - '433022' => '沅陵县', - '433023' => '辰溪县', - '433024' => '溆浦县', - '433025' => '麻阳县', - '433026' => '新晃侗族自治县', - '433027' => '芷江县', - '433028' => '怀化县', - '433029' => '会同县', - '433030' => '靖县', - '433031' => '通道侗族自治县', - '433102' => '大庸市', - '433121' => '吉首县', - '433128' => '大庸县', - '433129' => '桑植县', - '439001' => '醴陵市', - '439002' => '湘乡市', - '439003' => '耒阳市', - '439004' => '汨罗市', - '439005' => '津市市', - '439006' => '韶山市', - '439007' => '临湘市', - '439008' => '浏阳市', - '439009' => '资兴市', - '439010' => '沅江市', - '439011' => '武冈市', - '440102' => '东山区', - '440107' => '天河区', - '440116' => '萝岗区', - '440121' => '花县', - '440122' => '从化县', - '440123' => '新丰县', - '440124' => '龙门县', - '440125' => '增城县', - '440126' => '番禺县', - '440127' => '清远县', - '440128' => '佛冈县', - '440181' => '番禺市', - '440182' => '花都市', - '440183' => '增城市', - '440184' => '从化市', - '440202' => '北江区', - '440221' => '曲江县', - '440223' => '南雄县', - '440225' => '乐昌县', - '440226' => '连县', - '440227' => '阳山县', - '440228' => '英德县', - '440230' => '连山壮族瑶族自治县', - '440231' => '连南瑶族自治县', - '440321' => '宝安县', - '440421' => '斗门县', - '440502' => '同平区', - '440503' => '安平区', - '440504' => '公园区', - '440505' => '金沙区', - '440506' => '达豪区', - '440508' => '金园区', - '440509' => '升平区', - '440510' => '河浦区', - '440521' => '澄海县', - '440522' => '饶平县', - '440524' => '潮阳县', - '440525' => '揭阳县', - '440526' => '揭西县', - '440527' => '普宁县', - '440528' => '惠来县', - '440582' => '潮阳市', - '440583' => '澄海市', - '440602' => '汾江区', - '440603' => '石湾区', - '440620' => '中山市', - '440621' => '三水县', - '440622' => '南海县', - '440623' => '顺德县', - '440624' => '高明县', - '440681' => '顺德市', - '440682' => '南海市', - '440683' => '三水市', - '440684' => '高明市', - '440702' => '城区', - '440711' => '郊区', - '440721' => '新会县', - '440722' => '台山县', - '440723' => '恩平县', - '440724' => '开平县', - '440725' => '鹤山县', - '440726' => '阳江县', - '440727' => '阳春县', - '440782' => '新会市', - '440821' => '吴川县', - '440822' => '廉江县', - '440824' => '海康县', - '440903' => '茂港区', - '440921' => '信宜县', - '440922' => '高州县', - '440923' => '电白县', - '440924' => '化州县', - '441000' => '海口市', - '441001' => '潮州市', - '441002' => '新华区', - '441003' => '立新区', - '441004' => '东方红区', - '441005' => '秀英区', - '441100' => '三亚市', - '441221' => '高要县', - '441222' => '四会县', - '441227' => '云浮县', - '441228' => '新兴县', - '441229' => '郁南县', - '441230' => '罗定县', - '441283' => '高要市', - '441321' => '惠阳县', - '441381' => '惠阳市', - '441421' => '梅县', - '441425' => '兴宁县', - '441522' => '陆丰县', - '441611' => '郊区', - '441703' => '阳东区', - '441722' => '阳春县', - '441723' => '阳东县', - '441811' => '清郊区', - '441822' => '英德县', - '441824' => '连县', - '441827' => '清新县', - '442100' => '海南行政区', - '442101' => '海口市', - '442102' => '通什市', - '442121' => '琼山县', - '442122' => '文昌县', - '442123' => '琼海县', - '442124' => '万宁县', - '442125' => '定安县', - '442126' => '屯昌县', - '442127' => '澄迈县', - '442128' => '临高县', - '442129' => '儋县', - '442130' => '东方黎族自治县', - '442131' => '乐东黎族自治县', - '442132' => '琼中黎族苗族自治县', - '442133' => '保亭黎族苗族自治县', - '442134' => '陵水黎族自治县', - '442135' => '白沙黎族自治县', - '442136' => '昌江黎族自治县', - '442200' => '海南黎族苗族自治州', - '442201' => '三亚市', - '442202' => '通什市', - '442221' => '崖县', - '442222' => '东方县', - '442223' => '乐东县', - '442224' => '琼中县', - '442225' => '保亭县', - '442226' => '陵水县', - '442227' => '白沙县', - '442228' => '昌江县', - '442300' => '汕头地区', - '442301' => '潮州市', - '442302' => '潮州市', - '442321' => '潮安县', - '442322' => '澄海县', - '442323' => '饶平县', - '442324' => '南澳县', - '442325' => '潮阳县', - '442326' => '揭阳县', - '442327' => '揭西县', - '442328' => '普宁县', - '442329' => '惠来县', - '442330' => '陆丰县', - '442331' => '海丰县', - '442400' => '梅县地区', - '442401' => '梅州市', - '442421' => '梅县', - '442422' => '大埔县', - '442423' => '丰顺县', - '442424' => '五华县', - '442425' => '兴宁县', - '442426' => '平远县', - '442427' => '蕉岭县', - '442500' => '惠阳地区', - '442501' => '惠州市', - '442502' => '东莞市', - '442521' => '惠阳县', - '442522' => '紫金县', - '442523' => '和平县', - '442524' => '连平县', - '442525' => '河源县', - '442526' => '博罗县', - '442527' => '东莞县', - '442528' => '惠东县', - '442529' => '龙川县', - '442530' => '陆丰县', - '442531' => '海丰县', - '442600' => '韶关地区', - '442621' => '始兴县', - '442622' => '南雄县', - '442623' => '仁化县', - '442624' => '乐昌县', - '442625' => '连县', - '442626' => '阳山县', - '442627' => '英德县', - '442628' => '清远县', - '442629' => '佛冈县', - '442630' => '翁源县', - '442631' => '连山壮族瑶族自治县', - '442632' => '连南瑶族自治县', - '442633' => '乳源瑶族自治县', - '442700' => '佛山地区', - '442721' => '三水县', - '442722' => '南海县', - '442723' => '顺德县', - '442724' => '中山县', - '442725' => '斗门县', - '442726' => '新会县', - '442727' => '台山县', - '442728' => '恩平县', - '442729' => '开平县', - '442730' => '高鹤县', - '442731' => '鹤山县', - '442732' => '高明县', - '442800' => '肇庆地区', - '442801' => '肇庆市', - '442821' => '高要县', - '442822' => '四会县', - '442823' => '广宁县', - '442824' => '怀集县', - '442825' => '封开县', - '442826' => '德庆县', - '442827' => '云浮县', - '442828' => '新兴县', - '442829' => '郁南县', - '442830' => '罗定县', - '442900' => '湛江地区', - '442921' => '阳江县', - '442922' => '阳春县', - '442923' => '信宜县', - '442924' => '高州县', - '442925' => '电白县', - '442926' => '吴川县', - '442927' => '化州县', - '442928' => '廉江县', - '442929' => '遂溪县', - '442930' => '海康县', - '442931' => '徐闻县', - '445121' => '潮安县', - '445221' => '揭东县', - '445223' => '普宁县', - '445323' => '云安县', - '449001' => '潮州市', - '449002' => '中山市', - '449003' => '海口市', - '449004' => '南海市', - '449005' => '云浮市', - '449006' => '新会市', - '449007' => '开平市', - '449008' => '三水市', - '449009' => '普宁市', - '449010' => '罗定市', - '449011' => '潮阳市', - '449012' => '高州市', - '449013' => '花都市', - '449014' => '高要市', - '449015' => '鹤山市', - '449016' => '四会市', - '449017' => '增城市', - '449018' => '廉江市', - '449019' => '英德市', - '449020' => '恩平市', - '449021' => '从化市', - '449022' => '澄海市', - '449023' => '高明市', - '449024' => '连州市', - '449025' => '雷州市', - '449026' => '乐昌市', - '449027' => '阳春市', - '449028' => '惠阳市', - '449029' => '吴川市', - '449030' => '兴宁市', - '449031' => '化州市', - '450104' => '城北区', - '450106' => '永新区', - '450121' => '邕宁县', - '450122' => '武鸣县', - '450221' => '柳江县', - '450306' => '市郊区', - '450322' => '临桂县', - '450402' => '白云区', - '450404' => '蝶山区', - '451025' => '靖西县', - '451281' => '宜州市', - '452100' => '南宁地区', - '452101' => '凭祥市', - '452121' => '邕宁县', - '452122' => '横县', - '452123' => '宾阳县', - '452124' => '上林县', - '452125' => '武鸣县', - '452126' => '隆安县', - '452127' => '马山县', - '452128' => '扶绥县', - '452129' => '崇左县', - '452130' => '大新县', - '452131' => '天等县', - '452132' => '宁明县', - '452133' => '龙州县', - '452200' => '柳州地区', - '452201' => '合山市', - '452221' => '柳江县', - '452222' => '柳城县', - '452223' => '鹿寨县', - '452224' => '象州县', - '452225' => '武宣县', - '452226' => '来宾县', - '452227' => '融安县', - '452228' => '三江侗族自治县', - '452229' => '融水苗族自治县', - '452230' => '金秀瑶族自治县', - '452231' => '忻城县', - '452300' => '桂林地区', - '452321' => '临桂县', - '452322' => '灵川县', - '452323' => '全州县', - '452324' => '兴安县', - '452325' => '永福县', - '452326' => '阳朔县', - '452327' => '灌阳县', - '452328' => '龙胜各族自治县', - '452329' => '资源县', - '452330' => '平乐县', - '452331' => '荔浦县', - '452332' => '恭城县', - '452400' => '梧州地区', - '452401' => '岑溪市', - '452402' => '贺州市', - '452421' => '岑溪县', - '452422' => '苍梧县', - '452423' => '藤县', - '452424' => '昭平县', - '452425' => '蒙山县', - '452426' => '贺县', - '452427' => '钟山县', - '452428' => '富川县', - '452500' => '玉林地区', - '452501' => '玉林市', - '452502' => '贵港市', - '452503' => '桂平市', - '452504' => '北流市', - '452521' => '玉林县', - '452522' => '贵县', - '452523' => '桂平县', - '452524' => '平南县', - '452525' => '容县', - '452526' => '北流县', - '452527' => '陆川县', - '452528' => '博白县', - '452600' => '百色地区', - '452601' => '百色市', - '452621' => '百色县', - '452622' => '田阳县', - '452623' => '田东县', - '452624' => '平果县', - '452625' => '德保县', - '452626' => '靖西县', - '452627' => '那坡县', - '452628' => '凌云县', - '452629' => '乐业县', - '452630' => '田林县', - '452631' => '隆林各族自治县', - '452632' => '西林县', - '452700' => '河池地区', - '452701' => '河池市', - '452702' => '宜州市', - '452721' => '河池县', - '452722' => '宜山县', - '452723' => '罗城县', - '452724' => '环江县', - '452725' => '南丹县', - '452726' => '天峨县', - '452727' => '凤山县', - '452728' => '东兰县', - '452729' => '巴马瑶族自治县', - '452730' => '都安瑶族自治县', - '452731' => '大化瑶族自治县', - '452800' => '钦州地区', - '452801' => '北海市', - '452802' => '钦州市', - '452821' => '上思县', - '452822' => '防城各族自治县', - '452823' => '钦州县', - '452824' => '灵山县', - '452825' => '合浦县', - '452826' => '浦北县', - '460001' => '通什市', - '460002' => '琼海市', - '460003' => '儋州市', - '460004' => '琼山市', - '460005' => '文昌市', - '460006' => '万宁市', - '460007' => '东方市', - '460021' => '琼山县', - '460022' => '文昌县', - '460023' => '琼海县', - '460024' => '万宁县', - '460025' => '定安县', - '460026' => '屯昌县', - '460027' => '澄迈县', - '460028' => '临高县', - '460029' => '儋县', - '460030' => '白沙黎族自治县', - '460031' => '昌江黎族自治县', - '460032' => '东方黎族自治县', - '460033' => '乐东黎族自治县', - '460034' => '陵水黎族自治县', - '460035' => '保亭黎族苗族自治县', - '460036' => '琼中黎族苗族自治县', - '460102' => '振东区', - '460103' => '新华区', - '460104' => '秀英区', - '469003' => '儋州市', - '500221' => '长寿县', - '500222' => '綦江县', - '500223' => '潼南县', - '500224' => '铜梁县', - '500225' => '大足县', - '500226' => '荣昌县', - '500227' => '璧山县', - '500228' => '梁平县', - '500232' => '武隆县', - '500234' => '开县', - '500239' => '黔江土家族苗族自治县', - '500381' => '江津市', - '500382' => '合川市', - '500383' => '永川市', - '500384' => '南川市', - '510102' => '东城区', - '510103' => '西城区', - '510111' => '金牛区', - '510122' => '双流县', - '510123' => '温江县', - '510124' => '郫县', - '510125' => '新都县', - '510126' => '彭县', - '510127' => '灌县', - '510128' => '崇庆县', - '510130' => '邛崃县', - '510200' => '重庆市', - '510202' => '市中区', - '510203' => '大渡口区', - '510211' => '江北区', - '510212' => '沙坪坝区', - '510213' => '九龙坡区', - '510214' => '南岸区', - '510215' => '北碚区', - '510216' => '南桐矿区', - '510217' => '双桥区', - '510218' => '渝北区', - '510219' => '巴南区', - '510221' => '长寿县', - '510222' => '巴县', - '510223' => '綦江县', - '510224' => '江北县', - '510225' => '江津县', - '510226' => '合川县', - '510227' => '潼南县', - '510228' => '铜梁县', - '510229' => '永川县', - '510230' => '大足县', - '510231' => '荣昌县', - '510232' => '璧山县', - '510281' => '永川市', - '510282' => '合川市', - '510283' => '江津市', - '510523' => '纳溪县', - '510602' => '市中区', - '510621' => '德阳县', - '510622' => '绵竹县', - '510624' => '广汉县', - '510625' => '什邡县', - '510626' => '罗江县', - '510702' => '市中区', - '510721' => '江油县', - '510724' => '安县', - '510902' => '市中区', - '511021' => '内江县', - '511022' => '乐至县', - '511023' => '安岳县', - '511026' => '资阳县', - '511027' => '简阳县', - '511028' => '隆昌县', - '511081' => '资阳市', - '511082' => '简阳市', - '511121' => '仁寿县', - '511122' => '眉山县', - '511125' => '峨眉县', - '511127' => '洪雅县', - '511128' => '彭山县', - '511130' => '青神县', - '511131' => '丹棱县', - '511200' => '万县市', - '511202' => '龙宝区', - '511203' => '天城区', - '511204' => '五桥区', - '511221' => '开县', - '511222' => '忠县', - '511223' => '梁平县', - '511224' => '云阳县', - '511225' => '奉节县', - '511226' => '巫山县', - '511227' => '巫溪县', - '511228' => '城口县', - '511422' => '彭山县', - '511522' => '南溪县', - '511721' => '达县', - '511821' => '名山县', - '512081' => '简阳市', - '512100' => '温江地区', - '512121' => '温江县', - '512122' => '郫县', - '512123' => '灌县', - '512124' => '彭县', - '512125' => '什邡县', - '512126' => '广汉县', - '512127' => '新都县', - '512128' => '新津县', - '512129' => '蒲江县', - '512130' => '邛崃县', - '512131' => '大邑县', - '512132' => '崇庆县', - '512200' => '绵阳地区', - '512201' => '绵阳市', - '512202' => '市中区', - '512221' => '江油县', - '512222' => '青川县', - '512223' => '平武县', - '512224' => '广元县', - '512225' => '旺苍县', - '512226' => '剑阁县', - '512227' => '梓潼县', - '512228' => '三台县', - '512229' => '盐亭县', - '512230' => '射洪县', - '512231' => '遂宁县', - '512232' => '蓬溪县', - '512233' => '中江县', - '512234' => '德阳县', - '512235' => '绵竹县', - '512236' => '安县', - '512237' => '北川县', - '512300' => '内江地区', - '512301' => '内江市', - '512302' => '南川市', - '512321' => '内江县', - '512322' => '乐至县', - '512323' => '安岳县', - '512324' => '威远县', - '512325' => '资中县', - '512326' => '资阳县', - '512327' => '简阳县', - '512328' => '黔江县', - '512329' => '酉阳县', - '512330' => '秀山县', - '512400' => '宜宾地区', - '512401' => '宜宾市', - '512402' => '泸州市', - '512421' => '宜宾县', - '512422' => '富顺县', - '512423' => '隆昌县', - '512424' => '南溪县', - '512425' => '江安县', - '512426' => '纳溪县', - '512427' => '泸县', - '512428' => '合江县', - '512429' => '古蔺县', - '512430' => '叙永县', - '512431' => '长宁县', - '512432' => '兴文县', - '512433' => '珙县', - '512434' => '高县', - '512435' => '筠连县', - '512436' => '屏山县', - '512500' => '乐山地区', - '512501' => '乐山市', - '512502' => '泸州市', - '512521' => '夹江县', - '512522' => '洪雅县', - '512523' => '丹棱县', - '512524' => '青神县', - '512525' => '眉山县', - '512526' => '彭山县', - '512527' => '井研县', - '512528' => '仁寿县', - '512529' => '犍为县', - '512530' => '沐川县', - '512531' => '峨眉县', - '512532' => '金口河工农区', - '512533' => '峨边县', - '512534' => '马边县', - '512535' => '屏山县', - '512600' => '江津地区', - '512601' => '乐山市', - '512621' => '永川县', - '512622' => '大足县', - '512623' => '铜梁县', - '512624' => '合川县', - '512625' => '潼南县', - '512626' => '璧山县', - '512627' => '江津县', - '512628' => '荣昌县', - '512629' => '沐川县', - '512630' => '青神县', - '512631' => '丹棱县', - '512632' => '峨边县', - '512633' => '马边县', - '512634' => '金口河工农区', - '512700' => '涪陵地区', - '512721' => '涪陵县', - '512722' => '垫江县', - '512723' => '丰都县', - '512724' => '石柱县', - '512725' => '秀山县', - '512726' => '酉阳县', - '512727' => '黔江县', - '512728' => '彭水县', - '512729' => '武隆县', - '512730' => '南川县', - '512731' => '蒲江县', - '512732' => '新津县', - '512800' => '万县地区', - '512801' => '万县市', - '512802' => '市中区', - '512821' => '万县', - '512822' => '开县', - '512823' => '城口县', - '512824' => '巫溪县', - '512825' => '巫山县', - '512826' => '奉节县', - '512827' => '云阳县', - '512828' => '忠县', - '512829' => '梁平县', - '512830' => '平武县', - '512831' => '北川县', - '512832' => '遂宁县', - '512833' => '三台县', - '512834' => '中江县', - '512835' => '蓬溪县', - '512836' => '射洪县', - '512837' => '盐亭县', - '512900' => '南充地区', - '512901' => '南充市', - '512902' => '华蓥市', - '512903' => '阆中市', - '512921' => '南充县', - '512922' => '苍溪县', - '512923' => '阆中县', - '512924' => '仪陇县', - '512925' => '南部县', - '512926' => '西充县', - '512927' => '营山县', - '512928' => '蓬安县', - '512929' => '广安县', - '512930' => '岳池县', - '512931' => '武胜县', - '512932' => '华云工农区', - '513000' => '达县地区', - '513001' => '达县市', - '513002' => '万源市', - '513021' => '达县', - '513022' => '万源县', - '513023' => '宣汉县', - '513024' => '开江县', - '513025' => '邻水县', - '513026' => '大竹县', - '513027' => '渠县', - '513028' => '南江县', - '513029' => '巴中县', - '513030' => '平昌县', - '513031' => '通江县', - '513032' => '白沙工农区', - '513100' => '雅安地区', - '513101' => '雅安市', - '513121' => '雅安县', - '513122' => '芦山县', - '513123' => '名山县', - '513124' => '荥经县', - '513125' => '汉源县', - '513126' => '石棉县', - '513127' => '天全县', - '513128' => '宝兴县', - '513229' => '汶川县', - '513321' => '康定县', - '513421' => '西昌县', - '513438' => '木里藏族自治县', - '513439' => '冕宁县', - '513500' => '黔江地区', - '513521' => '石柱土家族自治县', - '513522' => '秀山土家族苗族自治县', - '513523' => '黔江土家族苗族自治县', - '513524' => '酉阳土家族苗族自治县', - '513525' => '彭水苗族土家族自治县', - '513600' => '广安地区', - '513601' => '华蓥市', - '513621' => '岳池县', - '513622' => '广安县', - '513623' => '武胜县', - '513624' => '邻水县', - '513700' => '巴中地区', - '513701' => '巴中市', - '513721' => '通江县', - '513722' => '南江县', - '513723' => '平昌县', - '513800' => '眉山地区', - '513821' => '眉山县', - '513822' => '仁寿县', - '513823' => '彭山县', - '513824' => '洪雅县', - '513825' => '丹棱县', - '513826' => '青神县', - '513900' => '资阳地区', - '513901' => '资阳市', - '513902' => '简阳市', - '513921' => '安岳县', - '513922' => '乐至县', - '517000' => '涪陵市', - '517002' => '枳城区', - '517003' => '李渡区', - '517021' => '垫江县', - '517022' => '丰都县', - '517023' => '武隆县', - '517081' => '南川市', - '519001' => '广汉市', - '519002' => '江油市', - '519003' => '都江堰市', - '519004' => '峨眉山市', - '519005' => '永川市', - '519006' => '合川市', - '519007' => '江津市', - '519008' => '阆中市', - '519009' => '资阳市', - '519010' => '彭州市', - '519011' => '简阳市', - '519012' => '邛崃市', - '519013' => '崇州市', - '520114' => '小河区', - '520202' => '盘县特区', - '520222' => '盘县', - '520321' => '遵义县', - '520421' => '平坝县', - '522100' => '遵义地区', - '522101' => '遵义市', - '522102' => '赤水市', - '522103' => '仁怀市', - '522121' => '遵义县', - '522122' => '桐梓县', - '522123' => '绥阳县', - '522124' => '正安县', - '522125' => '道真县', - '522126' => '务川县', - '522127' => '凤冈县', - '522128' => '湄潭县', - '522129' => '余庆县', - '522130' => '仁怀县', - '522131' => '赤水县', - '522132' => '习水县', - '522200' => '铜仁地区', - '522201' => '铜仁市', - '522221' => '铜仁县', - '522222' => '江口县', - '522223' => '玉屏县', - '522224' => '石阡县', - '522225' => '思南县', - '522226' => '印江县', - '522227' => '德江县', - '522228' => '沿河县', - '522229' => '松桃苗族自治县', - '522230' => '万山特区', - '522321' => '兴义县', - '522400' => '毕节地区', - '522401' => '毕节市', - '522421' => '毕节县', - '522422' => '大方县', - '522423' => '黔西县', - '522424' => '金沙县', - '522425' => '织金县', - '522426' => '纳雍县', - '522427' => '威宁彝族回族苗族自治县', - '522428' => '赫章县', - '522500' => '安顺地区', - '522501' => '安顺市', - '522502' => '清镇市', - '522521' => '安顺县', - '522522' => '开阳县', - '522523' => '息烽县', - '522524' => '修文县', - '522525' => '清镇县', - '522526' => '平坝县', - '522527' => '普定县', - '522528' => '关岭县', - '522529' => '镇宁布依族苗族自治县', - '522530' => '紫云苗族布依族自治县', - '522621' => '凯里县', - '522721' => '都匀县', - '522724' => '福泉县', - '530121' => '安宁县', - '530122' => '呈贡县', - '530123' => '富民县', - '530200' => '东川市', - '530321' => '马龙县', - '530327' => '寻甸回族彝族自治县', - '530328' => '沾益县', - '530421' => '江川县', - '530522' => '腾冲县', - '532100' => '昭通地区', - '532101' => '昭通市', - '532121' => '昭通县', - '532122' => '鲁甸县', - '532123' => '巧家县', - '532124' => '盐津县', - '532125' => '大关县', - '532126' => '永善县', - '532127' => '绥江县', - '532128' => '镇雄县', - '532129' => '彝良县', - '532130' => '威信县', - '532131' => '水富县', - '532200' => '曲靖地区', - '532201' => '曲靖市', - '532202' => '宣威市', - '532221' => '曲靖县', - '532222' => '沾益县', - '532223' => '马龙县', - '532224' => '宣威县', - '532225' => '富源县', - '532226' => '罗平县', - '532227' => '师宗县', - '532228' => '陆良县', - '532229' => '宜良县', - '532230' => '路南彝族自治县', - '532231' => '寻甸回族彝族自治县', - '532232' => '嵩明县', - '532233' => '会泽县', - '532321' => '楚雄县', - '532330' => '禄劝县', - '532400' => '玉溪地区', - '532401' => '玉溪市', - '532421' => '玉溪县', - '532422' => '江川县', - '532423' => '澄江县', - '532424' => '通海县', - '532425' => '华宁县', - '532426' => '易门县', - '532427' => '峨山彝族自治县', - '532428' => '新平彝族傣族自治县', - '532429' => '元江哈尼族彝族傣族自治县', - '532521' => '开远县', - '532522' => '蒙自县', - '532526' => '弥勒县', - '532621' => '文山县', - '532700' => '思茅地区', - '532701' => '思茅市', - '532721' => '思茅县', - '532722' => '普洱县', - '532723' => '墨江哈尼族自治县', - '532724' => '景东县', - '532725' => '景谷县', - '532726' => '镇沅县', - '532727' => '江城哈尼族彝族自治县', - '532728' => '孟连傣族拉祜族佤族自治县', - '532729' => '澜沧拉祜族自治县', - '532730' => '西盟佤族自治县', - '532821' => '景洪县', - '532921' => '大理县', - '533000' => '保山地区', - '533001' => '保山市', - '533021' => '保山县', - '533022' => '施甸县', - '533023' => '腾冲县', - '533024' => '龙陵县', - '533025' => '昌宁县', - '533101' => '畹町市', - '533121' => '潞西县', - '533125' => '瑞丽县', - '533126' => '畹町镇', - '533200' => '丽江地区', - '533221' => '丽江纳西族自治县', - '533222' => '永胜县', - '533223' => '华坪县', - '533224' => '宁蒗彝族自治县', - '533321' => '碧江县', - '533322' => '福贡县', - '533421' => '中甸县', - '533500' => '临沧地区', - '533521' => '临沧县', - '533522' => '凤庆县', - '533523' => '云县', - '533524' => '永德县', - '533525' => '镇康县', - '533526' => '双江县', - '533527' => '耿马傣族佤族自治县', - '533528' => '沧源佤族自治县', - '540125' => '堆龙德庆县', - '540126' => '达孜县', - '540128' => '工布江达县', - '540129' => '林芝县', - '540130' => '米林县', - '540131' => '墨脱县', - '542100' => '昌都地区', - '542121' => '昌都县', - '542122' => '江达县', - '542123' => '贡觉县', - '542124' => '类乌齐县', - '542125' => '丁青县', - '542126' => '察雅县', - '542127' => '八宿县', - '542128' => '左贡县', - '542129' => '芒康县', - '542130' => '波密县', - '542131' => '察隅县', - '542132' => '洛隆县', - '542133' => '边坝县', - '542134' => '盐井县', - '542135' => '碧土县', - '542136' => '妥坝县', - '542137' => '生达县', - '542200' => '山南地区', - '542221' => '乃东县', - '542222' => '扎囊县', - '542223' => '贡嘎县', - '542224' => '桑日县', - '542225' => '穷结县', - '542226' => '曲松县', - '542227' => '措美县', - '542228' => '洛扎县', - '542229' => '加查县', - '542230' => '朗县', - '542231' => '隆子县', - '542232' => '错那县', - '542233' => '浪卡子县', - '542300' => '日喀则地区', - '542301' => '日喀则市', - '542321' => '日喀则县', - '542322' => '南木林县', - '542323' => '江孜县', - '542324' => '定日县', - '542325' => '萨迦县', - '542326' => '拉孜县', - '542327' => '昂仁县', - '542328' => '谢通门县', - '542329' => '白朗县', - '542330' => '仁布县', - '542331' => '康马县', - '542332' => '定结县', - '542333' => '仲巴县', - '542334' => '亚东县', - '542335' => '吉隆县', - '542336' => '聂拉木县', - '542337' => '萨嘎县', - '542338' => '岗巴县', - '542400' => '那曲地区', - '542421' => '那曲县', - '542422' => '嘉黎县', - '542423' => '比如县', - '542424' => '聂荣县', - '542425' => '安多县', - '542426' => '申扎县', - '542427' => '索县', - '542428' => '班戈县', - '542429' => '巴青县', - '542430' => '尼玛县', - '542431' => '双湖县', - '542528' => '隆格尔县', - '542600' => '林芝地区', - '542621' => '林芝县', - '542622' => '工布江达县', - '542623' => '米林县', - '542624' => '墨脱县', - '542625' => '波密县', - '542626' => '察隅县', - '542627' => '朗县', - '542700' => '江孜地区', - '542721' => '江孜县', - '542722' => '浪卡子县', - '542723' => '白朗县', - '542724' => '仁布县', - '542725' => '康马县', - '542726' => '亚东县', - '542727' => '岗巴县', - '610121' => '长安县', - '610123' => '临潼县', - '610125' => '户县', - '610126' => '高陵县', - '610221' => '耀县', - '610321' => '宝鸡县', - '610325' => '武功县', - '610401' => '咸阳市', - '610421' => '兴平县', - '610427' => '彬县', - '610521' => '华县', - '610624' => '安塞县', - '610721' => '南郑县', - '610821' => '神木县', - '610823' => '横山县', - '612100' => '渭南地区', - '612101' => '渭南市', - '612102' => '韩城市', - '612103' => '华阴市', - '612121' => '蓝田县', - '612122' => '临潼县', - '612123' => '渭南县', - '612124' => '华县', - '612125' => '华阴县', - '612126' => '潼关县', - '612127' => '大荔县', - '612128' => '蒲城县', - '612129' => '澄城县', - '612130' => '白水县', - '612131' => '韩城县', - '612132' => '合阳县', - '612133' => '富平县', - '612200' => '咸阳地区', - '612201' => '咸阳市', - '612221' => '兴平县', - '612222' => '周至县', - '612223' => '户县', - '612224' => '三原县', - '612225' => '泾阳县', - '612226' => '高陵县', - '612227' => '乾县', - '612228' => '礼泉县', - '612229' => '永寿县', - '612230' => '彬县', - '612231' => '长武县', - '612232' => '旬邑县', - '612233' => '淳化县', - '612300' => '汉中地区', - '612301' => '汉中市', - '612321' => '南郑县', - '612322' => '城固县', - '612323' => '洋县', - '612324' => '西乡县', - '612325' => '勉县', - '612326' => '宁强县', - '612327' => '略阳县', - '612328' => '镇巴县', - '612329' => '留坝县', - '612330' => '佛坪县', - '612400' => '安康地区', - '612401' => '安康市', - '612421' => '安康县', - '612422' => '汉阴县', - '612423' => '石泉县', - '612424' => '宁陕县', - '612425' => '紫阳县', - '612426' => '岚皋县', - '612427' => '平利县', - '612428' => '镇坪县', - '612429' => '旬阳县', - '612430' => '白河县', - '612500' => '商洛地区', - '612501' => '商州市', - '612521' => '商县', - '612522' => '洛南县', - '612523' => '丹凤县', - '612524' => '商南县', - '612525' => '山阳县', - '612526' => '镇安县', - '612527' => '柞水县', - '612600' => '延安地区', - '612601' => '延安市', - '612621' => '延长县', - '612622' => '延川县', - '612623' => '子长县', - '612624' => '安塞县', - '612625' => '志丹县', - '612626' => '吴旗县', - '612627' => '甘泉县', - '612628' => '富县', - '612629' => '洛川县', - '612630' => '宜川县', - '612631' => '黄龙县', - '612632' => '黄陵县', - '612633' => '宜君县', - '612700' => '榆林地区', - '612701' => '榆林市', - '612721' => '榆林县', - '612722' => '神木县', - '612723' => '府谷县', - '612724' => '横山县', - '612725' => '靖边县', - '612726' => '定边县', - '612727' => '绥德县', - '612728' => '米脂县', - '612729' => '佳县', - '612730' => '吴堡县', - '612731' => '清涧县', - '612732' => '子洲县', - '619001' => '兴平市', - '619002' => '韩城市', - '619003' => '华阴市', - '620112' => '白银区', - '620925' => '安西县', - '622100' => '酒泉地区', - '622101' => '玉门市', - '622102' => '酒泉市', - '622103' => '敦煌市', - '622121' => '酒泉县', - '622122' => '敦煌县', - '622123' => '金塔县', - '622124' => '肃北蒙古族自治县', - '622125' => '阿克塞哈萨克族自治县', - '622126' => '安西县', - '622200' => '张掖地区', - '622201' => '张掖市', - '622221' => '张掖县', - '622222' => '肃南裕固族自治县', - '622223' => '民乐县', - '622224' => '临泽县', - '622225' => '高台县', - '622226' => '山丹县', - '622300' => '武威地区', - '622301' => '武威市', - '622321' => '武威县', - '622322' => '民勤县', - '622323' => '古浪县', - '622324' => '景泰县', - '622325' => '永昌县', - '622326' => '天祝藏族自治县', - '622400' => '定西地区', - '622421' => '定西县', - '622422' => '靖远县', - '622423' => '会宁县', - '622424' => '通渭县', - '622425' => '陇西县', - '622426' => '渭源县', - '622427' => '临洮县', - '622428' => '漳县', - '622429' => '岷县', - '622500' => '天水地区', - '622501' => '天水市', - '622521' => '张家川回族自治县', - '622522' => '天水县', - '622523' => '清水县', - '622524' => '徽县', - '622525' => '两当县', - '622526' => '礼县', - '622527' => '西和县', - '622528' => '武山县', - '622529' => '甘谷县', - '622530' => '秦安县', - '622531' => '漳县', - '622600' => '武都地区', - '622621' => '武都县', - '622622' => '岷县', - '622623' => '宕昌县', - '622624' => '成县', - '622625' => '康县', - '622626' => '文县', - '622627' => '西和县', - '622628' => '礼县', - '622629' => '两当县', - '622630' => '徽县', - '622700' => '平凉地区', - '622701' => '平凉市', - '622721' => '平凉县', - '622722' => '泾川县', - '622723' => '灵台县', - '622724' => '崇信县', - '622725' => '华亭县', - '622726' => '庄浪县', - '622727' => '静宁县', - '622800' => '庆阳地区', - '622801' => '西峰市', - '622821' => '庆阳县', - '622822' => '环县', - '622823' => '华池县', - '622824' => '合水县', - '622825' => '正宁县', - '622826' => '宁县', - '622827' => '镇原县', - '630111' => '郊区', - '630221' => '平安县', - '632100' => '海东地区', - '632121' => '平安县', - '632122' => '民和县', - '632123' => '乐都县', - '632124' => '湟中县', - '632125' => '湟源县', - '632126' => '互助土族自治县', - '632127' => '化隆回族自治县', - '632128' => '循化撒拉族自治县', - '632421' => '河南蒙古族自治县', - '632721' => '玉树县', - '640102' => '城区', - '640103' => '新城区', - '640204' => '石炭井区', - '640211' => '郊区', - '640222' => '陶乐县', - '640223' => '惠农县', - '640321' => '中卫县', - '640322' => '中宁县', - '640382' => '灵武市', - '640421' => '海原县', - '642100' => '银南地区', - '642101' => '吴忠市', - '642102' => '青铜峡市', - '642103' => '灵武市', - '642121' => '吴忠县', - '642122' => '青铜峡县', - '642123' => '中卫县', - '642124' => '中宁县', - '642125' => '灵武县', - '642126' => '盐池县', - '642127' => '同心县', - '642200' => '固原地区', - '642221' => '固原县', - '642222' => '海原县', - '642223' => '西吉县', - '642224' => '隆德县', - '642225' => '泾源县', - '642226' => '彭阳县', - '650108' => '东山区', - '650300' => '石河子市', - '652100' => '吐鲁番地区', - '652101' => '吐鲁番市', - '652121' => '吐鲁番县', - '652122' => '鄯善县', - '652123' => '托克逊县', - '652200' => '哈密地区', - '652201' => '哈密市', - '652221' => '哈密县', - '652222' => '巴里坤哈萨克自治县', - '652223' => '伊吾县', - '652303' => '米泉市', - '652321' => '昌吉县', - '652322' => '米泉县', - '652326' => '阜康县', - '652400' => '伊犁哈萨克自治州', - '652401' => '奎屯市', - '652402' => '伊宁市', - '652403' => '一区', - '652404' => '二区', - '652421' => '伊宁县', - '652422' => '察布查尔锡伯自治县', - '652423' => '霍城县', - '652424' => '巩留县', - '652425' => '新源县', - '652426' => '昭苏县', - '652427' => '特克斯县', - '652428' => '尼勒克县', - '652500' => '塔城地区', - '652521' => '塔城县', - '652522' => '额敏县', - '652523' => '乌苏县', - '652524' => '沙湾县', - '652525' => '托里县', - '652526' => '裕民县', - '652527' => '和布克赛尔蒙古自治县', - '652600' => '阿勒泰地区', - '652621' => '阿勒泰县', - '652622' => '布尔津县', - '652623' => '富蕴县', - '652624' => '福海县', - '652625' => '哈巴河县', - '652626' => '青河县', - '652627' => '吉木乃县', - '652721' => '博乐县', - '652821' => '库尔勒县', - '652921' => '阿克苏县', - '653021' => '阿图什县', - '654001' => '奎屯市', - '654100' => '伊犁地区', - '654101' => '伊宁市', - '654121' => '伊宁县', - '654122' => '察布查尔锡伯自治县', - '654123' => '霍城县', - '654124' => '巩留县', - '654125' => '新源县', - '654126' => '昭苏县', - '654127' => '特克斯县', - '654128' => '尼勒克县', - '654222' => '乌苏县', -]; diff --git a/data/addressCode.php b/data/addressCode.php index b3ed4ae..92851bb 100644 --- a/data/addressCode.php +++ b/data/addressCode.php @@ -1,4 +1,6 @@ '北京市', - '110101' => '东城区', - '110102' => '西城区', - '110105' => '朝阳区', - '110106' => '丰台区', - '110107' => '石景山区', - '110108' => '海淀区', - '110109' => '门头沟区', - '110111' => '房山区', - '110112' => '通州区', - '110113' => '顺义区', - '110114' => '昌平区', - '110115' => '大兴区', - '110116' => '怀柔区', - '110117' => '平谷区', - '110118' => '密云区', - '110119' => '延庆区', - '120000' => '天津市', - '120101' => '和平区', - '120102' => '河东区', - '120103' => '河西区', - '120104' => '南开区', - '120105' => '河北区', - '120106' => '红桥区', - '120110' => '东丽区', - '120111' => '西青区', - '120112' => '津南区', - '120113' => '北辰区', - '120114' => '武清区', - '120115' => '宝坻区', - '120116' => '滨海新区', - '120117' => '宁河区', - '120118' => '静海区', - '120119' => '蓟州区', - '130000' => '河北省', - '130100' => '石家庄市', - '130102' => '长安区', - '130104' => '桥西区', - '130105' => '新华区', - '130107' => '井陉矿区', - '130108' => '裕华区', - '130109' => '藁城区', - '130110' => '鹿泉区', - '130111' => '栾城区', - '130121' => '井陉县', - '130123' => '正定县', - '130125' => '行唐县', - '130126' => '灵寿县', - '130127' => '高邑县', - '130128' => '深泽县', - '130129' => '赞皇县', - '130130' => '无极县', - '130131' => '平山县', - '130132' => '元氏县', - '130133' => '赵县', - '130181' => '辛集市', - '130183' => '晋州市', - '130184' => '新乐市', - '130200' => '唐山市', - '130202' => '路南区', - '130203' => '路北区', - '130204' => '古冶区', - '130205' => '开平区', - '130207' => '丰南区', - '130208' => '丰润区', - '130209' => '曹妃甸区', - '130223' => '滦县', - '130224' => '滦南县', - '130225' => '乐亭县', - '130227' => '迁西县', - '130229' => '玉田县', - '130281' => '遵化市', - '130283' => '迁安市', - '130300' => '秦皇岛市', - '130302' => '海港区', - '130303' => '山海关区', - '130304' => '北戴河区', - '130306' => '抚宁区', - '130321' => '青龙满族自治县', - '130322' => '昌黎县', - '130324' => '卢龙县', - '130400' => '邯郸市', - '130402' => '邯山区', - '130403' => '丛台区', - '130404' => '复兴区', - '130406' => '峰峰矿区', - '130407' => '肥乡区', - '130408' => '永年区', - '130423' => '临漳县', - '130424' => '成安县', - '130425' => '大名县', - '130426' => '涉县', - '130427' => '磁县', - '130430' => '邱县', - '130431' => '鸡泽县', - '130432' => '广平县', - '130433' => '馆陶县', - '130434' => '魏县', - '130435' => '曲周县', - '130481' => '武安市', - '130500' => '邢台市', - '130502' => '桥东区', - '130503' => '桥西区', - '130521' => '邢台县', - '130522' => '临城县', - '130523' => '内丘县', - '130524' => '柏乡县', - '130525' => '隆尧县', - '130526' => '任县', - '130527' => '南和县', - '130528' => '宁晋县', - '130529' => '巨鹿县', - '130530' => '新河县', - '130531' => '广宗县', - '130532' => '平乡县', - '130533' => '威县', - '130534' => '清河县', - '130535' => '临西县', - '130581' => '南宫市', - '130582' => '沙河市', - '130600' => '保定市', - '130602' => '竞秀区', - '130606' => '莲池区', - '130607' => '满城区', - '130608' => '清苑区', - '130609' => '徐水区', - '130623' => '涞水县', - '130624' => '阜平县', - '130626' => '定兴县', - '130627' => '唐县', - '130628' => '高阳县', - '130629' => '容城县', - '130630' => '涞源县', - '130631' => '望都县', - '130632' => '安新县', - '130633' => '易县', - '130634' => '曲阳县', - '130635' => '蠡县', - '130636' => '顺平县', - '130637' => '博野县', - '130638' => '雄县', - '130681' => '涿州市', - '130682' => '定州市', - '130683' => '安国市', - '130684' => '高碑店市', - '130700' => '张家口市', - '130702' => '桥东区', - '130703' => '桥西区', - '130705' => '宣化区', - '130706' => '下花园区', - '130708' => '万全区', - '130709' => '崇礼区', - '130722' => '张北县', - '130723' => '康保县', - '130724' => '沽源县', - '130725' => '尚义县', - '130726' => '蔚县', - '130727' => '阳原县', - '130728' => '怀安县', - '130730' => '怀来县', - '130731' => '涿鹿县', - '130732' => '赤城县', - '130800' => '承德市', - '130802' => '双桥区', - '130803' => '双滦区', - '130804' => '鹰手营子矿区', - '130821' => '承德县', - '130822' => '兴隆县', - '130824' => '滦平县', - '130825' => '隆化县', - '130826' => '丰宁满族自治县', - '130827' => '宽城满族自治县', - '130828' => '围场满族蒙古族自治县', - '130881' => '平泉市', - '130900' => '沧州市', - '130902' => '新华区', - '130903' => '运河区', - '130921' => '沧县', - '130922' => '青县', - '130923' => '东光县', - '130924' => '海兴县', - '130925' => '盐山县', - '130926' => '肃宁县', - '130927' => '南皮县', - '130928' => '吴桥县', - '130929' => '献县', - '130930' => '孟村回族自治县', - '130981' => '泊头市', - '130982' => '任丘市', - '130983' => '黄骅市', - '130984' => '河间市', - '131000' => '廊坊市', - '131002' => '安次区', - '131003' => '广阳区', - '131022' => '固安县', - '131023' => '永清县', - '131024' => '香河县', - '131025' => '大城县', - '131026' => '文安县', - '131028' => '大厂回族自治县', - '131081' => '霸州市', - '131082' => '三河市', - '131100' => '衡水市', - '131102' => '桃城区', - '131103' => '冀州区', - '131121' => '枣强县', - '131122' => '武邑县', - '131123' => '武强县', - '131124' => '饶阳县', - '131125' => '安平县', - '131126' => '故城县', - '131127' => '景县', - '131128' => '阜城县', - '131182' => '深州市', - '140000' => '山西省', - '140100' => '太原市', - '140105' => '小店区', - '140106' => '迎泽区', - '140107' => '杏花岭区', - '140108' => '尖草坪区', - '140109' => '万柏林区', - '140110' => '晋源区', - '140121' => '清徐县', - '140122' => '阳曲县', - '140123' => '娄烦县', - '140181' => '古交市', - '140200' => '大同市', - '140212' => '新荣区', - '140213' => '平城区', - '140214' => '云冈区', - '140215' => '云州区', - '140221' => '阳高县', - '140222' => '天镇县', - '140223' => '广灵县', - '140224' => '灵丘县', - '140225' => '浑源县', - '140226' => '左云县', - '140300' => '阳泉市', - '140302' => '城区', - '140303' => '矿区', - '140311' => '郊区', - '140321' => '平定县', - '140322' => '盂县', - '140400' => '长治市', - '140402' => '城区', - '140411' => '郊区', - '140421' => '长治县', - '140423' => '襄垣县', - '140424' => '屯留县', - '140425' => '平顺县', - '140426' => '黎城县', - '140427' => '壶关县', - '140428' => '长子县', - '140429' => '武乡县', - '140430' => '沁县', - '140431' => '沁源县', - '140481' => '潞城市', - '140500' => '晋城市', - '140502' => '城区', - '140521' => '沁水县', - '140522' => '阳城县', - '140524' => '陵川县', - '140525' => '泽州县', - '140581' => '高平市', - '140600' => '朔州市', - '140602' => '朔城区', - '140603' => '平鲁区', - '140621' => '山阴县', - '140622' => '应县', - '140623' => '右玉县', - '140624' => '怀仁县', - '140700' => '晋中市', - '140702' => '榆次区', - '140721' => '榆社县', - '140722' => '左权县', - '140723' => '和顺县', - '140724' => '昔阳县', - '140725' => '寿阳县', - '140726' => '太谷县', - '140727' => '祁县', - '140728' => '平遥县', - '140729' => '灵石县', - '140781' => '介休市', - '140800' => '运城市', - '140802' => '盐湖区', - '140821' => '临猗县', - '140822' => '万荣县', - '140823' => '闻喜县', - '140824' => '稷山县', - '140825' => '新绛县', - '140826' => '绛县', - '140827' => '垣曲县', - '140828' => '夏县', - '140829' => '平陆县', - '140830' => '芮城县', - '140881' => '永济市', - '140882' => '河津市', - '140900' => '忻州市', - '140902' => '忻府区', - '140921' => '定襄县', - '140922' => '五台县', - '140923' => '代县', - '140924' => '繁峙县', - '140925' => '宁武县', - '140926' => '静乐县', - '140927' => '神池县', - '140928' => '五寨县', - '140929' => '岢岚县', - '140930' => '河曲县', - '140931' => '保德县', - '140932' => '偏关县', - '140981' => '原平市', - '141000' => '临汾市', - '141002' => '尧都区', - '141021' => '曲沃县', - '141022' => '翼城县', - '141023' => '襄汾县', - '141024' => '洪洞县', - '141025' => '古县', - '141026' => '安泽县', - '141027' => '浮山县', - '141028' => '吉县', - '141029' => '乡宁县', - '141030' => '大宁县', - '141031' => '隰县', - '141032' => '永和县', - '141033' => '蒲县', - '141034' => '汾西县', - '141081' => '侯马市', - '141082' => '霍州市', - '141100' => '吕梁市', - '141102' => '离石区', - '141121' => '文水县', - '141122' => '交城县', - '141123' => '兴县', - '141124' => '临县', - '141125' => '柳林县', - '141126' => '石楼县', - '141127' => '岚县', - '141128' => '方山县', - '141129' => '中阳县', - '141130' => '交口县', - '141181' => '孝义市', - '141182' => '汾阳市', - '150000' => '内蒙古自治区', - '150100' => '呼和浩特市', - '150102' => '新城区', - '150103' => '回民区', - '150104' => '玉泉区', - '150105' => '赛罕区', - '150121' => '土默特左旗', - '150122' => '托克托县', - '150123' => '和林格尔县', - '150124' => '清水河县', - '150125' => '武川县', - '150200' => '包头市', - '150202' => '东河区', - '150203' => '昆都仑区', - '150204' => '青山区', - '150205' => '石拐区', - '150206' => '白云鄂博矿区', - '150207' => '九原区', - '150221' => '土默特右旗', - '150222' => '固阳县', - '150223' => '达尔罕茂明安联合旗', - '150300' => '乌海市', - '150302' => '海勃湾区', - '150303' => '海南区', - '150304' => '乌达区', - '150400' => '赤峰市', - '150402' => '红山区', - '150403' => '元宝山区', - '150404' => '松山区', - '150421' => '阿鲁科尔沁旗', - '150422' => '巴林左旗', - '150423' => '巴林右旗', - '150424' => '林西县', - '150425' => '克什克腾旗', - '150426' => '翁牛特旗', - '150428' => '喀喇沁旗', - '150429' => '宁城县', - '150430' => '敖汉旗', - '150500' => '通辽市', - '150502' => '科尔沁区', - '150521' => '科尔沁左翼中旗', - '150522' => '科尔沁左翼后旗', - '150523' => '开鲁县', - '150524' => '库伦旗', - '150525' => '奈曼旗', - '150526' => '扎鲁特旗', - '150581' => '霍林郭勒市', - '150600' => '鄂尔多斯市', - '150602' => '东胜区', - '150603' => '康巴什区', - '150621' => '达拉特旗', - '150622' => '准格尔旗', - '150623' => '鄂托克前旗', - '150624' => '鄂托克旗', - '150625' => '杭锦旗', - '150626' => '乌审旗', - '150627' => '伊金霍洛旗', - '150700' => '呼伦贝尔市', - '150702' => '海拉尔区', - '150703' => '扎赉诺尔区', - '150721' => '阿荣旗', - '150722' => '莫力达瓦达斡尔族自治旗', - '150723' => '鄂伦春自治旗', - '150724' => '鄂温克族自治旗', - '150725' => '陈巴尔虎旗', - '150726' => '新巴尔虎左旗', - '150727' => '新巴尔虎右旗', - '150781' => '满洲里市', - '150782' => '牙克石市', - '150783' => '扎兰屯市', - '150784' => '额尔古纳市', - '150785' => '根河市', - '150800' => '巴彦淖尔市', - '150802' => '临河区', - '150821' => '五原县', - '150822' => '磴口县', - '150823' => '乌拉特前旗', - '150824' => '乌拉特中旗', - '150825' => '乌拉特后旗', - '150826' => '杭锦后旗', - '150900' => '乌兰察布市', - '150902' => '集宁区', - '150921' => '卓资县', - '150922' => '化德县', - '150923' => '商都县', - '150924' => '兴和县', - '150925' => '凉城县', - '150926' => '察哈尔右翼前旗', - '150927' => '察哈尔右翼中旗', - '150928' => '察哈尔右翼后旗', - '150929' => '四子王旗', - '150981' => '丰镇市', - '152200' => '兴安盟', - '152201' => '乌兰浩特市', - '152202' => '阿尔山市', - '152221' => '科尔沁右翼前旗', - '152222' => '科尔沁右翼中旗', - '152223' => '扎赉特旗', - '152224' => '突泉县', - '152500' => '锡林郭勒盟', - '152501' => '二连浩特市', - '152502' => '锡林浩特市', - '152522' => '阿巴嘎旗', - '152523' => '苏尼特左旗', - '152524' => '苏尼特右旗', - '152525' => '东乌珠穆沁旗', - '152526' => '西乌珠穆沁旗', - '152527' => '太仆寺旗', - '152528' => '镶黄旗', - '152529' => '正镶白旗', - '152530' => '正蓝旗', - '152531' => '多伦县', - '152900' => '阿拉善盟', - '152921' => '阿拉善左旗', - '152922' => '阿拉善右旗', - '152923' => '额济纳旗', - '210000' => '辽宁省', - '210100' => '沈阳市', - '210102' => '和平区', - '210103' => '沈河区', - '210104' => '大东区', - '210105' => '皇姑区', - '210106' => '铁西区', - '210111' => '苏家屯区', - '210112' => '浑南区', - '210113' => '沈北新区', - '210114' => '于洪区', - '210115' => '辽中区', - '210123' => '康平县', - '210124' => '法库县', - '210181' => '新民市', - '210200' => '大连市', - '210202' => '中山区', - '210203' => '西岗区', - '210204' => '沙河口区', - '210211' => '甘井子区', - '210212' => '旅顺口区', - '210213' => '金州区', - '210214' => '普兰店区', - '210224' => '长海县', - '210281' => '瓦房店市', - '210283' => '庄河市', - '210300' => '鞍山市', - '210302' => '铁东区', - '210303' => '铁西区', - '210304' => '立山区', - '210311' => '千山区', - '210321' => '台安县', - '210323' => '岫岩满族自治县', - '210381' => '海城市', - '210400' => '抚顺市', - '210402' => '新抚区', - '210403' => '东洲区', - '210404' => '望花区', - '210411' => '顺城区', - '210421' => '抚顺县', - '210422' => '新宾满族自治县', - '210423' => '清原满族自治县', - '210500' => '本溪市', - '210502' => '平山区', - '210503' => '溪湖区', - '210504' => '明山区', - '210505' => '南芬区', - '210521' => '本溪满族自治县', - '210522' => '桓仁满族自治县', - '210600' => '丹东市', - '210602' => '元宝区', - '210603' => '振兴区', - '210604' => '振安区', - '210624' => '宽甸满族自治县', - '210681' => '东港市', - '210682' => '凤城市', - '210700' => '锦州市', - '210702' => '古塔区', - '210703' => '凌河区', - '210711' => '太和区', - '210726' => '黑山县', - '210727' => '义县', - '210781' => '凌海市', - '210782' => '北镇市', - '210800' => '营口市', - '210802' => '站前区', - '210803' => '西市区', - '210804' => '鲅鱼圈区', - '210811' => '老边区', - '210881' => '盖州市', - '210882' => '大石桥市', - '210900' => '阜新市', - '210902' => '海州区', - '210903' => '新邱区', - '210904' => '太平区', - '210905' => '清河门区', - '210911' => '细河区', - '210921' => '阜新蒙古族自治县', - '210922' => '彰武县', - '211000' => '辽阳市', - '211002' => '白塔区', - '211003' => '文圣区', - '211004' => '宏伟区', - '211005' => '弓长岭区', - '211011' => '太子河区', - '211021' => '辽阳县', - '211081' => '灯塔市', - '211100' => '盘锦市', - '211102' => '双台子区', - '211103' => '兴隆台区', - '211104' => '大洼区', - '211122' => '盘山县', - '211200' => '铁岭市', - '211202' => '银州区', - '211204' => '清河区', - '211221' => '铁岭县', - '211223' => '西丰县', - '211224' => '昌图县', - '211281' => '调兵山市', - '211282' => '开原市', - '211300' => '朝阳市', - '211302' => '双塔区', - '211303' => '龙城区', - '211321' => '朝阳县', - '211322' => '建平县', - '211324' => '喀喇沁左翼蒙古族自治县', - '211381' => '北票市', - '211382' => '凌源市', - '211400' => '葫芦岛市', - '211402' => '连山区', - '211403' => '龙港区', - '211404' => '南票区', - '211421' => '绥中县', - '211422' => '建昌县', - '211481' => '兴城市', - '220000' => '吉林省', - '220100' => '长春市', - '220102' => '南关区', - '220103' => '宽城区', - '220104' => '朝阳区', - '220105' => '二道区', - '220106' => '绿园区', - '220112' => '双阳区', - '220113' => '九台区', - '220122' => '农安县', - '220182' => '榆树市', - '220183' => '德惠市', - '220200' => '吉林市', - '220202' => '昌邑区', - '220203' => '龙潭区', - '220204' => '船营区', - '220211' => '丰满区', - '220221' => '永吉县', - '220281' => '蛟河市', - '220282' => '桦甸市', - '220283' => '舒兰市', - '220284' => '磐石市', - '220300' => '四平市', - '220302' => '铁西区', - '220303' => '铁东区', - '220322' => '梨树县', - '220323' => '伊通满族自治县', - '220381' => '公主岭市', - '220382' => '双辽市', - '220400' => '辽源市', - '220402' => '龙山区', - '220403' => '西安区', - '220421' => '东丰县', - '220422' => '东辽县', - '220500' => '通化市', - '220502' => '东昌区', - '220503' => '二道江区', - '220521' => '通化县', - '220523' => '辉南县', - '220524' => '柳河县', - '220581' => '梅河口市', - '220582' => '集安市', - '220600' => '白山市', - '220602' => '浑江区', - '220605' => '江源区', - '220621' => '抚松县', - '220622' => '靖宇县', - '220623' => '长白朝鲜族自治县', - '220681' => '临江市', - '220700' => '松原市', - '220702' => '宁江区', - '220721' => '前郭尔罗斯蒙古族自治县', - '220722' => '长岭县', - '220723' => '乾安县', - '220781' => '扶余市', - '220800' => '白城市', - '220802' => '洮北区', - '220821' => '镇赉县', - '220822' => '通榆县', - '220881' => '洮南市', - '220882' => '大安市', - '222400' => '延边朝鲜族自治州', - '222401' => '延吉市', - '222402' => '图们市', - '222403' => '敦化市', - '222404' => '珲春市', - '222405' => '龙井市', - '222406' => '和龙市', - '222424' => '汪清县', - '222426' => '安图县', - '230000' => '黑龙江省', - '230100' => '哈尔滨市', - '230102' => '道里区', - '230103' => '南岗区', - '230104' => '道外区', - '230108' => '平房区', - '230109' => '松北区', - '230110' => '香坊区', - '230111' => '呼兰区', - '230112' => '阿城区', - '230113' => '双城区', - '230123' => '依兰县', - '230124' => '方正县', - '230125' => '宾县', - '230126' => '巴彦县', - '230127' => '木兰县', - '230128' => '通河县', - '230129' => '延寿县', - '230183' => '尚志市', - '230184' => '五常市', - '230200' => '齐齐哈尔市', - '230202' => '龙沙区', - '230203' => '建华区', - '230204' => '铁锋区', - '230205' => '昂昂溪区', - '230206' => '富拉尔基区', - '230207' => '碾子山区', - '230208' => '梅里斯达斡尔族区', - '230221' => '龙江县', - '230223' => '依安县', - '230224' => '泰来县', - '230225' => '甘南县', - '230227' => '富裕县', - '230229' => '克山县', - '230230' => '克东县', - '230231' => '拜泉县', - '230281' => '讷河市', - '230300' => '鸡西市', - '230302' => '鸡冠区', - '230303' => '恒山区', - '230304' => '滴道区', - '230305' => '梨树区', - '230306' => '城子河区', - '230307' => '麻山区', - '230321' => '鸡东县', - '230381' => '虎林市', - '230382' => '密山市', - '230400' => '鹤岗市', - '230402' => '向阳区', - '230403' => '工农区', - '230404' => '南山区', - '230405' => '兴安区', - '230406' => '东山区', - '230407' => '兴山区', - '230421' => '萝北县', - '230422' => '绥滨县', - '230500' => '双鸭山市', - '230502' => '尖山区', - '230503' => '岭东区', - '230505' => '四方台区', - '230506' => '宝山区', - '230521' => '集贤县', - '230522' => '友谊县', - '230523' => '宝清县', - '230524' => '饶河县', - '230600' => '大庆市', - '230602' => '萨尔图区', - '230603' => '龙凤区', - '230604' => '让胡路区', - '230605' => '红岗区', - '230606' => '大同区', - '230621' => '肇州县', - '230622' => '肇源县', - '230623' => '林甸县', - '230624' => '杜尔伯特蒙古族自治县', - '230700' => '伊春市', - '230702' => '伊春区', - '230703' => '南岔区', - '230704' => '友好区', - '230705' => '西林区', - '230706' => '翠峦区', - '230707' => '新青区', - '230708' => '美溪区', - '230709' => '金山屯区', - '230710' => '五营区', - '230711' => '乌马河区', - '230712' => '汤旺河区', - '230713' => '带岭区', - '230714' => '乌伊岭区', - '230715' => '红星区', - '230716' => '上甘岭区', - '230722' => '嘉荫县', - '230781' => '铁力市', - '230800' => '佳木斯市', - '230803' => '向阳区', - '230804' => '前进区', - '230805' => '东风区', - '230811' => '郊区', - '230822' => '桦南县', - '230826' => '桦川县', - '230828' => '汤原县', - '230881' => '同江市', - '230882' => '富锦市', - '230883' => '抚远市', - '230900' => '七台河市', - '230902' => '新兴区', - '230903' => '桃山区', - '230904' => '茄子河区', - '230921' => '勃利县', - '231000' => '牡丹江市', - '231002' => '东安区', - '231003' => '阳明区', - '231004' => '爱民区', - '231005' => '西安区', - '231025' => '林口县', - '231081' => '绥芬河市', - '231083' => '海林市', - '231084' => '宁安市', - '231085' => '穆棱市', - '231086' => '东宁市', - '231100' => '黑河市', - '231102' => '爱辉区', - '231121' => '嫩江县', - '231123' => '逊克县', - '231124' => '孙吴县', - '231181' => '北安市', - '231182' => '五大连池市', - '231200' => '绥化市', - '231202' => '北林区', - '231221' => '望奎县', - '231222' => '兰西县', - '231223' => '青冈县', - '231224' => '庆安县', - '231225' => '明水县', - '231226' => '绥棱县', - '231281' => '安达市', - '231282' => '肇东市', - '231283' => '海伦市', - '232700' => '大兴安岭地区', - '232721' => '呼玛县', - '232722' => '塔河县', - '232723' => '漠河县', - '310000' => '上海市', - '310101' => '黄浦区', - '310104' => '徐汇区', - '310105' => '长宁区', - '310106' => '静安区', - '310107' => '普陀区', - '310109' => '虹口区', - '310110' => '杨浦区', - '310112' => '闵行区', - '310113' => '宝山区', - '310114' => '嘉定区', - '310115' => '浦东新区', - '310116' => '金山区', - '310117' => '松江区', - '310118' => '青浦区', - '310120' => '奉贤区', - '310151' => '崇明区', - '320000' => '江苏省', - '320100' => '南京市', - '320102' => '玄武区', - '320104' => '秦淮区', - '320105' => '建邺区', - '320106' => '鼓楼区', - '320111' => '浦口区', - '320113' => '栖霞区', - '320114' => '雨花台区', - '320115' => '江宁区', - '320116' => '六合区', - '320117' => '溧水区', - '320118' => '高淳区', - '320200' => '无锡市', - '320205' => '锡山区', - '320206' => '惠山区', - '320211' => '滨湖区', - '320213' => '梁溪区', - '320214' => '新吴区', - '320281' => '江阴市', - '320282' => '宜兴市', - '320300' => '徐州市', - '320302' => '鼓楼区', - '320303' => '云龙区', - '320305' => '贾汪区', - '320311' => '泉山区', - '320312' => '铜山区', - '320321' => '丰县', - '320322' => '沛县', - '320324' => '睢宁县', - '320381' => '新沂市', - '320382' => '邳州市', - '320400' => '常州市', - '320402' => '天宁区', - '320404' => '钟楼区', - '320411' => '新北区', - '320412' => '武进区', - '320413' => '金坛区', - '320481' => '溧阳市', - '320500' => '苏州市', - '320505' => '虎丘区', - '320506' => '吴中区', - '320507' => '相城区', - '320508' => '姑苏区', - '320509' => '吴江区', - '320581' => '常熟市', - '320582' => '张家港市', - '320583' => '昆山市', - '320585' => '太仓市', - '320600' => '南通市', - '320602' => '崇川区', - '320611' => '港闸区', - '320612' => '通州区', - '320623' => '如东县', - '320681' => '启东市', - '320682' => '如皋市', - '320684' => '海门市', - '320685' => '海安市', - '320700' => '连云港市', - '320703' => '连云区', - '320706' => '海州区', - '320707' => '赣榆区', - '320722' => '东海县', - '320723' => '灌云县', - '320724' => '灌南县', - '320800' => '淮安市', - '320803' => '淮安区', - '320804' => '淮阴区', - '320812' => '清江浦区', - '320813' => '洪泽区', - '320826' => '涟水县', - '320830' => '盱眙县', - '320831' => '金湖县', - '320900' => '盐城市', - '320902' => '亭湖区', - '320903' => '盐都区', - '320904' => '大丰区', - '320921' => '响水县', - '320922' => '滨海县', - '320923' => '阜宁县', - '320924' => '射阳县', - '320925' => '建湖县', - '320981' => '东台市', - '321000' => '扬州市', - '321002' => '广陵区', - '321003' => '邗江区', - '321012' => '江都区', - '321023' => '宝应县', - '321081' => '仪征市', - '321084' => '高邮市', - '321100' => '镇江市', - '321102' => '京口区', - '321111' => '润州区', - '321112' => '丹徒区', - '321181' => '丹阳市', - '321182' => '扬中市', - '321183' => '句容市', - '321200' => '泰州市', - '321202' => '海陵区', - '321203' => '高港区', - '321204' => '姜堰区', - '321281' => '兴化市', - '321282' => '靖江市', - '321283' => '泰兴市', - '321300' => '宿迁市', - '321302' => '宿城区', - '321311' => '宿豫区', - '321322' => '沭阳县', - '321323' => '泗阳县', - '321324' => '泗洪县', - '330000' => '浙江省', - '330100' => '杭州市', - '330102' => '上城区', - '330103' => '下城区', - '330104' => '江干区', - '330105' => '拱墅区', - '330106' => '西湖区', - '330108' => '滨江区', - '330109' => '萧山区', - '330110' => '余杭区', - '330111' => '富阳区', - '330112' => '临安区', - '330122' => '桐庐县', - '330127' => '淳安县', - '330182' => '建德市', - '330200' => '宁波市', - '330203' => '海曙区', - '330205' => '江北区', - '330206' => '北仑区', - '330211' => '镇海区', - '330212' => '鄞州区', - '330213' => '奉化区', - '330225' => '象山县', - '330226' => '宁海县', - '330281' => '余姚市', - '330282' => '慈溪市', - '330300' => '温州市', - '330302' => '鹿城区', - '330303' => '龙湾区', - '330304' => '瓯海区', - '330305' => '洞头区', - '330324' => '永嘉县', - '330326' => '平阳县', - '330327' => '苍南县', - '330328' => '文成县', - '330329' => '泰顺县', - '330381' => '瑞安市', - '330382' => '乐清市', - '330400' => '嘉兴市', - '330402' => '南湖区', - '330411' => '秀洲区', - '330421' => '嘉善县', - '330424' => '海盐县', - '330481' => '海宁市', - '330482' => '平湖市', - '330483' => '桐乡市', - '330500' => '湖州市', - '330502' => '吴兴区', - '330503' => '南浔区', - '330521' => '德清县', - '330522' => '长兴县', - '330523' => '安吉县', - '330600' => '绍兴市', - '330602' => '越城区', - '330603' => '柯桥区', - '330604' => '上虞区', - '330624' => '新昌县', - '330681' => '诸暨市', - '330683' => '嵊州市', - '330700' => '金华市', - '330702' => '婺城区', - '330703' => '金东区', - '330723' => '武义县', - '330726' => '浦江县', - '330727' => '磐安县', - '330781' => '兰溪市', - '330782' => '义乌市', - '330783' => '东阳市', - '330784' => '永康市', - '330800' => '衢州市', - '330802' => '柯城区', - '330803' => '衢江区', - '330822' => '常山县', - '330824' => '开化县', - '330825' => '龙游县', - '330881' => '江山市', - '330900' => '舟山市', - '330902' => '定海区', - '330903' => '普陀区', - '330921' => '岱山县', - '330922' => '嵊泗县', - '331000' => '台州市', - '331002' => '椒江区', - '331003' => '黄岩区', - '331004' => '路桥区', - '331022' => '三门县', - '331023' => '天台县', - '331024' => '仙居县', - '331081' => '温岭市', - '331082' => '临海市', - '331083' => '玉环市', - '331100' => '丽水市', - '331102' => '莲都区', - '331121' => '青田县', - '331122' => '缙云县', - '331123' => '遂昌县', - '331124' => '松阳县', - '331125' => '云和县', - '331126' => '庆元县', - '331127' => '景宁畲族自治县', - '331181' => '龙泉市', - '340000' => '安徽省', - '340100' => '合肥市', - '340102' => '瑶海区', - '340103' => '庐阳区', - '340104' => '蜀山区', - '340111' => '包河区', - '340121' => '长丰县', - '340122' => '肥东县', - '340123' => '肥西县', - '340124' => '庐江县', - '340181' => '巢湖市', - '340200' => '芜湖市', - '340202' => '镜湖区', - '340203' => '弋江区', - '340207' => '鸠江区', - '340208' => '三山区', - '340221' => '芜湖县', - '340222' => '繁昌县', - '340223' => '南陵县', - '340225' => '无为县', - '340300' => '蚌埠市', - '340302' => '龙子湖区', - '340303' => '蚌山区', - '340304' => '禹会区', - '340311' => '淮上区', - '340321' => '怀远县', - '340322' => '五河县', - '340323' => '固镇县', - '340400' => '淮南市', - '340402' => '大通区', - '340403' => '田家庵区', - '340404' => '谢家集区', - '340405' => '八公山区', - '340406' => '潘集区', - '340421' => '凤台县', - '340422' => '寿县', - '340500' => '马鞍山市', - '340503' => '花山区', - '340504' => '雨山区', - '340506' => '博望区', - '340521' => '当涂县', - '340522' => '含山县', - '340523' => '和县', - '340600' => '淮北市', - '340602' => '杜集区', - '340603' => '相山区', - '340604' => '烈山区', - '340621' => '濉溪县', - '340700' => '铜陵市', - '340705' => '铜官区', - '340706' => '义安区', - '340711' => '郊区', - '340722' => '枞阳县', - '340800' => '安庆市', - '340802' => '迎江区', - '340803' => '大观区', - '340811' => '宜秀区', - '340822' => '怀宁县', - '340824' => '潜山县', - '340825' => '太湖县', - '340826' => '宿松县', - '340827' => '望江县', - '340828' => '岳西县', - '340881' => '桐城市', - '341000' => '黄山市', - '341002' => '屯溪区', - '341003' => '黄山区', - '341004' => '徽州区', - '341021' => '歙县', - '341022' => '休宁县', - '341023' => '黟县', - '341024' => '祁门县', - '341100' => '滁州市', - '341102' => '琅琊区', - '341103' => '南谯区', - '341122' => '来安县', - '341124' => '全椒县', - '341125' => '定远县', - '341126' => '凤阳县', - '341181' => '天长市', - '341182' => '明光市', - '341200' => '阜阳市', - '341202' => '颍州区', - '341203' => '颍东区', - '341204' => '颍泉区', - '341221' => '临泉县', - '341222' => '太和县', - '341225' => '阜南县', - '341226' => '颍上县', - '341282' => '界首市', - '341300' => '宿州市', - '341302' => '埇桥区', - '341321' => '砀山县', - '341322' => '萧县', - '341323' => '灵璧县', - '341324' => '泗县', - '341500' => '六安市', - '341502' => '金安区', - '341503' => '裕安区', - '341504' => '叶集区', - '341522' => '霍邱县', - '341523' => '舒城县', - '341524' => '金寨县', - '341525' => '霍山县', - '341600' => '亳州市', - '341602' => '谯城区', - '341621' => '涡阳县', - '341622' => '蒙城县', - '341623' => '利辛县', - '341700' => '池州市', - '341702' => '贵池区', - '341721' => '东至县', - '341722' => '石台县', - '341723' => '青阳县', - '341800' => '宣城市', - '341802' => '宣州区', - '341821' => '郎溪县', - '341822' => '广德县', - '341823' => '泾县', - '341824' => '绩溪县', - '341825' => '旌德县', - '341881' => '宁国市', - '350000' => '福建省', - '350100' => '福州市', - '350102' => '鼓楼区', - '350103' => '台江区', - '350104' => '仓山区', - '350105' => '马尾区', - '350111' => '晋安区', - '350112' => '长乐区', - '350121' => '闽侯县', - '350122' => '连江县', - '350123' => '罗源县', - '350124' => '闽清县', - '350125' => '永泰县', - '350128' => '平潭县', - '350181' => '福清市', - '350200' => '厦门市', - '350203' => '思明区', - '350205' => '海沧区', - '350206' => '湖里区', - '350211' => '集美区', - '350212' => '同安区', - '350213' => '翔安区', - '350300' => '莆田市', - '350302' => '城厢区', - '350303' => '涵江区', - '350304' => '荔城区', - '350305' => '秀屿区', - '350322' => '仙游县', - '350400' => '三明市', - '350402' => '梅列区', - '350403' => '三元区', - '350421' => '明溪县', - '350423' => '清流县', - '350424' => '宁化县', - '350425' => '大田县', - '350426' => '尤溪县', - '350427' => '沙县', - '350428' => '将乐县', - '350429' => '泰宁县', - '350430' => '建宁县', - '350481' => '永安市', - '350500' => '泉州市', - '350502' => '鲤城区', - '350503' => '丰泽区', - '350504' => '洛江区', - '350505' => '泉港区', - '350521' => '惠安县', - '350524' => '安溪县', - '350525' => '永春县', - '350526' => '德化县', - '350527' => '金门县', - '350581' => '石狮市', - '350582' => '晋江市', - '350583' => '南安市', - '350600' => '漳州市', - '350602' => '芗城区', - '350603' => '龙文区', - '350622' => '云霄县', - '350623' => '漳浦县', - '350624' => '诏安县', - '350625' => '长泰县', - '350626' => '东山县', - '350627' => '南靖县', - '350628' => '平和县', - '350629' => '华安县', - '350681' => '龙海市', - '350700' => '南平市', - '350702' => '延平区', - '350703' => '建阳区', - '350721' => '顺昌县', - '350722' => '浦城县', - '350723' => '光泽县', - '350724' => '松溪县', - '350725' => '政和县', - '350781' => '邵武市', - '350782' => '武夷山市', - '350783' => '建瓯市', - '350800' => '龙岩市', - '350802' => '新罗区', - '350803' => '永定区', - '350821' => '长汀县', - '350823' => '上杭县', - '350824' => '武平县', - '350825' => '连城县', - '350881' => '漳平市', - '350900' => '宁德市', - '350902' => '蕉城区', - '350921' => '霞浦县', - '350922' => '古田县', - '350923' => '屏南县', - '350924' => '寿宁县', - '350925' => '周宁县', - '350926' => '柘荣县', - '350981' => '福安市', - '350982' => '福鼎市', - '360000' => '江西省', - '360100' => '南昌市', - '360102' => '东湖区', - '360103' => '西湖区', - '360104' => '青云谱区', - '360105' => '湾里区', - '360111' => '青山湖区', - '360112' => '新建区', - '360121' => '南昌县', - '360123' => '安义县', - '360124' => '进贤县', - '360200' => '景德镇市', - '360202' => '昌江区', - '360203' => '珠山区', - '360222' => '浮梁县', - '360281' => '乐平市', - '360300' => '萍乡市', - '360302' => '安源区', - '360313' => '湘东区', - '360321' => '莲花县', - '360322' => '上栗县', - '360323' => '芦溪县', - '360400' => '九江市', - '360402' => '濂溪区', - '360403' => '浔阳区', - '360404' => '柴桑区', - '360423' => '武宁县', - '360424' => '修水县', - '360425' => '永修县', - '360426' => '德安县', - '360428' => '都昌县', - '360429' => '湖口县', - '360430' => '彭泽县', - '360481' => '瑞昌市', - '360482' => '共青城市', - '360483' => '庐山市', - '360500' => '新余市', - '360502' => '渝水区', - '360521' => '分宜县', - '360600' => '鹰潭市', - '360602' => '月湖区', - '360622' => '余江县', - '360681' => '贵溪市', - '360700' => '赣州市', - '360702' => '章贡区', - '360703' => '南康区', - '360704' => '赣县区', - '360722' => '信丰县', - '360723' => '大余县', - '360724' => '上犹县', - '360725' => '崇义县', - '360726' => '安远县', - '360727' => '龙南县', - '360728' => '定南县', - '360729' => '全南县', - '360730' => '宁都县', - '360731' => '于都县', - '360732' => '兴国县', - '360733' => '会昌县', - '360734' => '寻乌县', - '360735' => '石城县', - '360781' => '瑞金市', - '360800' => '吉安市', - '360802' => '吉州区', - '360803' => '青原区', - '360821' => '吉安县', - '360822' => '吉水县', - '360823' => '峡江县', - '360824' => '新干县', - '360825' => '永丰县', - '360826' => '泰和县', - '360827' => '遂川县', - '360828' => '万安县', - '360829' => '安福县', - '360830' => '永新县', - '360881' => '井冈山市', - '360900' => '宜春市', - '360902' => '袁州区', - '360921' => '奉新县', - '360922' => '万载县', - '360923' => '上高县', - '360924' => '宜丰县', - '360925' => '靖安县', - '360926' => '铜鼓县', - '360981' => '丰城市', - '360982' => '樟树市', - '360983' => '高安市', - '361000' => '抚州市', - '361002' => '临川区', - '361003' => '东乡区', - '361021' => '南城县', - '361022' => '黎川县', - '361023' => '南丰县', - '361024' => '崇仁县', - '361025' => '乐安县', - '361026' => '宜黄县', - '361027' => '金溪县', - '361028' => '资溪县', - '361030' => '广昌县', - '361100' => '上饶市', - '361102' => '信州区', - '361103' => '广丰区', - '361121' => '上饶县', - '361123' => '玉山县', - '361124' => '铅山县', - '361125' => '横峰县', - '361126' => '弋阳县', - '361127' => '余干县', - '361128' => '鄱阳县', - '361129' => '万年县', - '361130' => '婺源县', - '361181' => '德兴市', - '370000' => '山东省', - '370100' => '济南市', - '370102' => '历下区', - '370103' => '市中区', - '370104' => '槐荫区', - '370105' => '天桥区', - '370112' => '历城区', - '370113' => '长清区', - '370114' => '章丘区', - '370124' => '平阴县', - '370125' => '济阳县', - '370126' => '商河县', - '370200' => '青岛市', - '370202' => '市南区', - '370203' => '市北区', - '370211' => '黄岛区', - '370212' => '崂山区', - '370213' => '李沧区', - '370214' => '城阳区', - '370215' => '即墨区', - '370281' => '胶州市', - '370283' => '平度市', - '370285' => '莱西市', - '370300' => '淄博市', - '370302' => '淄川区', - '370303' => '张店区', - '370304' => '博山区', - '370305' => '临淄区', - '370306' => '周村区', - '370321' => '桓台县', - '370322' => '高青县', - '370323' => '沂源县', - '370400' => '枣庄市', - '370402' => '市中区', - '370403' => '薛城区', - '370404' => '峄城区', - '370405' => '台儿庄区', - '370406' => '山亭区', - '370481' => '滕州市', - '370500' => '东营市', - '370502' => '东营区', - '370503' => '河口区', - '370505' => '垦利区', - '370522' => '利津县', - '370523' => '广饶县', - '370600' => '烟台市', - '370602' => '芝罘区', - '370611' => '福山区', - '370612' => '牟平区', - '370613' => '莱山区', - '370634' => '长岛县', - '370681' => '龙口市', - '370682' => '莱阳市', - '370683' => '莱州市', - '370684' => '蓬莱市', - '370685' => '招远市', - '370686' => '栖霞市', - '370687' => '海阳市', - '370700' => '潍坊市', - '370702' => '潍城区', - '370703' => '寒亭区', - '370704' => '坊子区', - '370705' => '奎文区', - '370724' => '临朐县', - '370725' => '昌乐县', - '370781' => '青州市', - '370782' => '诸城市', - '370783' => '寿光市', - '370784' => '安丘市', - '370785' => '高密市', - '370786' => '昌邑市', - '370800' => '济宁市', - '370811' => '任城区', - '370812' => '兖州区', - '370826' => '微山县', - '370827' => '鱼台县', - '370828' => '金乡县', - '370829' => '嘉祥县', - '370830' => '汶上县', - '370831' => '泗水县', - '370832' => '梁山县', - '370881' => '曲阜市', - '370883' => '邹城市', - '370900' => '泰安市', - '370902' => '泰山区', - '370911' => '岱岳区', - '370921' => '宁阳县', - '370923' => '东平县', - '370982' => '新泰市', - '370983' => '肥城市', - '371000' => '威海市', - '371002' => '环翠区', - '371003' => '文登区', - '371082' => '荣成市', - '371083' => '乳山市', - '371100' => '日照市', - '371102' => '东港区', - '371103' => '岚山区', - '371121' => '五莲县', - '371122' => '莒县', - '371200' => '莱芜市', - '371202' => '莱城区', - '371203' => '钢城区', - '371300' => '临沂市', - '371302' => '兰山区', - '371311' => '罗庄区', - '371312' => '河东区', - '371321' => '沂南县', - '371322' => '郯城县', - '371323' => '沂水县', - '371324' => '兰陵县', - '371325' => '费县', - '371326' => '平邑县', - '371327' => '莒南县', - '371328' => '蒙阴县', - '371329' => '临沭县', - '371400' => '德州市', - '371402' => '德城区', - '371403' => '陵城区', - '371422' => '宁津县', - '371423' => '庆云县', - '371424' => '临邑县', - '371425' => '齐河县', - '371426' => '平原县', - '371427' => '夏津县', - '371428' => '武城县', - '371481' => '乐陵市', - '371482' => '禹城市', - '371500' => '聊城市', - '371502' => '东昌府区', - '371521' => '阳谷县', - '371522' => '莘县', - '371523' => '茌平县', - '371524' => '东阿县', - '371525' => '冠县', - '371526' => '高唐县', - '371581' => '临清市', - '371600' => '滨州市', - '371602' => '滨城区', - '371603' => '沾化区', - '371621' => '惠民县', - '371622' => '阳信县', - '371623' => '无棣县', - '371625' => '博兴县', - '371626' => '邹平县', - '371700' => '菏泽市', - '371702' => '牡丹区', - '371703' => '定陶区', - '371721' => '曹县', - '371722' => '单县', - '371723' => '成武县', - '371724' => '巨野县', - '371725' => '郓城县', - '371726' => '鄄城县', - '371728' => '东明县', - '410000' => '河南省', - '410100' => '郑州市', - '410102' => '中原区', - '410103' => '二七区', - '410104' => '管城回族区', - '410105' => '金水区', - '410106' => '上街区', - '410108' => '惠济区', - '410122' => '中牟县', - '410181' => '巩义市', - '410182' => '荥阳市', - '410183' => '新密市', - '410184' => '新郑市', - '410185' => '登封市', - '410200' => '开封市', - '410202' => '龙亭区', - '410203' => '顺河回族区', - '410204' => '鼓楼区', - '410205' => '禹王台区', - '410212' => '祥符区', - '410221' => '杞县', - '410222' => '通许县', - '410223' => '尉氏县', - '410225' => '兰考县', - '410300' => '洛阳市', - '410302' => '老城区', - '410303' => '西工区', - '410304' => '瀍河回族区', - '410305' => '涧西区', - '410306' => '吉利区', - '410311' => '洛龙区', - '410322' => '孟津县', - '410323' => '新安县', - '410324' => '栾川县', - '410325' => '嵩县', - '410326' => '汝阳县', - '410327' => '宜阳县', - '410328' => '洛宁县', - '410329' => '伊川县', - '410381' => '偃师市', - '410400' => '平顶山市', - '410402' => '新华区', - '410403' => '卫东区', - '410404' => '石龙区', - '410411' => '湛河区', - '410421' => '宝丰县', - '410422' => '叶县', - '410423' => '鲁山县', - '410425' => '郏县', - '410481' => '舞钢市', - '410482' => '汝州市', - '410500' => '安阳市', - '410502' => '文峰区', - '410503' => '北关区', - '410505' => '殷都区', - '410506' => '龙安区', - '410522' => '安阳县', - '410523' => '汤阴县', - '410526' => '滑县', - '410527' => '内黄县', - '410581' => '林州市', - '410600' => '鹤壁市', - '410602' => '鹤山区', - '410603' => '山城区', - '410611' => '淇滨区', - '410621' => '浚县', - '410622' => '淇县', - '410700' => '新乡市', - '410702' => '红旗区', - '410703' => '卫滨区', - '410704' => '凤泉区', - '410711' => '牧野区', - '410721' => '新乡县', - '410724' => '获嘉县', - '410725' => '原阳县', - '410726' => '延津县', - '410727' => '封丘县', - '410728' => '长垣县', - '410781' => '卫辉市', - '410782' => '辉县市', - '410800' => '焦作市', - '410802' => '解放区', - '410803' => '中站区', - '410804' => '马村区', - '410811' => '山阳区', - '410821' => '修武县', - '410822' => '博爱县', - '410823' => '武陟县', - '410825' => '温县', - '410882' => '沁阳市', - '410883' => '孟州市', - '410900' => '濮阳市', - '410902' => '华龙区', - '410922' => '清丰县', - '410923' => '南乐县', - '410926' => '范县', - '410927' => '台前县', - '410928' => '濮阳县', - '411000' => '许昌市', - '411002' => '魏都区', - '411003' => '建安区', - '411024' => '鄢陵县', - '411025' => '襄城县', - '411081' => '禹州市', - '411082' => '长葛市', - '411100' => '漯河市', - '411102' => '源汇区', - '411103' => '郾城区', - '411104' => '召陵区', - '411121' => '舞阳县', - '411122' => '临颍县', - '411200' => '三门峡市', - '411202' => '湖滨区', - '411203' => '陕州区', - '411221' => '渑池县', - '411224' => '卢氏县', - '411281' => '义马市', - '411282' => '灵宝市', - '411300' => '南阳市', - '411302' => '宛城区', - '411303' => '卧龙区', - '411321' => '南召县', - '411322' => '方城县', - '411323' => '西峡县', - '411324' => '镇平县', - '411325' => '内乡县', - '411326' => '淅川县', - '411327' => '社旗县', - '411328' => '唐河县', - '411329' => '新野县', - '411330' => '桐柏县', - '411381' => '邓州市', - '411400' => '商丘市', - '411402' => '梁园区', - '411403' => '睢阳区', - '411421' => '民权县', - '411422' => '睢县', - '411423' => '宁陵县', - '411424' => '柘城县', - '411425' => '虞城县', - '411426' => '夏邑县', - '411481' => '永城市', - '411500' => '信阳市', - '411502' => '浉河区', - '411503' => '平桥区', - '411521' => '罗山县', - '411522' => '光山县', - '411523' => '新县', - '411524' => '商城县', - '411525' => '固始县', - '411526' => '潢川县', - '411527' => '淮滨县', - '411528' => '息县', - '411600' => '周口市', - '411602' => '川汇区', - '411621' => '扶沟县', - '411622' => '西华县', - '411623' => '商水县', - '411624' => '沈丘县', - '411625' => '郸城县', - '411626' => '淮阳县', - '411627' => '太康县', - '411628' => '鹿邑县', - '411681' => '项城市', - '411700' => '驻马店市', - '411702' => '驿城区', - '411721' => '西平县', - '411722' => '上蔡县', - '411723' => '平舆县', - '411724' => '正阳县', - '411725' => '确山县', - '411726' => '泌阳县', - '411727' => '汝南县', - '411728' => '遂平县', - '411729' => '新蔡县', - '419001' => '济源市', - '420000' => '湖北省', - '420100' => '武汉市', - '420102' => '江岸区', - '420103' => '江汉区', - '420104' => '硚口区', - '420105' => '汉阳区', - '420106' => '武昌区', - '420107' => '青山区', - '420111' => '洪山区', - '420112' => '东西湖区', - '420113' => '汉南区', - '420114' => '蔡甸区', - '420115' => '江夏区', - '420116' => '黄陂区', - '420117' => '新洲区', - '420200' => '黄石市', - '420202' => '黄石港区', - '420203' => '西塞山区', - '420204' => '下陆区', - '420205' => '铁山区', - '420222' => '阳新县', - '420281' => '大冶市', - '420300' => '十堰市', - '420302' => '茅箭区', - '420303' => '张湾区', - '420304' => '郧阳区', - '420322' => '郧西县', - '420323' => '竹山县', - '420324' => '竹溪县', - '420325' => '房县', - '420381' => '丹江口市', - '420500' => '宜昌市', - '420502' => '西陵区', - '420503' => '伍家岗区', - '420504' => '点军区', - '420505' => '猇亭区', - '420506' => '夷陵区', - '420525' => '远安县', - '420526' => '兴山县', - '420527' => '秭归县', - '420528' => '长阳土家族自治县', - '420529' => '五峰土家族自治县', - '420581' => '宜都市', - '420582' => '当阳市', - '420583' => '枝江市', - '420600' => '襄阳市', - '420602' => '襄城区', - '420606' => '樊城区', - '420607' => '襄州区', - '420624' => '南漳县', - '420625' => '谷城县', - '420626' => '保康县', - '420682' => '老河口市', - '420683' => '枣阳市', - '420684' => '宜城市', - '420700' => '鄂州市', - '420702' => '梁子湖区', - '420703' => '华容区', - '420704' => '鄂城区', - '420800' => '荆门市', - '420802' => '东宝区', - '420804' => '掇刀区', - '420821' => '京山县', - '420822' => '沙洋县', - '420881' => '钟祥市', - '420900' => '孝感市', - '420902' => '孝南区', - '420921' => '孝昌县', - '420922' => '大悟县', - '420923' => '云梦县', - '420981' => '应城市', - '420982' => '安陆市', - '420984' => '汉川市', - '421000' => '荆州市', - '421002' => '沙市区', - '421003' => '荆州区', - '421022' => '公安县', - '421023' => '监利县', - '421024' => '江陵县', - '421081' => '石首市', - '421083' => '洪湖市', - '421087' => '松滋市', - '421100' => '黄冈市', - '421102' => '黄州区', - '421121' => '团风县', - '421122' => '红安县', - '421123' => '罗田县', - '421124' => '英山县', - '421125' => '浠水县', - '421126' => '蕲春县', - '421127' => '黄梅县', - '421181' => '麻城市', - '421182' => '武穴市', - '421200' => '咸宁市', - '421202' => '咸安区', - '421221' => '嘉鱼县', - '421222' => '通城县', - '421223' => '崇阳县', - '421224' => '通山县', - '421281' => '赤壁市', - '421300' => '随州市', - '421303' => '曾都区', - '421321' => '随县', - '421381' => '广水市', - '422800' => '恩施土家族苗族自治州', - '422801' => '恩施市', - '422802' => '利川市', - '422822' => '建始县', - '422823' => '巴东县', - '422825' => '宣恩县', - '422826' => '咸丰县', - '422827' => '来凤县', - '422828' => '鹤峰县', - '429004' => '仙桃市', - '429005' => '潜江市', - '429006' => '天门市', - '429021' => '神农架林区', - '430000' => '湖南省', - '430100' => '长沙市', - '430102' => '芙蓉区', - '430103' => '天心区', - '430104' => '岳麓区', - '430105' => '开福区', - '430111' => '雨花区', - '430112' => '望城区', - '430121' => '长沙县', - '430181' => '浏阳市', - '430182' => '宁乡市', - '430200' => '株洲市', - '430202' => '荷塘区', - '430203' => '芦淞区', - '430204' => '石峰区', - '430211' => '天元区', - '430221' => '株洲县', - '430223' => '攸县', - '430224' => '茶陵县', - '430225' => '炎陵县', - '430281' => '醴陵市', - '430300' => '湘潭市', - '430302' => '雨湖区', - '430304' => '岳塘区', - '430321' => '湘潭县', - '430381' => '湘乡市', - '430382' => '韶山市', - '430400' => '衡阳市', - '430405' => '珠晖区', - '430406' => '雁峰区', - '430407' => '石鼓区', - '430408' => '蒸湘区', - '430412' => '南岳区', - '430421' => '衡阳县', - '430422' => '衡南县', - '430423' => '衡山县', - '430424' => '衡东县', - '430426' => '祁东县', - '430481' => '耒阳市', - '430482' => '常宁市', - '430500' => '邵阳市', - '430502' => '双清区', - '430503' => '大祥区', - '430511' => '北塔区', - '430521' => '邵东县', - '430522' => '新邵县', - '430523' => '邵阳县', - '430524' => '隆回县', - '430525' => '洞口县', - '430527' => '绥宁县', - '430528' => '新宁县', - '430529' => '城步苗族自治县', - '430581' => '武冈市', - '430600' => '岳阳市', - '430602' => '岳阳楼区', - '430603' => '云溪区', - '430611' => '君山区', - '430621' => '岳阳县', - '430623' => '华容县', - '430624' => '湘阴县', - '430626' => '平江县', - '430681' => '汨罗市', - '430682' => '临湘市', - '430700' => '常德市', - '430702' => '武陵区', - '430703' => '鼎城区', - '430721' => '安乡县', - '430722' => '汉寿县', - '430723' => '澧县', - '430724' => '临澧县', - '430725' => '桃源县', - '430726' => '石门县', - '430781' => '津市市', - '430800' => '张家界市', - '430802' => '永定区', - '430811' => '武陵源区', - '430821' => '慈利县', - '430822' => '桑植县', - '430900' => '益阳市', - '430902' => '资阳区', - '430903' => '赫山区', - '430921' => '南县', - '430922' => '桃江县', - '430923' => '安化县', - '430981' => '沅江市', - '431000' => '郴州市', - '431002' => '北湖区', - '431003' => '苏仙区', - '431021' => '桂阳县', - '431022' => '宜章县', - '431023' => '永兴县', - '431024' => '嘉禾县', - '431025' => '临武县', - '431026' => '汝城县', - '431027' => '桂东县', - '431028' => '安仁县', - '431081' => '资兴市', - '431100' => '永州市', - '431102' => '零陵区', - '431103' => '冷水滩区', - '431121' => '祁阳县', - '431122' => '东安县', - '431123' => '双牌县', - '431124' => '道县', - '431125' => '江永县', - '431126' => '宁远县', - '431127' => '蓝山县', - '431128' => '新田县', - '431129' => '江华瑶族自治县', - '431200' => '怀化市', - '431202' => '鹤城区', - '431221' => '中方县', - '431222' => '沅陵县', - '431223' => '辰溪县', - '431224' => '溆浦县', - '431225' => '会同县', - '431226' => '麻阳苗族自治县', - '431227' => '新晃侗族自治县', - '431228' => '芷江侗族自治县', - '431229' => '靖州苗族侗族自治县', - '431230' => '通道侗族自治县', - '431281' => '洪江市', - '431300' => '娄底市', - '431302' => '娄星区', - '431321' => '双峰县', - '431322' => '新化县', - '431381' => '冷水江市', - '431382' => '涟源市', - '433100' => '湘西土家族苗族自治州', - '433101' => '吉首市', - '433122' => '泸溪县', - '433123' => '凤凰县', - '433124' => '花垣县', - '433125' => '保靖县', - '433126' => '古丈县', - '433127' => '永顺县', - '433130' => '龙山县', - '440000' => '广东省', - '440100' => '广州市', - '440103' => '荔湾区', - '440104' => '越秀区', - '440105' => '海珠区', - '440106' => '天河区', - '440111' => '白云区', - '440112' => '黄埔区', - '440113' => '番禺区', - '440114' => '花都区', - '440115' => '南沙区', - '440117' => '从化区', - '440118' => '增城区', - '440200' => '韶关市', - '440203' => '武江区', - '440204' => '浈江区', - '440205' => '曲江区', - '440222' => '始兴县', - '440224' => '仁化县', - '440229' => '翁源县', - '440232' => '乳源瑶族自治县', - '440233' => '新丰县', - '440281' => '乐昌市', - '440282' => '南雄市', - '440300' => '深圳市', - '440303' => '罗湖区', - '440304' => '福田区', - '440305' => '南山区', - '440306' => '宝安区', - '440307' => '龙岗区', - '440308' => '盐田区', - '440309' => '龙华区', - '440310' => '坪山区', - '440400' => '珠海市', - '440402' => '香洲区', - '440403' => '斗门区', - '440404' => '金湾区', - '440500' => '汕头市', - '440507' => '龙湖区', - '440511' => '金平区', - '440512' => '濠江区', - '440513' => '潮阳区', - '440514' => '潮南区', - '440515' => '澄海区', - '440523' => '南澳县', - '440600' => '佛山市', - '440604' => '禅城区', - '440605' => '南海区', - '440606' => '顺德区', - '440607' => '三水区', - '440608' => '高明区', - '440700' => '江门市', - '440703' => '蓬江区', - '440704' => '江海区', - '440705' => '新会区', - '440781' => '台山市', - '440783' => '开平市', - '440784' => '鹤山市', - '440785' => '恩平市', - '440800' => '湛江市', - '440802' => '赤坎区', - '440803' => '霞山区', - '440804' => '坡头区', - '440811' => '麻章区', - '440823' => '遂溪县', - '440825' => '徐闻县', - '440881' => '廉江市', - '440882' => '雷州市', - '440883' => '吴川市', - '440900' => '茂名市', - '440902' => '茂南区', - '440904' => '电白区', - '440981' => '高州市', - '440982' => '化州市', - '440983' => '信宜市', - '441200' => '肇庆市', - '441202' => '端州区', - '441203' => '鼎湖区', - '441204' => '高要区', - '441223' => '广宁县', - '441224' => '怀集县', - '441225' => '封开县', - '441226' => '德庆县', - '441284' => '四会市', - '441300' => '惠州市', - '441302' => '惠城区', - '441303' => '惠阳区', - '441322' => '博罗县', - '441323' => '惠东县', - '441324' => '龙门县', - '441400' => '梅州市', - '441402' => '梅江区', - '441403' => '梅县区', - '441422' => '大埔县', - '441423' => '丰顺县', - '441424' => '五华县', - '441426' => '平远县', - '441427' => '蕉岭县', - '441481' => '兴宁市', - '441500' => '汕尾市', - '441502' => '城区', - '441521' => '海丰县', - '441523' => '陆河县', - '441581' => '陆丰市', - '441600' => '河源市', - '441602' => '源城区', - '441621' => '紫金县', - '441622' => '龙川县', - '441623' => '连平县', - '441624' => '和平县', - '441625' => '东源县', - '441700' => '阳江市', - '441702' => '江城区', - '441704' => '阳东区', - '441721' => '阳西县', - '441781' => '阳春市', - '441800' => '清远市', - '441802' => '清城区', - '441803' => '清新区', - '441821' => '佛冈县', - '441823' => '阳山县', - '441825' => '连山壮族瑶族自治县', - '441826' => '连南瑶族自治县', - '441881' => '英德市', - '441882' => '连州市', - '441900' => '东莞市', - '442000' => '中山市', - '445100' => '潮州市', - '445102' => '湘桥区', - '445103' => '潮安区', - '445122' => '饶平县', - '445200' => '揭阳市', - '445202' => '榕城区', - '445203' => '揭东区', - '445222' => '揭西县', - '445224' => '惠来县', - '445281' => '普宁市', - '445300' => '云浮市', - '445302' => '云城区', - '445303' => '云安区', - '445321' => '新兴县', - '445322' => '郁南县', - '445381' => '罗定市', - '450000' => '广西壮族自治区', - '450100' => '南宁市', - '450102' => '兴宁区', - '450103' => '青秀区', - '450105' => '江南区', - '450107' => '西乡塘区', - '450108' => '良庆区', - '450109' => '邕宁区', - '450110' => '武鸣区', - '450123' => '隆安县', - '450124' => '马山县', - '450125' => '上林县', - '450126' => '宾阳县', - '450127' => '横县', - '450200' => '柳州市', - '450202' => '城中区', - '450203' => '鱼峰区', - '450204' => '柳南区', - '450205' => '柳北区', - '450206' => '柳江区', - '450222' => '柳城县', - '450223' => '鹿寨县', - '450224' => '融安县', - '450225' => '融水苗族自治县', - '450226' => '三江侗族自治县', - '450300' => '桂林市', - '450302' => '秀峰区', - '450303' => '叠彩区', - '450304' => '象山区', - '450305' => '七星区', - '450311' => '雁山区', - '450312' => '临桂区', - '450321' => '阳朔县', - '450323' => '灵川县', - '450324' => '全州县', - '450325' => '兴安县', - '450326' => '永福县', - '450327' => '灌阳县', - '450328' => '龙胜各族自治县', - '450329' => '资源县', - '450330' => '平乐县', - '450331' => '荔浦县', - '450332' => '恭城瑶族自治县', - '450400' => '梧州市', - '450403' => '万秀区', - '450405' => '长洲区', - '450406' => '龙圩区', - '450421' => '苍梧县', - '450422' => '藤县', - '450423' => '蒙山县', - '450481' => '岑溪市', - '450500' => '北海市', - '450502' => '海城区', - '450503' => '银海区', - '450512' => '铁山港区', - '450521' => '合浦县', - '450600' => '防城港市', - '450602' => '港口区', - '450603' => '防城区', - '450621' => '上思县', - '450681' => '东兴市', - '450700' => '钦州市', - '450702' => '钦南区', - '450703' => '钦北区', - '450721' => '灵山县', - '450722' => '浦北县', - '450800' => '贵港市', - '450802' => '港北区', - '450803' => '港南区', - '450804' => '覃塘区', - '450821' => '平南县', - '450881' => '桂平市', - '450900' => '玉林市', - '450902' => '玉州区', - '450903' => '福绵区', - '450921' => '容县', - '450922' => '陆川县', - '450923' => '博白县', - '450924' => '兴业县', - '450981' => '北流市', - '451000' => '百色市', - '451002' => '右江区', - '451021' => '田阳县', - '451022' => '田东县', - '451023' => '平果县', - '451024' => '德保县', - '451026' => '那坡县', - '451027' => '凌云县', - '451028' => '乐业县', - '451029' => '田林县', - '451030' => '西林县', - '451031' => '隆林各族自治县', - '451081' => '靖西市', - '451100' => '贺州市', - '451102' => '八步区', - '451103' => '平桂区', - '451121' => '昭平县', - '451122' => '钟山县', - '451123' => '富川瑶族自治县', - '451200' => '河池市', - '451202' => '金城江区', - '451203' => '宜州区', - '451221' => '南丹县', - '451222' => '天峨县', - '451223' => '凤山县', - '451224' => '东兰县', - '451225' => '罗城仫佬族自治县', - '451226' => '环江毛南族自治县', - '451227' => '巴马瑶族自治县', - '451228' => '都安瑶族自治县', - '451229' => '大化瑶族自治县', - '451300' => '来宾市', - '451302' => '兴宾区', - '451321' => '忻城县', - '451322' => '象州县', - '451323' => '武宣县', - '451324' => '金秀瑶族自治县', - '451381' => '合山市', - '451400' => '崇左市', - '451402' => '江州区', - '451421' => '扶绥县', - '451422' => '宁明县', - '451423' => '龙州县', - '451424' => '大新县', - '451425' => '天等县', - '451481' => '凭祥市', - '460000' => '海南省', - '460100' => '海口市', - '460105' => '秀英区', - '460106' => '龙华区', - '460107' => '琼山区', - '460108' => '美兰区', - '460200' => '三亚市', - '460202' => '海棠区', - '460203' => '吉阳区', - '460204' => '天涯区', - '460205' => '崖州区', - '460300' => '三沙市', - '460400' => '儋州市', - '469001' => '五指山市', - '469002' => '琼海市', - '469005' => '文昌市', - '469006' => '万宁市', - '469007' => '东方市', - '469021' => '定安县', - '469022' => '屯昌县', - '469023' => '澄迈县', - '469024' => '临高县', - '469025' => '白沙黎族自治县', - '469026' => '昌江黎族自治县', - '469027' => '乐东黎族自治县', - '469028' => '陵水黎族自治县', - '469029' => '保亭黎族苗族自治县', - '469030' => '琼中黎族苗族自治县', - '500000' => '重庆市', - '500101' => '万州区', - '500102' => '涪陵区', - '500103' => '渝中区', - '500104' => '大渡口区', - '500105' => '江北区', - '500106' => '沙坪坝区', - '500107' => '九龙坡区', - '500108' => '南岸区', - '500109' => '北碚区', - '500110' => '綦江区', - '500111' => '大足区', - '500112' => '渝北区', - '500113' => '巴南区', - '500114' => '黔江区', - '500115' => '长寿区', - '500116' => '江津区', - '500117' => '合川区', - '500118' => '永川区', - '500119' => '南川区', - '500120' => '璧山区', - '500151' => '铜梁区', - '500152' => '潼南区', - '500153' => '荣昌区', - '500154' => '开州区', - '500155' => '梁平区', - '500156' => '武隆区', - '500229' => '城口县', - '500230' => '丰都县', - '500231' => '垫江县', - '500233' => '忠县', - '500235' => '云阳县', - '500236' => '奉节县', - '500237' => '巫山县', - '500238' => '巫溪县', - '500240' => '石柱土家族自治县', - '500241' => '秀山土家族苗族自治县', - '500242' => '酉阳土家族苗族自治县', - '500243' => '彭水苗族土家族自治县', - '510000' => '四川省', - '510100' => '成都市', - '510104' => '锦江区', - '510105' => '青羊区', - '510106' => '金牛区', - '510107' => '武侯区', - '510108' => '成华区', - '510112' => '龙泉驿区', - '510113' => '青白江区', - '510114' => '新都区', - '510115' => '温江区', - '510116' => '双流区', - '510117' => '郫都区', - '510121' => '金堂县', - '510129' => '大邑县', - '510131' => '蒲江县', - '510132' => '新津县', - '510181' => '都江堰市', - '510182' => '彭州市', - '510183' => '邛崃市', - '510184' => '崇州市', - '510185' => '简阳市', - '510300' => '自贡市', - '510302' => '自流井区', - '510303' => '贡井区', - '510304' => '大安区', - '510311' => '沿滩区', - '510321' => '荣县', - '510322' => '富顺县', - '510400' => '攀枝花市', - '510402' => '东区', - '510403' => '西区', - '510411' => '仁和区', - '510421' => '米易县', - '510422' => '盐边县', - '510500' => '泸州市', - '510502' => '江阳区', - '510503' => '纳溪区', - '510504' => '龙马潭区', - '510521' => '泸县', - '510522' => '合江县', - '510524' => '叙永县', - '510525' => '古蔺县', - '510600' => '德阳市', - '510603' => '旌阳区', - '510604' => '罗江区', - '510623' => '中江县', - '510681' => '广汉市', - '510682' => '什邡市', - '510683' => '绵竹市', - '510700' => '绵阳市', - '510703' => '涪城区', - '510704' => '游仙区', - '510705' => '安州区', - '510722' => '三台县', - '510723' => '盐亭县', - '510725' => '梓潼县', - '510726' => '北川羌族自治县', - '510727' => '平武县', - '510781' => '江油市', - '510800' => '广元市', - '510802' => '利州区', - '510811' => '昭化区', - '510812' => '朝天区', - '510821' => '旺苍县', - '510822' => '青川县', - '510823' => '剑阁县', - '510824' => '苍溪县', - '510900' => '遂宁市', - '510903' => '船山区', - '510904' => '安居区', - '510921' => '蓬溪县', - '510922' => '射洪县', - '510923' => '大英县', - '511000' => '内江市', - '511002' => '市中区', - '511011' => '东兴区', - '511024' => '威远县', - '511025' => '资中县', - '511083' => '隆昌市', - '511100' => '乐山市', - '511102' => '市中区', - '511111' => '沙湾区', - '511112' => '五通桥区', - '511113' => '金口河区', - '511123' => '犍为县', - '511124' => '井研县', - '511126' => '夹江县', - '511129' => '沐川县', - '511132' => '峨边彝族自治县', - '511133' => '马边彝族自治县', - '511181' => '峨眉山市', - '511300' => '南充市', - '511302' => '顺庆区', - '511303' => '高坪区', - '511304' => '嘉陵区', - '511321' => '南部县', - '511322' => '营山县', - '511323' => '蓬安县', - '511324' => '仪陇县', - '511325' => '西充县', - '511381' => '阆中市', - '511400' => '眉山市', - '511402' => '东坡区', - '511403' => '彭山区', - '511421' => '仁寿县', - '511423' => '洪雅县', - '511424' => '丹棱县', - '511425' => '青神县', - '511500' => '宜宾市', - '511502' => '翠屏区', - '511503' => '南溪区', - '511521' => '宜宾县', - '511523' => '江安县', - '511524' => '长宁县', - '511525' => '高县', - '511526' => '珙县', - '511527' => '筠连县', - '511528' => '兴文县', - '511529' => '屏山县', - '511600' => '广安市', - '511602' => '广安区', - '511603' => '前锋区', - '511621' => '岳池县', - '511622' => '武胜县', - '511623' => '邻水县', - '511681' => '华蓥市', - '511700' => '达州市', - '511702' => '通川区', - '511703' => '达川区', - '511722' => '宣汉县', - '511723' => '开江县', - '511724' => '大竹县', - '511725' => '渠县', - '511781' => '万源市', - '511800' => '雅安市', - '511802' => '雨城区', - '511803' => '名山区', - '511822' => '荥经县', - '511823' => '汉源县', - '511824' => '石棉县', - '511825' => '天全县', - '511826' => '芦山县', - '511827' => '宝兴县', - '511900' => '巴中市', - '511902' => '巴州区', - '511903' => '恩阳区', - '511921' => '通江县', - '511922' => '南江县', - '511923' => '平昌县', - '512000' => '资阳市', - '512002' => '雁江区', - '512021' => '安岳县', - '512022' => '乐至县', - '513200' => '阿坝藏族羌族自治州', - '513201' => '马尔康市', - '513221' => '汶川县', - '513222' => '理县', - '513223' => '茂县', - '513224' => '松潘县', - '513225' => '九寨沟县', - '513226' => '金川县', - '513227' => '小金县', - '513228' => '黑水县', - '513230' => '壤塘县', - '513231' => '阿坝县', - '513232' => '若尔盖县', - '513233' => '红原县', - '513300' => '甘孜藏族自治州', - '513301' => '康定市', - '513322' => '泸定县', - '513323' => '丹巴县', - '513324' => '九龙县', - '513325' => '雅江县', - '513326' => '道孚县', - '513327' => '炉霍县', - '513328' => '甘孜县', - '513329' => '新龙县', - '513330' => '德格县', - '513331' => '白玉县', - '513332' => '石渠县', - '513333' => '色达县', - '513334' => '理塘县', - '513335' => '巴塘县', - '513336' => '乡城县', - '513337' => '稻城县', - '513338' => '得荣县', - '513400' => '凉山彝族自治州', - '513401' => '西昌市', - '513422' => '木里藏族自治县', - '513423' => '盐源县', - '513424' => '德昌县', - '513425' => '会理县', - '513426' => '会东县', - '513427' => '宁南县', - '513428' => '普格县', - '513429' => '布拖县', - '513430' => '金阳县', - '513431' => '昭觉县', - '513432' => '喜德县', - '513433' => '冕宁县', - '513434' => '越西县', - '513435' => '甘洛县', - '513436' => '美姑县', - '513437' => '雷波县', - '520000' => '贵州省', - '520100' => '贵阳市', - '520102' => '南明区', - '520103' => '云岩区', - '520111' => '花溪区', - '520112' => '乌当区', - '520113' => '白云区', - '520115' => '观山湖区', - '520121' => '开阳县', - '520122' => '息烽县', - '520123' => '修文县', - '520181' => '清镇市', - '520200' => '六盘水市', - '520201' => '钟山区', - '520203' => '六枝特区', - '520221' => '水城县', - '520281' => '盘州市', - '520300' => '遵义市', - '520302' => '红花岗区', - '520303' => '汇川区', - '520304' => '播州区', - '520322' => '桐梓县', - '520323' => '绥阳县', - '520324' => '正安县', - '520325' => '道真仡佬族苗族自治县', - '520326' => '务川仡佬族苗族自治县', - '520327' => '凤冈县', - '520328' => '湄潭县', - '520329' => '余庆县', - '520330' => '习水县', - '520381' => '赤水市', - '520382' => '仁怀市', - '520400' => '安顺市', - '520402' => '西秀区', - '520403' => '平坝区', - '520422' => '普定县', - '520423' => '镇宁布依族苗族自治县', - '520424' => '关岭布依族苗族自治县', - '520425' => '紫云苗族布依族自治县', - '520500' => '毕节市', - '520502' => '七星关区', - '520521' => '大方县', - '520522' => '黔西县', - '520523' => '金沙县', - '520524' => '织金县', - '520525' => '纳雍县', - '520526' => '威宁彝族回族苗族自治县', - '520527' => '赫章县', - '520600' => '铜仁市', - '520602' => '碧江区', - '520603' => '万山区', - '520621' => '江口县', - '520622' => '玉屏侗族自治县', - '520623' => '石阡县', - '520624' => '思南县', - '520625' => '印江土家族苗族自治县', - '520626' => '德江县', - '520627' => '沿河土家族自治县', - '520628' => '松桃苗族自治县', - '522300' => '黔西南布依族苗族自治州', - '522301' => '兴义市', - '522322' => '兴仁县', - '522323' => '普安县', - '522324' => '晴隆县', - '522325' => '贞丰县', - '522326' => '望谟县', - '522327' => '册亨县', - '522328' => '安龙县', - '522600' => '黔东南苗族侗族自治州', - '522601' => '凯里市', - '522622' => '黄平县', - '522623' => '施秉县', - '522624' => '三穗县', - '522625' => '镇远县', - '522626' => '岑巩县', - '522627' => '天柱县', - '522628' => '锦屏县', - '522629' => '剑河县', - '522630' => '台江县', - '522631' => '黎平县', - '522632' => '榕江县', - '522633' => '从江县', - '522634' => '雷山县', - '522635' => '麻江县', - '522636' => '丹寨县', - '522700' => '黔南布依族苗族自治州', - '522701' => '都匀市', - '522702' => '福泉市', - '522722' => '荔波县', - '522723' => '贵定县', - '522725' => '瓮安县', - '522726' => '独山县', - '522727' => '平塘县', - '522728' => '罗甸县', - '522729' => '长顺县', - '522730' => '龙里县', - '522731' => '惠水县', - '522732' => '三都水族自治县', - '530000' => '云南省', - '530100' => '昆明市', - '530102' => '五华区', - '530103' => '盘龙区', - '530111' => '官渡区', - '530112' => '西山区', - '530113' => '东川区', - '530114' => '呈贡区', - '530115' => '晋宁区', - '530124' => '富民县', - '530125' => '宜良县', - '530126' => '石林彝族自治县', - '530127' => '嵩明县', - '530128' => '禄劝彝族苗族自治县', - '530129' => '寻甸回族彝族自治县', - '530181' => '安宁市', - '530300' => '曲靖市', - '530302' => '麒麟区', - '530303' => '沾益区', - '530304' => '马龙区', - '530322' => '陆良县', - '530323' => '师宗县', - '530324' => '罗平县', - '530325' => '富源县', - '530326' => '会泽县', - '530381' => '宣威市', - '530400' => '玉溪市', - '530402' => '红塔区', - '530403' => '江川区', - '530422' => '澄江县', - '530423' => '通海县', - '530424' => '华宁县', - '530425' => '易门县', - '530426' => '峨山彝族自治县', - '530427' => '新平彝族傣族自治县', - '530428' => '元江哈尼族彝族傣族自治县', - '530500' => '保山市', - '530502' => '隆阳区', - '530521' => '施甸县', - '530523' => '龙陵县', - '530524' => '昌宁县', - '530581' => '腾冲市', - '530600' => '昭通市', - '530602' => '昭阳区', - '530621' => '鲁甸县', - '530622' => '巧家县', - '530623' => '盐津县', - '530624' => '大关县', - '530625' => '永善县', - '530626' => '绥江县', - '530627' => '镇雄县', - '530628' => '彝良县', - '530629' => '威信县', - '530630' => '水富县', - '530700' => '丽江市', - '530702' => '古城区', - '530721' => '玉龙纳西族自治县', - '530722' => '永胜县', - '530723' => '华坪县', - '530724' => '宁蒗彝族自治县', - '530800' => '普洱市', - '530802' => '思茅区', - '530821' => '宁洱哈尼族彝族自治县', - '530822' => '墨江哈尼族自治县', - '530823' => '景东彝族自治县', - '530824' => '景谷傣族彝族自治县', - '530825' => '镇沅彝族哈尼族拉祜族自治县', - '530826' => '江城哈尼族彝族自治县', - '530827' => '孟连傣族拉祜族佤族自治县', - '530828' => '澜沧拉祜族自治县', - '530829' => '西盟佤族自治县', - '530900' => '临沧市', - '530902' => '临翔区', - '530921' => '凤庆县', - '530922' => '云县', - '530923' => '永德县', - '530924' => '镇康县', - '530925' => '双江拉祜族佤族布朗族傣族自治县', - '530926' => '耿马傣族佤族自治县', - '530927' => '沧源佤族自治县', - '532300' => '楚雄彝族自治州', - '532301' => '楚雄市', - '532322' => '双柏县', - '532323' => '牟定县', - '532324' => '南华县', - '532325' => '姚安县', - '532326' => '大姚县', - '532327' => '永仁县', - '532328' => '元谋县', - '532329' => '武定县', - '532331' => '禄丰县', - '532500' => '红河哈尼族彝族自治州', - '532501' => '个旧市', - '532502' => '开远市', - '532503' => '蒙自市', - '532504' => '弥勒市', - '532523' => '屏边苗族自治县', - '532524' => '建水县', - '532525' => '石屏县', - '532527' => '泸西县', - '532528' => '元阳县', - '532529' => '红河县', - '532530' => '金平苗族瑶族傣族自治县', - '532531' => '绿春县', - '532532' => '河口瑶族自治县', - '532600' => '文山壮族苗族自治州', - '532601' => '文山市', - '532622' => '砚山县', - '532623' => '西畴县', - '532624' => '麻栗坡县', - '532625' => '马关县', - '532626' => '丘北县', - '532627' => '广南县', - '532628' => '富宁县', - '532800' => '西双版纳傣族自治州', - '532801' => '景洪市', - '532822' => '勐海县', - '532823' => '勐腊县', - '532900' => '大理白族自治州', - '532901' => '大理市', - '532922' => '漾濞彝族自治县', - '532923' => '祥云县', - '532924' => '宾川县', - '532925' => '弥渡县', - '532926' => '南涧彝族自治县', - '532927' => '巍山彝族回族自治县', - '532928' => '永平县', - '532929' => '云龙县', - '532930' => '洱源县', - '532931' => '剑川县', - '532932' => '鹤庆县', - '533100' => '德宏傣族景颇族自治州', - '533102' => '瑞丽市', - '533103' => '芒市', - '533122' => '梁河县', - '533123' => '盈江县', - '533124' => '陇川县', - '533300' => '怒江傈僳族自治州', - '533301' => '泸水市', - '533323' => '福贡县', - '533324' => '贡山独龙族怒族自治县', - '533325' => '兰坪白族普米族自治县', - '533400' => '迪庆藏族自治州', - '533401' => '香格里拉市', - '533422' => '德钦县', - '533423' => '维西傈僳族自治县', - '540000' => '西藏自治区', - '540100' => '拉萨市', - '540102' => '城关区', - '540103' => '堆龙德庆区', - '540104' => '达孜区', - '540121' => '林周县', - '540122' => '当雄县', - '540123' => '尼木县', - '540124' => '曲水县', - '540127' => '墨竹工卡县', - '540200' => '日喀则市', - '540202' => '桑珠孜区', - '540221' => '南木林县', - '540222' => '江孜县', - '540223' => '定日县', - '540224' => '萨迦县', - '540225' => '拉孜县', - '540226' => '昂仁县', - '540227' => '谢通门县', - '540228' => '白朗县', - '540229' => '仁布县', - '540230' => '康马县', - '540231' => '定结县', - '540232' => '仲巴县', - '540233' => '亚东县', - '540234' => '吉隆县', - '540235' => '聂拉木县', - '540236' => '萨嘎县', - '540237' => '岗巴县', - '540300' => '昌都市', - '540302' => '卡若区', - '540321' => '江达县', - '540322' => '贡觉县', - '540323' => '类乌齐县', - '540324' => '丁青县', - '540325' => '察雅县', - '540326' => '八宿县', - '540327' => '左贡县', - '540328' => '芒康县', - '540329' => '洛隆县', - '540330' => '边坝县', - '540400' => '林芝市', - '540402' => '巴宜区', - '540421' => '工布江达县', - '540422' => '米林县', - '540423' => '墨脱县', - '540424' => '波密县', - '540425' => '察隅县', - '540426' => '朗县', - '540500' => '山南市', - '540502' => '乃东区', - '540521' => '扎囊县', - '540522' => '贡嘎县', - '540523' => '桑日县', - '540524' => '琼结县', - '540525' => '曲松县', - '540526' => '措美县', - '540527' => '洛扎县', - '540528' => '加查县', - '540529' => '隆子县', - '540530' => '错那县', - '540531' => '浪卡子县', - '540600' => '那曲市', - '540602' => '色尼区', - '540621' => '嘉黎县 ', - '540622' => '比如县 ', - '540623' => '聂荣县 ', - '540624' => '安多县 ', - '540625' => '申扎县 ', - '540626' => '索县   ', - '540627' => '班戈县 ', - '540628' => '巴青县 ', - '540629' => '尼玛县 ', - '540630' => '双湖县 ', - '542500' => '阿里地区', - '542521' => '普兰县', - '542522' => '札达县', - '542523' => '噶尔县', - '542524' => '日土县', - '542525' => '革吉县', - '542526' => '改则县', - '542527' => '措勤县', - '610000' => '陕西省', - '610100' => '西安市', - '610102' => '新城区', - '610103' => '碑林区', - '610104' => '莲湖区', - '610111' => '灞桥区', - '610112' => '未央区', - '610113' => '雁塔区', - '610114' => '阎良区', - '610115' => '临潼区', - '610116' => '长安区', - '610117' => '高陵区', - '610118' => '鄠邑区', - '610122' => '蓝田县', - '610124' => '周至县', - '610200' => '铜川市', - '610202' => '王益区', - '610203' => '印台区', - '610204' => '耀州区', - '610222' => '宜君县', - '610300' => '宝鸡市', - '610302' => '渭滨区', - '610303' => '金台区', - '610304' => '陈仓区', - '610322' => '凤翔县', - '610323' => '岐山县', - '610324' => '扶风县', - '610326' => '眉县', - '610327' => '陇县', - '610328' => '千阳县', - '610329' => '麟游县', - '610330' => '凤县', - '610331' => '太白县', - '610400' => '咸阳市', - '610402' => '秦都区', - '610403' => '杨陵区', - '610404' => '渭城区', - '610422' => '三原县', - '610423' => '泾阳县', - '610424' => '乾县', - '610425' => '礼泉县', - '610426' => '永寿县', - '610428' => '长武县', - '610429' => '旬邑县', - '610430' => '淳化县', - '610431' => '武功县', - '610481' => '兴平市', - '610482' => '彬州市', - '610500' => '渭南市', - '610502' => '临渭区', - '610503' => '华州区', - '610522' => '潼关县', - '610523' => '大荔县', - '610524' => '合阳县', - '610525' => '澄城县', - '610526' => '蒲城县', - '610527' => '白水县', - '610528' => '富平县', - '610581' => '韩城市', - '610582' => '华阴市', - '610600' => '延安市', - '610602' => '宝塔区', - '610603' => '安塞区', - '610621' => '延长县', - '610622' => '延川县', - '610623' => '子长县', - '610625' => '志丹县', - '610626' => '吴起县', - '610627' => '甘泉县', - '610628' => '富县', - '610629' => '洛川县', - '610630' => '宜川县', - '610631' => '黄龙县', - '610632' => '黄陵县', - '610700' => '汉中市', - '610702' => '汉台区', - '610703' => '南郑区', - '610722' => '城固县', - '610723' => '洋县', - '610724' => '西乡县', - '610725' => '勉县', - '610726' => '宁强县', - '610727' => '略阳县', - '610728' => '镇巴县', - '610729' => '留坝县', - '610730' => '佛坪县', - '610800' => '榆林市', - '610802' => '榆阳区', - '610803' => '横山区', - '610822' => '府谷县', - '610824' => '靖边县', - '610825' => '定边县', - '610826' => '绥德县', - '610827' => '米脂县', - '610828' => '佳县', - '610829' => '吴堡县', - '610830' => '清涧县', - '610831' => '子洲县', - '610881' => '神木市', - '610900' => '安康市', - '610902' => '汉滨区', - '610921' => '汉阴县', - '610922' => '石泉县', - '610923' => '宁陕县', - '610924' => '紫阳县', - '610925' => '岚皋县', - '610926' => '平利县', - '610927' => '镇坪县', - '610928' => '旬阳县', - '610929' => '白河县', - '611000' => '商洛市', - '611002' => '商州区', - '611021' => '洛南县', - '611022' => '丹凤县', - '611023' => '商南县', - '611024' => '山阳县', - '611025' => '镇安县', - '611026' => '柞水县', - '620000' => '甘肃省', - '620100' => '兰州市', - '620102' => '城关区', - '620103' => '七里河区', - '620104' => '西固区', - '620105' => '安宁区', - '620111' => '红古区', - '620121' => '永登县', - '620122' => '皋兰县', - '620123' => '榆中县', - '620200' => '嘉峪关市', - '620300' => '金昌市', - '620302' => '金川区', - '620321' => '永昌县', - '620400' => '白银市', - '620402' => '白银区', - '620403' => '平川区', - '620421' => '靖远县', - '620422' => '会宁县', - '620423' => '景泰县', - '620500' => '天水市', - '620502' => '秦州区', - '620503' => '麦积区', - '620521' => '清水县', - '620522' => '秦安县', - '620523' => '甘谷县', - '620524' => '武山县', - '620525' => '张家川回族自治县', - '620600' => '武威市', - '620602' => '凉州区', - '620621' => '民勤县', - '620622' => '古浪县', - '620623' => '天祝藏族自治县', - '620700' => '张掖市', - '620702' => '甘州区', - '620721' => '肃南裕固族自治县', - '620722' => '民乐县', - '620723' => '临泽县', - '620724' => '高台县', - '620725' => '山丹县', - '620800' => '平凉市', - '620802' => '崆峒区', - '620821' => '泾川县', - '620822' => '灵台县', - '620823' => '崇信县', - '620824' => '华亭县', - '620825' => '庄浪县', - '620826' => '静宁县', - '620900' => '酒泉市', - '620902' => '肃州区', - '620921' => '金塔县', - '620922' => '瓜州县', - '620923' => '肃北蒙古族自治县', - '620924' => '阿克塞哈萨克族自治县', - '620981' => '玉门市', - '620982' => '敦煌市', - '621000' => '庆阳市', - '621002' => '西峰区', - '621021' => '庆城县', - '621022' => '环县', - '621023' => '华池县', - '621024' => '合水县', - '621025' => '正宁县', - '621026' => '宁县', - '621027' => '镇原县', - '621100' => '定西市', - '621102' => '安定区', - '621121' => '通渭县', - '621122' => '陇西县', - '621123' => '渭源县', - '621124' => '临洮县', - '621125' => '漳县', - '621126' => '岷县', - '621200' => '陇南市', - '621202' => '武都区', - '621221' => '成县', - '621222' => '文县', - '621223' => '宕昌县', - '621224' => '康县', - '621225' => '西和县', - '621226' => '礼县', - '621227' => '徽县', - '621228' => '两当县', - '622900' => '临夏回族自治州', - '622901' => '临夏市', - '622921' => '临夏县', - '622922' => '康乐县', - '622923' => '永靖县', - '622924' => '广河县', - '622925' => '和政县', - '622926' => '东乡族自治县', - '622927' => '积石山保安族东乡族撒拉族自治县', - '623000' => '甘南藏族自治州', - '623001' => '合作市', - '623021' => '临潭县', - '623022' => '卓尼县', - '623023' => '舟曲县', - '623024' => '迭部县', - '623025' => '玛曲县', - '623026' => '碌曲县', - '623027' => '夏河县', - '630000' => '青海省', - '630100' => '西宁市', - '630102' => '城东区', - '630103' => '城中区', - '630104' => '城西区', - '630105' => '城北区', - '630121' => '大通回族土族自治县', - '630122' => '湟中县', - '630123' => '湟源县', - '630200' => '海东市', - '630202' => '乐都区', - '630203' => '平安区', - '630222' => '民和回族土族自治县', - '630223' => '互助土族自治县', - '630224' => '化隆回族自治县', - '630225' => '循化撒拉族自治县', - '632200' => '海北藏族自治州', - '632221' => '门源回族自治县', - '632222' => '祁连县', - '632223' => '海晏县', - '632224' => '刚察县', - '632300' => '黄南藏族自治州', - '632321' => '同仁县', - '632322' => '尖扎县', - '632323' => '泽库县', - '632324' => '河南蒙古族自治县', - '632500' => '海南藏族自治州', - '632521' => '共和县', - '632522' => '同德县', - '632523' => '贵德县', - '632524' => '兴海县', - '632525' => '贵南县', - '632600' => '果洛藏族自治州', - '632621' => '玛沁县', - '632622' => '班玛县', - '632623' => '甘德县', - '632624' => '达日县', - '632625' => '久治县', - '632626' => '玛多县', - '632700' => '玉树藏族自治州', - '632701' => '玉树市', - '632722' => '杂多县', - '632723' => '称多县', - '632724' => '治多县', - '632725' => '囊谦县', - '632726' => '曲麻莱县', - '632800' => '海西蒙古族藏族自治州', - '632801' => '格尔木市', - '632802' => '德令哈市', - '632821' => '乌兰县', - '632822' => '都兰县', - '632823' => '天峻县', - '640000' => '宁夏回族自治区', - '640100' => '银川市', - '640104' => '兴庆区', - '640105' => '西夏区', - '640106' => '金凤区', - '640121' => '永宁县', - '640122' => '贺兰县', - '640181' => '灵武市', - '640200' => '石嘴山市', - '640202' => '大武口区', - '640205' => '惠农区', - '640221' => '平罗县', - '640300' => '吴忠市', - '640302' => '利通区', - '640303' => '红寺堡区', - '640323' => '盐池县', - '640324' => '同心县', - '640381' => '青铜峡市', - '640400' => '固原市', - '640402' => '原州区', - '640422' => '西吉县', - '640423' => '隆德县', - '640424' => '泾源县', - '640425' => '彭阳县', - '640500' => '中卫市', - '640502' => '沙坡头区', - '640521' => '中宁县', - '640522' => '海原县', - '650000' => '新疆维吾尔自治区', - '650100' => '乌鲁木齐市', - '650102' => '天山区', - '650103' => '沙依巴克区', - '650104' => '新市区', - '650105' => '水磨沟区', - '650106' => '头屯河区', - '650107' => '达坂城区', - '650109' => '米东区', - '650121' => '乌鲁木齐县', - '650200' => '克拉玛依市', - '650202' => '独山子区', - '650203' => '克拉玛依区', - '650204' => '白碱滩区', - '650205' => '乌尔禾区', - '650400' => '吐鲁番市', - '650402' => '高昌区', - '650421' => '鄯善县', - '650422' => '托克逊县', - '650500' => '哈密市', - '650502' => '伊州区', - '650521' => '巴里坤哈萨克自治县', - '650522' => '伊吾县', - '652300' => '昌吉回族自治州', - '652301' => '昌吉市', - '652302' => '阜康市', - '652323' => '呼图壁县', - '652324' => '玛纳斯县', - '652325' => '奇台县', - '652327' => '吉木萨尔县', - '652328' => '木垒哈萨克自治县', - '652700' => '博尔塔拉蒙古自治州', - '652701' => '博乐市', - '652702' => '阿拉山口市', - '652722' => '精河县', - '652723' => '温泉县', - '652800' => '巴音郭楞蒙古自治州', - '652801' => '库尔勒市', - '652822' => '轮台县', - '652823' => '尉犁县', - '652824' => '若羌县', - '652825' => '且末县', - '652826' => '焉耆回族自治县', - '652827' => '和静县', - '652828' => '和硕县', - '652829' => '博湖县', - '652900' => '阿克苏地区', - '652901' => '阿克苏市', - '652922' => '温宿县', - '652923' => '库车县', - '652924' => '沙雅县', - '652925' => '新和县', - '652926' => '拜城县', - '652927' => '乌什县', - '652928' => '阿瓦提县', - '652929' => '柯坪县', - '653000' => '克孜勒苏柯尔克孜自治州', - '653001' => '阿图什市', - '653022' => '阿克陶县', - '653023' => '阿合奇县', - '653024' => '乌恰县', - '653100' => '喀什地区', - '653101' => '喀什市', - '653121' => '疏附县', - '653122' => '疏勒县', - '653123' => '英吉沙县', - '653124' => '泽普县', - '653125' => '莎车县', - '653126' => '叶城县', - '653127' => '麦盖提县', - '653128' => '岳普湖县', - '653129' => '伽师县', - '653130' => '巴楚县', - '653131' => '塔什库尔干塔吉克自治县', - '653200' => '和田地区', - '653201' => '和田市', - '653221' => '和田县', - '653222' => '墨玉县', - '653223' => '皮山县', - '653224' => '洛浦县', - '653225' => '策勒县', - '653226' => '于田县', - '653227' => '民丰县', - '654000' => '伊犁哈萨克自治州', - '654002' => '伊宁市', - '654003' => '奎屯市', - '654004' => '霍尔果斯市', - '654021' => '伊宁县', - '654022' => '察布查尔锡伯自治县', - '654023' => '霍城县', - '654024' => '巩留县', - '654025' => '新源县', - '654026' => '昭苏县', - '654027' => '特克斯县', - '654028' => '尼勒克县', - '654200' => '塔城地区', - '654201' => '塔城市', - '654202' => '乌苏市', - '654221' => '额敏县', - '654223' => '沙湾县', - '654224' => '托里县', - '654225' => '裕民县', - '654226' => '和布克赛尔蒙古自治县', - '654300' => '阿勒泰地区', - '654301' => '阿勒泰市', - '654321' => '布尔津县', - '654322' => '富蕴县', - '654323' => '福海县', - '654324' => '哈巴河县', - '654325' => '青河县', - '654326' => '吉木乃县', - '659001' => '石河子市', - '659002' => '阿拉尔市', - '659003' => '图木舒克市', - '659004' => '五家渠市', - '659005' => '北屯市', - '659006' => '铁门关市', - '659007' => '双河市', - '659008' => '可克达拉市', - '659009' => '昆玉市', - '810000' => '香港特别行政区', - '820000' => '澳门特别行政区', - '830000' => '台湾省', + 110000 => '北京市', + 110101 => '东城区', + 110102 => '西城区', + 110105 => '朝阳区', + 110106 => '丰台区', + 110107 => '石景山区', + 110108 => '海淀区', + 110109 => '门头沟区', + 110111 => '房山区', + 110112 => '通州区', + 110113 => '顺义区', + 110114 => '昌平区', + 110115 => '大兴区', + 110116 => '怀柔区', + 110117 => '平谷区', + 110118 => '密云区', + 110119 => '延庆区', + 120000 => '天津市', + 120101 => '和平区', + 120102 => '河东区', + 120103 => '河西区', + 120104 => '南开区', + 120105 => '河北区', + 120106 => '红桥区', + 120110 => '东丽区', + 120111 => '西青区', + 120112 => '津南区', + 120113 => '北辰区', + 120114 => '武清区', + 120115 => '宝坻区', + 120116 => '滨海新区', + 120117 => '宁河区', + 120118 => '静海区', + 120119 => '蓟州区', + 130000 => '河北省', + 130100 => '石家庄市', + 130102 => '长安区', + 130104 => '桥西区', + 130105 => '新华区', + 130107 => '井陉矿区', + 130108 => '裕华区', + 130109 => '藁城区', + 130110 => '鹿泉区', + 130111 => '栾城区', + 130121 => '井陉县', + 130123 => '正定县', + 130125 => '行唐县', + 130126 => '灵寿县', + 130127 => '高邑县', + 130128 => '深泽县', + 130129 => '赞皇县', + 130130 => '无极县', + 130131 => '平山县', + 130132 => '元氏县', + 130133 => '赵县', + 130181 => '辛集市', + 130183 => '晋州市', + 130184 => '新乐市', + 130200 => '唐山市', + 130202 => '路南区', + 130203 => '路北区', + 130204 => '古冶区', + 130205 => '开平区', + 130207 => '丰南区', + 130208 => '丰润区', + 130209 => '曹妃甸区', + 130223 => '滦县', + 130224 => '滦南县', + 130225 => '乐亭县', + 130227 => '迁西县', + 130229 => '玉田县', + 130281 => '遵化市', + 130283 => '迁安市', + 130300 => '秦皇岛市', + 130302 => '海港区', + 130303 => '山海关区', + 130304 => '北戴河区', + 130306 => '抚宁区', + 130321 => '青龙满族自治县', + 130322 => '昌黎县', + 130324 => '卢龙县', + 130400 => '邯郸市', + 130402 => '邯山区', + 130403 => '丛台区', + 130404 => '复兴区', + 130406 => '峰峰矿区', + 130407 => '肥乡区', + 130408 => '永年区', + 130423 => '临漳县', + 130424 => '成安县', + 130425 => '大名县', + 130426 => '涉县', + 130427 => '磁县', + 130430 => '邱县', + 130431 => '鸡泽县', + 130432 => '广平县', + 130433 => '馆陶县', + 130434 => '魏县', + 130435 => '曲周县', + 130481 => '武安市', + 130500 => '邢台市', + 130502 => '桥东区', + 130503 => '桥西区', + 130521 => '邢台县', + 130522 => '临城县', + 130523 => '内丘县', + 130524 => '柏乡县', + 130525 => '隆尧县', + 130526 => '任县', + 130527 => '南和县', + 130528 => '宁晋县', + 130529 => '巨鹿县', + 130530 => '新河县', + 130531 => '广宗县', + 130532 => '平乡县', + 130533 => '威县', + 130534 => '清河县', + 130535 => '临西县', + 130581 => '南宫市', + 130582 => '沙河市', + 130600 => '保定市', + 130602 => '竞秀区', + 130606 => '莲池区', + 130607 => '满城区', + 130608 => '清苑区', + 130609 => '徐水区', + 130623 => '涞水县', + 130624 => '阜平县', + 130626 => '定兴县', + 130627 => '唐县', + 130628 => '高阳县', + 130629 => '容城县', + 130630 => '涞源县', + 130631 => '望都县', + 130632 => '安新县', + 130633 => '易县', + 130634 => '曲阳县', + 130635 => '蠡县', + 130636 => '顺平县', + 130637 => '博野县', + 130638 => '雄县', + 130681 => '涿州市', + 130682 => '定州市', + 130683 => '安国市', + 130684 => '高碑店市', + 130700 => '张家口市', + 130702 => '桥东区', + 130703 => '桥西区', + 130705 => '宣化区', + 130706 => '下花园区', + 130708 => '万全区', + 130709 => '崇礼区', + 130722 => '张北县', + 130723 => '康保县', + 130724 => '沽源县', + 130725 => '尚义县', + 130726 => '蔚县', + 130727 => '阳原县', + 130728 => '怀安县', + 130730 => '怀来县', + 130731 => '涿鹿县', + 130732 => '赤城县', + 130800 => '承德市', + 130802 => '双桥区', + 130803 => '双滦区', + 130804 => '鹰手营子矿区', + 130821 => '承德县', + 130822 => '兴隆县', + 130824 => '滦平县', + 130825 => '隆化县', + 130826 => '丰宁满族自治县', + 130827 => '宽城满族自治县', + 130828 => '围场满族蒙古族自治县', + 130881 => '平泉市', + 130900 => '沧州市', + 130902 => '新华区', + 130903 => '运河区', + 130921 => '沧县', + 130922 => '青县', + 130923 => '东光县', + 130924 => '海兴县', + 130925 => '盐山县', + 130926 => '肃宁县', + 130927 => '南皮县', + 130928 => '吴桥县', + 130929 => '献县', + 130930 => '孟村回族自治县', + 130981 => '泊头市', + 130982 => '任丘市', + 130983 => '黄骅市', + 130984 => '河间市', + 131000 => '廊坊市', + 131002 => '安次区', + 131003 => '广阳区', + 131022 => '固安县', + 131023 => '永清县', + 131024 => '香河县', + 131025 => '大城县', + 131026 => '文安县', + 131028 => '大厂回族自治县', + 131081 => '霸州市', + 131082 => '三河市', + 131100 => '衡水市', + 131102 => '桃城区', + 131103 => '冀州区', + 131121 => '枣强县', + 131122 => '武邑县', + 131123 => '武强县', + 131124 => '饶阳县', + 131125 => '安平县', + 131126 => '故城县', + 131127 => '景县', + 131128 => '阜城县', + 131182 => '深州市', + 140000 => '山西省', + 140100 => '太原市', + 140105 => '小店区', + 140106 => '迎泽区', + 140107 => '杏花岭区', + 140108 => '尖草坪区', + 140109 => '万柏林区', + 140110 => '晋源区', + 140121 => '清徐县', + 140122 => '阳曲县', + 140123 => '娄烦县', + 140181 => '古交市', + 140200 => '大同市', + 140212 => '新荣区', + 140213 => '平城区', + 140214 => '云冈区', + 140215 => '云州区', + 140221 => '阳高县', + 140222 => '天镇县', + 140223 => '广灵县', + 140224 => '灵丘县', + 140225 => '浑源县', + 140226 => '左云县', + 140300 => '阳泉市', + 140302 => '城区', + 140303 => '矿区', + 140311 => '郊区', + 140321 => '平定县', + 140322 => '盂县', + 140400 => '长治市', + 140402 => '城区', + 140411 => '郊区', + 140421 => '长治县', + 140423 => '襄垣县', + 140424 => '屯留县', + 140425 => '平顺县', + 140426 => '黎城县', + 140427 => '壶关县', + 140428 => '长子县', + 140429 => '武乡县', + 140430 => '沁县', + 140431 => '沁源县', + 140481 => '潞城市', + 140500 => '晋城市', + 140502 => '城区', + 140521 => '沁水县', + 140522 => '阳城县', + 140524 => '陵川县', + 140525 => '泽州县', + 140581 => '高平市', + 140600 => '朔州市', + 140602 => '朔城区', + 140603 => '平鲁区', + 140621 => '山阴县', + 140622 => '应县', + 140623 => '右玉县', + 140681 => '怀仁市', + 140700 => '晋中市', + 140702 => '榆次区', + 140721 => '榆社县', + 140722 => '左权县', + 140723 => '和顺县', + 140724 => '昔阳县', + 140725 => '寿阳县', + 140726 => '太谷县', + 140727 => '祁县', + 140728 => '平遥县', + 140729 => '灵石县', + 140781 => '介休市', + 140800 => '运城市', + 140802 => '盐湖区', + 140821 => '临猗县', + 140822 => '万荣县', + 140823 => '闻喜县', + 140824 => '稷山县', + 140825 => '新绛县', + 140826 => '绛县', + 140827 => '垣曲县', + 140828 => '夏县', + 140829 => '平陆县', + 140830 => '芮城县', + 140881 => '永济市', + 140882 => '河津市', + 140900 => '忻州市', + 140902 => '忻府区', + 140921 => '定襄县', + 140922 => '五台县', + 140923 => '代县', + 140924 => '繁峙县', + 140925 => '宁武县', + 140926 => '静乐县', + 140927 => '神池县', + 140928 => '五寨县', + 140929 => '岢岚县', + 140930 => '河曲县', + 140931 => '保德县', + 140932 => '偏关县', + 140981 => '原平市', + 141000 => '临汾市', + 141002 => '尧都区', + 141021 => '曲沃县', + 141022 => '翼城县', + 141023 => '襄汾县', + 141024 => '洪洞县', + 141025 => '古县', + 141026 => '安泽县', + 141027 => '浮山县', + 141028 => '吉县', + 141029 => '乡宁县', + 141030 => '大宁县', + 141031 => '隰县', + 141032 => '永和县', + 141033 => '蒲县', + 141034 => '汾西县', + 141081 => '侯马市', + 141082 => '霍州市', + 141100 => '吕梁市', + 141102 => '离石区', + 141121 => '文水县', + 141122 => '交城县', + 141123 => '兴县', + 141124 => '临县', + 141125 => '柳林县', + 141126 => '石楼县', + 141127 => '岚县', + 141128 => '方山县', + 141129 => '中阳县', + 141130 => '交口县', + 141181 => '孝义市', + 141182 => '汾阳市', + 150000 => '内蒙古自治区', + 150100 => '呼和浩特市', + 150102 => '新城区', + 150103 => '回民区', + 150104 => '玉泉区', + 150105 => '赛罕区', + 150121 => '土默特左旗', + 150122 => '托克托县', + 150123 => '和林格尔县', + 150124 => '清水河县', + 150125 => '武川县', + 150200 => '包头市', + 150202 => '东河区', + 150203 => '昆都仑区', + 150204 => '青山区', + 150205 => '石拐区', + 150206 => '白云鄂博矿区', + 150207 => '九原区', + 150221 => '土默特右旗', + 150222 => '固阳县', + 150223 => '达尔罕茂明安联合旗', + 150300 => '乌海市', + 150302 => '海勃湾区', + 150303 => '海南区', + 150304 => '乌达区', + 150400 => '赤峰市', + 150402 => '红山区', + 150403 => '元宝山区', + 150404 => '松山区', + 150421 => '阿鲁科尔沁旗', + 150422 => '巴林左旗', + 150423 => '巴林右旗', + 150424 => '林西县', + 150425 => '克什克腾旗', + 150426 => '翁牛特旗', + 150428 => '喀喇沁旗', + 150429 => '宁城县', + 150430 => '敖汉旗', + 150500 => '通辽市', + 150502 => '科尔沁区', + 150521 => '科尔沁左翼中旗', + 150522 => '科尔沁左翼后旗', + 150523 => '开鲁县', + 150524 => '库伦旗', + 150525 => '奈曼旗', + 150526 => '扎鲁特旗', + 150581 => '霍林郭勒市', + 150600 => '鄂尔多斯市', + 150602 => '东胜区', + 150603 => '康巴什区', + 150621 => '达拉特旗', + 150622 => '准格尔旗', + 150623 => '鄂托克前旗', + 150624 => '鄂托克旗', + 150625 => '杭锦旗', + 150626 => '乌审旗', + 150627 => '伊金霍洛旗', + 150700 => '呼伦贝尔市', + 150702 => '海拉尔区', + 150703 => '扎赉诺尔区', + 150721 => '阿荣旗', + 150722 => '莫力达瓦达斡尔族自治旗', + 150723 => '鄂伦春自治旗', + 150724 => '鄂温克族自治旗', + 150725 => '陈巴尔虎旗', + 150726 => '新巴尔虎左旗', + 150727 => '新巴尔虎右旗', + 150781 => '满洲里市', + 150782 => '牙克石市', + 150783 => '扎兰屯市', + 150784 => '额尔古纳市', + 150785 => '根河市', + 150800 => '巴彦淖尔市', + 150802 => '临河区', + 150821 => '五原县', + 150822 => '磴口县', + 150823 => '乌拉特前旗', + 150824 => '乌拉特中旗', + 150825 => '乌拉特后旗', + 150826 => '杭锦后旗', + 150900 => '乌兰察布市', + 150902 => '集宁区', + 150921 => '卓资县', + 150922 => '化德县', + 150923 => '商都县', + 150924 => '兴和县', + 150925 => '凉城县', + 150926 => '察哈尔右翼前旗', + 150927 => '察哈尔右翼中旗', + 150928 => '察哈尔右翼后旗', + 150929 => '四子王旗', + 150981 => '丰镇市', + 152200 => '兴安盟', + 152201 => '乌兰浩特市', + 152202 => '阿尔山市', + 152221 => '科尔沁右翼前旗', + 152222 => '科尔沁右翼中旗', + 152223 => '扎赉特旗', + 152224 => '突泉县', + 152500 => '锡林郭勒盟', + 152501 => '二连浩特市', + 152502 => '锡林浩特市', + 152522 => '阿巴嘎旗', + 152523 => '苏尼特左旗', + 152524 => '苏尼特右旗', + 152525 => '东乌珠穆沁旗', + 152526 => '西乌珠穆沁旗', + 152527 => '太仆寺旗', + 152528 => '镶黄旗', + 152529 => '正镶白旗', + 152530 => '正蓝旗', + 152531 => '多伦县', + 152900 => '阿拉善盟', + 152921 => '阿拉善左旗', + 152922 => '阿拉善右旗', + 152923 => '额济纳旗', + 210000 => '辽宁省', + 210100 => '沈阳市', + 210102 => '和平区', + 210103 => '沈河区', + 210104 => '大东区', + 210105 => '皇姑区', + 210106 => '铁西区', + 210111 => '苏家屯区', + 210112 => '浑南区', + 210113 => '沈北新区', + 210114 => '于洪区', + 210115 => '辽中区', + 210123 => '康平县', + 210124 => '法库县', + 210181 => '新民市', + 210200 => '大连市', + 210202 => '中山区', + 210203 => '西岗区', + 210204 => '沙河口区', + 210211 => '甘井子区', + 210212 => '旅顺口区', + 210213 => '金州区', + 210214 => '普兰店区', + 210224 => '长海县', + 210281 => '瓦房店市', + 210283 => '庄河市', + 210300 => '鞍山市', + 210302 => '铁东区', + 210303 => '铁西区', + 210304 => '立山区', + 210311 => '千山区', + 210321 => '台安县', + 210323 => '岫岩满族自治县', + 210381 => '海城市', + 210400 => '抚顺市', + 210402 => '新抚区', + 210403 => '东洲区', + 210404 => '望花区', + 210411 => '顺城区', + 210421 => '抚顺县', + 210422 => '新宾满族自治县', + 210423 => '清原满族自治县', + 210500 => '本溪市', + 210502 => '平山区', + 210503 => '溪湖区', + 210504 => '明山区', + 210505 => '南芬区', + 210521 => '本溪满族自治县', + 210522 => '桓仁满族自治县', + 210600 => '丹东市', + 210602 => '元宝区', + 210603 => '振兴区', + 210604 => '振安区', + 210624 => '宽甸满族自治县', + 210681 => '东港市', + 210682 => '凤城市', + 210700 => '锦州市', + 210702 => '古塔区', + 210703 => '凌河区', + 210711 => '太和区', + 210726 => '黑山县', + 210727 => '义县', + 210781 => '凌海市', + 210782 => '北镇市', + 210800 => '营口市', + 210802 => '站前区', + 210803 => '西市区', + 210804 => '鲅鱼圈区', + 210811 => '老边区', + 210881 => '盖州市', + 210882 => '大石桥市', + 210900 => '阜新市', + 210902 => '海州区', + 210903 => '新邱区', + 210904 => '太平区', + 210905 => '清河门区', + 210911 => '细河区', + 210921 => '阜新蒙古族自治县', + 210922 => '彰武县', + 211000 => '辽阳市', + 211002 => '白塔区', + 211003 => '文圣区', + 211004 => '宏伟区', + 211005 => '弓长岭区', + 211011 => '太子河区', + 211021 => '辽阳县', + 211081 => '灯塔市', + 211100 => '盘锦市', + 211102 => '双台子区', + 211103 => '兴隆台区', + 211104 => '大洼区', + 211122 => '盘山县', + 211200 => '铁岭市', + 211202 => '银州区', + 211204 => '清河区', + 211221 => '铁岭县', + 211223 => '西丰县', + 211224 => '昌图县', + 211281 => '调兵山市', + 211282 => '开原市', + 211300 => '朝阳市', + 211302 => '双塔区', + 211303 => '龙城区', + 211321 => '朝阳县', + 211322 => '建平县', + 211324 => '喀喇沁左翼蒙古族自治县', + 211381 => '北票市', + 211382 => '凌源市', + 211400 => '葫芦岛市', + 211402 => '连山区', + 211403 => '龙港区', + 211404 => '南票区', + 211421 => '绥中县', + 211422 => '建昌县', + 211481 => '兴城市', + 220000 => '吉林省', + 220100 => '长春市', + 220102 => '南关区', + 220103 => '宽城区', + 220104 => '朝阳区', + 220105 => '二道区', + 220106 => '绿园区', + 220112 => '双阳区', + 220113 => '九台区', + 220122 => '农安县', + 220182 => '榆树市', + 220183 => '德惠市', + 220200 => '吉林市', + 220202 => '昌邑区', + 220203 => '龙潭区', + 220204 => '船营区', + 220211 => '丰满区', + 220221 => '永吉县', + 220281 => '蛟河市', + 220282 => '桦甸市', + 220283 => '舒兰市', + 220284 => '磐石市', + 220300 => '四平市', + 220302 => '铁西区', + 220303 => '铁东区', + 220322 => '梨树县', + 220323 => '伊通满族自治县', + 220381 => '公主岭市', + 220382 => '双辽市', + 220400 => '辽源市', + 220402 => '龙山区', + 220403 => '西安区', + 220421 => '东丰县', + 220422 => '东辽县', + 220500 => '通化市', + 220502 => '东昌区', + 220503 => '二道江区', + 220521 => '通化县', + 220523 => '辉南县', + 220524 => '柳河县', + 220581 => '梅河口市', + 220582 => '集安市', + 220600 => '白山市', + 220602 => '浑江区', + 220605 => '江源区', + 220621 => '抚松县', + 220622 => '靖宇县', + 220623 => '长白朝鲜族自治县', + 220681 => '临江市', + 220700 => '松原市', + 220702 => '宁江区', + 220721 => '前郭尔罗斯蒙古族自治县', + 220722 => '长岭县', + 220723 => '乾安县', + 220781 => '扶余市', + 220800 => '白城市', + 220802 => '洮北区', + 220821 => '镇赉县', + 220822 => '通榆县', + 220881 => '洮南市', + 220882 => '大安市', + 222400 => '延边朝鲜族自治州', + 222401 => '延吉市', + 222402 => '图们市', + 222403 => '敦化市', + 222404 => '珲春市', + 222405 => '龙井市', + 222406 => '和龙市', + 222424 => '汪清县', + 222426 => '安图县', + 230000 => '黑龙江省', + 230100 => '哈尔滨市', + 230102 => '道里区', + 230103 => '南岗区', + 230104 => '道外区', + 230108 => '平房区', + 230109 => '松北区', + 230110 => '香坊区', + 230111 => '呼兰区', + 230112 => '阿城区', + 230113 => '双城区', + 230123 => '依兰县', + 230124 => '方正县', + 230125 => '宾县', + 230126 => '巴彦县', + 230127 => '木兰县', + 230128 => '通河县', + 230129 => '延寿县', + 230183 => '尚志市', + 230184 => '五常市', + 230200 => '齐齐哈尔市', + 230202 => '龙沙区', + 230203 => '建华区', + 230204 => '铁锋区', + 230205 => '昂昂溪区', + 230206 => '富拉尔基区', + 230207 => '碾子山区', + 230208 => '梅里斯达斡尔族区', + 230221 => '龙江县', + 230223 => '依安县', + 230224 => '泰来县', + 230225 => '甘南县', + 230227 => '富裕县', + 230229 => '克山县', + 230230 => '克东县', + 230231 => '拜泉县', + 230281 => '讷河市', + 230300 => '鸡西市', + 230302 => '鸡冠区', + 230303 => '恒山区', + 230304 => '滴道区', + 230305 => '梨树区', + 230306 => '城子河区', + 230307 => '麻山区', + 230321 => '鸡东县', + 230381 => '虎林市', + 230382 => '密山市', + 230400 => '鹤岗市', + 230402 => '向阳区', + 230403 => '工农区', + 230404 => '南山区', + 230405 => '兴安区', + 230406 => '东山区', + 230407 => '兴山区', + 230421 => '萝北县', + 230422 => '绥滨县', + 230500 => '双鸭山市', + 230502 => '尖山区', + 230503 => '岭东区', + 230505 => '四方台区', + 230506 => '宝山区', + 230521 => '集贤县', + 230522 => '友谊县', + 230523 => '宝清县', + 230524 => '饶河县', + 230600 => '大庆市', + 230602 => '萨尔图区', + 230603 => '龙凤区', + 230604 => '让胡路区', + 230605 => '红岗区', + 230606 => '大同区', + 230621 => '肇州县', + 230622 => '肇源县', + 230623 => '林甸县', + 230624 => '杜尔伯特蒙古族自治县', + 230700 => '伊春市', + 230702 => '伊春区', + 230703 => '南岔区', + 230704 => '友好区', + 230705 => '西林区', + 230706 => '翠峦区', + 230707 => '新青区', + 230708 => '美溪区', + 230709 => '金山屯区', + 230710 => '五营区', + 230711 => '乌马河区', + 230712 => '汤旺河区', + 230713 => '带岭区', + 230714 => '乌伊岭区', + 230715 => '红星区', + 230716 => '上甘岭区', + 230722 => '嘉荫县', + 230781 => '铁力市', + 230800 => '佳木斯市', + 230803 => '向阳区', + 230804 => '前进区', + 230805 => '东风区', + 230811 => '郊区', + 230822 => '桦南县', + 230826 => '桦川县', + 230828 => '汤原县', + 230881 => '同江市', + 230882 => '富锦市', + 230883 => '抚远市', + 230900 => '七台河市', + 230902 => '新兴区', + 230903 => '桃山区', + 230904 => '茄子河区', + 230921 => '勃利县', + 231000 => '牡丹江市', + 231002 => '东安区', + 231003 => '阳明区', + 231004 => '爱民区', + 231005 => '西安区', + 231025 => '林口县', + 231081 => '绥芬河市', + 231083 => '海林市', + 231084 => '宁安市', + 231085 => '穆棱市', + 231086 => '东宁市', + 231100 => '黑河市', + 231102 => '爱辉区', + 231121 => '嫩江县', + 231123 => '逊克县', + 231124 => '孙吴县', + 231181 => '北安市', + 231182 => '五大连池市', + 231200 => '绥化市', + 231202 => '北林区', + 231221 => '望奎县', + 231222 => '兰西县', + 231223 => '青冈县', + 231224 => '庆安县', + 231225 => '明水县', + 231226 => '绥棱县', + 231281 => '安达市', + 231282 => '肇东市', + 231283 => '海伦市', + 232700 => '大兴安岭地区', + 232701 => '漠河市', + 232721 => '呼玛县', + 232722 => '塔河县', + 310000 => '上海市', + 310101 => '黄浦区', + 310104 => '徐汇区', + 310105 => '长宁区', + 310106 => '静安区', + 310107 => '普陀区', + 310109 => '虹口区', + 310110 => '杨浦区', + 310112 => '闵行区', + 310113 => '宝山区', + 310114 => '嘉定区', + 310115 => '浦东新区', + 310116 => '金山区', + 310117 => '松江区', + 310118 => '青浦区', + 310120 => '奉贤区', + 310151 => '崇明区', + 320000 => '江苏省', + 320100 => '南京市', + 320102 => '玄武区', + 320104 => '秦淮区', + 320105 => '建邺区', + 320106 => '鼓楼区', + 320111 => '浦口区', + 320113 => '栖霞区', + 320114 => '雨花台区', + 320115 => '江宁区', + 320116 => '六合区', + 320117 => '溧水区', + 320118 => '高淳区', + 320200 => '无锡市', + 320205 => '锡山区', + 320206 => '惠山区', + 320211 => '滨湖区', + 320213 => '梁溪区', + 320214 => '新吴区', + 320281 => '江阴市', + 320282 => '宜兴市', + 320300 => '徐州市', + 320302 => '鼓楼区', + 320303 => '云龙区', + 320305 => '贾汪区', + 320311 => '泉山区', + 320312 => '铜山区', + 320321 => '丰县', + 320322 => '沛县', + 320324 => '睢宁县', + 320381 => '新沂市', + 320382 => '邳州市', + 320400 => '常州市', + 320402 => '天宁区', + 320404 => '钟楼区', + 320411 => '新北区', + 320412 => '武进区', + 320413 => '金坛区', + 320481 => '溧阳市', + 320500 => '苏州市', + 320505 => '虎丘区', + 320506 => '吴中区', + 320507 => '相城区', + 320508 => '姑苏区', + 320509 => '吴江区', + 320581 => '常熟市', + 320582 => '张家港市', + 320583 => '昆山市', + 320585 => '太仓市', + 320600 => '南通市', + 320602 => '崇川区', + 320611 => '港闸区', + 320612 => '通州区', + 320623 => '如东县', + 320681 => '启东市', + 320682 => '如皋市', + 320684 => '海门市', + 320685 => '海安市', + 320700 => '连云港市', + 320703 => '连云区', + 320706 => '海州区', + 320707 => '赣榆区', + 320722 => '东海县', + 320723 => '灌云县', + 320724 => '灌南县', + 320800 => '淮安市', + 320803 => '淮安区', + 320804 => '淮阴区', + 320812 => '清江浦区', + 320813 => '洪泽区', + 320826 => '涟水县', + 320830 => '盱眙县', + 320831 => '金湖县', + 320900 => '盐城市', + 320902 => '亭湖区', + 320903 => '盐都区', + 320904 => '大丰区', + 320921 => '响水县', + 320922 => '滨海县', + 320923 => '阜宁县', + 320924 => '射阳县', + 320925 => '建湖县', + 320981 => '东台市', + 321000 => '扬州市', + 321002 => '广陵区', + 321003 => '邗江区', + 321012 => '江都区', + 321023 => '宝应县', + 321081 => '仪征市', + 321084 => '高邮市', + 321100 => '镇江市', + 321102 => '京口区', + 321111 => '润州区', + 321112 => '丹徒区', + 321181 => '丹阳市', + 321182 => '扬中市', + 321183 => '句容市', + 321200 => '泰州市', + 321202 => '海陵区', + 321203 => '高港区', + 321204 => '姜堰区', + 321281 => '兴化市', + 321282 => '靖江市', + 321283 => '泰兴市', + 321300 => '宿迁市', + 321302 => '宿城区', + 321311 => '宿豫区', + 321322 => '沭阳县', + 321323 => '泗阳县', + 321324 => '泗洪县', + 330000 => '浙江省', + 330100 => '杭州市', + 330102 => '上城区', + 330103 => '下城区', + 330104 => '江干区', + 330105 => '拱墅区', + 330106 => '西湖区', + 330108 => '滨江区', + 330109 => '萧山区', + 330110 => '余杭区', + 330111 => '富阳区', + 330112 => '临安区', + 330122 => '桐庐县', + 330127 => '淳安县', + 330182 => '建德市', + 330200 => '宁波市', + 330203 => '海曙区', + 330205 => '江北区', + 330206 => '北仑区', + 330211 => '镇海区', + 330212 => '鄞州区', + 330213 => '奉化区', + 330225 => '象山县', + 330226 => '宁海县', + 330281 => '余姚市', + 330282 => '慈溪市', + 330300 => '温州市', + 330302 => '鹿城区', + 330303 => '龙湾区', + 330304 => '瓯海区', + 330305 => '洞头区', + 330324 => '永嘉县', + 330326 => '平阳县', + 330327 => '苍南县', + 330328 => '文成县', + 330329 => '泰顺县', + 330381 => '瑞安市', + 330382 => '乐清市', + 330400 => '嘉兴市', + 330402 => '南湖区', + 330411 => '秀洲区', + 330421 => '嘉善县', + 330424 => '海盐县', + 330481 => '海宁市', + 330482 => '平湖市', + 330483 => '桐乡市', + 330500 => '湖州市', + 330502 => '吴兴区', + 330503 => '南浔区', + 330521 => '德清县', + 330522 => '长兴县', + 330523 => '安吉县', + 330600 => '绍兴市', + 330602 => '越城区', + 330603 => '柯桥区', + 330604 => '上虞区', + 330624 => '新昌县', + 330681 => '诸暨市', + 330683 => '嵊州市', + 330700 => '金华市', + 330702 => '婺城区', + 330703 => '金东区', + 330723 => '武义县', + 330726 => '浦江县', + 330727 => '磐安县', + 330781 => '兰溪市', + 330782 => '义乌市', + 330783 => '东阳市', + 330784 => '永康市', + 330800 => '衢州市', + 330802 => '柯城区', + 330803 => '衢江区', + 330822 => '常山县', + 330824 => '开化县', + 330825 => '龙游县', + 330881 => '江山市', + 330900 => '舟山市', + 330902 => '定海区', + 330903 => '普陀区', + 330921 => '岱山县', + 330922 => '嵊泗县', + 331000 => '台州市', + 331002 => '椒江区', + 331003 => '黄岩区', + 331004 => '路桥区', + 331022 => '三门县', + 331023 => '天台县', + 331024 => '仙居县', + 331081 => '温岭市', + 331082 => '临海市', + 331083 => '玉环市', + 331100 => '丽水市', + 331102 => '莲都区', + 331121 => '青田县', + 331122 => '缙云县', + 331123 => '遂昌县', + 331124 => '松阳县', + 331125 => '云和县', + 331126 => '庆元县', + 331127 => '景宁畲族自治县', + 331181 => '龙泉市', + 340000 => '安徽省', + 340100 => '合肥市', + 340102 => '瑶海区', + 340103 => '庐阳区', + 340104 => '蜀山区', + 340111 => '包河区', + 340121 => '长丰县', + 340122 => '肥东县', + 340123 => '肥西县', + 340124 => '庐江县', + 340181 => '巢湖市', + 340200 => '芜湖市', + 340202 => '镜湖区', + 340203 => '弋江区', + 340207 => '鸠江区', + 340208 => '三山区', + 340221 => '芜湖县', + 340222 => '繁昌县', + 340223 => '南陵县', + 340225 => '无为县', + 340300 => '蚌埠市', + 340302 => '龙子湖区', + 340303 => '蚌山区', + 340304 => '禹会区', + 340311 => '淮上区', + 340321 => '怀远县', + 340322 => '五河县', + 340323 => '固镇县', + 340400 => '淮南市', + 340402 => '大通区', + 340403 => '田家庵区', + 340404 => '谢家集区', + 340405 => '八公山区', + 340406 => '潘集区', + 340421 => '凤台县', + 340422 => '寿县', + 340500 => '马鞍山市', + 340503 => '花山区', + 340504 => '雨山区', + 340506 => '博望区', + 340521 => '当涂县', + 340522 => '含山县', + 340523 => '和县', + 340600 => '淮北市', + 340602 => '杜集区', + 340603 => '相山区', + 340604 => '烈山区', + 340621 => '濉溪县', + 340700 => '铜陵市', + 340705 => '铜官区', + 340706 => '义安区', + 340711 => '郊区', + 340722 => '枞阳县', + 340800 => '安庆市', + 340802 => '迎江区', + 340803 => '大观区', + 340811 => '宜秀区', + 340822 => '怀宁县', + 340824 => '潜山县', + 340825 => '太湖县', + 340826 => '宿松县', + 340827 => '望江县', + 340828 => '岳西县', + 340881 => '桐城市', + 341000 => '黄山市', + 341002 => '屯溪区', + 341003 => '黄山区', + 341004 => '徽州区', + 341021 => '歙县', + 341022 => '休宁县', + 341023 => '黟县', + 341024 => '祁门县', + 341100 => '滁州市', + 341102 => '琅琊区', + 341103 => '南谯区', + 341122 => '来安县', + 341124 => '全椒县', + 341125 => '定远县', + 341126 => '凤阳县', + 341181 => '天长市', + 341182 => '明光市', + 341200 => '阜阳市', + 341202 => '颍州区', + 341203 => '颍东区', + 341204 => '颍泉区', + 341221 => '临泉县', + 341222 => '太和县', + 341225 => '阜南县', + 341226 => '颍上县', + 341282 => '界首市', + 341300 => '宿州市', + 341302 => '埇桥区', + 341321 => '砀山县', + 341322 => '萧县', + 341323 => '灵璧县', + 341324 => '泗县', + 341500 => '六安市', + 341502 => '金安区', + 341503 => '裕安区', + 341504 => '叶集区', + 341522 => '霍邱县', + 341523 => '舒城县', + 341524 => '金寨县', + 341525 => '霍山县', + 341600 => '亳州市', + 341602 => '谯城区', + 341621 => '涡阳县', + 341622 => '蒙城县', + 341623 => '利辛县', + 341700 => '池州市', + 341702 => '贵池区', + 341721 => '东至县', + 341722 => '石台县', + 341723 => '青阳县', + 341800 => '宣城市', + 341802 => '宣州区', + 341821 => '郎溪县', + 341822 => '广德县', + 341823 => '泾县', + 341824 => '绩溪县', + 341825 => '旌德县', + 341881 => '宁国市', + 350000 => '福建省', + 350100 => '福州市', + 350102 => '鼓楼区', + 350103 => '台江区', + 350104 => '仓山区', + 350105 => '马尾区', + 350111 => '晋安区', + 350112 => '长乐区', + 350121 => '闽侯县', + 350122 => '连江县', + 350123 => '罗源县', + 350124 => '闽清县', + 350125 => '永泰县', + 350128 => '平潭县', + 350181 => '福清市', + 350200 => '厦门市', + 350203 => '思明区', + 350205 => '海沧区', + 350206 => '湖里区', + 350211 => '集美区', + 350212 => '同安区', + 350213 => '翔安区', + 350300 => '莆田市', + 350302 => '城厢区', + 350303 => '涵江区', + 350304 => '荔城区', + 350305 => '秀屿区', + 350322 => '仙游县', + 350400 => '三明市', + 350402 => '梅列区', + 350403 => '三元区', + 350421 => '明溪县', + 350423 => '清流县', + 350424 => '宁化县', + 350425 => '大田县', + 350426 => '尤溪县', + 350427 => '沙县', + 350428 => '将乐县', + 350429 => '泰宁县', + 350430 => '建宁县', + 350481 => '永安市', + 350500 => '泉州市', + 350502 => '鲤城区', + 350503 => '丰泽区', + 350504 => '洛江区', + 350505 => '泉港区', + 350521 => '惠安县', + 350524 => '安溪县', + 350525 => '永春县', + 350526 => '德化县', + 350527 => '金门县', + 350581 => '石狮市', + 350582 => '晋江市', + 350583 => '南安市', + 350600 => '漳州市', + 350602 => '芗城区', + 350603 => '龙文区', + 350622 => '云霄县', + 350623 => '漳浦县', + 350624 => '诏安县', + 350625 => '长泰县', + 350626 => '东山县', + 350627 => '南靖县', + 350628 => '平和县', + 350629 => '华安县', + 350681 => '龙海市', + 350700 => '南平市', + 350702 => '延平区', + 350703 => '建阳区', + 350721 => '顺昌县', + 350722 => '浦城县', + 350723 => '光泽县', + 350724 => '松溪县', + 350725 => '政和县', + 350781 => '邵武市', + 350782 => '武夷山市', + 350783 => '建瓯市', + 350800 => '龙岩市', + 350802 => '新罗区', + 350803 => '永定区', + 350821 => '长汀县', + 350823 => '上杭县', + 350824 => '武平县', + 350825 => '连城县', + 350881 => '漳平市', + 350900 => '宁德市', + 350902 => '蕉城区', + 350921 => '霞浦县', + 350922 => '古田县', + 350923 => '屏南县', + 350924 => '寿宁县', + 350925 => '周宁县', + 350926 => '柘荣县', + 350981 => '福安市', + 350982 => '福鼎市', + 360000 => '江西省', + 360100 => '南昌市', + 360102 => '东湖区', + 360103 => '西湖区', + 360104 => '青云谱区', + 360105 => '湾里区', + 360111 => '青山湖区', + 360112 => '新建区', + 360121 => '南昌县', + 360123 => '安义县', + 360124 => '进贤县', + 360200 => '景德镇市', + 360202 => '昌江区', + 360203 => '珠山区', + 360222 => '浮梁县', + 360281 => '乐平市', + 360300 => '萍乡市', + 360302 => '安源区', + 360313 => '湘东区', + 360321 => '莲花县', + 360322 => '上栗县', + 360323 => '芦溪县', + 360400 => '九江市', + 360402 => '濂溪区', + 360403 => '浔阳区', + 360404 => '柴桑区', + 360423 => '武宁县', + 360424 => '修水县', + 360425 => '永修县', + 360426 => '德安县', + 360428 => '都昌县', + 360429 => '湖口县', + 360430 => '彭泽县', + 360481 => '瑞昌市', + 360482 => '共青城市', + 360483 => '庐山市', + 360500 => '新余市', + 360502 => '渝水区', + 360521 => '分宜县', + 360600 => '鹰潭市', + 360602 => '月湖区', + 360603 => '余江区', + 360681 => '贵溪市', + 360700 => '赣州市', + 360702 => '章贡区', + 360703 => '南康区', + 360704 => '赣县区', + 360722 => '信丰县', + 360723 => '大余县', + 360724 => '上犹县', + 360725 => '崇义县', + 360726 => '安远县', + 360727 => '龙南县', + 360728 => '定南县', + 360729 => '全南县', + 360730 => '宁都县', + 360731 => '于都县', + 360732 => '兴国县', + 360733 => '会昌县', + 360734 => '寻乌县', + 360735 => '石城县', + 360781 => '瑞金市', + 360800 => '吉安市', + 360802 => '吉州区', + 360803 => '青原区', + 360821 => '吉安县', + 360822 => '吉水县', + 360823 => '峡江县', + 360824 => '新干县', + 360825 => '永丰县', + 360826 => '泰和县', + 360827 => '遂川县', + 360828 => '万安县', + 360829 => '安福县', + 360830 => '永新县', + 360881 => '井冈山市', + 360900 => '宜春市', + 360902 => '袁州区', + 360921 => '奉新县', + 360922 => '万载县', + 360923 => '上高县', + 360924 => '宜丰县', + 360925 => '靖安县', + 360926 => '铜鼓县', + 360981 => '丰城市', + 360982 => '樟树市', + 360983 => '高安市', + 361000 => '抚州市', + 361002 => '临川区', + 361003 => '东乡区', + 361021 => '南城县', + 361022 => '黎川县', + 361023 => '南丰县', + 361024 => '崇仁县', + 361025 => '乐安县', + 361026 => '宜黄县', + 361027 => '金溪县', + 361028 => '资溪县', + 361030 => '广昌县', + 361100 => '上饶市', + 361102 => '信州区', + 361103 => '广丰区', + 361121 => '上饶县', + 361123 => '玉山县', + 361124 => '铅山县', + 361125 => '横峰县', + 361126 => '弋阳县', + 361127 => '余干县', + 361128 => '鄱阳县', + 361129 => '万年县', + 361130 => '婺源县', + 361181 => '德兴市', + 370000 => '山东省', + 370100 => '济南市', + 370102 => '历下区', + 370103 => '市中区', + 370104 => '槐荫区', + 370105 => '天桥区', + 370112 => '历城区', + 370113 => '长清区', + 370114 => '章丘区', + 370124 => '平阴县', + 370125 => '济阳县', + 370126 => '商河县', + 370200 => '青岛市', + 370202 => '市南区', + 370203 => '市北区', + 370211 => '黄岛区', + 370212 => '崂山区', + 370213 => '李沧区', + 370214 => '城阳区', + 370215 => '即墨区', + 370281 => '胶州市', + 370283 => '平度市', + 370285 => '莱西市', + 370300 => '淄博市', + 370302 => '淄川区', + 370303 => '张店区', + 370304 => '博山区', + 370305 => '临淄区', + 370306 => '周村区', + 370321 => '桓台县', + 370322 => '高青县', + 370323 => '沂源县', + 370400 => '枣庄市', + 370402 => '市中区', + 370403 => '薛城区', + 370404 => '峄城区', + 370405 => '台儿庄区', + 370406 => '山亭区', + 370481 => '滕州市', + 370500 => '东营市', + 370502 => '东营区', + 370503 => '河口区', + 370505 => '垦利区', + 370522 => '利津县', + 370523 => '广饶县', + 370600 => '烟台市', + 370602 => '芝罘区', + 370611 => '福山区', + 370612 => '牟平区', + 370613 => '莱山区', + 370634 => '长岛县', + 370681 => '龙口市', + 370682 => '莱阳市', + 370683 => '莱州市', + 370684 => '蓬莱市', + 370685 => '招远市', + 370686 => '栖霞市', + 370687 => '海阳市', + 370700 => '潍坊市', + 370702 => '潍城区', + 370703 => '寒亭区', + 370704 => '坊子区', + 370705 => '奎文区', + 370724 => '临朐县', + 370725 => '昌乐县', + 370781 => '青州市', + 370782 => '诸城市', + 370783 => '寿光市', + 370784 => '安丘市', + 370785 => '高密市', + 370786 => '昌邑市', + 370800 => '济宁市', + 370811 => '任城区', + 370812 => '兖州区', + 370826 => '微山县', + 370827 => '鱼台县', + 370828 => '金乡县', + 370829 => '嘉祥县', + 370830 => '汶上县', + 370831 => '泗水县', + 370832 => '梁山县', + 370881 => '曲阜市', + 370883 => '邹城市', + 370900 => '泰安市', + 370902 => '泰山区', + 370911 => '岱岳区', + 370921 => '宁阳县', + 370923 => '东平县', + 370982 => '新泰市', + 370983 => '肥城市', + 371000 => '威海市', + 371002 => '环翠区', + 371003 => '文登区', + 371082 => '荣成市', + 371083 => '乳山市', + 371100 => '日照市', + 371102 => '东港区', + 371103 => '岚山区', + 371121 => '五莲县', + 371122 => '莒县', + 371200 => '莱芜市', + 371202 => '莱城区', + 371203 => '钢城区', + 371300 => '临沂市', + 371302 => '兰山区', + 371311 => '罗庄区', + 371312 => '河东区', + 371321 => '沂南县', + 371322 => '郯城县', + 371323 => '沂水县', + 371324 => '兰陵县', + 371325 => '费县', + 371326 => '平邑县', + 371327 => '莒南县', + 371328 => '蒙阴县', + 371329 => '临沭县', + 371400 => '德州市', + 371402 => '德城区', + 371403 => '陵城区', + 371422 => '宁津县', + 371423 => '庆云县', + 371424 => '临邑县', + 371425 => '齐河县', + 371426 => '平原县', + 371427 => '夏津县', + 371428 => '武城县', + 371481 => '乐陵市', + 371482 => '禹城市', + 371500 => '聊城市', + 371502 => '东昌府区', + 371521 => '阳谷县', + 371522 => '莘县', + 371523 => '茌平县', + 371524 => '东阿县', + 371525 => '冠县', + 371526 => '高唐县', + 371581 => '临清市', + 371600 => '滨州市', + 371602 => '滨城区', + 371603 => '沾化区', + 371621 => '惠民县', + 371622 => '阳信县', + 371623 => '无棣县', + 371625 => '博兴县', + 371626 => '邹平县', + 371700 => '菏泽市', + 371702 => '牡丹区', + 371703 => '定陶区', + 371721 => '曹县', + 371722 => '单县', + 371723 => '成武县', + 371724 => '巨野县', + 371725 => '郓城县', + 371726 => '鄄城县', + 371728 => '东明县', + 410000 => '河南省', + 410100 => '郑州市', + 410102 => '中原区', + 410103 => '二七区', + 410104 => '管城回族区', + 410105 => '金水区', + 410106 => '上街区', + 410108 => '惠济区', + 410122 => '中牟县', + 410181 => '巩义市', + 410182 => '荥阳市', + 410183 => '新密市', + 410184 => '新郑市', + 410185 => '登封市', + 410200 => '开封市', + 410202 => '龙亭区', + 410203 => '顺河回族区', + 410204 => '鼓楼区', + 410205 => '禹王台区', + 410212 => '祥符区', + 410221 => '杞县', + 410222 => '通许县', + 410223 => '尉氏县', + 410225 => '兰考县', + 410300 => '洛阳市', + 410302 => '老城区', + 410303 => '西工区', + 410304 => '瀍河回族区', + 410305 => '涧西区', + 410306 => '吉利区', + 410311 => '洛龙区', + 410322 => '孟津县', + 410323 => '新安县', + 410324 => '栾川县', + 410325 => '嵩县', + 410326 => '汝阳县', + 410327 => '宜阳县', + 410328 => '洛宁县', + 410329 => '伊川县', + 410381 => '偃师市', + 410400 => '平顶山市', + 410402 => '新华区', + 410403 => '卫东区', + 410404 => '石龙区', + 410411 => '湛河区', + 410421 => '宝丰县', + 410422 => '叶县', + 410423 => '鲁山县', + 410425 => '郏县', + 410481 => '舞钢市', + 410482 => '汝州市', + 410500 => '安阳市', + 410502 => '文峰区', + 410503 => '北关区', + 410505 => '殷都区', + 410506 => '龙安区', + 410522 => '安阳县', + 410523 => '汤阴县', + 410526 => '滑县', + 410527 => '内黄县', + 410581 => '林州市', + 410600 => '鹤壁市', + 410602 => '鹤山区', + 410603 => '山城区', + 410611 => '淇滨区', + 410621 => '浚县', + 410622 => '淇县', + 410700 => '新乡市', + 410702 => '红旗区', + 410703 => '卫滨区', + 410704 => '凤泉区', + 410711 => '牧野区', + 410721 => '新乡县', + 410724 => '获嘉县', + 410725 => '原阳县', + 410726 => '延津县', + 410727 => '封丘县', + 410728 => '长垣县', + 410781 => '卫辉市', + 410782 => '辉县市', + 410800 => '焦作市', + 410802 => '解放区', + 410803 => '中站区', + 410804 => '马村区', + 410811 => '山阳区', + 410821 => '修武县', + 410822 => '博爱县', + 410823 => '武陟县', + 410825 => '温县', + 410882 => '沁阳市', + 410883 => '孟州市', + 410900 => '濮阳市', + 410902 => '华龙区', + 410922 => '清丰县', + 410923 => '南乐县', + 410926 => '范县', + 410927 => '台前县', + 410928 => '濮阳县', + 411000 => '许昌市', + 411002 => '魏都区', + 411003 => '建安区', + 411024 => '鄢陵县', + 411025 => '襄城县', + 411081 => '禹州市', + 411082 => '长葛市', + 411100 => '漯河市', + 411102 => '源汇区', + 411103 => '郾城区', + 411104 => '召陵区', + 411121 => '舞阳县', + 411122 => '临颍县', + 411200 => '三门峡市', + 411202 => '湖滨区', + 411203 => '陕州区', + 411221 => '渑池县', + 411224 => '卢氏县', + 411281 => '义马市', + 411282 => '灵宝市', + 411300 => '南阳市', + 411302 => '宛城区', + 411303 => '卧龙区', + 411321 => '南召县', + 411322 => '方城县', + 411323 => '西峡县', + 411324 => '镇平县', + 411325 => '内乡县', + 411326 => '淅川县', + 411327 => '社旗县', + 411328 => '唐河县', + 411329 => '新野县', + 411330 => '桐柏县', + 411381 => '邓州市', + 411400 => '商丘市', + 411402 => '梁园区', + 411403 => '睢阳区', + 411421 => '民权县', + 411422 => '睢县', + 411423 => '宁陵县', + 411424 => '柘城县', + 411425 => '虞城县', + 411426 => '夏邑县', + 411481 => '永城市', + 411500 => '信阳市', + 411502 => '浉河区', + 411503 => '平桥区', + 411521 => '罗山县', + 411522 => '光山县', + 411523 => '新县', + 411524 => '商城县', + 411525 => '固始县', + 411526 => '潢川县', + 411527 => '淮滨县', + 411528 => '息县', + 411600 => '周口市', + 411602 => '川汇区', + 411621 => '扶沟县', + 411622 => '西华县', + 411623 => '商水县', + 411624 => '沈丘县', + 411625 => '郸城县', + 411626 => '淮阳县', + 411627 => '太康县', + 411628 => '鹿邑县', + 411681 => '项城市', + 411700 => '驻马店市', + 411702 => '驿城区', + 411721 => '西平县', + 411722 => '上蔡县', + 411723 => '平舆县', + 411724 => '正阳县', + 411725 => '确山县', + 411726 => '泌阳县', + 411727 => '汝南县', + 411728 => '遂平县', + 411729 => '新蔡县', + 419001 => '济源市', + 420000 => '湖北省', + 420100 => '武汉市', + 420102 => '江岸区', + 420103 => '江汉区', + 420104 => '硚口区', + 420105 => '汉阳区', + 420106 => '武昌区', + 420107 => '青山区', + 420111 => '洪山区', + 420112 => '东西湖区', + 420113 => '汉南区', + 420114 => '蔡甸区', + 420115 => '江夏区', + 420116 => '黄陂区', + 420117 => '新洲区', + 420200 => '黄石市', + 420202 => '黄石港区', + 420203 => '西塞山区', + 420204 => '下陆区', + 420205 => '铁山区', + 420222 => '阳新县', + 420281 => '大冶市', + 420300 => '十堰市', + 420302 => '茅箭区', + 420303 => '张湾区', + 420304 => '郧阳区', + 420322 => '郧西县', + 420323 => '竹山县', + 420324 => '竹溪县', + 420325 => '房县', + 420381 => '丹江口市', + 420500 => '宜昌市', + 420502 => '西陵区', + 420503 => '伍家岗区', + 420504 => '点军区', + 420505 => '猇亭区', + 420506 => '夷陵区', + 420525 => '远安县', + 420526 => '兴山县', + 420527 => '秭归县', + 420528 => '长阳土家族自治县', + 420529 => '五峰土家族自治县', + 420581 => '宜都市', + 420582 => '当阳市', + 420583 => '枝江市', + 420600 => '襄阳市', + 420602 => '襄城区', + 420606 => '樊城区', + 420607 => '襄州区', + 420624 => '南漳县', + 420625 => '谷城县', + 420626 => '保康县', + 420682 => '老河口市', + 420683 => '枣阳市', + 420684 => '宜城市', + 420700 => '鄂州市', + 420702 => '梁子湖区', + 420703 => '华容区', + 420704 => '鄂城区', + 420800 => '荆门市', + 420802 => '东宝区', + 420804 => '掇刀区', + 420822 => '沙洋县', + 420881 => '钟祥市', + 420882 => '京山市', + 420900 => '孝感市', + 420902 => '孝南区', + 420921 => '孝昌县', + 420922 => '大悟县', + 420923 => '云梦县', + 420981 => '应城市', + 420982 => '安陆市', + 420984 => '汉川市', + 421000 => '荆州市', + 421002 => '沙市区', + 421003 => '荆州区', + 421022 => '公安县', + 421023 => '监利县', + 421024 => '江陵县', + 421081 => '石首市', + 421083 => '洪湖市', + 421087 => '松滋市', + 421100 => '黄冈市', + 421102 => '黄州区', + 421121 => '团风县', + 421122 => '红安县', + 421123 => '罗田县', + 421124 => '英山县', + 421125 => '浠水县', + 421126 => '蕲春县', + 421127 => '黄梅县', + 421181 => '麻城市', + 421182 => '武穴市', + 421200 => '咸宁市', + 421202 => '咸安区', + 421221 => '嘉鱼县', + 421222 => '通城县', + 421223 => '崇阳县', + 421224 => '通山县', + 421281 => '赤壁市', + 421300 => '随州市', + 421303 => '曾都区', + 421321 => '随县', + 421381 => '广水市', + 422800 => '恩施土家族苗族自治州', + 422801 => '恩施市', + 422802 => '利川市', + 422822 => '建始县', + 422823 => '巴东县', + 422825 => '宣恩县', + 422826 => '咸丰县', + 422827 => '来凤县', + 422828 => '鹤峰县', + 429004 => '仙桃市', + 429005 => '潜江市', + 429006 => '天门市', + 429021 => '神农架林区', + 430000 => '湖南省', + 430100 => '长沙市', + 430102 => '芙蓉区', + 430103 => '天心区', + 430104 => '岳麓区', + 430105 => '开福区', + 430111 => '雨花区', + 430112 => '望城区', + 430121 => '长沙县', + 430181 => '浏阳市', + 430182 => '宁乡市', + 430200 => '株洲市', + 430202 => '荷塘区', + 430203 => '芦淞区', + 430204 => '石峰区', + 430211 => '天元区', + 430221 => '株洲县', + 430223 => '攸县', + 430224 => '茶陵县', + 430225 => '炎陵县', + 430281 => '醴陵市', + 430300 => '湘潭市', + 430302 => '雨湖区', + 430304 => '岳塘区', + 430321 => '湘潭县', + 430381 => '湘乡市', + 430382 => '韶山市', + 430400 => '衡阳市', + 430405 => '珠晖区', + 430406 => '雁峰区', + 430407 => '石鼓区', + 430408 => '蒸湘区', + 430412 => '南岳区', + 430421 => '衡阳县', + 430422 => '衡南县', + 430423 => '衡山县', + 430424 => '衡东县', + 430426 => '祁东县', + 430481 => '耒阳市', + 430482 => '常宁市', + 430500 => '邵阳市', + 430502 => '双清区', + 430503 => '大祥区', + 430511 => '北塔区', + 430521 => '邵东县', + 430522 => '新邵县', + 430523 => '邵阳县', + 430524 => '隆回县', + 430525 => '洞口县', + 430527 => '绥宁县', + 430528 => '新宁县', + 430529 => '城步苗族自治县', + 430581 => '武冈市', + 430600 => '岳阳市', + 430602 => '岳阳楼区', + 430603 => '云溪区', + 430611 => '君山区', + 430621 => '岳阳县', + 430623 => '华容县', + 430624 => '湘阴县', + 430626 => '平江县', + 430681 => '汨罗市', + 430682 => '临湘市', + 430700 => '常德市', + 430702 => '武陵区', + 430703 => '鼎城区', + 430721 => '安乡县', + 430722 => '汉寿县', + 430723 => '澧县', + 430724 => '临澧县', + 430725 => '桃源县', + 430726 => '石门县', + 430781 => '津市市', + 430800 => '张家界市', + 430802 => '永定区', + 430811 => '武陵源区', + 430821 => '慈利县', + 430822 => '桑植县', + 430900 => '益阳市', + 430902 => '资阳区', + 430903 => '赫山区', + 430921 => '南县', + 430922 => '桃江县', + 430923 => '安化县', + 430981 => '沅江市', + 431000 => '郴州市', + 431002 => '北湖区', + 431003 => '苏仙区', + 431021 => '桂阳县', + 431022 => '宜章县', + 431023 => '永兴县', + 431024 => '嘉禾县', + 431025 => '临武县', + 431026 => '汝城县', + 431027 => '桂东县', + 431028 => '安仁县', + 431081 => '资兴市', + 431100 => '永州市', + 431102 => '零陵区', + 431103 => '冷水滩区', + 431121 => '祁阳县', + 431122 => '东安县', + 431123 => '双牌县', + 431124 => '道县', + 431125 => '江永县', + 431126 => '宁远县', + 431127 => '蓝山县', + 431128 => '新田县', + 431129 => '江华瑶族自治县', + 431200 => '怀化市', + 431202 => '鹤城区', + 431221 => '中方县', + 431222 => '沅陵县', + 431223 => '辰溪县', + 431224 => '溆浦县', + 431225 => '会同县', + 431226 => '麻阳苗族自治县', + 431227 => '新晃侗族自治县', + 431228 => '芷江侗族自治县', + 431229 => '靖州苗族侗族自治县', + 431230 => '通道侗族自治县', + 431281 => '洪江市', + 431300 => '娄底市', + 431302 => '娄星区', + 431321 => '双峰县', + 431322 => '新化县', + 431381 => '冷水江市', + 431382 => '涟源市', + 433100 => '湘西土家族苗族自治州', + 433101 => '吉首市', + 433122 => '泸溪县', + 433123 => '凤凰县', + 433124 => '花垣县', + 433125 => '保靖县', + 433126 => '古丈县', + 433127 => '永顺县', + 433130 => '龙山县', + 440000 => '广东省', + 440100 => '广州市', + 440103 => '荔湾区', + 440104 => '越秀区', + 440105 => '海珠区', + 440106 => '天河区', + 440111 => '白云区', + 440112 => '黄埔区', + 440113 => '番禺区', + 440114 => '花都区', + 440115 => '南沙区', + 440117 => '从化区', + 440118 => '增城区', + 440200 => '韶关市', + 440203 => '武江区', + 440204 => '浈江区', + 440205 => '曲江区', + 440222 => '始兴县', + 440224 => '仁化县', + 440229 => '翁源县', + 440232 => '乳源瑶族自治县', + 440233 => '新丰县', + 440281 => '乐昌市', + 440282 => '南雄市', + 440300 => '深圳市', + 440303 => '罗湖区', + 440304 => '福田区', + 440305 => '南山区', + 440306 => '宝安区', + 440307 => '龙岗区', + 440308 => '盐田区', + 440309 => '龙华区', + 440310 => '坪山区', + 440311 => '光明区', + 440400 => '珠海市', + 440402 => '香洲区', + 440403 => '斗门区', + 440404 => '金湾区', + 440500 => '汕头市', + 440507 => '龙湖区', + 440511 => '金平区', + 440512 => '濠江区', + 440513 => '潮阳区', + 440514 => '潮南区', + 440515 => '澄海区', + 440523 => '南澳县', + 440600 => '佛山市', + 440604 => '禅城区', + 440605 => '南海区', + 440606 => '顺德区', + 440607 => '三水区', + 440608 => '高明区', + 440700 => '江门市', + 440703 => '蓬江区', + 440704 => '江海区', + 440705 => '新会区', + 440781 => '台山市', + 440783 => '开平市', + 440784 => '鹤山市', + 440785 => '恩平市', + 440800 => '湛江市', + 440802 => '赤坎区', + 440803 => '霞山区', + 440804 => '坡头区', + 440811 => '麻章区', + 440823 => '遂溪县', + 440825 => '徐闻县', + 440881 => '廉江市', + 440882 => '雷州市', + 440883 => '吴川市', + 440900 => '茂名市', + 440902 => '茂南区', + 440904 => '电白区', + 440981 => '高州市', + 440982 => '化州市', + 440983 => '信宜市', + 441200 => '肇庆市', + 441202 => '端州区', + 441203 => '鼎湖区', + 441204 => '高要区', + 441223 => '广宁县', + 441224 => '怀集县', + 441225 => '封开县', + 441226 => '德庆县', + 441284 => '四会市', + 441300 => '惠州市', + 441302 => '惠城区', + 441303 => '惠阳区', + 441322 => '博罗县', + 441323 => '惠东县', + 441324 => '龙门县', + 441400 => '梅州市', + 441402 => '梅江区', + 441403 => '梅县区', + 441422 => '大埔县', + 441423 => '丰顺县', + 441424 => '五华县', + 441426 => '平远县', + 441427 => '蕉岭县', + 441481 => '兴宁市', + 441500 => '汕尾市', + 441502 => '城区', + 441521 => '海丰县', + 441523 => '陆河县', + 441581 => '陆丰市', + 441600 => '河源市', + 441602 => '源城区', + 441621 => '紫金县', + 441622 => '龙川县', + 441623 => '连平县', + 441624 => '和平县', + 441625 => '东源县', + 441700 => '阳江市', + 441702 => '江城区', + 441704 => '阳东区', + 441721 => '阳西县', + 441781 => '阳春市', + 441800 => '清远市', + 441802 => '清城区', + 441803 => '清新区', + 441821 => '佛冈县', + 441823 => '阳山县', + 441825 => '连山壮族瑶族自治县', + 441826 => '连南瑶族自治县', + 441881 => '英德市', + 441882 => '连州市', + 441900 => '东莞市', + 442000 => '中山市', + 445100 => '潮州市', + 445102 => '湘桥区', + 445103 => '潮安区', + 445122 => '饶平县', + 445200 => '揭阳市', + 445202 => '榕城区', + 445203 => '揭东区', + 445222 => '揭西县', + 445224 => '惠来县', + 445281 => '普宁市', + 445300 => '云浮市', + 445302 => '云城区', + 445303 => '云安区', + 445321 => '新兴县', + 445322 => '郁南县', + 445381 => '罗定市', + 450000 => '广西壮族自治区', + 450100 => '南宁市', + 450102 => '兴宁区', + 450103 => '青秀区', + 450105 => '江南区', + 450107 => '西乡塘区', + 450108 => '良庆区', + 450109 => '邕宁区', + 450110 => '武鸣区', + 450123 => '隆安县', + 450124 => '马山县', + 450125 => '上林县', + 450126 => '宾阳县', + 450127 => '横县', + 450200 => '柳州市', + 450202 => '城中区', + 450203 => '鱼峰区', + 450204 => '柳南区', + 450205 => '柳北区', + 450206 => '柳江区', + 450222 => '柳城县', + 450223 => '鹿寨县', + 450224 => '融安县', + 450225 => '融水苗族自治县', + 450226 => '三江侗族自治县', + 450300 => '桂林市', + 450302 => '秀峰区', + 450303 => '叠彩区', + 450304 => '象山区', + 450305 => '七星区', + 450311 => '雁山区', + 450312 => '临桂区', + 450321 => '阳朔县', + 450323 => '灵川县', + 450324 => '全州县', + 450325 => '兴安县', + 450326 => '永福县', + 450327 => '灌阳县', + 450328 => '龙胜各族自治县', + 450329 => '资源县', + 450330 => '平乐县', + 450331 => '荔浦县', + 450332 => '恭城瑶族自治县', + 450400 => '梧州市', + 450403 => '万秀区', + 450405 => '长洲区', + 450406 => '龙圩区', + 450421 => '苍梧县', + 450422 => '藤县', + 450423 => '蒙山县', + 450481 => '岑溪市', + 450500 => '北海市', + 450502 => '海城区', + 450503 => '银海区', + 450512 => '铁山港区', + 450521 => '合浦县', + 450600 => '防城港市', + 450602 => '港口区', + 450603 => '防城区', + 450621 => '上思县', + 450681 => '东兴市', + 450700 => '钦州市', + 450702 => '钦南区', + 450703 => '钦北区', + 450721 => '灵山县', + 450722 => '浦北县', + 450800 => '贵港市', + 450802 => '港北区', + 450803 => '港南区', + 450804 => '覃塘区', + 450821 => '平南县', + 450881 => '桂平市', + 450900 => '玉林市', + 450902 => '玉州区', + 450903 => '福绵区', + 450921 => '容县', + 450922 => '陆川县', + 450923 => '博白县', + 450924 => '兴业县', + 450981 => '北流市', + 451000 => '百色市', + 451002 => '右江区', + 451021 => '田阳县', + 451022 => '田东县', + 451023 => '平果县', + 451024 => '德保县', + 451026 => '那坡县', + 451027 => '凌云县', + 451028 => '乐业县', + 451029 => '田林县', + 451030 => '西林县', + 451031 => '隆林各族自治县', + 451081 => '靖西市', + 451100 => '贺州市', + 451102 => '八步区', + 451103 => '平桂区', + 451121 => '昭平县', + 451122 => '钟山县', + 451123 => '富川瑶族自治县', + 451200 => '河池市', + 451202 => '金城江区', + 451203 => '宜州区', + 451221 => '南丹县', + 451222 => '天峨县', + 451223 => '凤山县', + 451224 => '东兰县', + 451225 => '罗城仫佬族自治县', + 451226 => '环江毛南族自治县', + 451227 => '巴马瑶族自治县', + 451228 => '都安瑶族自治县', + 451229 => '大化瑶族自治县', + 451300 => '来宾市', + 451302 => '兴宾区', + 451321 => '忻城县', + 451322 => '象州县', + 451323 => '武宣县', + 451324 => '金秀瑶族自治县', + 451381 => '合山市', + 451400 => '崇左市', + 451402 => '江州区', + 451421 => '扶绥县', + 451422 => '宁明县', + 451423 => '龙州县', + 451424 => '大新县', + 451425 => '天等县', + 451481 => '凭祥市', + 460000 => '海南省', + 460100 => '海口市', + 460105 => '秀英区', + 460106 => '龙华区', + 460107 => '琼山区', + 460108 => '美兰区', + 460200 => '三亚市', + 460202 => '海棠区', + 460203 => '吉阳区', + 460204 => '天涯区', + 460205 => '崖州区', + 460300 => '三沙市', + 460400 => '儋州市', + 469001 => '五指山市', + 469002 => '琼海市', + 469005 => '文昌市', + 469006 => '万宁市', + 469007 => '东方市', + 469021 => '定安县', + 469022 => '屯昌县', + 469023 => '澄迈县', + 469024 => '临高县', + 469025 => '白沙黎族自治县', + 469026 => '昌江黎族自治县', + 469027 => '乐东黎族自治县', + 469028 => '陵水黎族自治县', + 469029 => '保亭黎族苗族自治县', + 469030 => '琼中黎族苗族自治县', + 500000 => '重庆市', + 500101 => '万州区', + 500102 => '涪陵区', + 500103 => '渝中区', + 500104 => '大渡口区', + 500105 => '江北区', + 500106 => '沙坪坝区', + 500107 => '九龙坡区', + 500108 => '南岸区', + 500109 => '北碚区', + 500110 => '綦江区', + 500111 => '大足区', + 500112 => '渝北区', + 500113 => '巴南区', + 500114 => '黔江区', + 500115 => '长寿区', + 500116 => '江津区', + 500117 => '合川区', + 500118 => '永川区', + 500119 => '南川区', + 500120 => '璧山区', + 500151 => '铜梁区', + 500152 => '潼南区', + 500153 => '荣昌区', + 500154 => '开州区', + 500155 => '梁平区', + 500156 => '武隆区', + 500229 => '城口县', + 500230 => '丰都县', + 500231 => '垫江县', + 500233 => '忠县', + 500235 => '云阳县', + 500236 => '奉节县', + 500237 => '巫山县', + 500238 => '巫溪县', + 500240 => '石柱土家族自治县', + 500241 => '秀山土家族苗族自治县', + 500242 => '酉阳土家族苗族自治县', + 500243 => '彭水苗族土家族自治县', + 510000 => '四川省', + 510100 => '成都市', + 510104 => '锦江区', + 510105 => '青羊区', + 510106 => '金牛区', + 510107 => '武侯区', + 510108 => '成华区', + 510112 => '龙泉驿区', + 510113 => '青白江区', + 510114 => '新都区', + 510115 => '温江区', + 510116 => '双流区', + 510117 => '郫都区', + 510121 => '金堂县', + 510129 => '大邑县', + 510131 => '蒲江县', + 510132 => '新津县', + 510181 => '都江堰市', + 510182 => '彭州市', + 510183 => '邛崃市', + 510184 => '崇州市', + 510185 => '简阳市', + 510300 => '自贡市', + 510302 => '自流井区', + 510303 => '贡井区', + 510304 => '大安区', + 510311 => '沿滩区', + 510321 => '荣县', + 510322 => '富顺县', + 510400 => '攀枝花市', + 510402 => '东区', + 510403 => '西区', + 510411 => '仁和区', + 510421 => '米易县', + 510422 => '盐边县', + 510500 => '泸州市', + 510502 => '江阳区', + 510503 => '纳溪区', + 510504 => '龙马潭区', + 510521 => '泸县', + 510522 => '合江县', + 510524 => '叙永县', + 510525 => '古蔺县', + 510600 => '德阳市', + 510603 => '旌阳区', + 510604 => '罗江区', + 510623 => '中江县', + 510681 => '广汉市', + 510682 => '什邡市', + 510683 => '绵竹市', + 510700 => '绵阳市', + 510703 => '涪城区', + 510704 => '游仙区', + 510705 => '安州区', + 510722 => '三台县', + 510723 => '盐亭县', + 510725 => '梓潼县', + 510726 => '北川羌族自治县', + 510727 => '平武县', + 510781 => '江油市', + 510800 => '广元市', + 510802 => '利州区', + 510811 => '昭化区', + 510812 => '朝天区', + 510821 => '旺苍县', + 510822 => '青川县', + 510823 => '剑阁县', + 510824 => '苍溪县', + 510900 => '遂宁市', + 510903 => '船山区', + 510904 => '安居区', + 510921 => '蓬溪县', + 510922 => '射洪县', + 510923 => '大英县', + 511000 => '内江市', + 511002 => '市中区', + 511011 => '东兴区', + 511024 => '威远县', + 511025 => '资中县', + 511083 => '隆昌市', + 511100 => '乐山市', + 511102 => '市中区', + 511111 => '沙湾区', + 511112 => '五通桥区', + 511113 => '金口河区', + 511123 => '犍为县', + 511124 => '井研县', + 511126 => '夹江县', + 511129 => '沐川县', + 511132 => '峨边彝族自治县', + 511133 => '马边彝族自治县', + 511181 => '峨眉山市', + 511300 => '南充市', + 511302 => '顺庆区', + 511303 => '高坪区', + 511304 => '嘉陵区', + 511321 => '南部县', + 511322 => '营山县', + 511323 => '蓬安县', + 511324 => '仪陇县', + 511325 => '西充县', + 511381 => '阆中市', + 511400 => '眉山市', + 511402 => '东坡区', + 511403 => '彭山区', + 511421 => '仁寿县', + 511423 => '洪雅县', + 511424 => '丹棱县', + 511425 => '青神县', + 511500 => '宜宾市', + 511502 => '翠屏区', + 511503 => '南溪区', + 511521 => '宜宾县', + 511523 => '江安县', + 511524 => '长宁县', + 511525 => '高县', + 511526 => '珙县', + 511527 => '筠连县', + 511528 => '兴文县', + 511529 => '屏山县', + 511600 => '广安市', + 511602 => '广安区', + 511603 => '前锋区', + 511621 => '岳池县', + 511622 => '武胜县', + 511623 => '邻水县', + 511681 => '华蓥市', + 511700 => '达州市', + 511702 => '通川区', + 511703 => '达川区', + 511722 => '宣汉县', + 511723 => '开江县', + 511724 => '大竹县', + 511725 => '渠县', + 511781 => '万源市', + 511800 => '雅安市', + 511802 => '雨城区', + 511803 => '名山区', + 511822 => '荥经县', + 511823 => '汉源县', + 511824 => '石棉县', + 511825 => '天全县', + 511826 => '芦山县', + 511827 => '宝兴县', + 511900 => '巴中市', + 511902 => '巴州区', + 511903 => '恩阳区', + 511921 => '通江县', + 511922 => '南江县', + 511923 => '平昌县', + 512000 => '资阳市', + 512002 => '雁江区', + 512021 => '安岳县', + 512022 => '乐至县', + 513200 => '阿坝藏族羌族自治州', + 513201 => '马尔康市', + 513221 => '汶川县', + 513222 => '理县', + 513223 => '茂县', + 513224 => '松潘县', + 513225 => '九寨沟县', + 513226 => '金川县', + 513227 => '小金县', + 513228 => '黑水县', + 513230 => '壤塘县', + 513231 => '阿坝县', + 513232 => '若尔盖县', + 513233 => '红原县', + 513300 => '甘孜藏族自治州', + 513301 => '康定市', + 513322 => '泸定县', + 513323 => '丹巴县', + 513324 => '九龙县', + 513325 => '雅江县', + 513326 => '道孚县', + 513327 => '炉霍县', + 513328 => '甘孜县', + 513329 => '新龙县', + 513330 => '德格县', + 513331 => '白玉县', + 513332 => '石渠县', + 513333 => '色达县', + 513334 => '理塘县', + 513335 => '巴塘县', + 513336 => '乡城县', + 513337 => '稻城县', + 513338 => '得荣县', + 513400 => '凉山彝族自治州', + 513401 => '西昌市', + 513422 => '木里藏族自治县', + 513423 => '盐源县', + 513424 => '德昌县', + 513425 => '会理县', + 513426 => '会东县', + 513427 => '宁南县', + 513428 => '普格县', + 513429 => '布拖县', + 513430 => '金阳县', + 513431 => '昭觉县', + 513432 => '喜德县', + 513433 => '冕宁县', + 513434 => '越西县', + 513435 => '甘洛县', + 513436 => '美姑县', + 513437 => '雷波县', + 520000 => '贵州省', + 520100 => '贵阳市', + 520102 => '南明区', + 520103 => '云岩区', + 520111 => '花溪区', + 520112 => '乌当区', + 520113 => '白云区', + 520115 => '观山湖区', + 520121 => '开阳县', + 520122 => '息烽县', + 520123 => '修文县', + 520181 => '清镇市', + 520200 => '六盘水市', + 520201 => '钟山区', + 520203 => '六枝特区', + 520221 => '水城县', + 520281 => '盘州市', + 520300 => '遵义市', + 520302 => '红花岗区', + 520303 => '汇川区', + 520304 => '播州区', + 520322 => '桐梓县', + 520323 => '绥阳县', + 520324 => '正安县', + 520325 => '道真仡佬族苗族自治县', + 520326 => '务川仡佬族苗族自治县', + 520327 => '凤冈县', + 520328 => '湄潭县', + 520329 => '余庆县', + 520330 => '习水县', + 520381 => '赤水市', + 520382 => '仁怀市', + 520400 => '安顺市', + 520402 => '西秀区', + 520403 => '平坝区', + 520422 => '普定县', + 520423 => '镇宁布依族苗族自治县', + 520424 => '关岭布依族苗族自治县', + 520425 => '紫云苗族布依族自治县', + 520500 => '毕节市', + 520502 => '七星关区', + 520521 => '大方县', + 520522 => '黔西县', + 520523 => '金沙县', + 520524 => '织金县', + 520525 => '纳雍县', + 520526 => '威宁彝族回族苗族自治县', + 520527 => '赫章县', + 520600 => '铜仁市', + 520602 => '碧江区', + 520603 => '万山区', + 520621 => '江口县', + 520622 => '玉屏侗族自治县', + 520623 => '石阡县', + 520624 => '思南县', + 520625 => '印江土家族苗族自治县', + 520626 => '德江县', + 520627 => '沿河土家族自治县', + 520628 => '松桃苗族自治县', + 522300 => '黔西南布依族苗族自治州', + 522301 => '兴义市', + 522322 => '兴仁县', + 522323 => '普安县', + 522324 => '晴隆县', + 522325 => '贞丰县', + 522326 => '望谟县', + 522327 => '册亨县', + 522328 => '安龙县', + 522600 => '黔东南苗族侗族自治州', + 522601 => '凯里市', + 522622 => '黄平县', + 522623 => '施秉县', + 522624 => '三穗县', + 522625 => '镇远县', + 522626 => '岑巩县', + 522627 => '天柱县', + 522628 => '锦屏县', + 522629 => '剑河县', + 522630 => '台江县', + 522631 => '黎平县', + 522632 => '榕江县', + 522633 => '从江县', + 522634 => '雷山县', + 522635 => '麻江县', + 522636 => '丹寨县', + 522700 => '黔南布依族苗族自治州', + 522701 => '都匀市', + 522702 => '福泉市', + 522722 => '荔波县', + 522723 => '贵定县', + 522725 => '瓮安县', + 522726 => '独山县', + 522727 => '平塘县', + 522728 => '罗甸县', + 522729 => '长顺县', + 522730 => '龙里县', + 522731 => '惠水县', + 522732 => '三都水族自治县', + 530000 => '云南省', + 530100 => '昆明市', + 530102 => '五华区', + 530103 => '盘龙区', + 530111 => '官渡区', + 530112 => '西山区', + 530113 => '东川区', + 530114 => '呈贡区', + 530115 => '晋宁区', + 530124 => '富民县', + 530125 => '宜良县', + 530126 => '石林彝族自治县', + 530127 => '嵩明县', + 530128 => '禄劝彝族苗族自治县', + 530129 => '寻甸回族彝族自治县', + 530181 => '安宁市', + 530300 => '曲靖市', + 530302 => '麒麟区', + 530303 => '沾益区', + 530304 => '马龙区', + 530322 => '陆良县', + 530323 => '师宗县', + 530324 => '罗平县', + 530325 => '富源县', + 530326 => '会泽县', + 530381 => '宣威市', + 530400 => '玉溪市', + 530402 => '红塔区', + 530403 => '江川区', + 530422 => '澄江县', + 530423 => '通海县', + 530424 => '华宁县', + 530425 => '易门县', + 530426 => '峨山彝族自治县', + 530427 => '新平彝族傣族自治县', + 530428 => '元江哈尼族彝族傣族自治县', + 530500 => '保山市', + 530502 => '隆阳区', + 530521 => '施甸县', + 530523 => '龙陵县', + 530524 => '昌宁县', + 530581 => '腾冲市', + 530600 => '昭通市', + 530602 => '昭阳区', + 530621 => '鲁甸县', + 530622 => '巧家县', + 530623 => '盐津县', + 530624 => '大关县', + 530625 => '永善县', + 530626 => '绥江县', + 530627 => '镇雄县', + 530628 => '彝良县', + 530629 => '威信县', + 530630 => '水富县', + 530700 => '丽江市', + 530702 => '古城区', + 530721 => '玉龙纳西族自治县', + 530722 => '永胜县', + 530723 => '华坪县', + 530724 => '宁蒗彝族自治县', + 530800 => '普洱市', + 530802 => '思茅区', + 530821 => '宁洱哈尼族彝族自治县', + 530822 => '墨江哈尼族自治县', + 530823 => '景东彝族自治县', + 530824 => '景谷傣族彝族自治县', + 530825 => '镇沅彝族哈尼族拉祜族自治县', + 530826 => '江城哈尼族彝族自治县', + 530827 => '孟连傣族拉祜族佤族自治县', + 530828 => '澜沧拉祜族自治县', + 530829 => '西盟佤族自治县', + 530900 => '临沧市', + 530902 => '临翔区', + 530921 => '凤庆县', + 530922 => '云县', + 530923 => '永德县', + 530924 => '镇康县', + 530925 => '双江拉祜族佤族布朗族傣族自治县', + 530926 => '耿马傣族佤族自治县', + 530927 => '沧源佤族自治县', + 532300 => '楚雄彝族自治州', + 532301 => '楚雄市', + 532322 => '双柏县', + 532323 => '牟定县', + 532324 => '南华县', + 532325 => '姚安县', + 532326 => '大姚县', + 532327 => '永仁县', + 532328 => '元谋县', + 532329 => '武定县', + 532331 => '禄丰县', + 532500 => '红河哈尼族彝族自治州', + 532501 => '个旧市', + 532502 => '开远市', + 532503 => '蒙自市', + 532504 => '弥勒市', + 532523 => '屏边苗族自治县', + 532524 => '建水县', + 532525 => '石屏县', + 532527 => '泸西县', + 532528 => '元阳县', + 532529 => '红河县', + 532530 => '金平苗族瑶族傣族自治县', + 532531 => '绿春县', + 532532 => '河口瑶族自治县', + 532600 => '文山壮族苗族自治州', + 532601 => '文山市', + 532622 => '砚山县', + 532623 => '西畴县', + 532624 => '麻栗坡县', + 532625 => '马关县', + 532626 => '丘北县', + 532627 => '广南县', + 532628 => '富宁县', + 532800 => '西双版纳傣族自治州', + 532801 => '景洪市', + 532822 => '勐海县', + 532823 => '勐腊县', + 532900 => '大理白族自治州', + 532901 => '大理市', + 532922 => '漾濞彝族自治县', + 532923 => '祥云县', + 532924 => '宾川县', + 532925 => '弥渡县', + 532926 => '南涧彝族自治县', + 532927 => '巍山彝族回族自治县', + 532928 => '永平县', + 532929 => '云龙县', + 532930 => '洱源县', + 532931 => '剑川县', + 532932 => '鹤庆县', + 533100 => '德宏傣族景颇族自治州', + 533102 => '瑞丽市', + 533103 => '芒市', + 533122 => '梁河县', + 533123 => '盈江县', + 533124 => '陇川县', + 533300 => '怒江傈僳族自治州', + 533301 => '泸水市', + 533323 => '福贡县', + 533324 => '贡山独龙族怒族自治县', + 533325 => '兰坪白族普米族自治县', + 533400 => '迪庆藏族自治州', + 533401 => '香格里拉市', + 533422 => '德钦县', + 533423 => '维西傈僳族自治县', + 540000 => '西藏自治区', + 540100 => '拉萨市', + 540102 => '城关区', + 540103 => '堆龙德庆区', + 540104 => '达孜区', + 540121 => '林周县', + 540122 => '当雄县', + 540123 => '尼木县', + 540124 => '曲水县', + 540127 => '墨竹工卡县', + 540200 => '日喀则市', + 540202 => '桑珠孜区', + 540221 => '南木林县', + 540222 => '江孜县', + 540223 => '定日县', + 540224 => '萨迦县', + 540225 => '拉孜县', + 540226 => '昂仁县', + 540227 => '谢通门县', + 540228 => '白朗县', + 540229 => '仁布县', + 540230 => '康马县', + 540231 => '定结县', + 540232 => '仲巴县', + 540233 => '亚东县', + 540234 => '吉隆县', + 540235 => '聂拉木县', + 540236 => '萨嘎县', + 540237 => '岗巴县', + 540300 => '昌都市', + 540302 => '卡若区', + 540321 => '江达县', + 540322 => '贡觉县', + 540323 => '类乌齐县', + 540324 => '丁青县', + 540325 => '察雅县', + 540326 => '八宿县', + 540327 => '左贡县', + 540328 => '芒康县', + 540329 => '洛隆县', + 540330 => '边坝县', + 540400 => '林芝市', + 540402 => '巴宜区', + 540421 => '工布江达县', + 540422 => '米林县', + 540423 => '墨脱县', + 540424 => '波密县', + 540425 => '察隅县', + 540426 => '朗县', + 540500 => '山南市', + 540502 => '乃东区', + 540521 => '扎囊县', + 540522 => '贡嘎县', + 540523 => '桑日县', + 540524 => '琼结县', + 540525 => '曲松县', + 540526 => '措美县', + 540527 => '洛扎县', + 540528 => '加查县', + 540529 => '隆子县', + 540530 => '错那县', + 540531 => '浪卡子县', + 540600 => '那曲市', + 540602 => '色尼区', + 540621 => '嘉黎县', + 540622 => '比如县', + 540623 => '聂荣县', + 540624 => '安多县', + 540625 => '申扎县', + 540626 => '索县', + 540627 => '班戈县', + 540628 => '巴青县', + 540629 => '尼玛县', + 540630 => '双湖县', + 542500 => '阿里地区', + 542521 => '普兰县', + 542522 => '札达县', + 542523 => '噶尔县', + 542524 => '日土县', + 542525 => '革吉县', + 542526 => '改则县', + 542527 => '措勤县', + 610000 => '陕西省', + 610100 => '西安市', + 610102 => '新城区', + 610103 => '碑林区', + 610104 => '莲湖区', + 610111 => '灞桥区', + 610112 => '未央区', + 610113 => '雁塔区', + 610114 => '阎良区', + 610115 => '临潼区', + 610116 => '长安区', + 610117 => '高陵区', + 610118 => '鄠邑区', + 610122 => '蓝田县', + 610124 => '周至县', + 610200 => '铜川市', + 610202 => '王益区', + 610203 => '印台区', + 610204 => '耀州区', + 610222 => '宜君县', + 610300 => '宝鸡市', + 610302 => '渭滨区', + 610303 => '金台区', + 610304 => '陈仓区', + 610322 => '凤翔县', + 610323 => '岐山县', + 610324 => '扶风县', + 610326 => '眉县', + 610327 => '陇县', + 610328 => '千阳县', + 610329 => '麟游县', + 610330 => '凤县', + 610331 => '太白县', + 610400 => '咸阳市', + 610402 => '秦都区', + 610403 => '杨陵区', + 610404 => '渭城区', + 610422 => '三原县', + 610423 => '泾阳县', + 610424 => '乾县', + 610425 => '礼泉县', + 610426 => '永寿县', + 610428 => '长武县', + 610429 => '旬邑县', + 610430 => '淳化县', + 610431 => '武功县', + 610481 => '兴平市', + 610482 => '彬州市', + 610500 => '渭南市', + 610502 => '临渭区', + 610503 => '华州区', + 610522 => '潼关县', + 610523 => '大荔县', + 610524 => '合阳县', + 610525 => '澄城县', + 610526 => '蒲城县', + 610527 => '白水县', + 610528 => '富平县', + 610581 => '韩城市', + 610582 => '华阴市', + 610600 => '延安市', + 610602 => '宝塔区', + 610603 => '安塞区', + 610621 => '延长县', + 610622 => '延川县', + 610623 => '子长县', + 610625 => '志丹县', + 610626 => '吴起县', + 610627 => '甘泉县', + 610628 => '富县', + 610629 => '洛川县', + 610630 => '宜川县', + 610631 => '黄龙县', + 610632 => '黄陵县', + 610700 => '汉中市', + 610702 => '汉台区', + 610703 => '南郑区', + 610722 => '城固县', + 610723 => '洋县', + 610724 => '西乡县', + 610725 => '勉县', + 610726 => '宁强县', + 610727 => '略阳县', + 610728 => '镇巴县', + 610729 => '留坝县', + 610730 => '佛坪县', + 610800 => '榆林市', + 610802 => '榆阳区', + 610803 => '横山区', + 610822 => '府谷县', + 610824 => '靖边县', + 610825 => '定边县', + 610826 => '绥德县', + 610827 => '米脂县', + 610828 => '佳县', + 610829 => '吴堡县', + 610830 => '清涧县', + 610831 => '子洲县', + 610881 => '神木市', + 610900 => '安康市', + 610902 => '汉滨区', + 610921 => '汉阴县', + 610922 => '石泉县', + 610923 => '宁陕县', + 610924 => '紫阳县', + 610925 => '岚皋县', + 610926 => '平利县', + 610927 => '镇坪县', + 610928 => '旬阳县', + 610929 => '白河县', + 611000 => '商洛市', + 611002 => '商州区', + 611021 => '洛南县', + 611022 => '丹凤县', + 611023 => '商南县', + 611024 => '山阳县', + 611025 => '镇安县', + 611026 => '柞水县', + 620000 => '甘肃省', + 620100 => '兰州市', + 620102 => '城关区', + 620103 => '七里河区', + 620104 => '西固区', + 620105 => '安宁区', + 620111 => '红古区', + 620121 => '永登县', + 620122 => '皋兰县', + 620123 => '榆中县', + 620200 => '嘉峪关市', + 620300 => '金昌市', + 620302 => '金川区', + 620321 => '永昌县', + 620400 => '白银市', + 620402 => '白银区', + 620403 => '平川区', + 620421 => '靖远县', + 620422 => '会宁县', + 620423 => '景泰县', + 620500 => '天水市', + 620502 => '秦州区', + 620503 => '麦积区', + 620521 => '清水县', + 620522 => '秦安县', + 620523 => '甘谷县', + 620524 => '武山县', + 620525 => '张家川回族自治县', + 620600 => '武威市', + 620602 => '凉州区', + 620621 => '民勤县', + 620622 => '古浪县', + 620623 => '天祝藏族自治县', + 620700 => '张掖市', + 620702 => '甘州区', + 620721 => '肃南裕固族自治县', + 620722 => '民乐县', + 620723 => '临泽县', + 620724 => '高台县', + 620725 => '山丹县', + 620800 => '平凉市', + 620802 => '崆峒区', + 620821 => '泾川县', + 620822 => '灵台县', + 620823 => '崇信县', + 620824 => '华亭县', + 620825 => '庄浪县', + 620826 => '静宁县', + 620900 => '酒泉市', + 620902 => '肃州区', + 620921 => '金塔县', + 620922 => '瓜州县', + 620923 => '肃北蒙古族自治县', + 620924 => '阿克塞哈萨克族自治县', + 620981 => '玉门市', + 620982 => '敦煌市', + 621000 => '庆阳市', + 621002 => '西峰区', + 621021 => '庆城县', + 621022 => '环县', + 621023 => '华池县', + 621024 => '合水县', + 621025 => '正宁县', + 621026 => '宁县', + 621027 => '镇原县', + 621100 => '定西市', + 621102 => '安定区', + 621121 => '通渭县', + 621122 => '陇西县', + 621123 => '渭源县', + 621124 => '临洮县', + 621125 => '漳县', + 621126 => '岷县', + 621200 => '陇南市', + 621202 => '武都区', + 621221 => '成县', + 621222 => '文县', + 621223 => '宕昌县', + 621224 => '康县', + 621225 => '西和县', + 621226 => '礼县', + 621227 => '徽县', + 621228 => '两当县', + 622900 => '临夏回族自治州', + 622901 => '临夏市', + 622921 => '临夏县', + 622922 => '康乐县', + 622923 => '永靖县', + 622924 => '广河县', + 622925 => '和政县', + 622926 => '东乡族自治县', + 622927 => '积石山保安族东乡族撒拉族自治县', + 623000 => '甘南藏族自治州', + 623001 => '合作市', + 623021 => '临潭县', + 623022 => '卓尼县', + 623023 => '舟曲县', + 623024 => '迭部县', + 623025 => '玛曲县', + 623026 => '碌曲县', + 623027 => '夏河县', + 630000 => '青海省', + 630100 => '西宁市', + 630102 => '城东区', + 630103 => '城中区', + 630104 => '城西区', + 630105 => '城北区', + 630121 => '大通回族土族自治县', + 630122 => '湟中县', + 630123 => '湟源县', + 630200 => '海东市', + 630202 => '乐都区', + 630203 => '平安区', + 630222 => '民和回族土族自治县', + 630223 => '互助土族自治县', + 630224 => '化隆回族自治县', + 630225 => '循化撒拉族自治县', + 632200 => '海北藏族自治州', + 632221 => '门源回族自治县', + 632222 => '祁连县', + 632223 => '海晏县', + 632224 => '刚察县', + 632300 => '黄南藏族自治州', + 632321 => '同仁县', + 632322 => '尖扎县', + 632323 => '泽库县', + 632324 => '河南蒙古族自治县', + 632500 => '海南藏族自治州', + 632521 => '共和县', + 632522 => '同德县', + 632523 => '贵德县', + 632524 => '兴海县', + 632525 => '贵南县', + 632600 => '果洛藏族自治州', + 632621 => '玛沁县', + 632622 => '班玛县', + 632623 => '甘德县', + 632624 => '达日县', + 632625 => '久治县', + 632626 => '玛多县', + 632700 => '玉树藏族自治州', + 632701 => '玉树市', + 632722 => '杂多县', + 632723 => '称多县', + 632724 => '治多县', + 632725 => '囊谦县', + 632726 => '曲麻莱县', + 632800 => '海西蒙古族藏族自治州', + 632801 => '格尔木市', + 632802 => '德令哈市', + 632821 => '乌兰县', + 632822 => '都兰县', + 632823 => '天峻县', + 640000 => '宁夏回族自治区', + 640100 => '银川市', + 640104 => '兴庆区', + 640105 => '西夏区', + 640106 => '金凤区', + 640121 => '永宁县', + 640122 => '贺兰县', + 640181 => '灵武市', + 640200 => '石嘴山市', + 640202 => '大武口区', + 640205 => '惠农区', + 640221 => '平罗县', + 640300 => '吴忠市', + 640302 => '利通区', + 640303 => '红寺堡区', + 640323 => '盐池县', + 640324 => '同心县', + 640381 => '青铜峡市', + 640400 => '固原市', + 640402 => '原州区', + 640422 => '西吉县', + 640423 => '隆德县', + 640424 => '泾源县', + 640425 => '彭阳县', + 640500 => '中卫市', + 640502 => '沙坡头区', + 640521 => '中宁县', + 640522 => '海原县', + 650000 => '新疆维吾尔自治区', + 650100 => '乌鲁木齐市', + 650102 => '天山区', + 650103 => '沙依巴克区', + 650104 => '新市区', + 650105 => '水磨沟区', + 650106 => '头屯河区', + 650107 => '达坂城区', + 650109 => '米东区', + 650121 => '乌鲁木齐县', + 650200 => '克拉玛依市', + 650202 => '独山子区', + 650203 => '克拉玛依区', + 650204 => '白碱滩区', + 650205 => '乌尔禾区', + 650400 => '吐鲁番市', + 650402 => '高昌区', + 650421 => '鄯善县', + 650422 => '托克逊县', + 650500 => '哈密市', + 650502 => '伊州区', + 650521 => '巴里坤哈萨克自治县', + 650522 => '伊吾县', + 652300 => '昌吉回族自治州', + 652301 => '昌吉市', + 652302 => '阜康市', + 652323 => '呼图壁县', + 652324 => '玛纳斯县', + 652325 => '奇台县', + 652327 => '吉木萨尔县', + 652328 => '木垒哈萨克自治县', + 652700 => '博尔塔拉蒙古自治州', + 652701 => '博乐市', + 652702 => '阿拉山口市', + 652722 => '精河县', + 652723 => '温泉县', + 652800 => '巴音郭楞蒙古自治州', + 652801 => '库尔勒市', + 652822 => '轮台县', + 652823 => '尉犁县', + 652824 => '若羌县', + 652825 => '且末县', + 652826 => '焉耆回族自治县', + 652827 => '和静县', + 652828 => '和硕县', + 652829 => '博湖县', + 652900 => '阿克苏地区', + 652901 => '阿克苏市', + 652922 => '温宿县', + 652923 => '库车县', + 652924 => '沙雅县', + 652925 => '新和县', + 652926 => '拜城县', + 652927 => '乌什县', + 652928 => '阿瓦提县', + 652929 => '柯坪县', + 653000 => '克孜勒苏柯尔克孜自治州', + 653001 => '阿图什市', + 653022 => '阿克陶县', + 653023 => '阿合奇县', + 653024 => '乌恰县', + 653100 => '喀什地区', + 653101 => '喀什市', + 653121 => '疏附县', + 653122 => '疏勒县', + 653123 => '英吉沙县', + 653124 => '泽普县', + 653125 => '莎车县', + 653126 => '叶城县', + 653127 => '麦盖提县', + 653128 => '岳普湖县', + 653129 => '伽师县', + 653130 => '巴楚县', + 653131 => '塔什库尔干塔吉克自治县', + 653200 => '和田地区', + 653201 => '和田市', + 653221 => '和田县', + 653222 => '墨玉县', + 653223 => '皮山县', + 653224 => '洛浦县', + 653225 => '策勒县', + 653226 => '于田县', + 653227 => '民丰县', + 654000 => '伊犁哈萨克自治州', + 654002 => '伊宁市', + 654003 => '奎屯市', + 654004 => '霍尔果斯市', + 654021 => '伊宁县', + 654022 => '察布查尔锡伯自治县', + 654023 => '霍城县', + 654024 => '巩留县', + 654025 => '新源县', + 654026 => '昭苏县', + 654027 => '特克斯县', + 654028 => '尼勒克县', + 654200 => '塔城地区', + 654201 => '塔城市', + 654202 => '乌苏市', + 654221 => '额敏县', + 654223 => '沙湾县', + 654224 => '托里县', + 654225 => '裕民县', + 654226 => '和布克赛尔蒙古自治县', + 654300 => '阿勒泰地区', + 654301 => '阿勒泰市', + 654321 => '布尔津县', + 654322 => '富蕴县', + 654323 => '福海县', + 654324 => '哈巴河县', + 654325 => '青河县', + 654326 => '吉木乃县', + 659001 => '石河子市', + 659002 => '阿拉尔市', + 659003 => '图木舒克市', + 659004 => '五家渠市', + 659005 => '北屯市', + 659006 => '铁门关市', + 659007 => '双河市', + 659008 => '可克达拉市', + 659009 => '昆玉市', + 810000 => '香港特别行政区', + 820000 => '澳门特别行政区', + 830000 => '台湾省', ]; diff --git a/data/addressCodeTimeline.php b/data/addressCodeTimeline.php new file mode 100644 index 0000000..f6ec024 --- /dev/null +++ b/data/addressCodeTimeline.php @@ -0,0 +1,65632 @@ + + [ + [ + 'address' => '北京市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 110101 => + [ + + [ + 'address' => '东城区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 110102 => + [ + + [ + 'address' => '西城区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 110103 => + [ + + [ + 'address' => '崇文区', + 'start_year' => '', + 'end_year' => 2009, + ], + ], + 110104 => + [ + + [ + 'address' => '宣武区', + 'start_year' => '', + 'end_year' => 2009, + ], + ], + 110105 => + [ + + [ + 'address' => '朝阳区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 110106 => + [ + + [ + 'address' => '丰台区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 110107 => + [ + + [ + 'address' => '石景山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 110108 => + [ + + [ + 'address' => '海淀区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 110109 => + [ + + [ + 'address' => '门头沟区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 110110 => + [ + + [ + 'address' => '燕山区', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 110111 => + [ + + [ + 'address' => '房山区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 110112 => + [ + + [ + 'address' => '通州区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 110113 => + [ + + [ + 'address' => '顺义区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 110114 => + [ + + [ + 'address' => '昌平区', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 110115 => + [ + + [ + 'address' => '大兴区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 110116 => + [ + + [ + 'address' => '怀柔区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 110117 => + [ + + [ + 'address' => '平谷区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 110118 => + [ + + [ + 'address' => '密云区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 110119 => + [ + + [ + 'address' => '延庆区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 110201 => + [ + + [ + 'address' => '昌平县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 110202 => + [ + + [ + 'address' => '顺义县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 110203 => + [ + + [ + 'address' => '通县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 110204 => + [ + + [ + 'address' => '大兴县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 110205 => + [ + + [ + 'address' => '房山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 110206 => + [ + + [ + 'address' => '平谷县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 110207 => + [ + + [ + 'address' => '怀柔县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 110208 => + [ + + [ + 'address' => '密云县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 110209 => + [ + + [ + 'address' => '延庆县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 110221 => + [ + + [ + 'address' => '昌平县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 110222 => + [ + + [ + 'address' => '顺义县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 110223 => + [ + + [ + 'address' => '通县', + 'start_year' => 1982, + 'end_year' => 1996, + ], + ], + 110224 => + [ + + [ + 'address' => '大兴县', + 'start_year' => 1982, + 'end_year' => 2000, + ], + ], + 110225 => + [ + + [ + 'address' => '房山县', + 'start_year' => 1982, + 'end_year' => 1985, + ], + ], + 110226 => + [ + + [ + 'address' => '平谷县', + 'start_year' => 1982, + 'end_year' => 2000, + ], + ], + 110227 => + [ + + [ + 'address' => '怀柔县', + 'start_year' => 1982, + 'end_year' => 2000, + ], + ], + 110228 => + [ + + [ + 'address' => '密云县', + 'start_year' => 1982, + 'end_year' => 2014, + ], + ], + 110229 => + [ + + [ + 'address' => '延庆县', + 'start_year' => 1982, + 'end_year' => 2014, + ], + ], + 120000 => + [ + + [ + 'address' => '天津市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 120101 => + [ + + [ + 'address' => '和平区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 120102 => + [ + + [ + 'address' => '河东区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 120103 => + [ + + [ + 'address' => '河西区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 120104 => + [ + + [ + 'address' => '南开区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 120105 => + [ + + [ + 'address' => '河北区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 120106 => + [ + + [ + 'address' => '红桥区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 120107 => + [ + + [ + 'address' => '塘沽区', + 'start_year' => '', + 'end_year' => 2008, + ], + ], + 120108 => + [ + + [ + 'address' => '汉沽区', + 'start_year' => '', + 'end_year' => 2008, + ], + ], + 120109 => + [ + + [ + 'address' => '大港区', + 'start_year' => '', + 'end_year' => 2008, + ], + ], + 120110 => + [ + + [ + 'address' => '东丽区', + 'start_year' => 1992, + 'end_year' => '', + ], + + [ + 'address' => '东郊区', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 120111 => + [ + + [ + 'address' => '西郊区', + 'start_year' => '', + 'end_year' => 1991, + ], + + [ + 'address' => '西青区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 120112 => + [ + + [ + 'address' => '南郊区', + 'start_year' => '', + 'end_year' => 1991, + ], + + [ + 'address' => '津南区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 120113 => + [ + + [ + 'address' => '北辰区', + 'start_year' => 1992, + 'end_year' => '', + ], + + [ + 'address' => '北郊区', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 120114 => + [ + + [ + 'address' => '武清区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 120115 => + [ + + [ + 'address' => '宝坻区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 120116 => + [ + + [ + 'address' => '滨海新区', + 'start_year' => 2009, + 'end_year' => '', + ], + ], + 120117 => + [ + + [ + 'address' => '宁河区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 120118 => + [ + + [ + 'address' => '静海区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 120119 => + [ + + [ + 'address' => '蓟州区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 120201 => + [ + + [ + 'address' => '宁河县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 120202 => + [ + + [ + 'address' => '武清县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 120203 => + [ + + [ + 'address' => '静海县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 120204 => + [ + + [ + 'address' => '宝坻县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 120205 => + [ + + [ + 'address' => '蓟县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 120221 => + [ + + [ + 'address' => '宁河县', + 'start_year' => 1982, + 'end_year' => 2014, + ], + ], + 120222 => + [ + + [ + 'address' => '武清县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 120223 => + [ + + [ + 'address' => '静海县', + 'start_year' => 1982, + 'end_year' => 2014, + ], + ], + 120224 => + [ + + [ + 'address' => '宝坻县', + 'start_year' => 1982, + 'end_year' => 2000, + ], + ], + 120225 => + [ + + [ + 'address' => '蓟县', + 'start_year' => 1982, + 'end_year' => 2015, + ], + ], + 130000 => + [ + + [ + 'address' => '河北省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 130100 => + [ + + [ + 'address' => '石家庄市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 130102 => + [ + + [ + 'address' => '长安区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 130103 => + [ + + [ + 'address' => '桥东区', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 130104 => + [ + + [ + 'address' => '桥西区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 130105 => + [ + + [ + 'address' => '新华区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 130106 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 130107 => + [ + + [ + 'address' => '井陉矿区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 130108 => + [ + + [ + 'address' => '裕华区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 130109 => + [ + + [ + 'address' => '藁城区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 130110 => + [ + + [ + 'address' => '鹿泉区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 130111 => + [ + + [ + 'address' => '栾城区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 130121 => + [ + + [ + 'address' => '井陉县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130122 => + [ + + [ + 'address' => '获鹿县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 130123 => + [ + + [ + 'address' => '栾城县', + 'start_year' => 1986, + 'end_year' => 1992, + ], + + [ + 'address' => '正定县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130124 => + [ + + [ + 'address' => '栾城县', + 'start_year' => 1993, + 'end_year' => 2013, + ], + + [ + 'address' => '正定县', + 'start_year' => 1986, + 'end_year' => 1992, + ], + ], + 130125 => + [ + + [ + 'address' => '行唐县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130126 => + [ + + [ + 'address' => '灵寿县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130127 => + [ + + [ + 'address' => '高邑县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130128 => + [ + + [ + 'address' => '深泽县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130129 => + [ + + [ + 'address' => '赞皇县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130130 => + [ + + [ + 'address' => '无极县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130131 => + [ + + [ + 'address' => '平山县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130132 => + [ + + [ + 'address' => '元氏县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130133 => + [ + + [ + 'address' => '赵县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130181 => + [ + + [ + 'address' => '辛集市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130182 => + [ + + [ + 'address' => '藁城市', + 'start_year' => 1995, + 'end_year' => 2013, + ], + ], + 130183 => + [ + + [ + 'address' => '晋州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130184 => + [ + + [ + 'address' => '新乐市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130185 => + [ + + [ + 'address' => '鹿泉市', + 'start_year' => 1995, + 'end_year' => 2013, + ], + ], + 130200 => + [ + + [ + 'address' => '唐山市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 130202 => + [ + + [ + 'address' => '路南区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 130203 => + [ + + [ + 'address' => '路北区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 130204 => + [ + + [ + 'address' => '东矿区', + 'start_year' => '', + 'end_year' => 1994, + ], + + [ + 'address' => '古冶区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130205 => + [ + + [ + 'address' => '开平区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 130206 => + [ + + [ + 'address' => '新区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 130207 => + [ + + [ + 'address' => '丰南区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 130208 => + [ + + [ + 'address' => '丰润区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 130209 => + [ + + [ + 'address' => '曹妃甸区', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 130221 => + [ + + [ + 'address' => '丰润县', + 'start_year' => 1983, + 'end_year' => 2001, + ], + ], + 130222 => + [ + + [ + 'address' => '丰南县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 130223 => + [ + + [ + 'address' => '滦县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130224 => + [ + + [ + 'address' => '滦南县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130225 => + [ + + [ + 'address' => '乐亭县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130226 => + [ + + [ + 'address' => '玉田县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '迁安县', + 'start_year' => 1984, + 'end_year' => 1995, + ], + ], + 130227 => + [ + + [ + 'address' => '唐海县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '迁西县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 130228 => + [ + + [ + 'address' => '迁安县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '遵化县', + 'start_year' => 1984, + 'end_year' => 1991, + ], + ], + 130229 => + [ + + [ + 'address' => '玉田县', + 'start_year' => 1984, + 'end_year' => '', + ], + + [ + 'address' => '迁西县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 130230 => + [ + + [ + 'address' => '唐海县', + 'start_year' => 1984, + 'end_year' => 2011, + ], + + [ + 'address' => '遵化县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 130281 => + [ + + [ + 'address' => '遵化市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130282 => + [ + + [ + 'address' => '丰南市', + 'start_year' => 1995, + 'end_year' => 2001, + ], + ], + 130283 => + [ + + [ + 'address' => '迁安市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 130300 => + [ + + [ + 'address' => '秦皇岛市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130302 => + [ + + [ + 'address' => '海港区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130303 => + [ + + [ + 'address' => '山海关区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130304 => + [ + + [ + 'address' => '北戴河区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130305 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 130306 => + [ + + [ + 'address' => '抚宁区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 130321 => + [ + + [ + 'address' => '青龙县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + + [ + 'address' => '青龙满族自治县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 130322 => + [ + + [ + 'address' => '昌黎县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130323 => + [ + + [ + 'address' => '抚宁县', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 130324 => + [ + + [ + 'address' => '卢龙县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130400 => + [ + + [ + 'address' => '邯郸市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130402 => + [ + + [ + 'address' => '邯山区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130403 => + [ + + [ + 'address' => '丛台区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130404 => + [ + + [ + 'address' => '复兴区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130405 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 130406 => + [ + + [ + 'address' => '峰峰矿区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130407 => + [ + + [ + 'address' => '肥乡区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 130408 => + [ + + [ + 'address' => '永年区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 130421 => + [ + + [ + 'address' => '邯郸县', + 'start_year' => 1983, + 'end_year' => 2015, + ], + ], + 130422 => + [ + + [ + 'address' => '武安县', + 'start_year' => 1986, + 'end_year' => 1987, + ], + ], + 130423 => + [ + + [ + 'address' => '临漳县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130424 => + [ + + [ + 'address' => '成安县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130425 => + [ + + [ + 'address' => '大名县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130426 => + [ + + [ + 'address' => '涉县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130427 => + [ + + [ + 'address' => '磁县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130428 => + [ + + [ + 'address' => '肥乡县', + 'start_year' => 1993, + 'end_year' => 2015, + ], + ], + 130429 => + [ + + [ + 'address' => '永年县', + 'start_year' => 1993, + 'end_year' => 2015, + ], + ], + 130430 => + [ + + [ + 'address' => '丘县', + 'start_year' => 1993, + 'end_year' => 1995, + ], + + [ + 'address' => '邱县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 130431 => + [ + + [ + 'address' => '鸡泽县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130432 => + [ + + [ + 'address' => '广平县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130433 => + [ + + [ + 'address' => '馆陶县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130434 => + [ + + [ + 'address' => '魏县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130435 => + [ + + [ + 'address' => '曲周县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130481 => + [ + + [ + 'address' => '武安市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130500 => + [ + + [ + 'address' => '邢台市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130502 => + [ + + [ + 'address' => '桥东区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130503 => + [ + + [ + 'address' => '桥西区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130504 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 130521 => + [ + + [ + 'address' => '邢台县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 130522 => + [ + + [ + 'address' => '临城县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130523 => + [ + + [ + 'address' => '内丘县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130524 => + [ + + [ + 'address' => '柏乡县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130525 => + [ + + [ + 'address' => '隆尧县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130526 => + [ + + [ + 'address' => '任县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130527 => + [ + + [ + 'address' => '南和县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130528 => + [ + + [ + 'address' => '宁晋县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130529 => + [ + + [ + 'address' => '巨鹿县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130530 => + [ + + [ + 'address' => '新河县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130531 => + [ + + [ + 'address' => '广宗县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130532 => + [ + + [ + 'address' => '平乡县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130533 => + [ + + [ + 'address' => '威县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130534 => + [ + + [ + 'address' => '清河县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130535 => + [ + + [ + 'address' => '临西县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130581 => + [ + + [ + 'address' => '南宫市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130582 => + [ + + [ + 'address' => '沙河市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130600 => + [ + + [ + 'address' => '保定市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130602 => + [ + + [ + 'address' => '新市区', + 'start_year' => 1983, + 'end_year' => 2014, + ], + + [ + 'address' => '竞秀区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 130603 => + [ + + [ + 'address' => '北市区', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 130604 => + [ + + [ + 'address' => '南市区', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 130605 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 130606 => + [ + + [ + 'address' => '莲池区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 130607 => + [ + + [ + 'address' => '满城区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 130608 => + [ + + [ + 'address' => '清苑区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 130609 => + [ + + [ + 'address' => '徐水区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 130621 => + [ + + [ + 'address' => '满城县', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 130622 => + [ + + [ + 'address' => '清苑县', + 'start_year' => 1986, + 'end_year' => 2014, + ], + ], + 130623 => + [ + + [ + 'address' => '涞水县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130624 => + [ + + [ + 'address' => '阜平县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130625 => + [ + + [ + 'address' => '徐水县', + 'start_year' => 1994, + 'end_year' => 2014, + ], + ], + 130626 => + [ + + [ + 'address' => '定兴县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130627 => + [ + + [ + 'address' => '唐县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130628 => + [ + + [ + 'address' => '高阳县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130629 => + [ + + [ + 'address' => '容城县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130630 => + [ + + [ + 'address' => '涞源县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130631 => + [ + + [ + 'address' => '望都县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130632 => + [ + + [ + 'address' => '安新县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130633 => + [ + + [ + 'address' => '易县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130634 => + [ + + [ + 'address' => '曲阳县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130635 => + [ + + [ + 'address' => '蠡县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130636 => + [ + + [ + 'address' => '顺平县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130637 => + [ + + [ + 'address' => '博野县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130638 => + [ + + [ + 'address' => '雄县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 130681 => + [ + + [ + 'address' => '涿州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130682 => + [ + + [ + 'address' => '定州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130683 => + [ + + [ + 'address' => '安国市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130684 => + [ + + [ + 'address' => '高碑店市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130700 => + [ + + [ + 'address' => '张家口市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130702 => + [ + + [ + 'address' => '桥东区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130703 => + [ + + [ + 'address' => '桥西区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130704 => + [ + + [ + 'address' => '茶坊区', + 'start_year' => 1983, + 'end_year' => 1988, + ], + ], + 130705 => + [ + + [ + 'address' => '宣化区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130706 => + [ + + [ + 'address' => '下花园区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130707 => + [ + + [ + 'address' => '庞家堡区', + 'start_year' => 1983, + 'end_year' => 1988, + ], + ], + 130708 => + [ + + [ + 'address' => '万全区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 130709 => + [ + + [ + 'address' => '崇礼区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 130721 => + [ + + [ + 'address' => '宣化县', + 'start_year' => 1983, + 'end_year' => 2015, + ], + ], + 130722 => + [ + + [ + 'address' => '张北县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130723 => + [ + + [ + 'address' => '康保县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130724 => + [ + + [ + 'address' => '沽源县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130725 => + [ + + [ + 'address' => '尚义县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130726 => + [ + + [ + 'address' => '蔚县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130727 => + [ + + [ + 'address' => '阳原县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130728 => + [ + + [ + 'address' => '怀安县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130729 => + [ + + [ + 'address' => '万全县', + 'start_year' => 1993, + 'end_year' => 2015, + ], + ], + 130730 => + [ + + [ + 'address' => '怀来县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130731 => + [ + + [ + 'address' => '涿鹿县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130732 => + [ + + [ + 'address' => '赤城县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130733 => + [ + + [ + 'address' => '崇礼县', + 'start_year' => 1993, + 'end_year' => 2015, + ], + ], + 130800 => + [ + + [ + 'address' => '承德市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130802 => + [ + + [ + 'address' => '双桥区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130803 => + [ + + [ + 'address' => '双滦区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130804 => + [ + + [ + 'address' => '鹰手营子矿区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130821 => + [ + + [ + 'address' => '承德县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130822 => + [ + + [ + 'address' => '兴隆县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130823 => + [ + + [ + 'address' => '平泉县', + 'start_year' => 1993, + 'end_year' => 2016, + ], + ], + 130824 => + [ + + [ + 'address' => '滦平县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130825 => + [ + + [ + 'address' => '隆化县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130826 => + [ + + [ + 'address' => '丰宁满族自治县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130827 => + [ + + [ + 'address' => '宽城满族自治县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130828 => + [ + + [ + 'address' => '围场满族蒙古族自治县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130881 => + [ + + [ + 'address' => '平泉市', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 130900 => + [ + + [ + 'address' => '沧州市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130902 => + [ + + [ + 'address' => '新华区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130903 => + [ + + [ + 'address' => '运河区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130904 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 130921 => + [ + + [ + 'address' => '沧县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 130922 => + [ + + [ + 'address' => '青县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 130923 => + [ + + [ + 'address' => '东光县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130924 => + [ + + [ + 'address' => '海兴县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130925 => + [ + + [ + 'address' => '盐山县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130926 => + [ + + [ + 'address' => '肃宁县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130927 => + [ + + [ + 'address' => '南皮县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130928 => + [ + + [ + 'address' => '吴桥县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130929 => + [ + + [ + 'address' => '献县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130930 => + [ + + [ + 'address' => '孟村回族自治县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 130981 => + [ + + [ + 'address' => '泊头市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130982 => + [ + + [ + 'address' => '任丘市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130983 => + [ + + [ + 'address' => '黄骅市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 130984 => + [ + + [ + 'address' => '河间市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 131000 => + [ + + [ + 'address' => '廊坊市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 131002 => + [ + + [ + 'address' => '安次区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 131003 => + [ + + [ + 'address' => '广阳区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 131021 => + [ + + [ + 'address' => '三河县', + 'start_year' => 1988, + 'end_year' => 1992, + ], + ], + 131022 => + [ + + [ + 'address' => '固安县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 131023 => + [ + + [ + 'address' => '永清县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 131024 => + [ + + [ + 'address' => '香河县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 131025 => + [ + + [ + 'address' => '大城县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 131026 => + [ + + [ + 'address' => '文安县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 131027 => + [ + + [ + 'address' => '霸县', + 'start_year' => 1988, + 'end_year' => 1989, + ], + ], + 131028 => + [ + + [ + 'address' => '大厂回族自治县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 131081 => + [ + + [ + 'address' => '霸州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 131082 => + [ + + [ + 'address' => '三河市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 131100 => + [ + + [ + 'address' => '衡水市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 131102 => + [ + + [ + 'address' => '桃城区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 131103 => + [ + + [ + 'address' => '冀州区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 131121 => + [ + + [ + 'address' => '枣强县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 131122 => + [ + + [ + 'address' => '武邑县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 131123 => + [ + + [ + 'address' => '武强县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 131124 => + [ + + [ + 'address' => '饶阳县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 131125 => + [ + + [ + 'address' => '安平县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 131126 => + [ + + [ + 'address' => '故城县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 131127 => + [ + + [ + 'address' => '景县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 131128 => + [ + + [ + 'address' => '阜城县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 131181 => + [ + + [ + 'address' => '冀州市', + 'start_year' => 1996, + 'end_year' => 2015, + ], + ], + 131182 => + [ + + [ + 'address' => '深州市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 132100 => + [ + + [ + 'address' => '邯郸地区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132101 => + [ + + [ + 'address' => '邯郸市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132102 => + [ + + [ + 'address' => '邯山区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132103 => + [ + + [ + 'address' => '丛台区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132104 => + [ + + [ + 'address' => '复兴区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132105 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132106 => + [ + + [ + 'address' => '峰峰矿区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132121 => + [ + + [ + 'address' => '大名县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132122 => + [ + + [ + 'address' => '魏县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132123 => + [ + + [ + 'address' => '曲周县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132124 => + [ + + [ + 'address' => '丘县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132125 => + [ + + [ + 'address' => '鸡泽县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132126 => + [ + + [ + 'address' => '肥乡县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132127 => + [ + + [ + 'address' => '广平县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132128 => + [ + + [ + 'address' => '成安县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132129 => + [ + + [ + 'address' => '临漳县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132130 => + [ + + [ + 'address' => '磁县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132131 => + [ + + [ + 'address' => '武安县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 132132 => + [ + + [ + 'address' => '涉县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132133 => + [ + + [ + 'address' => '永年县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132134 => + [ + + [ + 'address' => '邯郸县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132135 => + [ + + [ + 'address' => '馆陶县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132200 => + [ + + [ + 'address' => '邢台地区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132201 => + [ + + [ + 'address' => '南宫市', + 'start_year' => 1986, + 'end_year' => 1992, + ], + + [ + 'address' => '邢台市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132202 => + [ + + [ + 'address' => '桥东区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '沙河市', + 'start_year' => 1987, + 'end_year' => 1992, + ], + ], + 132203 => + [ + + [ + 'address' => '桥西区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132204 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132221 => + [ + + [ + 'address' => '邢台县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 132222 => + [ + + [ + 'address' => '沙河县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 132223 => + [ + + [ + 'address' => '临城县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132224 => + [ + + [ + 'address' => '内丘县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132225 => + [ + + [ + 'address' => '柏乡县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132226 => + [ + + [ + 'address' => '隆尧县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132227 => + [ + + [ + 'address' => '任县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132228 => + [ + + [ + 'address' => '南和县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132229 => + [ + + [ + 'address' => '宁晋县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132230 => + [ + + [ + 'address' => '南宫县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 132231 => + [ + + [ + 'address' => '巨鹿县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132232 => + [ + + [ + 'address' => '新河县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132233 => + [ + + [ + 'address' => '广宗县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132234 => + [ + + [ + 'address' => '平乡县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132235 => + [ + + [ + 'address' => '威县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132236 => + [ + + [ + 'address' => '清河县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132237 => + [ + + [ + 'address' => '临西县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132300 => + [ + + [ + 'address' => '石家庄地区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132301 => + [ + + [ + 'address' => '辛集市', + 'start_year' => 1986, + 'end_year' => 1992, + ], + ], + 132302 => + [ + + [ + 'address' => '藁城市', + 'start_year' => 1989, + 'end_year' => 1992, + ], + ], + 132303 => + [ + + [ + 'address' => '晋州市', + 'start_year' => 1991, + 'end_year' => 1992, + ], + ], + 132304 => + [ + + [ + 'address' => '新乐市', + 'start_year' => 1992, + 'end_year' => 1992, + ], + ], + 132321 => + [ + + [ + 'address' => '束鹿县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 132322 => + [ + + [ + 'address' => '晋县', + 'start_year' => '', + 'end_year' => 1990, + ], + ], + 132323 => + [ + + [ + 'address' => '深泽县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132324 => + [ + + [ + 'address' => '无极县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132325 => + [ + + [ + 'address' => '藁城县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 132326 => + [ + + [ + 'address' => '赵县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132327 => + [ + + [ + 'address' => '栾城县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 132328 => + [ + + [ + 'address' => '正定县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 132329 => + [ + + [ + 'address' => '新乐县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 132330 => + [ + + [ + 'address' => '高邑县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132331 => + [ + + [ + 'address' => '元氏县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132332 => + [ + + [ + 'address' => '赞皇县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132333 => + [ + + [ + 'address' => '井陉县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132334 => + [ + + [ + 'address' => '获鹿县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132335 => + [ + + [ + 'address' => '平山县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132336 => + [ + + [ + 'address' => '灵寿县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132337 => + [ + + [ + 'address' => '行唐县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132400 => + [ + + [ + 'address' => '保定地区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132401 => + [ + + [ + 'address' => '保定市', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '定州市', + 'start_year' => 1986, + 'end_year' => 1993, + ], + ], + 132402 => + [ + + [ + 'address' => '新市区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '涿州市', + 'start_year' => 1986, + 'end_year' => 1993, + ], + ], + 132403 => + [ + + [ + 'address' => '北市区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '安国市', + 'start_year' => 1991, + 'end_year' => 1993, + ], + ], + 132404 => + [ + + [ + 'address' => '南市区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '高碑店市', + 'start_year' => 1993, + 'end_year' => 1993, + ], + ], + 132405 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132421 => + [ + + [ + 'address' => '易县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132422 => + [ + + [ + 'address' => '满城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132423 => + [ + + [ + 'address' => '徐水县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132424 => + [ + + [ + 'address' => '涞源县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132425 => + [ + + [ + 'address' => '定兴县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132426 => + [ + + [ + 'address' => '完县', + 'start_year' => '', + 'end_year' => 1992, + ], + + [ + 'address' => '顺平县', + 'start_year' => 1993, + 'end_year' => 1993, + ], + ], + 132427 => + [ + + [ + 'address' => '唐县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132428 => + [ + + [ + 'address' => '望都县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132429 => + [ + + [ + 'address' => '涞水县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132430 => + [ + + [ + 'address' => '涿县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 132431 => + [ + + [ + 'address' => '清苑县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 132432 => + [ + + [ + 'address' => '高阳县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132433 => + [ + + [ + 'address' => '安新县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132434 => + [ + + [ + 'address' => '雄县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132435 => + [ + + [ + 'address' => '容城县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132436 => + [ + + [ + 'address' => '新城县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132437 => + [ + + [ + 'address' => '曲阳县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132438 => + [ + + [ + 'address' => '阜平县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132439 => + [ + + [ + 'address' => '定县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 132440 => + [ + + [ + 'address' => '安国县', + 'start_year' => '', + 'end_year' => 1990, + ], + ], + 132441 => + [ + + [ + 'address' => '博野县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132442 => + [ + + [ + 'address' => '蠡县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 132500 => + [ + + [ + 'address' => '张家口地区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132501 => + [ + + [ + 'address' => '张家口市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132502 => + [ + + [ + 'address' => '桥东区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132503 => + [ + + [ + 'address' => '桥西区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132504 => + [ + + [ + 'address' => '茶坊区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132505 => + [ + + [ + 'address' => '宣化区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132506 => + [ + + [ + 'address' => '下花园区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132507 => + [ + + [ + 'address' => '庞家堡区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132521 => + [ + + [ + 'address' => '张北县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132522 => + [ + + [ + 'address' => '康保县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132523 => + [ + + [ + 'address' => '沽源县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132524 => + [ + + [ + 'address' => '尚义县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132525 => + [ + + [ + 'address' => '蔚县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132526 => + [ + + [ + 'address' => '阳原县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132527 => + [ + + [ + 'address' => '怀安县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132528 => + [ + + [ + 'address' => '万全县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132529 => + [ + + [ + 'address' => '怀来县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132530 => + [ + + [ + 'address' => '涿鹿县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132531 => + [ + + [ + 'address' => '宣化县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132532 => + [ + + [ + 'address' => '赤城县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132533 => + [ + + [ + 'address' => '崇礼县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132600 => + [ + + [ + 'address' => '承德地区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132601 => + [ + + [ + 'address' => '承德市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132602 => + [ + + [ + 'address' => '双桥区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132603 => + [ + + [ + 'address' => '双滦区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132604 => + [ + + [ + 'address' => '鹰手营子矿区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132621 => + [ + + [ + 'address' => '青龙县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132622 => + [ + + [ + 'address' => '宽城县', + 'start_year' => '', + 'end_year' => 1988, + ], + + [ + 'address' => '宽城满族自治县', + 'start_year' => 1989, + 'end_year' => 1992, + ], + ], + 132623 => + [ + + [ + 'address' => '兴隆县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132624 => + [ + + [ + 'address' => '平泉县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132625 => + [ + + [ + 'address' => '承德县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132626 => + [ + + [ + 'address' => '滦平县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132627 => + [ + + [ + 'address' => '丰宁县', + 'start_year' => '', + 'end_year' => 1985, + ], + + [ + 'address' => '丰宁满族自治县', + 'start_year' => 1986, + 'end_year' => 1992, + ], + ], + 132628 => + [ + + [ + 'address' => '隆化县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132629 => + [ + + [ + 'address' => '围场县', + 'start_year' => '', + 'end_year' => 1988, + ], + + [ + 'address' => '围场满族蒙古族自治县', + 'start_year' => 1989, + 'end_year' => 1992, + ], + ], + 132700 => + [ + + [ + 'address' => '唐山地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132701 => + [ + + [ + 'address' => '秦皇岛市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132702 => + [ + + [ + 'address' => '海港区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132703 => + [ + + [ + 'address' => '山海关区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132704 => + [ + + [ + 'address' => '北戴河区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132705 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132721 => + [ + + [ + 'address' => '丰润县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132722 => + [ + + [ + 'address' => '丰南县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132723 => + [ + + [ + 'address' => '滦县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132724 => + [ + + [ + 'address' => '滦南县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132725 => + [ + + [ + 'address' => '乐亭县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132726 => + [ + + [ + 'address' => '昌黎县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132727 => + [ + + [ + 'address' => '抚宁县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132728 => + [ + + [ + 'address' => '卢龙县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132729 => + [ + + [ + 'address' => '迁安县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132730 => + [ + + [ + 'address' => '迁西县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132731 => + [ + + [ + 'address' => '遵化县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132732 => + [ + + [ + 'address' => '玉田县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132733 => + [ + + [ + 'address' => '唐海县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 132800 => + [ + + [ + 'address' => '廊坊地区', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 132801 => + [ + + [ + 'address' => '廊坊市', + 'start_year' => 1981, + 'end_year' => 1987, + ], + ], + 132821 => + [ + + [ + 'address' => '三河县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 132822 => + [ + + [ + 'address' => '大厂回族自治县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 132823 => + [ + + [ + 'address' => '香河县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 132824 => + [ + + [ + 'address' => '安次县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132825 => + [ + + [ + 'address' => '永清县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 132826 => + [ + + [ + 'address' => '固安县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 132827 => + [ + + [ + 'address' => '霸县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 132828 => + [ + + [ + 'address' => '文安县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 132829 => + [ + + [ + 'address' => '大城县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 132900 => + [ + + [ + 'address' => '沧州地区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132901 => + [ + + [ + 'address' => '沧州市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132902 => + [ + + [ + 'address' => '新华区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '泊头市', + 'start_year' => 1984, + 'end_year' => 1992, + ], + ], + 132903 => + [ + + [ + 'address' => '任丘市', + 'start_year' => 1986, + 'end_year' => 1992, + ], + + [ + 'address' => '运河区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132904 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '黄骅市', + 'start_year' => 1989, + 'end_year' => 1992, + ], + ], + 132905 => + [ + + [ + 'address' => '河间市', + 'start_year' => 1990, + 'end_year' => 1992, + ], + + [ + 'address' => '泊头市', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 132921 => + [ + + [ + 'address' => '沧县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132922 => + [ + + [ + 'address' => '河间县', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 132923 => + [ + + [ + 'address' => '肃宁县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132924 => + [ + + [ + 'address' => '献县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132925 => + [ + + [ + 'address' => '交河县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 132926 => + [ + + [ + 'address' => '吴桥县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132927 => + [ + + [ + 'address' => '东光县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132928 => + [ + + [ + 'address' => '南皮县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132929 => + [ + + [ + 'address' => '盐山县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132930 => + [ + + [ + 'address' => '黄骅县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 132931 => + [ + + [ + 'address' => '孟村回族自治县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 132932 => + [ + + [ + 'address' => '青县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 132933 => + [ + + [ + 'address' => '任丘县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 132934 => + [ + + [ + 'address' => '海兴县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 133000 => + [ + + [ + 'address' => '衡水地区', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 133001 => + [ + + [ + 'address' => '衡水市', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 133002 => + [ + + [ + 'address' => '冀州市', + 'start_year' => 1993, + 'end_year' => 1995, + ], + ], + 133003 => + [ + + [ + 'address' => '深州市', + 'start_year' => 1994, + 'end_year' => 1995, + ], + ], + 133021 => + [ + + [ + 'address' => '衡水县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 133022 => + [ + + [ + 'address' => '冀县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 133023 => + [ + + [ + 'address' => '枣强县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 133024 => + [ + + [ + 'address' => '武邑县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 133025 => + [ + + [ + 'address' => '深县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 133026 => + [ + + [ + 'address' => '武强县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 133027 => + [ + + [ + 'address' => '饶阳县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 133028 => + [ + + [ + 'address' => '安平县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 133029 => + [ + + [ + 'address' => '故城县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 133030 => + [ + + [ + 'address' => '景县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 133031 => + [ + + [ + 'address' => '阜城县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 139001 => + [ + + [ + 'address' => '武安市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 139002 => + [ + + [ + 'address' => '霸州市', + 'start_year' => 1990, + 'end_year' => 1994, + ], + ], + 139003 => + [ + + [ + 'address' => '遵化市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 139004 => + [ + + [ + 'address' => '辛集市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 139005 => + [ + + [ + 'address' => '藁城市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 139006 => + [ + + [ + 'address' => '晋州市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 139007 => + [ + + [ + 'address' => '新乐市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 139008 => + [ + + [ + 'address' => '泊头市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 139009 => + [ + + [ + 'address' => '任丘市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 139010 => + [ + + [ + 'address' => '黄骅市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 139011 => + [ + + [ + 'address' => '河间市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 139012 => + [ + + [ + 'address' => '三河县', + 'start_year' => 1993, + 'end_year' => 1993, + ], + + [ + 'address' => '三河市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 139013 => + [ + + [ + 'address' => '南宫市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 139014 => + [ + + [ + 'address' => '沙河市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 139015 => + [ + + [ + 'address' => '定州市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 139016 => + [ + + [ + 'address' => '涿州市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 139017 => + [ + + [ + 'address' => '安国市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 139018 => + [ + + [ + 'address' => '高碑店市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 139019 => + [ + + [ + 'address' => '鹿泉市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 139020 => + [ + + [ + 'address' => '丰南市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 140000 => + [ + + [ + 'address' => '山西省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140100 => + [ + + [ + 'address' => '太原市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140102 => + [ + + [ + 'address' => '南城区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 140103 => + [ + + [ + 'address' => '北城区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 140104 => + [ + + [ + 'address' => '河西区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 140105 => + [ + + [ + 'address' => '小店区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 140106 => + [ + + [ + 'address' => '迎泽区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 140107 => + [ + + [ + 'address' => '杏花岭区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 140108 => + [ + + [ + 'address' => '尖草坪区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 140109 => + [ + + [ + 'address' => '万柏林区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 140110 => + [ + + [ + 'address' => '晋源区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 140111 => + [ + + [ + 'address' => '古交工矿区', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 140112 => + [ + + [ + 'address' => '南郊区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 140113 => + [ + + [ + 'address' => '北郊区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 140121 => + [ + + [ + 'address' => '清徐县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140122 => + [ + + [ + 'address' => '阳曲县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140123 => + [ + + [ + 'address' => '娄烦县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140181 => + [ + + [ + 'address' => '古交市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 140200 => + [ + + [ + 'address' => '大同市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140202 => + [ + + [ + 'address' => '城区', + 'start_year' => '', + 'end_year' => 2017, + ], + ], + 140203 => + [ + + [ + 'address' => '矿区', + 'start_year' => '', + 'end_year' => 2017, + ], + ], + 140211 => + [ + + [ + 'address' => '南郊区', + 'start_year' => '', + 'end_year' => 2017, + ], + ], + 140212 => + [ + + [ + 'address' => '新荣区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140213 => + [ + + [ + 'address' => '平城区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 140214 => + [ + + [ + 'address' => '云冈区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 140215 => + [ + + [ + 'address' => '云州区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 140221 => + [ + + [ + 'address' => '阳高县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 140222 => + [ + + [ + 'address' => '天镇县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 140223 => + [ + + [ + 'address' => '广灵县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 140224 => + [ + + [ + 'address' => '灵丘县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 140225 => + [ + + [ + 'address' => '浑源县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 140226 => + [ + + [ + 'address' => '左云县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 140227 => + [ + + [ + 'address' => '大同县', + 'start_year' => 1993, + 'end_year' => 2017, + ], + ], + 140300 => + [ + + [ + 'address' => '阳泉市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140302 => + [ + + [ + 'address' => '城区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140303 => + [ + + [ + 'address' => '矿区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140311 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140321 => + [ + + [ + 'address' => '平定县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 140322 => + [ + + [ + 'address' => '盂县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 140400 => + [ + + [ + 'address' => '长治市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140402 => + [ + + [ + 'address' => '城区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140411 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 140421 => + [ + + [ + 'address' => '长治县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 140422 => + [ + + [ + 'address' => '潞城县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 140423 => + [ + + [ + 'address' => '襄垣县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140424 => + [ + + [ + 'address' => '屯留县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140425 => + [ + + [ + 'address' => '平顺县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140426 => + [ + + [ + 'address' => '黎城县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140427 => + [ + + [ + 'address' => '壶关县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140428 => + [ + + [ + 'address' => '长子县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140429 => + [ + + [ + 'address' => '武乡县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140430 => + [ + + [ + 'address' => '沁县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140431 => + [ + + [ + 'address' => '沁源县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140481 => + [ + + [ + 'address' => '潞城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 140500 => + [ + + [ + 'address' => '晋城市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140502 => + [ + + [ + 'address' => '城区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140503 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1985, + 'end_year' => 1995, + ], + ], + 140521 => + [ + + [ + 'address' => '沁水县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140522 => + [ + + [ + 'address' => '阳城县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140523 => + [ + + [ + 'address' => '高平县', + 'start_year' => 1985, + 'end_year' => 1992, + ], + ], + 140524 => + [ + + [ + 'address' => '陵川县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 140525 => + [ + + [ + 'address' => '泽州县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 140581 => + [ + + [ + 'address' => '高平市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 140600 => + [ + + [ + 'address' => '朔州市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 140602 => + [ + + [ + 'address' => '朔城区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 140603 => + [ + + [ + 'address' => '平鲁区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 140621 => + [ + + [ + 'address' => '山阴县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 140622 => + [ + + [ + 'address' => '应县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 140623 => + [ + + [ + 'address' => '右玉县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 140624 => + [ + + [ + 'address' => '怀仁县', + 'start_year' => 1993, + 'end_year' => 2017, + ], + ], + 140681 => + [ + + [ + 'address' => '怀仁市', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 140700 => + [ + + [ + 'address' => '晋中市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140702 => + [ + + [ + 'address' => '榆次区', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140721 => + [ + + [ + 'address' => '榆社县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140722 => + [ + + [ + 'address' => '左权县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140723 => + [ + + [ + 'address' => '和顺县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140724 => + [ + + [ + 'address' => '昔阳县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140725 => + [ + + [ + 'address' => '寿阳县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140726 => + [ + + [ + 'address' => '太谷县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140727 => + [ + + [ + 'address' => '祁县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140728 => + [ + + [ + 'address' => '平遥县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140729 => + [ + + [ + 'address' => '灵石县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140781 => + [ + + [ + 'address' => '介休市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 140800 => + [ + + [ + 'address' => '运城市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140802 => + [ + + [ + 'address' => '盐湖区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140821 => + [ + + [ + 'address' => '临猗县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140822 => + [ + + [ + 'address' => '万荣县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140823 => + [ + + [ + 'address' => '闻喜县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140824 => + [ + + [ + 'address' => '稷山县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140825 => + [ + + [ + 'address' => '新绛县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140826 => + [ + + [ + 'address' => '绛县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140827 => + [ + + [ + 'address' => '垣曲县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140828 => + [ + + [ + 'address' => '夏县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140829 => + [ + + [ + 'address' => '平陆县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140830 => + [ + + [ + 'address' => '芮城县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140881 => + [ + + [ + 'address' => '永济市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140882 => + [ + + [ + 'address' => '河津市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140900 => + [ + + [ + 'address' => '忻州市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140902 => + [ + + [ + 'address' => '忻府区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140921 => + [ + + [ + 'address' => '定襄县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140922 => + [ + + [ + 'address' => '五台县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140923 => + [ + + [ + 'address' => '代县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140924 => + [ + + [ + 'address' => '繁峙县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140925 => + [ + + [ + 'address' => '宁武县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140926 => + [ + + [ + 'address' => '静乐县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140927 => + [ + + [ + 'address' => '神池县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140928 => + [ + + [ + 'address' => '五寨县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140929 => + [ + + [ + 'address' => '岢岚县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140930 => + [ + + [ + 'address' => '河曲县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140931 => + [ + + [ + 'address' => '保德县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140932 => + [ + + [ + 'address' => '偏关县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 140981 => + [ + + [ + 'address' => '原平市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141000 => + [ + + [ + 'address' => '临汾市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141002 => + [ + + [ + 'address' => '尧都区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141021 => + [ + + [ + 'address' => '曲沃县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141022 => + [ + + [ + 'address' => '翼城县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141023 => + [ + + [ + 'address' => '襄汾县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141024 => + [ + + [ + 'address' => '洪洞县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141025 => + [ + + [ + 'address' => '古县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141026 => + [ + + [ + 'address' => '安泽县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141027 => + [ + + [ + 'address' => '浮山县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141028 => + [ + + [ + 'address' => '吉县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141029 => + [ + + [ + 'address' => '乡宁县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141030 => + [ + + [ + 'address' => '大宁县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141031 => + [ + + [ + 'address' => '隰县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141032 => + [ + + [ + 'address' => '永和县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141033 => + [ + + [ + 'address' => '蒲县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141034 => + [ + + [ + 'address' => '汾西县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141081 => + [ + + [ + 'address' => '侯马市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141082 => + [ + + [ + 'address' => '霍州市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 141100 => + [ + + [ + 'address' => '吕梁市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141102 => + [ + + [ + 'address' => '离石区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141121 => + [ + + [ + 'address' => '文水县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141122 => + [ + + [ + 'address' => '交城县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141123 => + [ + + [ + 'address' => '兴县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141124 => + [ + + [ + 'address' => '临县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141125 => + [ + + [ + 'address' => '柳林县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141126 => + [ + + [ + 'address' => '石楼县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141127 => + [ + + [ + 'address' => '岚县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141128 => + [ + + [ + 'address' => '方山县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141129 => + [ + + [ + 'address' => '中阳县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141130 => + [ + + [ + 'address' => '交口县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141181 => + [ + + [ + 'address' => '孝义市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 141182 => + [ + + [ + 'address' => '汾阳市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 142100 => + [ + + [ + 'address' => '雁北地区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 142121 => + [ + + [ + 'address' => '大同县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '阳高县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 142122 => + [ + + [ + 'address' => '天镇县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '阳高县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142123 => + [ + + [ + 'address' => '天镇县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '广灵县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 142124 => + [ + + [ + 'address' => '广灵县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '灵丘县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 142125 => + [ + + [ + 'address' => '浑源县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '灵丘县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142126 => + [ + + [ + 'address' => '应县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '浑源县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142127 => + [ + + [ + 'address' => '山阴县', + 'start_year' => 1982, + 'end_year' => 1987, + ], + + [ + 'address' => '怀仁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142128 => + [ + + [ + 'address' => '应县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '朔县', + 'start_year' => 1982, + 'end_year' => 1987, + ], + ], + 142129 => + [ + + [ + 'address' => '山阴县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '平鲁县', + 'start_year' => 1982, + 'end_year' => 1987, + ], + ], + 142130 => + [ + + [ + 'address' => '左云县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '朔县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142131 => + [ + + [ + 'address' => '右玉县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '平鲁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142132 => + [ + + [ + 'address' => '大同县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '左云县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142133 => + [ + + [ + 'address' => '右玉县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '怀仁县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 142200 => + [ + + [ + 'address' => '忻县地区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '忻州地区', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 142201 => + [ + + [ + 'address' => '忻州市', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 142202 => + [ + + [ + 'address' => '原平市', + 'start_year' => 1993, + 'end_year' => 1999, + ], + ], + 142221 => + [ + + [ + 'address' => '忻县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 142222 => + [ + + [ + 'address' => '原平县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '定襄县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142223 => + [ + + [ + 'address' => '五台县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '代县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142224 => + [ + + [ + 'address' => '原平县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '繁峙县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142225 => + [ + + [ + 'address' => '五台县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '代县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142226 => + [ + + [ + 'address' => '定襄县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '繁峙县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142227 => + [ + + [ + 'address' => '宁武县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '静乐县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142228 => + [ + + [ + 'address' => '岢岚县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '静乐县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142229 => + [ + + [ + 'address' => '保德县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '神池县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142230 => + [ + + [ + 'address' => '五寨县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 142231 => + [ + + [ + 'address' => '岢岚县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '河曲县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142232 => + [ + + [ + 'address' => '偏关县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '河曲县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142233 => + [ + + [ + 'address' => '保德县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '神池县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142234 => + [ + + [ + 'address' => '偏关县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '宁武县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142300 => + [ + + [ + 'address' => '吕梁地区', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '晋中地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142301 => + [ + + [ + 'address' => '孝义市', + 'start_year' => 1992, + 'end_year' => 2002, + ], + + [ + 'address' => '榆次市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142302 => + [ + + [ + 'address' => '离石市', + 'start_year' => 1996, + 'end_year' => 2002, + ], + ], + 142303 => + [ + + [ + 'address' => '汾阳市', + 'start_year' => 1996, + 'end_year' => 2002, + ], + ], + 142321 => + [ + + [ + 'address' => '榆次县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '汾阳县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 142322 => + [ + + [ + 'address' => '寿阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '文水县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 142323 => + [ + + [ + 'address' => '交城县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '盂县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142324 => + [ + + [ + 'address' => '孝义县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + + [ + 'address' => '平定县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142325 => + [ + + [ + 'address' => '兴县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '昔阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142326 => + [ + + [ + 'address' => '临县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '和顺县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142327 => + [ + + [ + 'address' => '左权县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '柳林县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 142328 => + [ + + [ + 'address' => '榆社县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '石楼县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 142329 => + [ + + [ + 'address' => '太谷县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '岚县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 142330 => + [ + + [ + 'address' => '方山县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '祁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142331 => + [ + + [ + 'address' => '平遥县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '离石县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 142332 => + [ + + [ + 'address' => '中阳县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '介休县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142333 => + [ + + [ + 'address' => '交口县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '灵石县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142400 => + [ + + [ + 'address' => '吕梁地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '晋中地区', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 142401 => + [ + + [ + 'address' => '榆次市', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 142402 => + [ + + [ + 'address' => '介休市', + 'start_year' => 1992, + 'end_year' => 1998, + ], + ], + 142421 => + [ + + [ + 'address' => '榆社县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + + [ + 'address' => '离石县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142422 => + [ + + [ + 'address' => '孝义县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '左权县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 142423 => + [ + + [ + 'address' => '兴县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '和顺县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 142424 => + [ + + [ + 'address' => '交口县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '昔阳县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 142425 => + [ + + [ + 'address' => '平定县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '方山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142426 => + [ + + [ + 'address' => '盂县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '石楼县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142427 => + [ + + [ + 'address' => '寿阳县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + + [ + 'address' => '岚县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142428 => + [ + + [ + 'address' => '中阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '榆次县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 142429 => + [ + + [ + 'address' => '交城县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '太谷县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 142430 => + [ + + [ + 'address' => '临县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '祁县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 142431 => + [ + + [ + 'address' => '平遥县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + + [ + 'address' => '文水县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142432 => + [ + + [ + 'address' => '介休县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + + [ + 'address' => '柳林县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142433 => + [ + + [ + 'address' => '汾阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '灵石县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 142500 => + [ + + [ + 'address' => '晋东南地区', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 142501 => + [ + + [ + 'address' => '晋城市', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 142521 => + [ + + [ + 'address' => '长治县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 142522 => + [ + + [ + 'address' => '潞城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 142523 => + [ + + [ + 'address' => '屯留县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '襄垣县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142524 => + [ + + [ + 'address' => '武乡县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '长子县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 142525 => + [ + + [ + 'address' => '沁水县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '黎城县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142526 => + [ + + [ + 'address' => '平顺县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '阳城县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 142527 => + [ + + [ + 'address' => '壶关县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '晋城县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 142528 => + [ + + [ + 'address' => '陵川县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '高平县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 142529 => + [ + + [ + 'address' => '陵川县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '高平县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142530 => + [ + + [ + 'address' => '壶关县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '晋城县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142531 => + [ + + [ + 'address' => '平顺县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '阳城县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142532 => + [ + + [ + 'address' => '沁水县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '黎城县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 142533 => + [ + + [ + 'address' => '武乡县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '长子县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142534 => + [ + + [ + 'address' => '屯留县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '襄垣县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 142535 => + [ + + [ + 'address' => '沁县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '沁源县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142536 => + [ + + [ + 'address' => '沁县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '沁源县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 142600 => + [ + + [ + 'address' => '临汾地区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 142601 => + [ + + [ + 'address' => '临汾市', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 142602 => + [ + + [ + 'address' => '侯马市', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 142603 => + [ + + [ + 'address' => '霍州市', + 'start_year' => 1989, + 'end_year' => 1999, + ], + ], + 142621 => + [ + + [ + 'address' => '临汾县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '曲沃县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142622 => + [ + + [ + 'address' => '翼城县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '隰县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142623 => + [ + + [ + 'address' => '汾西县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '襄汾县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142624 => + [ + + [ + 'address' => '临汾县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '永和县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142625 => + [ + + [ + 'address' => '安泽县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '洪洞县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142626 => + [ + + [ + 'address' => '洪洞县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '霍县', + 'start_year' => 1982, + 'end_year' => 1988, + ], + ], + 142627 => + [ + + [ + 'address' => '古县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 142628 => + [ + + [ + 'address' => '安泽县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '霍县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142629 => + [ + + [ + 'address' => '浮山县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '翼城县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142630 => + [ + + [ + 'address' => '吉县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '浮山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142631 => + [ + + [ + 'address' => '乡宁县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '曲沃县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142632 => + [ + + [ + 'address' => '蒲县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '襄汾县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142633 => + [ + + [ + 'address' => '吉县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '大宁县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142634 => + [ + + [ + 'address' => '乡宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '永和县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142635 => + [ + + [ + 'address' => '大宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '隰县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142636 => + [ + + [ + 'address' => '汾西县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '蒲县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142700 => + [ + + [ + 'address' => '运城地区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 142701 => + [ + + [ + 'address' => '运城市', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 142702 => + [ + + [ + 'address' => '河津市', + 'start_year' => 1994, + 'end_year' => 1999, + ], + ], + 142703 => + [ + + [ + 'address' => '永济市', + 'start_year' => 1994, + 'end_year' => 1999, + ], + ], + 142721 => + [ + + [ + 'address' => '运城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 142722 => + [ + + [ + 'address' => '夏县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '永济县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 142723 => + [ + + [ + 'address' => '芮城县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '闻喜县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142724 => + [ + + [ + 'address' => '临猗县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '绛县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142725 => + [ + + [ + 'address' => '万荣县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '垣曲县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142726 => + [ + + [ + 'address' => '平陆县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '新绛县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142727 => + [ + + [ + 'address' => '稷山县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '芮城县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142728 => + [ + + [ + 'address' => '永济县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '河津县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 142729 => + [ + + [ + 'address' => '临猗县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '闻喜县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142730 => + [ + + [ + 'address' => '万荣县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '夏县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142731 => + [ + + [ + 'address' => '新绛县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '绛县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 142732 => + [ + + [ + 'address' => '平陆县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '稷山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 142733 => + [ + + [ + 'address' => '垣曲县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '河津县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 149001 => + [ + + [ + 'address' => '古交市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 149002 => + [ + + [ + 'address' => '高平市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 149003 => + [ + + [ + 'address' => '潞城市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 150000 => + [ + + [ + 'address' => '内蒙古自治区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150100 => + [ + + [ + 'address' => '呼和浩特市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150102 => + [ + + [ + 'address' => '新城区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150103 => + [ + + [ + 'address' => '回民区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150104 => + [ + + [ + 'address' => '玉泉区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150105 => + [ + + [ + 'address' => '赛罕区', + 'start_year' => 2000, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 150121 => + [ + + [ + 'address' => '土默特左旗', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150122 => + [ + + [ + 'address' => '托克托县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150123 => + [ + + [ + 'address' => '和林格尔县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 150124 => + [ + + [ + 'address' => '清水河县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 150125 => + [ + + [ + 'address' => '武川县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 150200 => + [ + + [ + 'address' => '包头市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150202 => + [ + + [ + 'address' => '东河区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150203 => + [ + + [ + 'address' => '昆都仑区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150204 => + [ + + [ + 'address' => '青山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150205 => + [ + + [ + 'address' => '石拐区', + 'start_year' => 1999, + 'end_year' => '', + ], + + [ + 'address' => '石拐矿区', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 150206 => + [ + + [ + 'address' => '白云矿区', + 'start_year' => '', + 'end_year' => 2006, + ], + + [ + 'address' => '白云鄂博矿区', + 'start_year' => 2007, + 'end_year' => '', + ], + ], + 150207 => + [ + + [ + 'address' => '九原区', + 'start_year' => 1999, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 150221 => + [ + + [ + 'address' => '土默特右旗', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150222 => + [ + + [ + 'address' => '固阳县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150223 => + [ + + [ + 'address' => '达尔罕茂明安联合旗', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 150300 => + [ + + [ + 'address' => '乌海市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150302 => + [ + + [ + 'address' => '海勃湾区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150303 => + [ + + [ + 'address' => '海南区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150304 => + [ + + [ + 'address' => '乌达区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 150400 => + [ + + [ + 'address' => '赤峰市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150402 => + [ + + [ + 'address' => '红山区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150403 => + [ + + [ + 'address' => '元宝山区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150404 => + [ + + [ + 'address' => '松山区', + 'start_year' => 1993, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 150421 => + [ + + [ + 'address' => '阿鲁科尔沁旗', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150422 => + [ + + [ + 'address' => '巴林左旗', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150423 => + [ + + [ + 'address' => '巴林右旗', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150424 => + [ + + [ + 'address' => '林西县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150425 => + [ + + [ + 'address' => '克什克腾旗', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150426 => + [ + + [ + 'address' => '翁牛特旗', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150428 => + [ + + [ + 'address' => '喀喇沁旗', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150429 => + [ + + [ + 'address' => '宁城县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150430 => + [ + + [ + 'address' => '敖汉旗', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 150500 => + [ + + [ + 'address' => '通辽市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 150502 => + [ + + [ + 'address' => '科尔沁区', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 150521 => + [ + + [ + 'address' => '科尔沁左翼中旗', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 150522 => + [ + + [ + 'address' => '科尔沁左翼后旗', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 150523 => + [ + + [ + 'address' => '开鲁县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 150524 => + [ + + [ + 'address' => '库伦旗', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 150525 => + [ + + [ + 'address' => '奈曼旗', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 150526 => + [ + + [ + 'address' => '扎鲁特旗', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 150581 => + [ + + [ + 'address' => '霍林郭勒市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 150600 => + [ + + [ + 'address' => '鄂尔多斯市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150602 => + [ + + [ + 'address' => '东胜区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150603 => + [ + + [ + 'address' => '康巴什区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 150621 => + [ + + [ + 'address' => '达拉特旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150622 => + [ + + [ + 'address' => '准格尔旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150623 => + [ + + [ + 'address' => '鄂托克前旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150624 => + [ + + [ + 'address' => '鄂托克旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150625 => + [ + + [ + 'address' => '杭锦旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150626 => + [ + + [ + 'address' => '乌审旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150627 => + [ + + [ + 'address' => '伊金霍洛旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150700 => + [ + + [ + 'address' => '呼伦贝尔市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150702 => + [ + + [ + 'address' => '海拉尔区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150703 => + [ + + [ + 'address' => '扎赉诺尔区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 150721 => + [ + + [ + 'address' => '阿荣旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150722 => + [ + + [ + 'address' => '莫力达瓦达斡尔族自治旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150723 => + [ + + [ + 'address' => '鄂伦春自治旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150724 => + [ + + [ + 'address' => '鄂温克族自治旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150725 => + [ + + [ + 'address' => '陈巴尔虎旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150726 => + [ + + [ + 'address' => '新巴尔虎左旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150727 => + [ + + [ + 'address' => '新巴尔虎右旗', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150781 => + [ + + [ + 'address' => '满洲里市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150782 => + [ + + [ + 'address' => '牙克石市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150783 => + [ + + [ + 'address' => '扎兰屯市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150784 => + [ + + [ + 'address' => '额尔古纳市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150785 => + [ + + [ + 'address' => '根河市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 150800 => + [ + + [ + 'address' => '巴彦淖尔市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150802 => + [ + + [ + 'address' => '临河区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150821 => + [ + + [ + 'address' => '五原县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150822 => + [ + + [ + 'address' => '磴口县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150823 => + [ + + [ + 'address' => '乌拉特前旗', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150824 => + [ + + [ + 'address' => '乌拉特中旗', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150825 => + [ + + [ + 'address' => '乌拉特后旗', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150826 => + [ + + [ + 'address' => '杭锦后旗', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150900 => + [ + + [ + 'address' => '乌兰察布市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150902 => + [ + + [ + 'address' => '集宁区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150921 => + [ + + [ + 'address' => '卓资县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150922 => + [ + + [ + 'address' => '化德县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150923 => + [ + + [ + 'address' => '商都县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150924 => + [ + + [ + 'address' => '兴和县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150925 => + [ + + [ + 'address' => '凉城县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150926 => + [ + + [ + 'address' => '察哈尔右翼前旗', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150927 => + [ + + [ + 'address' => '察哈尔右翼中旗', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150928 => + [ + + [ + 'address' => '察哈尔右翼后旗', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150929 => + [ + + [ + 'address' => '四子王旗', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 150981 => + [ + + [ + 'address' => '丰镇市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 152100 => + [ + + [ + 'address' => '呼伦贝尔盟', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 152101 => + [ + + [ + 'address' => '海拉尔市', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 152102 => + [ + + [ + 'address' => '满洲里市', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 152103 => + [ + + [ + 'address' => '扎兰屯市', + 'start_year' => 1983, + 'end_year' => 2000, + ], + ], + 152104 => + [ + + [ + 'address' => '牙克石市', + 'start_year' => 1983, + 'end_year' => 2000, + ], + ], + 152105 => + [ + + [ + 'address' => '根河市', + 'start_year' => 1994, + 'end_year' => 2000, + ], + ], + 152106 => + [ + + [ + 'address' => '额尔古纳市', + 'start_year' => 1994, + 'end_year' => 2000, + ], + ], + 152121 => + [ + + [ + 'address' => '布特哈旗', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152122 => + [ + + [ + 'address' => '阿荣旗', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 152123 => + [ + + [ + 'address' => '莫力达瓦达斡尔族自治旗', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 152124 => + [ + + [ + 'address' => '喜桂图旗', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152125 => + [ + + [ + 'address' => '额尔古纳右旗', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 152126 => + [ + + [ + 'address' => '额尔古纳左旗', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 152127 => + [ + + [ + 'address' => '鄂伦春自治旗', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 152128 => + [ + + [ + 'address' => '鄂温克族自治旗', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 152129 => + [ + + [ + 'address' => '新巴尔虎右旗', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 152130 => + [ + + [ + 'address' => '新巴尔虎左旗', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 152131 => + [ + + [ + 'address' => '陈巴尔虎旗', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 152200 => + [ + + [ + 'address' => '兴安盟', + 'start_year' => '', + 'end_year' => '', + ], + ], + 152201 => + [ + + [ + 'address' => '乌兰浩特市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 152202 => + [ + + [ + 'address' => '阿尔山市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 152221 => + [ + + [ + 'address' => '科尔沁右翼前旗', + 'start_year' => '', + 'end_year' => '', + ], + ], + 152222 => + [ + + [ + 'address' => '科尔沁右翼中旗', + 'start_year' => '', + 'end_year' => '', + ], + ], + 152223 => + [ + + [ + 'address' => '扎赉特旗', + 'start_year' => '', + 'end_year' => '', + ], + ], + 152224 => + [ + + [ + 'address' => '突泉县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 152300 => + [ + + [ + 'address' => '哲里木盟', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 152301 => + [ + + [ + 'address' => '通辽市', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 152302 => + [ + + [ + 'address' => '霍林郭勒市', + 'start_year' => 1985, + 'end_year' => 1998, + ], + ], + 152321 => + [ + + [ + 'address' => '通辽县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 152322 => + [ + + [ + 'address' => '科尔沁左翼中旗', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 152323 => + [ + + [ + 'address' => '科尔沁左翼后旗', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 152324 => + [ + + [ + 'address' => '开鲁县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 152325 => + [ + + [ + 'address' => '库伦旗', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 152326 => + [ + + [ + 'address' => '奈曼旗', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 152327 => + [ + + [ + 'address' => '扎鲁特旗', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 152400 => + [ + + [ + 'address' => '昭乌达盟', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152401 => + [ + + [ + 'address' => '赤峰市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152421 => + [ + + [ + 'address' => '赤峰县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '阿鲁科尔沁旗', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 152422 => + [ + + [ + 'address' => '巴林左旗', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152423 => + [ + + [ + 'address' => '巴林右旗', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152424 => + [ + + [ + 'address' => '林西县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152425 => + [ + + [ + 'address' => '克什克腾旗', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152426 => + [ + + [ + 'address' => '翁牛特旗', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152427 => + [ + + [ + 'address' => '赤峰县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 152428 => + [ + + [ + 'address' => '喀喇沁旗', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152429 => + [ + + [ + 'address' => '宁城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152430 => + [ + + [ + 'address' => '敖汉旗', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 152431 => + [ + + [ + 'address' => '阿鲁科尔沁旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152500 => + [ + + [ + 'address' => '伊克昭盟', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '锡林郭勒盟', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 152501 => + [ + + [ + 'address' => '二连浩特市', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 152502 => + [ + + [ + 'address' => '锡林浩特市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 152521 => + [ + + [ + 'address' => '东胜县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '阿巴哈纳尔旗', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 152522 => + [ + + [ + 'address' => '达拉特旗', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '阿巴嘎旗', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 152523 => + [ + + [ + 'address' => '准格尔旗', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '苏尼特左旗', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 152524 => + [ + + [ + 'address' => '苏尼特右旗', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '鄂托克前旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152525 => + [ + + [ + 'address' => '东乌珠穆沁旗', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '鄂托克旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152526 => + [ + + [ + 'address' => '杭锦旗', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '西乌珠穆沁旗', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 152527 => + [ + + [ + 'address' => '乌审旗', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '太仆寺旗', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 152528 => + [ + + [ + 'address' => '伊金霍洛旗', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '镶黄旗', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 152529 => + [ + + [ + 'address' => '正镶白旗', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 152530 => + [ + + [ + 'address' => '正蓝旗', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 152531 => + [ + + [ + 'address' => '多伦县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 152600 => + [ + + [ + 'address' => '乌兰察布盟', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '锡林郭勒盟', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152601 => + [ + + [ + 'address' => '二连浩特市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '集宁市', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 152602 => + [ + + [ + 'address' => '丰镇市', + 'start_year' => 1990, + 'end_year' => 2002, + ], + ], + 152621 => + [ + + [ + 'address' => '武川县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + + [ + 'address' => '阿巴哈纳尔旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152622 => + [ + + [ + 'address' => '和林格尔县', + 'start_year' => 1982, + 'end_year' => 1994, + ], + + [ + 'address' => '阿巴嘎旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152623 => + [ + + [ + 'address' => '清水河县', + 'start_year' => 1982, + 'end_year' => 1994, + ], + + [ + 'address' => '苏尼特左旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152624 => + [ + + [ + 'address' => '卓资县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '苏尼特右旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152625 => + [ + + [ + 'address' => '东乌珠穆沁旗', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '化德县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 152626 => + [ + + [ + 'address' => '商都县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '西乌珠穆沁旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152627 => + [ + + [ + 'address' => '兴和县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '太仆寺旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152628 => + [ + + [ + 'address' => '丰镇县', + 'start_year' => 1982, + 'end_year' => 1989, + ], + + [ + 'address' => '镶黄旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152629 => + [ + + [ + 'address' => '凉城县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '正镶白旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152630 => + [ + + [ + 'address' => '察哈尔右翼前旗', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '正蓝旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152631 => + [ + + [ + 'address' => '多伦县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '察哈尔右翼中旗', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 152632 => + [ + + [ + 'address' => '察哈尔右翼后旗', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 152633 => + [ + + [ + 'address' => '达尔罕茂明安联合旗', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 152634 => + [ + + [ + 'address' => '四子王旗', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 152700 => + [ + + [ + 'address' => '伊克昭盟', + 'start_year' => 1982, + 'end_year' => 2000, + ], + + [ + 'address' => '巴彦淖尔盟', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152701 => + [ + + [ + 'address' => '东胜市', + 'start_year' => 1983, + 'end_year' => 2000, + ], + ], + 152721 => + [ + + [ + 'address' => '东胜县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '临河县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152722 => + [ + + [ + 'address' => '五原县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '达拉特旗', + 'start_year' => 1982, + 'end_year' => 2000, + ], + ], + 152723 => + [ + + [ + 'address' => '准格尔旗', + 'start_year' => 1982, + 'end_year' => 2000, + ], + + [ + 'address' => '磴口县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152724 => + [ + + [ + 'address' => '乌拉特前旗', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '鄂托克前旗', + 'start_year' => 1982, + 'end_year' => 2000, + ], + ], + 152725 => + [ + + [ + 'address' => '乌拉特中后联合旗', + 'start_year' => '', + 'end_year' => 1980, + ], + + [ + 'address' => '乌拉特中旗', + 'start_year' => 1981, + 'end_year' => 1981, + ], + + [ + 'address' => '鄂托克旗', + 'start_year' => 1982, + 'end_year' => 2000, + ], + ], + 152726 => + [ + + [ + 'address' => '杭锦后旗', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '杭锦旗', + 'start_year' => 1982, + 'end_year' => 2000, + ], + ], + 152727 => + [ + + [ + 'address' => '乌审旗', + 'start_year' => 1982, + 'end_year' => 2000, + ], + + [ + 'address' => '乌拉特后旗', + 'start_year' => 1981, + 'end_year' => 1981, + ], + + [ + 'address' => '潮格旗', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 152728 => + [ + + [ + 'address' => '伊金霍洛旗', + 'start_year' => 1982, + 'end_year' => 2000, + ], + ], + 152800 => + [ + + [ + 'address' => '乌兰察布盟', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '巴彦淖尔盟', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 152801 => + [ + + [ + 'address' => '临河市', + 'start_year' => 1984, + 'end_year' => 2002, + ], + + [ + 'address' => '集宁市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152821 => + [ + + [ + 'address' => '临河县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '武川县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152822 => + [ + + [ + 'address' => '五原县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '和林格尔县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152823 => + [ + + [ + 'address' => '清水河县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '磴口县', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 152824 => + [ + + [ + 'address' => '乌拉特前旗', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '卓资县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152825 => + [ + + [ + 'address' => '乌拉特中旗', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '化德县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152826 => + [ + + [ + 'address' => '乌拉特后旗', + 'start_year' => 1982, + 'end_year' => 2002, + ], + + [ + 'address' => '商都县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152827 => + [ + + [ + 'address' => '兴和县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '杭锦后旗', + 'start_year' => 1982, + 'end_year' => 2002, + ], + ], + 152828 => + [ + + [ + 'address' => '丰镇县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152829 => + [ + + [ + 'address' => '凉城县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152830 => + [ + + [ + 'address' => '察哈尔右翼前旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152831 => + [ + + [ + 'address' => '察哈尔右翼中旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152832 => + [ + + [ + 'address' => '察哈尔右翼后旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152833 => + [ + + [ + 'address' => '达尔罕茂明安联合旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152834 => + [ + + [ + 'address' => '四子王旗', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 152900 => + [ + + [ + 'address' => '阿拉善盟', + 'start_year' => '', + 'end_year' => '', + ], + ], + 152921 => + [ + + [ + 'address' => '阿拉善左旗', + 'start_year' => '', + 'end_year' => '', + ], + ], + 152922 => + [ + + [ + 'address' => '阿拉善右旗', + 'start_year' => '', + 'end_year' => '', + ], + ], + 152923 => + [ + + [ + 'address' => '额济纳旗', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210000 => + [ + + [ + 'address' => '辽宁省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210100 => + [ + + [ + 'address' => '沈阳市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210102 => + [ + + [ + 'address' => '和平区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210103 => + [ + + [ + 'address' => '沈河区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210104 => + [ + + [ + 'address' => '大东区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210105 => + [ + + [ + 'address' => '皇姑区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210106 => + [ + + [ + 'address' => '铁西区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210111 => + [ + + [ + 'address' => '苏家屯区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210112 => + [ + + [ + 'address' => '东陵区', + 'start_year' => '', + 'end_year' => 2015, + ], + + [ + 'address' => '浑南区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 210113 => + [ + + [ + 'address' => '新城子区', + 'start_year' => '', + 'end_year' => 2005, + ], + + [ + 'address' => '沈北新区', + 'start_year' => 2006, + 'end_year' => '', + ], + ], + 210114 => + [ + + [ + 'address' => '于洪区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210115 => + [ + + [ + 'address' => '辽中区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 210121 => + [ + + [ + 'address' => '新民县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 210122 => + [ + + [ + 'address' => '辽中县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 210123 => + [ + + [ + 'address' => '康平县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 210124 => + [ + + [ + 'address' => '法库县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 210181 => + [ + + [ + 'address' => '新民市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 210200 => + [ + + [ + 'address' => '大连市', + 'start_year' => 1981, + 'end_year' => '', + ], + + [ + 'address' => '旅大市', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 210202 => + [ + + [ + 'address' => '中山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210203 => + [ + + [ + 'address' => '西岗区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210204 => + [ + + [ + 'address' => '沙河口区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210211 => + [ + + [ + 'address' => '甘井子区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210212 => + [ + + [ + 'address' => '旅顺口区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210213 => + [ + + [ + 'address' => '金州区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 210214 => + [ + + [ + 'address' => '普兰店区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 210219 => + [ + + [ + 'address' => '瓦房店市', + 'start_year' => 1985, + 'end_year' => 1985, + ], + ], + 210221 => + [ + + [ + 'address' => '金县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 210222 => + [ + + [ + 'address' => '新金县', + 'start_year' => '', + 'end_year' => 1990, + ], + ], + 210223 => + [ + + [ + 'address' => '复县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 210224 => + [ + + [ + 'address' => '长海县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210225 => + [ + + [ + 'address' => '庄河县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 210281 => + [ + + [ + 'address' => '瓦房店市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 210282 => + [ + + [ + 'address' => '普兰店市', + 'start_year' => 1995, + 'end_year' => 2014, + ], + ], + 210283 => + [ + + [ + 'address' => '庄河市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 210300 => + [ + + [ + 'address' => '鞍山市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210302 => + [ + + [ + 'address' => '铁东区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210303 => + [ + + [ + 'address' => '铁西区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210304 => + [ + + [ + 'address' => '立山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210311 => + [ + + [ + 'address' => '千山区', + 'start_year' => 1996, + 'end_year' => '', + ], + + [ + 'address' => '旧堡区', + 'start_year' => 1984, + 'end_year' => 1995, + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 210319 => + [ + + [ + 'address' => '海城市', + 'start_year' => 1985, + 'end_year' => 1985, + ], + ], + 210321 => + [ + + [ + 'address' => '台安县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210322 => + [ + + [ + 'address' => '海城县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 210323 => + [ + + [ + 'address' => '岫岩满族自治县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 210381 => + [ + + [ + 'address' => '海城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 210400 => + [ + + [ + 'address' => '抚顺市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210402 => + [ + + [ + 'address' => '新抚区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210403 => + [ + + [ + 'address' => '东洲区', + 'start_year' => 1999, + 'end_year' => '', + ], + + [ + 'address' => '露天区', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 210404 => + [ + + [ + 'address' => '望花区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210411 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1987, + ], + + [ + 'address' => '顺城区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 210421 => + [ + + [ + 'address' => '抚顺县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210422 => + [ + + [ + 'address' => '新宾县', + 'start_year' => '', + 'end_year' => 1984, + ], + + [ + 'address' => '新宾满族自治县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 210423 => + [ + + [ + 'address' => '清原县', + 'start_year' => '', + 'end_year' => 1988, + ], + + [ + 'address' => '清原满族自治县', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 210500 => + [ + + [ + 'address' => '本溪市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210502 => + [ + + [ + 'address' => '平山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210503 => + [ + + [ + 'address' => '溪湖区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210504 => + [ + + [ + 'address' => '明山区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 210505 => + [ + + [ + 'address' => '南芬区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 210511 => + [ + + [ + 'address' => '南芬区', + 'start_year' => 1985, + 'end_year' => 1985, + ], + + [ + 'address' => '立新区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 210521 => + [ + + [ + 'address' => '本溪县', + 'start_year' => '', + 'end_year' => 1988, + ], + + [ + 'address' => '本溪满族自治县', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 210522 => + [ + + [ + 'address' => '桓仁县', + 'start_year' => '', + 'end_year' => 1988, + ], + + [ + 'address' => '桓仁满族自治县', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 210600 => + [ + + [ + 'address' => '丹东市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210602 => + [ + + [ + 'address' => '元宝区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210603 => + [ + + [ + 'address' => '振兴区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210604 => + [ + + [ + 'address' => '振安区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210621 => + [ + + [ + 'address' => '凤城县', + 'start_year' => '', + 'end_year' => 1984, + ], + + [ + 'address' => '凤城满族自治县', + 'start_year' => 1985, + 'end_year' => 1993, + ], + ], + 210622 => + [ + + [ + 'address' => '岫岩县', + 'start_year' => '', + 'end_year' => 1984, + ], + + [ + 'address' => '岫岩满族自治县', + 'start_year' => 1985, + 'end_year' => 1991, + ], + ], + 210623 => + [ + + [ + 'address' => '东沟县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 210624 => + [ + + [ + 'address' => '宽甸县', + 'start_year' => '', + 'end_year' => 1988, + ], + + [ + 'address' => '宽甸满族自治县', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 210681 => + [ + + [ + 'address' => '东港市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 210682 => + [ + + [ + 'address' => '凤城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 210700 => + [ + + [ + 'address' => '锦州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210702 => + [ + + [ + 'address' => '古塔区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210703 => + [ + + [ + 'address' => '凌河区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210704 => + [ + + [ + 'address' => '南票区', + 'start_year' => 1982, + 'end_year' => 1988, + ], + ], + 210705 => + [ + + [ + 'address' => '葫芦岛区', + 'start_year' => 1982, + 'end_year' => 1988, + ], + ], + 210706 => + [ + + [ + 'address' => '太和区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 210711 => + [ + + [ + 'address' => '太和区', + 'start_year' => 1983, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 210719 => + [ + + [ + 'address' => '锦西市', + 'start_year' => 1985, + 'end_year' => 1985, + ], + ], + 210721 => + [ + + [ + 'address' => '锦西县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 210722 => + [ + + [ + 'address' => '兴城县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 210723 => + [ + + [ + 'address' => '绥中县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 210724 => + [ + + [ + 'address' => '锦县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 210725 => + [ + + [ + 'address' => '北镇县', + 'start_year' => '', + 'end_year' => 1988, + ], + + [ + 'address' => '北镇满族自治县', + 'start_year' => 1989, + 'end_year' => 1994, + ], + ], + 210726 => + [ + + [ + 'address' => '黑山县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210727 => + [ + + [ + 'address' => '义县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210781 => + [ + + [ + 'address' => '凌海市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 210782 => + [ + + [ + 'address' => '北宁市', + 'start_year' => 1995, + 'end_year' => 2005, + ], + + [ + 'address' => '北镇市', + 'start_year' => 2006, + 'end_year' => '', + ], + ], + 210800 => + [ + + [ + 'address' => '营口市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210802 => + [ + + [ + 'address' => '站前区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210803 => + [ + + [ + 'address' => '西市区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210804 => + [ + + [ + 'address' => '鲅鱼圈区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 210811 => + [ + + [ + 'address' => '老边区', + 'start_year' => 1984, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 210821 => + [ + + [ + 'address' => '营口县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 210822 => + [ + + [ + 'address' => '盘山县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 210823 => + [ + + [ + 'address' => '大洼县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 210824 => + [ + + [ + 'address' => '盖县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 210881 => + [ + + [ + 'address' => '盖州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 210882 => + [ + + [ + 'address' => '大石桥市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 210900 => + [ + + [ + 'address' => '阜新市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210902 => + [ + + [ + 'address' => '海州区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210903 => + [ + + [ + 'address' => '新邱区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210904 => + [ + + [ + 'address' => '太平区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210905 => + [ + + [ + 'address' => '清河门区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 210911 => + [ + + [ + 'address' => '细河区', + 'start_year' => 1984, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 210921 => + [ + + [ + 'address' => '阜新蒙古族自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 210922 => + [ + + [ + 'address' => '彰武县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 211000 => + [ + + [ + 'address' => '辽阳市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 211002 => + [ + + [ + 'address' => '白塔区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 211003 => + [ + + [ + 'address' => '文圣区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 211004 => + [ + + [ + 'address' => '宏伟区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 211005 => + [ + + [ + 'address' => '弓长岭区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211011 => + [ + + [ + 'address' => '太子河区', + 'start_year' => 1984, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 211021 => + [ + + [ + 'address' => '辽阳县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 211022 => + [ + + [ + 'address' => '灯塔县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 211081 => + [ + + [ + 'address' => '灯塔市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 211100 => + [ + + [ + 'address' => '盘锦市', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211102 => + [ + + [ + 'address' => '双台子区', + 'start_year' => 1986, + 'end_year' => '', + ], + + [ + 'address' => '盘山区', + 'start_year' => 1984, + 'end_year' => 1985, + ], + ], + 211103 => + [ + + [ + 'address' => '兴隆台区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211104 => + [ + + [ + 'address' => '大洼区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 211111 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1984, + 'end_year' => 1985, + ], + ], + 211121 => + [ + + [ + 'address' => '大洼县', + 'start_year' => 1984, + 'end_year' => 2015, + ], + ], + 211122 => + [ + + [ + 'address' => '盘山县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 211200 => + [ + + [ + 'address' => '铁岭市', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211202 => + [ + + [ + 'address' => '银州区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211203 => + [ + + [ + 'address' => '铁法区', + 'start_year' => 1984, + 'end_year' => 1985, + ], + ], + 211204 => + [ + + [ + 'address' => '清河区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211221 => + [ + + [ + 'address' => '铁岭县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211222 => + [ + + [ + 'address' => '开原县', + 'start_year' => 1984, + 'end_year' => 1987, + ], + ], + 211223 => + [ + + [ + 'address' => '西丰县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211224 => + [ + + [ + 'address' => '昌图县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211225 => + [ + + [ + 'address' => '康平县', + 'start_year' => 1984, + 'end_year' => 1991, + ], + ], + 211226 => + [ + + [ + 'address' => '法库县', + 'start_year' => 1984, + 'end_year' => 1991, + ], + ], + 211281 => + [ + + [ + 'address' => '调兵山市', + 'start_year' => 2002, + 'end_year' => '', + ], + + [ + 'address' => '铁法市', + 'start_year' => 1995, + 'end_year' => 2001, + ], + ], + 211282 => + [ + + [ + 'address' => '开原市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 211300 => + [ + + [ + 'address' => '朝阳市', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211302 => + [ + + [ + 'address' => '双塔区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211303 => + [ + + [ + 'address' => '龙城区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211319 => + [ + + [ + 'address' => '北票市', + 'start_year' => 1985, + 'end_year' => 1985, + ], + ], + 211321 => + [ + + [ + 'address' => '朝阳县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211322 => + [ + + [ + 'address' => '建平县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211323 => + [ + + [ + 'address' => '凌源县', + 'start_year' => 1984, + 'end_year' => 1990, + ], + ], + 211324 => + [ + + [ + 'address' => '喀喇沁左翼蒙古族自治县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 211325 => + [ + + [ + 'address' => '建昌县', + 'start_year' => 1984, + 'end_year' => 1988, + ], + ], + 211326 => + [ + + [ + 'address' => '北票县', + 'start_year' => 1984, + 'end_year' => 1984, + ], + ], + 211381 => + [ + + [ + 'address' => '北票市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 211382 => + [ + + [ + 'address' => '凌源市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 211400 => + [ + + [ + 'address' => '葫芦岛市', + 'start_year' => 1994, + 'end_year' => '', + ], + + [ + 'address' => '锦西市', + 'start_year' => 1989, + 'end_year' => 1993, + ], + ], + 211402 => + [ + + [ + 'address' => '连山区', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 211403 => + [ + + [ + 'address' => '龙港区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 211404 => + [ + + [ + 'address' => '南票区', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 211405 => + [ + + [ + 'address' => '葫芦岛区', + 'start_year' => 1989, + 'end_year' => 1993, + ], + ], + 211421 => + [ + + [ + 'address' => '绥中县', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 211422 => + [ + + [ + 'address' => '建昌县', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 211481 => + [ + + [ + 'address' => '兴城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 212100 => + [ + + [ + 'address' => '铁岭地区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212101 => + [ + + [ + 'address' => '铁岭市', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212102 => + [ + + [ + 'address' => '铁法市', + 'start_year' => 1981, + 'end_year' => 1983, + ], + ], + 212121 => + [ + + [ + 'address' => '铁岭县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212122 => + [ + + [ + 'address' => '开原县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212123 => + [ + + [ + 'address' => '西丰县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212124 => + [ + + [ + 'address' => '昌图县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212125 => + [ + + [ + 'address' => '康平县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212126 => + [ + + [ + 'address' => '法库县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212200 => + [ + + [ + 'address' => '朝阳地区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212201 => + [ + + [ + 'address' => '朝阳市', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212221 => + [ + + [ + 'address' => '朝阳县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212222 => + [ + + [ + 'address' => '建平县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212223 => + [ + + [ + 'address' => '凌源县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212224 => + [ + + [ + 'address' => '喀喇沁左翼蒙古族自治县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212225 => + [ + + [ + 'address' => '建昌县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 212226 => + [ + + [ + 'address' => '北票县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 219001 => + [ + + [ + 'address' => '瓦房店市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 219002 => + [ + + [ + 'address' => '海城市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 219003 => + [ + + [ + 'address' => '锦西市', + 'start_year' => 1986, + 'end_year' => 1988, + ], + ], + 219004 => + [ + + [ + 'address' => '兴城市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 219005 => + [ + + [ + 'address' => '铁法市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 219006 => + [ + + [ + 'address' => '北票市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 219007 => + [ + + [ + 'address' => '开原市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 219008 => + [ + + [ + 'address' => '普兰店市', + 'start_year' => 1991, + 'end_year' => 1994, + ], + ], + 219009 => + [ + + [ + 'address' => '凌源市', + 'start_year' => 1991, + 'end_year' => 1994, + ], + ], + 219010 => + [ + + [ + 'address' => '庄河市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 219011 => + [ + + [ + 'address' => '大石桥市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 219012 => + [ + + [ + 'address' => '盖州市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 219013 => + [ + + [ + 'address' => '新民市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 219014 => + [ + + [ + 'address' => '东港市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 219015 => + [ + + [ + 'address' => '凌海市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 219016 => + [ + + [ + 'address' => '凤城市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 220000 => + [ + + [ + 'address' => '吉林省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 220100 => + [ + + [ + 'address' => '长春市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 220102 => + [ + + [ + 'address' => '南关区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 220103 => + [ + + [ + 'address' => '宽城区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 220104 => + [ + + [ + 'address' => '朝阳区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 220105 => + [ + + [ + 'address' => '二道区', + 'start_year' => 1995, + 'end_year' => '', + ], + + [ + 'address' => '二道河子区', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 220106 => + [ + + [ + 'address' => '绿园区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220111 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 220112 => + [ + + [ + 'address' => '双阳区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220113 => + [ + + [ + 'address' => '九台区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 220121 => + [ + + [ + 'address' => '榆树县', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 220122 => + [ + + [ + 'address' => '农安县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 220123 => + [ + + [ + 'address' => '九台县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 220124 => + [ + + [ + 'address' => '德惠县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 220125 => + [ + + [ + 'address' => '双阳县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 220181 => + [ + + [ + 'address' => '九台市', + 'start_year' => 1995, + 'end_year' => 2013, + ], + ], + 220182 => + [ + + [ + 'address' => '榆树市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220183 => + [ + + [ + 'address' => '德惠市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220200 => + [ + + [ + 'address' => '吉林市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 220202 => + [ + + [ + 'address' => '昌邑区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 220203 => + [ + + [ + 'address' => '龙潭区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 220204 => + [ + + [ + 'address' => '船营区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 220211 => + [ + + [ + 'address' => '丰满区', + 'start_year' => 1992, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 220221 => + [ + + [ + 'address' => '永吉县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 220222 => + [ + + [ + 'address' => '舒兰县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 220223 => + [ + + [ + 'address' => '磐石县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 220224 => + [ + + [ + 'address' => '蛟河县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 220225 => + [ + + [ + 'address' => '桦甸县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 220281 => + [ + + [ + 'address' => '桦甸市', + 'start_year' => 2003, + 'end_year' => 2003, + ], + + [ + 'address' => '蛟河市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220282 => + [ + + [ + 'address' => '桦甸市', + 'start_year' => 1995, + 'end_year' => '', + ], + + [ + 'address' => '蛟河市', + 'start_year' => 2003, + 'end_year' => 2003, + ], + ], + 220283 => + [ + + [ + 'address' => '舒兰市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220284 => + [ + + [ + 'address' => '磐石市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220300 => + [ + + [ + 'address' => '四平市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 220301 => + [ + + [ + 'address' => '铁西区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 220302 => + [ + + [ + 'address' => '铁东区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '铁西区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 220303 => + [ + + [ + 'address' => '铁东区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 220319 => + [ + + [ + 'address' => '公主岭市', + 'start_year' => 1985, + 'end_year' => 1987, + ], + ], + 220321 => + [ + + [ + 'address' => '怀德县', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 220322 => + [ + + [ + 'address' => '梨树县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 220323 => + [ + + [ + 'address' => '伊通县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + + [ + 'address' => '伊通满族自治县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 220324 => + [ + + [ + 'address' => '双辽县', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 220381 => + [ + + [ + 'address' => '公主岭市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220382 => + [ + + [ + 'address' => '双辽市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 220400 => + [ + + [ + 'address' => '辽源市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 220401 => + [ + + [ + 'address' => '龙山区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 220402 => + [ + + [ + 'address' => '西安区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '龙山区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 220403 => + [ + + [ + 'address' => '西安区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 220421 => + [ + + [ + 'address' => '东丰县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 220422 => + [ + + [ + 'address' => '东辽县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 220500 => + [ + + [ + 'address' => '通化市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 220502 => + [ + + [ + 'address' => '东昌区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 220503 => + [ + + [ + 'address' => '二道江区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 220519 => + [ + + [ + 'address' => '梅河口市', + 'start_year' => 1985, + 'end_year' => 1987, + ], + ], + 220521 => + [ + + [ + 'address' => '通化县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 220522 => + [ + + [ + 'address' => '集安县', + 'start_year' => 1985, + 'end_year' => 1987, + ], + ], + 220523 => + [ + + [ + 'address' => '辉南县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 220524 => + [ + + [ + 'address' => '柳河县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 220581 => + [ + + [ + 'address' => '梅河口市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220582 => + [ + + [ + 'address' => '集安市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220600 => + [ + + [ + 'address' => '浑江市', + 'start_year' => 1985, + 'end_year' => 1993, + ], + + [ + 'address' => '白山市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 220602 => + [ + + [ + 'address' => '八道江区', + 'start_year' => 1986, + 'end_year' => 2009, + ], + + [ + 'address' => '浑江区', + 'start_year' => 2010, + 'end_year' => '', + ], + ], + 220603 => + [ + + [ + 'address' => '三岔子区', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 220604 => + [ + + [ + 'address' => '临江区', + 'start_year' => 1986, + 'end_year' => 1991, + ], + ], + 220605 => + [ + + [ + 'address' => '江源区', + 'start_year' => 2006, + 'end_year' => '', + ], + ], + 220621 => + [ + + [ + 'address' => '抚松县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 220622 => + [ + + [ + 'address' => '靖宇县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 220623 => + [ + + [ + 'address' => '长白朝鲜族自治县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 220624 => + [ + + [ + 'address' => '临江县', + 'start_year' => 1992, + 'end_year' => 1992, + ], + ], + 220625 => + [ + + [ + 'address' => '江源县', + 'start_year' => 1995, + 'end_year' => 2005, + ], + ], + 220681 => + [ + + [ + 'address' => '临江市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220700 => + [ + + [ + 'address' => '松原市', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 220702 => + [ + + [ + 'address' => '宁江区', + 'start_year' => 1995, + 'end_year' => '', + ], + + [ + 'address' => '扶余区', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 220721 => + [ + + [ + 'address' => '前郭尔罗斯蒙古族自治县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 220722 => + [ + + [ + 'address' => '长岭县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 220723 => + [ + + [ + 'address' => '乾安县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 220724 => + [ + + [ + 'address' => '扶余县', + 'start_year' => 1995, + 'end_year' => 2012, + ], + ], + 220781 => + [ + + [ + 'address' => '扶余市', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 220800 => + [ + + [ + 'address' => '白城市', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 220802 => + [ + + [ + 'address' => '洮北区', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 220821 => + [ + + [ + 'address' => '镇赉县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 220822 => + [ + + [ + 'address' => '通榆县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 220881 => + [ + + [ + 'address' => '洮南市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 220882 => + [ + + [ + 'address' => '大安市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 222100 => + [ + + [ + 'address' => '四平地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 222101 => + [ + + [ + 'address' => '四平市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 222102 => + [ + + [ + 'address' => '辽源市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 222121 => + [ + + [ + 'address' => '怀德县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 222122 => + [ + + [ + 'address' => '梨树县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 222123 => + [ + + [ + 'address' => '伊通县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 222124 => + [ + + [ + 'address' => '东丰县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 222125 => + [ + + [ + 'address' => '双辽县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 222200 => + [ + + [ + 'address' => '通化地区', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222201 => + [ + + [ + 'address' => '通化市', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222202 => + [ + + [ + 'address' => '浑江市', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222221 => + [ + + [ + 'address' => '海龙县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222222 => + [ + + [ + 'address' => '通化县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222223 => + [ + + [ + 'address' => '柳河县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222224 => + [ + + [ + 'address' => '辉南县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222225 => + [ + + [ + 'address' => '集安县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222226 => + [ + + [ + 'address' => '抚松县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222227 => + [ + + [ + 'address' => '靖宇县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222228 => + [ + + [ + 'address' => '长白朝鲜族自治县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222300 => + [ + + [ + 'address' => '白城地区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 222301 => + [ + + [ + 'address' => '白城市', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 222302 => + [ + + [ + 'address' => '洮南市', + 'start_year' => 1987, + 'end_year' => 1992, + ], + ], + 222303 => + [ + + [ + 'address' => '扶余市', + 'start_year' => 1987, + 'end_year' => 1991, + ], + ], + 222304 => + [ + + [ + 'address' => '大安市', + 'start_year' => 1988, + 'end_year' => 1992, + ], + ], + 222321 => + [ + + [ + 'address' => '扶余县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 222322 => + [ + + [ + 'address' => '洮安县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 222323 => + [ + + [ + 'address' => '长岭县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 222324 => + [ + + [ + 'address' => '前郭尔罗斯蒙古族自治县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 222325 => + [ + + [ + 'address' => '大安县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 222326 => + [ + + [ + 'address' => '镇赉县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 222327 => + [ + + [ + 'address' => '通榆县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 222328 => + [ + + [ + 'address' => '乾安县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 222400 => + [ + + [ + 'address' => '延边朝鲜族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 222401 => + [ + + [ + 'address' => '延吉市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 222402 => + [ + + [ + 'address' => '图们市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 222403 => + [ + + [ + 'address' => '敦化市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 222404 => + [ + + [ + 'address' => '珲春市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 222405 => + [ + + [ + 'address' => '龙井市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 222406 => + [ + + [ + 'address' => '和龙市', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 222421 => + [ + + [ + 'address' => '延吉县', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '龙井县', + 'start_year' => 1984, + 'end_year' => 1987, + ], + ], + 222422 => + [ + + [ + 'address' => '敦化县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 222423 => + [ + + [ + 'address' => '和龙县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 222424 => + [ + + [ + 'address' => '汪清县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 222425 => + [ + + [ + 'address' => '珲春县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 222426 => + [ + + [ + 'address' => '安图县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 222427 => + [ + + [ + 'address' => '龙井县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 222500 => + [ + + [ + 'address' => '德惠地区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 222521 => + [ + + [ + 'address' => '榆树县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 222522 => + [ + + [ + 'address' => '农安县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 222523 => + [ + + [ + 'address' => '九台县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 222524 => + [ + + [ + 'address' => '德惠县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 222525 => + [ + + [ + 'address' => '双阳县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 222600 => + [ + + [ + 'address' => '永吉地区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 222621 => + [ + + [ + 'address' => '永吉县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 222622 => + [ + + [ + 'address' => '舒兰县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 222623 => + [ + + [ + 'address' => '磐石县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 222624 => + [ + + [ + 'address' => '蛟河县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 222625 => + [ + + [ + 'address' => '桦甸县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 229001 => + [ + + [ + 'address' => '公主岭市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 229002 => + [ + + [ + 'address' => '梅河口市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 229003 => + [ + + [ + 'address' => '集安市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 229004 => + [ + + [ + 'address' => '桦甸市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 229005 => + [ + + [ + 'address' => '九台市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 229006 => + [ + + [ + 'address' => '蛟河市', + 'start_year' => 1989, + 'end_year' => 1994, + ], + ], + 229007 => + [ + + [ + 'address' => '榆树市', + 'start_year' => 1990, + 'end_year' => 1994, + ], + ], + 229008 => + [ + + [ + 'address' => '舒兰市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 229009 => + [ + + [ + 'address' => '大安市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 229010 => + [ + + [ + 'address' => '洮南市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 229011 => + [ + + [ + 'address' => '临江市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 229012 => + [ + + [ + 'address' => '德惠市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 230000 => + [ + + [ + 'address' => '黑龙江省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230100 => + [ + + [ + 'address' => '哈尔滨市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230102 => + [ + + [ + 'address' => '道里区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230103 => + [ + + [ + 'address' => '南岗区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230104 => + [ + + [ + 'address' => '道外区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230105 => + [ + + [ + 'address' => '太平区', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 230106 => + [ + + [ + 'address' => '香坊区', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 230107 => + [ + + [ + 'address' => '动力区', + 'start_year' => '', + 'end_year' => 2005, + ], + ], + 230108 => + [ + + [ + 'address' => '平房区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230109 => + [ + + [ + 'address' => '松北区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 230110 => + [ + + [ + 'address' => '香坊区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 230111 => + [ + + [ + 'address' => '呼兰区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 230112 => + [ + + [ + 'address' => '阿城区', + 'start_year' => 2006, + 'end_year' => '', + ], + ], + 230113 => + [ + + [ + 'address' => '双城区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 230121 => + [ + + [ + 'address' => '呼兰县', + 'start_year' => 1984, + 'end_year' => 2003, + ], + + [ + 'address' => '阿城县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 230122 => + [ + + [ + 'address' => '呼兰县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '阿城县', + 'start_year' => 1984, + 'end_year' => 1986, + ], + ], + 230123 => + [ + + [ + 'address' => '依兰县', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 230124 => + [ + + [ + 'address' => '方正县', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 230125 => + [ + + [ + 'address' => '宾县', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 230126 => + [ + + [ + 'address' => '巴彦县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 230127 => + [ + + [ + 'address' => '木兰县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 230128 => + [ + + [ + 'address' => '通河县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 230129 => + [ + + [ + 'address' => '延寿县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 230181 => + [ + + [ + 'address' => '阿城市', + 'start_year' => 1995, + 'end_year' => 2005, + ], + ], + 230182 => + [ + + [ + 'address' => '双城市', + 'start_year' => 1996, + 'end_year' => 2013, + ], + ], + 230183 => + [ + + [ + 'address' => '尚志市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 230184 => + [ + + [ + 'address' => '五常市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 230200 => + [ + + [ + 'address' => '齐齐哈尔市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230202 => + [ + + [ + 'address' => '龙沙区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230203 => + [ + + [ + 'address' => '建华区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230204 => + [ + + [ + 'address' => '铁锋区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230205 => + [ + + [ + 'address' => '昂昂溪区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230206 => + [ + + [ + 'address' => '富拉尔基区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230207 => + [ + + [ + 'address' => '华安区', + 'start_year' => '', + 'end_year' => 1983, + ], + + [ + 'address' => '碾子山区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230208 => + [ + + [ + 'address' => '梅里斯区', + 'start_year' => '', + 'end_year' => 1987, + ], + + [ + 'address' => '梅里斯达斡尔族区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 230221 => + [ + + [ + 'address' => '龙江县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230222 => + [ + + [ + 'address' => '讷河县', + 'start_year' => 1984, + 'end_year' => 1991, + ], + ], + 230223 => + [ + + [ + 'address' => '依安县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230224 => + [ + + [ + 'address' => '泰来县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230225 => + [ + + [ + 'address' => '甘南县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230226 => + [ + + [ + 'address' => '杜尔伯特蒙古族自治县', + 'start_year' => 1984, + 'end_year' => 1991, + ], + ], + 230227 => + [ + + [ + 'address' => '富裕县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230228 => + [ + + [ + 'address' => '林甸县', + 'start_year' => 1984, + 'end_year' => 1991, + ], + ], + 230229 => + [ + + [ + 'address' => '克山县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230230 => + [ + + [ + 'address' => '克东县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230231 => + [ + + [ + 'address' => '拜泉县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230281 => + [ + + [ + 'address' => '讷河市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 230300 => + [ + + [ + 'address' => '鸡西市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230302 => + [ + + [ + 'address' => '鸡冠区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230303 => + [ + + [ + 'address' => '恒山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230304 => + [ + + [ + 'address' => '滴道区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230305 => + [ + + [ + 'address' => '梨树区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230306 => + [ + + [ + 'address' => '城子河区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230307 => + [ + + [ + 'address' => '麻山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230321 => + [ + + [ + 'address' => '鸡东县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 230322 => + [ + + [ + 'address' => '虎林县', + 'start_year' => 1993, + 'end_year' => 1995, + ], + ], + 230381 => + [ + + [ + 'address' => '虎林市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 230382 => + [ + + [ + 'address' => '密山市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 230400 => + [ + + [ + 'address' => '大庆市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '鹤岗市', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 230402 => + [ + + [ + 'address' => '向阳区', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '萨尔图区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 230403 => + [ + + [ + 'address' => '工农区', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '龙凤区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 230404 => + [ + + [ + 'address' => '南山区', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '让胡路区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 230405 => + [ + + [ + 'address' => '兴安区', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '红岗区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 230406 => + [ + + [ + 'address' => '东山区', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '大同区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 230407 => + [ + + [ + 'address' => '兴山区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 230421 => + [ + + [ + 'address' => '萝北县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 230422 => + [ + + [ + 'address' => '绥滨县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 230500 => + [ + + [ + 'address' => '双鸭山市', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '鹤岗市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 230502 => + [ + + [ + 'address' => '向阳区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '尖山区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 230503 => + [ + + [ + 'address' => '岭东区', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '工农区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 230504 => + [ + + [ + 'address' => '南山区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '岭西区', + 'start_year' => 1982, + 'end_year' => 1986, + ], + ], + 230505 => + [ + + [ + 'address' => '兴安区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '四方台区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 230506 => + [ + + [ + 'address' => '东山区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '宝山区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 230507 => + [ + + [ + 'address' => '兴山区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 230521 => + [ + + [ + 'address' => '集贤县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 230522 => + [ + + [ + 'address' => '友谊县', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 230523 => + [ + + [ + 'address' => '宝清县', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 230524 => + [ + + [ + 'address' => '饶河县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 230600 => + [ + + [ + 'address' => '双鸭山市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '大庆市', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 230602 => + [ + + [ + 'address' => '尖山区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '萨尔图区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 230603 => + [ + + [ + 'address' => '岭东区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '龙凤区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 230604 => + [ + + [ + 'address' => '岭西区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '让胡路区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 230605 => + [ + + [ + 'address' => '四方台区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '红岗区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 230606 => + [ + + [ + 'address' => '大同区', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '宝山区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 230621 => + [ + + [ + 'address' => '肇州县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 230622 => + [ + + [ + 'address' => '肇源县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 230623 => + [ + + [ + 'address' => '林甸县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 230624 => + [ + + [ + 'address' => '杜尔伯特蒙古族自治县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 230700 => + [ + + [ + 'address' => '伊春市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230702 => + [ + + [ + 'address' => '伊春区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230703 => + [ + + [ + 'address' => '南岔区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230704 => + [ + + [ + 'address' => '友好区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230705 => + [ + + [ + 'address' => '西林区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230706 => + [ + + [ + 'address' => '翠峦区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230707 => + [ + + [ + 'address' => '新青区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230708 => + [ + + [ + 'address' => '美溪区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230709 => + [ + + [ + 'address' => '大丰区', + 'start_year' => '', + 'end_year' => 1983, + ], + + [ + 'address' => '金山屯区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230710 => + [ + + [ + 'address' => '五营区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230711 => + [ + + [ + 'address' => '乌敏河区', + 'start_year' => '', + 'end_year' => 1983, + ], + + [ + 'address' => '乌马河区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230712 => + [ + + [ + 'address' => '东风区', + 'start_year' => '', + 'end_year' => 1983, + ], + + [ + 'address' => '汤旺河区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230713 => + [ + + [ + 'address' => '带岭区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230714 => + [ + + [ + 'address' => '乌伊岭区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230715 => + [ + + [ + 'address' => '红星区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230716 => + [ + + [ + 'address' => '上甘岭区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230721 => + [ + + [ + 'address' => '铁力县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 230722 => + [ + + [ + 'address' => '嘉荫县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 230781 => + [ + + [ + 'address' => '铁力市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 230800 => + [ + + [ + 'address' => '佳木斯市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 230802 => + [ + + [ + 'address' => '永红区', + 'start_year' => 1983, + 'end_year' => 2005, + ], + ], + 230803 => + [ + + [ + 'address' => '向阳区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 230804 => + [ + + [ + 'address' => '前进区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 230805 => + [ + + [ + 'address' => '东风区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 230811 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 230821 => + [ + + [ + 'address' => '富锦县', + 'start_year' => 1984, + 'end_year' => 1987, + ], + ], + 230822 => + [ + + [ + 'address' => '桦南县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230823 => + [ + + [ + 'address' => '依兰县', + 'start_year' => 1984, + 'end_year' => 1990, + ], + ], + 230824 => + [ + + [ + 'address' => '友谊县', + 'start_year' => 1984, + 'end_year' => 1990, + ], + ], + 230825 => + [ + + [ + 'address' => '集贤县', + 'start_year' => 1984, + 'end_year' => 1986, + ], + ], + 230826 => + [ + + [ + 'address' => '桦川县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230827 => + [ + + [ + 'address' => '宝清县', + 'start_year' => 1984, + 'end_year' => 1990, + ], + ], + 230828 => + [ + + [ + 'address' => '汤原县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230829 => + [ + + [ + 'address' => '绥滨县', + 'start_year' => 1984, + 'end_year' => 1986, + ], + ], + 230830 => + [ + + [ + 'address' => '萝北县', + 'start_year' => 1984, + 'end_year' => 1986, + ], + ], + 230831 => + [ + + [ + 'address' => '同江县', + 'start_year' => 1984, + 'end_year' => 1986, + ], + ], + 230832 => + [ + + [ + 'address' => '饶河县', + 'start_year' => 1984, + 'end_year' => 1992, + ], + ], + 230833 => + [ + + [ + 'address' => '抚远县', + 'start_year' => 1984, + 'end_year' => 2015, + ], + ], + 230881 => + [ + + [ + 'address' => '同江市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 230882 => + [ + + [ + 'address' => '富锦市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 230883 => + [ + + [ + 'address' => '抚远市', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 230900 => + [ + + [ + 'address' => '七台河市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 230902 => + [ + + [ + 'address' => '新兴区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230903 => + [ + + [ + 'address' => '桃山区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230904 => + [ + + [ + 'address' => '茄子河区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 230921 => + [ + + [ + 'address' => '勃利县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 231000 => + [ + + [ + 'address' => '牡丹江市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 231002 => + [ + + [ + 'address' => '东安区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 231003 => + [ + + [ + 'address' => '阳明区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 231004 => + [ + + [ + 'address' => '爱民区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 231005 => + [ + + [ + 'address' => '西安区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 231006 => + [ + + [ + 'address' => '爱民区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 231007 => + [ + + [ + 'address' => '阳明区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 231011 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 231020 => + [ + + [ + 'address' => '绥芬河市', + 'start_year' => 1984, + 'end_year' => 1985, + ], + ], + 231021 => + [ + + [ + 'address' => '宁安县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 231022 => + [ + + [ + 'address' => '海林县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 231023 => + [ + + [ + 'address' => '穆棱县', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 231024 => + [ + + [ + 'address' => '东宁县', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 231025 => + [ + + [ + 'address' => '林口县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 231026 => + [ + + [ + 'address' => '密山县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 231027 => + [ + + [ + 'address' => '虎林县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 231081 => + [ + + [ + 'address' => '绥芬河市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 231083 => + [ + + [ + 'address' => '海林市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 231084 => + [ + + [ + 'address' => '宁安市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 231085 => + [ + + [ + 'address' => '穆棱市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 231086 => + [ + + [ + 'address' => '东宁市', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 231100 => + [ + + [ + 'address' => '黑河市', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 231101 => + [ + + [ + 'address' => '绥芬河市', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 231102 => + [ + + [ + 'address' => '爱辉区', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 231121 => + [ + + [ + 'address' => '嫩江县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 231122 => + [ + + [ + 'address' => '德都县', + 'start_year' => 1993, + 'end_year' => 1995, + ], + ], + 231123 => + [ + + [ + 'address' => '逊克县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 231124 => + [ + + [ + 'address' => '孙吴县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 231181 => + [ + + [ + 'address' => '北安市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 231182 => + [ + + [ + 'address' => '五大连池市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 231200 => + [ + + [ + 'address' => '绥化市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 231202 => + [ + + [ + 'address' => '北林区', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 231221 => + [ + + [ + 'address' => '望奎县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 231222 => + [ + + [ + 'address' => '兰西县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 231223 => + [ + + [ + 'address' => '青冈县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 231224 => + [ + + [ + 'address' => '庆安县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 231225 => + [ + + [ + 'address' => '明水县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 231226 => + [ + + [ + 'address' => '绥棱县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 231281 => + [ + + [ + 'address' => '安达市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 231282 => + [ + + [ + 'address' => '肇东市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 231283 => + [ + + [ + 'address' => '海伦市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 232100 => + [ + + [ + 'address' => '松花江地区', + 'start_year' => 1982, + 'end_year' => 1995, + ], + + [ + 'address' => '绥化地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232101 => + [ + + [ + 'address' => '双城市', + 'start_year' => 1988, + 'end_year' => 1995, + ], + ], + 232102 => + [ + + [ + 'address' => '尚志市', + 'start_year' => 1988, + 'end_year' => 1995, + ], + ], + 232103 => + [ + + [ + 'address' => '五常市', + 'start_year' => 1993, + 'end_year' => 1995, + ], + ], + 232121 => + [ + + [ + 'address' => '海伦县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '阿城县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 232122 => + [ + + [ + 'address' => '宾县', + 'start_year' => 1982, + 'end_year' => 1990, + ], + + [ + 'address' => '肇东县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232123 => + [ + + [ + 'address' => '呼兰县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '绥化县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232124 => + [ + + [ + 'address' => '双城县', + 'start_year' => 1982, + 'end_year' => 1987, + ], + + [ + 'address' => '安达县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232125 => + [ + + [ + 'address' => '五常县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '望奎县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232126 => + [ + + [ + 'address' => '兰西县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '巴彦县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 232127 => + [ + + [ + 'address' => '木兰县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + + [ + 'address' => '青冈县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232128 => + [ + + [ + 'address' => '肇源县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '通河县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 232129 => + [ + + [ + 'address' => '尚志县', + 'start_year' => 1982, + 'end_year' => 1987, + ], + + [ + 'address' => '肇州县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232130 => + [ + + [ + 'address' => '庆安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '方正县', + 'start_year' => 1982, + 'end_year' => 1990, + ], + ], + 232131 => + [ + + [ + 'address' => '延寿县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + + [ + 'address' => '明水县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232132 => + [ + + [ + 'address' => '绥棱县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232200 => + [ + + [ + 'address' => '嫩江地区', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '松花江地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232221 => + [ + + [ + 'address' => '五常县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '龙江县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 232222 => + [ + + [ + 'address' => '双城县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '讷河县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 232223 => + [ + + [ + 'address' => '依安县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '巴彦县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232224 => + [ + + [ + 'address' => '呼兰县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '泰来县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 232225 => + [ + + [ + 'address' => '宾县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '甘南县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 232226 => + [ + + [ + 'address' => '杜尔伯特蒙古族自治县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '阿城县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232227 => + [ + + [ + 'address' => '富裕县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '尚志县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232228 => + [ + + [ + 'address' => '木兰县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '林甸县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 232229 => + [ + + [ + 'address' => '克山县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '延寿县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232230 => + [ + + [ + 'address' => '克东县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '通河县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232231 => + [ + + [ + 'address' => '拜泉县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '方正县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232300 => + [ + + [ + 'address' => '嫩江地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '绥化地区', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 232301 => + [ + + [ + 'address' => '绥化市', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 232302 => + [ + + [ + 'address' => '安达市', + 'start_year' => 1984, + 'end_year' => 1998, + ], + ], + 232303 => + [ + + [ + 'address' => '肇东市', + 'start_year' => 1986, + 'end_year' => 1998, + ], + ], + 232304 => + [ + + [ + 'address' => '海伦市', + 'start_year' => 1989, + 'end_year' => 1998, + ], + ], + 232321 => + [ + + [ + 'address' => '海伦县', + 'start_year' => 1982, + 'end_year' => 1988, + ], + + [ + 'address' => '讷河县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232322 => + [ + + [ + 'address' => '拜泉县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '肇东县', + 'start_year' => 1982, + 'end_year' => 1985, + ], + ], + 232323 => + [ + + [ + 'address' => '龙江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232324 => + [ + + [ + 'address' => '依安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '望奎县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 232325 => + [ + + [ + 'address' => '克山县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '兰西县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 232326 => + [ + + [ + 'address' => '甘南县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '青冈县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 232327 => + [ + + [ + 'address' => '安达县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '泰来县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232328 => + [ + + [ + 'address' => '克东县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '肇源县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 232329 => + [ + + [ + 'address' => '富裕县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '肇州县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 232330 => + [ + + [ + 'address' => '庆安县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + + [ + 'address' => '林甸县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232331 => + [ + + [ + 'address' => '明水县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + + [ + 'address' => '杜尔伯特蒙古族自治县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232332 => + [ + + [ + 'address' => '绥棱县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 232400 => + [ + + [ + 'address' => '合江地区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 232401 => + [ + + [ + 'address' => '佳木斯市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 232402 => + [ + + [ + 'address' => '七台河市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 232403 => + [ + + [ + 'address' => '永红区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 232404 => + [ + + [ + 'address' => '向阳区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 232405 => + [ + + [ + 'address' => '前进区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 232406 => + [ + + [ + 'address' => '东风区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 232411 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 232421 => + [ + + [ + 'address' => '富锦县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '桦南县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232422 => + [ + + [ + 'address' => '桦南县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '集贤县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232423 => + [ + + [ + 'address' => '依兰县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '宝清县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232424 => + [ + + [ + 'address' => '勃利县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '富锦县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232425 => + [ + + [ + 'address' => '依兰县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '集贤县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 232426 => + [ + + [ + 'address' => '勃利县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '桦川县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 232427 => + [ + + [ + 'address' => '宝清县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '汤原县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232428 => + [ + + [ + 'address' => '桦川县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '汤原县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 232429 => + [ + + [ + 'address' => '绥滨县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '萝北县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232430 => + [ + + [ + 'address' => '绥滨县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '萝北县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 232431 => + [ + + [ + 'address' => '同江县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '饶河县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232432 => + [ + + [ + 'address' => '同江县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '饶河县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 232433 => + [ + + [ + 'address' => '抚远县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 232500 => + [ + + [ + 'address' => '牡丹江地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 232501 => + [ + + [ + 'address' => '牡丹江市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 232502 => + [ + + [ + 'address' => '东凤区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '绥芬河市', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 232503 => + [ + + [ + 'address' => '东凤区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '先锋区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232504 => + [ + + [ + 'address' => '先锋区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '爱民区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232505 => + [ + + [ + 'address' => '爱民区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '阳明区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232506 => + [ + + [ + 'address' => '阳明区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 232511 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 232521 => + [ + + [ + 'address' => '宁安县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '海林县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232522 => + [ + + [ + 'address' => '宁安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '海林县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 232523 => + [ + + [ + 'address' => '林口县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '穆棱县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 232524 => + [ + + [ + 'address' => '东宁县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '密山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232525 => + [ + + [ + 'address' => '林口县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '穆棱县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232526 => + [ + + [ + 'address' => '虎林县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '鸡东县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 232527 => + [ + + [ + 'address' => '密山县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '鸡东县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232528 => + [ + + [ + 'address' => '东宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '虎林县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 232581 => + [ + + [ + 'address' => '绥芬河市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232600 => + [ + + [ + 'address' => '黑河地区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 232601 => + [ + + [ + 'address' => '黑河市', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 232602 => + [ + + [ + 'address' => '北安市', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 232603 => + [ + + [ + 'address' => '五大连池市', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 232621 => + [ + + [ + 'address' => '嫩江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 232622 => + [ + + [ + 'address' => '北安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '嫩江县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 232623 => + [ + + [ + 'address' => '德都县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 232624 => + [ + + [ + 'address' => '爱辉县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 232625 => + [ + + [ + 'address' => '逊克县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 232626 => + [ + + [ + 'address' => '孙吴县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 232627 => + [ + + [ + 'address' => '通北县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 232700 => + [ + + [ + 'address' => '大兴安岭地区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 232701 => + [ + + [ + 'address' => '漠河市', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 232721 => + [ + + [ + 'address' => '呼玛县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 232722 => + [ + + [ + 'address' => '塔河县', + 'start_year' => 1981, + 'end_year' => '', + ], + ], + 232723 => + [ + + [ + 'address' => '漠河县', + 'start_year' => 1981, + 'end_year' => 2017, + ], + ], + 239001 => + [ + + [ + 'address' => '绥芬河市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 239002 => + [ + + [ + 'address' => '镜泊湖市', + 'start_year' => 1986, + 'end_year' => 1986, + ], + + [ + 'address' => '阿城市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 239003 => + [ + + [ + 'address' => '同江市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 239004 => + [ + + [ + 'address' => '富锦市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 239005 => + [ + + [ + 'address' => '铁力市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 239006 => + [ + + [ + 'address' => '密山市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 239007 => + [ + + [ + 'address' => '海林市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 239008 => + [ + + [ + 'address' => '讷河市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 239009 => + [ + + [ + 'address' => '北安市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 239010 => + [ + + [ + 'address' => '五大连池市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 239011 => + [ + + [ + 'address' => '宁安市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 310000 => + [ + + [ + 'address' => '上海市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 310101 => + [ + + [ + 'address' => '黄浦区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 310102 => + [ + + [ + 'address' => '南市区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 310103 => + [ + + [ + 'address' => '卢湾区', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 310104 => + [ + + [ + 'address' => '徐汇区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 310105 => + [ + + [ + 'address' => '长宁区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 310106 => + [ + + [ + 'address' => '静安区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 310107 => + [ + + [ + 'address' => '普陀区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 310108 => + [ + + [ + 'address' => '闸北区', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 310109 => + [ + + [ + 'address' => '虹口区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 310110 => + [ + + [ + 'address' => '杨浦区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 310111 => + [ + + [ + 'address' => '吴淞区', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 310112 => + [ + + [ + 'address' => '闵行区', + 'start_year' => 1981, + 'end_year' => '', + ], + ], + 310113 => + [ + + [ + 'address' => '宝山区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 310114 => + [ + + [ + 'address' => '嘉定区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 310115 => + [ + + [ + 'address' => '浦东新区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 310116 => + [ + + [ + 'address' => '金山区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 310117 => + [ + + [ + 'address' => '松江区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 310118 => + [ + + [ + 'address' => '青浦区', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 310119 => + [ + + [ + 'address' => '南汇区', + 'start_year' => 2001, + 'end_year' => 2008, + ], + ], + 310120 => + [ + + [ + 'address' => '奉贤区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 310151 => + [ + + [ + 'address' => '崇明区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 310201 => + [ + + [ + 'address' => '上海县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 310202 => + [ + + [ + 'address' => '嘉定县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 310203 => + [ + + [ + 'address' => '宝山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 310204 => + [ + + [ + 'address' => '川沙县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 310205 => + [ + + [ + 'address' => '南汇县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 310206 => + [ + + [ + 'address' => '奉贤县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 310207 => + [ + + [ + 'address' => '松江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 310208 => + [ + + [ + 'address' => '金山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 310209 => + [ + + [ + 'address' => '青浦县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 310210 => + [ + + [ + 'address' => '崇明县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 310221 => + [ + + [ + 'address' => '上海县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 310222 => + [ + + [ + 'address' => '嘉定县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 310223 => + [ + + [ + 'address' => '宝山县', + 'start_year' => 1982, + 'end_year' => 1987, + ], + ], + 310224 => + [ + + [ + 'address' => '川沙县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 310225 => + [ + + [ + 'address' => '南汇县', + 'start_year' => 1982, + 'end_year' => 2000, + ], + ], + 310226 => + [ + + [ + 'address' => '奉贤县', + 'start_year' => 1982, + 'end_year' => 2000, + ], + ], + 310227 => + [ + + [ + 'address' => '松江县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 310228 => + [ + + [ + 'address' => '金山县', + 'start_year' => 1982, + 'end_year' => 1996, + ], + ], + 310229 => + [ + + [ + 'address' => '青浦县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 310230 => + [ + + [ + 'address' => '崇明县', + 'start_year' => 1982, + 'end_year' => 2015, + ], + ], + 320000 => + [ + + [ + 'address' => '江苏省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320100 => + [ + + [ + 'address' => '南京市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320102 => + [ + + [ + 'address' => '玄武区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320103 => + [ + + [ + 'address' => '白下区', + 'start_year' => '', + 'end_year' => 2012, + ], + ], + 320104 => + [ + + [ + 'address' => '秦淮区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320105 => + [ + + [ + 'address' => '建邺区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320106 => + [ + + [ + 'address' => '鼓楼区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320107 => + [ + + [ + 'address' => '下关区', + 'start_year' => '', + 'end_year' => 2012, + ], + ], + 320111 => + [ + + [ + 'address' => '浦口区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320112 => + [ + + [ + 'address' => '大厂区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 320113 => + [ + + [ + 'address' => '栖霞区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320114 => + [ + + [ + 'address' => '雨花区', + 'start_year' => '', + 'end_year' => 1983, + ], + + [ + 'address' => '雨花台区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 320115 => + [ + + [ + 'address' => '江宁区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 320116 => + [ + + [ + 'address' => '六合区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 320117 => + [ + + [ + 'address' => '溧水区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 320118 => + [ + + [ + 'address' => '高淳区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 320121 => + [ + + [ + 'address' => '江宁县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 320122 => + [ + + [ + 'address' => '江浦县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 320123 => + [ + + [ + 'address' => '六合县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 320124 => + [ + + [ + 'address' => '溧水县', + 'start_year' => 1983, + 'end_year' => 2012, + ], + ], + 320125 => + [ + + [ + 'address' => '高淳县', + 'start_year' => 1983, + 'end_year' => 2012, + ], + ], + 320200 => + [ + + [ + 'address' => '无锡市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320202 => + [ + + [ + 'address' => '崇安区', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 320203 => + [ + + [ + 'address' => '南长区', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 320204 => + [ + + [ + 'address' => '北塘区', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 320205 => + [ + + [ + 'address' => '锡山区', + 'start_year' => 2000, + 'end_year' => '', + ], + + [ + 'address' => '马山区', + 'start_year' => 1987, + 'end_year' => 1999, + ], + ], + 320206 => + [ + + [ + 'address' => '惠山区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 320211 => + [ + + [ + 'address' => '滨湖区', + 'start_year' => 2000, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 320213 => + [ + + [ + 'address' => '梁溪区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 320214 => + [ + + [ + 'address' => '新吴区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 320221 => + [ + + [ + 'address' => '江阴县', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 320222 => + [ + + [ + 'address' => '无锡县', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 320223 => + [ + + [ + 'address' => '宜兴县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 320281 => + [ + + [ + 'address' => '江阴市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320282 => + [ + + [ + 'address' => '宜兴市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320283 => + [ + + [ + 'address' => '锡山市', + 'start_year' => 1995, + 'end_year' => 1999, + ], + ], + 320300 => + [ + + [ + 'address' => '徐州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320302 => + [ + + [ + 'address' => '鼓楼区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320303 => + [ + + [ + 'address' => '云龙区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320304 => + [ + + [ + 'address' => '九里区', + 'start_year' => 1995, + 'end_year' => 2009, + ], + + [ + 'address' => '矿区', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 320305 => + [ + + [ + 'address' => '贾汪区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320311 => + [ + + [ + 'address' => '泉山区', + 'start_year' => 1993, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 320312 => + [ + + [ + 'address' => '铜山区', + 'start_year' => 2010, + 'end_year' => '', + ], + ], + 320321 => + [ + + [ + 'address' => '丰县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320322 => + [ + + [ + 'address' => '沛县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320323 => + [ + + [ + 'address' => '铜山县', + 'start_year' => 1983, + 'end_year' => 2009, + ], + ], + 320324 => + [ + + [ + 'address' => '睢宁县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320325 => + [ + + [ + 'address' => '邳县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 320326 => + [ + + [ + 'address' => '新沂县', + 'start_year' => 1983, + 'end_year' => 1989, + ], + ], + 320381 => + [ + + [ + 'address' => '新沂市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320382 => + [ + + [ + 'address' => '邳州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320400 => + [ + + [ + 'address' => '常州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320402 => + [ + + [ + 'address' => '天宁区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320403 => + [ + + [ + 'address' => '广化区', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 320404 => + [ + + [ + 'address' => '钟楼区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320405 => + [ + + [ + 'address' => '戚墅堰区', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 320411 => + [ + + [ + 'address' => '新北区', + 'start_year' => 2002, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 2001, + ], + ], + 320412 => + [ + + [ + 'address' => '武进区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 320413 => + [ + + [ + 'address' => '金坛区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 320421 => + [ + + [ + 'address' => '武进县', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 320422 => + [ + + [ + 'address' => '金坛县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 320423 => + [ + + [ + 'address' => '溧阳县', + 'start_year' => 1983, + 'end_year' => 1989, + ], + ], + 320481 => + [ + + [ + 'address' => '溧阳市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320482 => + [ + + [ + 'address' => '金坛市', + 'start_year' => 1995, + 'end_year' => 2014, + ], + ], + 320483 => + [ + + [ + 'address' => '武进市', + 'start_year' => 1995, + 'end_year' => 2001, + ], + ], + 320500 => + [ + + [ + 'address' => '苏州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320502 => + [ + + [ + 'address' => '沧浪区', + 'start_year' => '', + 'end_year' => 2011, + ], + ], + 320503 => + [ + + [ + 'address' => '平江区', + 'start_year' => '', + 'end_year' => 2011, + ], + ], + 320504 => + [ + + [ + 'address' => '金阊区', + 'start_year' => '', + 'end_year' => 2011, + ], + ], + 320505 => + [ + + [ + 'address' => '虎丘区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 320506 => + [ + + [ + 'address' => '吴中区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 320507 => + [ + + [ + 'address' => '相城区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 320508 => + [ + + [ + 'address' => '姑苏区', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 320509 => + [ + + [ + 'address' => '吴江区', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 320511 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 320521 => + [ + + [ + 'address' => '沙洲县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 320522 => + [ + + [ + 'address' => '太仓县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 320523 => + [ + + [ + 'address' => '昆山县', + 'start_year' => 1983, + 'end_year' => 1988, + ], + ], + 320524 => + [ + + [ + 'address' => '吴县', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 320525 => + [ + + [ + 'address' => '吴江县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 320581 => + [ + + [ + 'address' => '常熟市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320582 => + [ + + [ + 'address' => '张家港市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320583 => + [ + + [ + 'address' => '昆山市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320584 => + [ + + [ + 'address' => '吴江市', + 'start_year' => 1995, + 'end_year' => 2011, + ], + ], + 320585 => + [ + + [ + 'address' => '太仓市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320586 => + [ + + [ + 'address' => '吴县市', + 'start_year' => 1995, + 'end_year' => 1999, + ], + ], + 320600 => + [ + + [ + 'address' => '南通市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320602 => + [ + + [ + 'address' => '城中区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '城区', + 'start_year' => 1983, + 'end_year' => 1990, + ], + + [ + 'address' => '崇川区', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 320603 => + [ + + [ + 'address' => '港闸区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 320611 => + [ + + [ + 'address' => '港闸区', + 'start_year' => 1991, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1990, + ], + ], + 320612 => + [ + + [ + 'address' => '通州区', + 'start_year' => 2009, + 'end_year' => '', + ], + ], + 320621 => + [ + + [ + 'address' => '海安县', + 'start_year' => 1983, + 'end_year' => 2017, + ], + ], + 320622 => + [ + + [ + 'address' => '如皋县', + 'start_year' => 1983, + 'end_year' => 1990, + ], + ], + 320623 => + [ + + [ + 'address' => '如东县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320624 => + [ + + [ + 'address' => '南通县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 320625 => + [ + + [ + 'address' => '海门县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 320626 => + [ + + [ + 'address' => '启东县', + 'start_year' => 1983, + 'end_year' => 1988, + ], + ], + 320681 => + [ + + [ + 'address' => '启东市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320682 => + [ + + [ + 'address' => '如皋市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320683 => + [ + + [ + 'address' => '通州市', + 'start_year' => 1995, + 'end_year' => 2008, + ], + ], + 320684 => + [ + + [ + 'address' => '海门市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320685 => + [ + + [ + 'address' => '海安市', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 320700 => + [ + + [ + 'address' => '连云港市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 320702 => + [ + + [ + 'address' => '新海区', + 'start_year' => 1983, + 'end_year' => 1985, + ], + + [ + 'address' => '连云港区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 320703 => + [ + + [ + 'address' => '盐区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '连云区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320704 => + [ + + [ + 'address' => '云台区', + 'start_year' => 1983, + 'end_year' => 2000, + ], + + [ + 'address' => '新浦区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 320705 => + [ + + [ + 'address' => '新浦区', + 'start_year' => 1986, + 'end_year' => 2013, + ], + + [ + 'address' => '海州区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 320706 => + [ + + [ + 'address' => '海州区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 320707 => + [ + + [ + 'address' => '赣榆区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 320711 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1981, + 'end_year' => 1982, + ], + ], + 320721 => + [ + + [ + 'address' => '赣榆县', + 'start_year' => 1983, + 'end_year' => 2013, + ], + ], + 320722 => + [ + + [ + 'address' => '东海县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320723 => + [ + + [ + 'address' => '灌云县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320724 => + [ + + [ + 'address' => '灌南县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 320800 => + [ + + [ + 'address' => '淮安市', + 'start_year' => 2000, + 'end_year' => '', + ], + + [ + 'address' => '淮阴市', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 320802 => + [ + + [ + 'address' => '清河区', + 'start_year' => 1983, + 'end_year' => 2015, + ], + ], + 320803 => + [ + + [ + 'address' => '楚州区', + 'start_year' => 2000, + 'end_year' => 2010, + ], + + [ + 'address' => '淮安区', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 320804 => + [ + + [ + 'address' => '淮阴区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 320811 => + [ + + [ + 'address' => '清浦区', + 'start_year' => 1983, + 'end_year' => 2015, + ], + ], + 320812 => + [ + + [ + 'address' => '清江浦区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 320813 => + [ + + [ + 'address' => '洪泽区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 320821 => + [ + + [ + 'address' => '淮阴县', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 320822 => + [ + + [ + 'address' => '灌南县', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 320823 => + [ + + [ + 'address' => '沭阳县', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 320824 => + [ + + [ + 'address' => '宿迁县', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 320825 => + [ + + [ + 'address' => '泗阳县', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 320826 => + [ + + [ + 'address' => '涟水县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320827 => + [ + + [ + 'address' => '泗洪县', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 320828 => + [ + + [ + 'address' => '淮安县', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 320829 => + [ + + [ + 'address' => '洪泽县', + 'start_year' => 1983, + 'end_year' => 2015, + ], + ], + 320830 => + [ + + [ + 'address' => '盱眙县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320831 => + [ + + [ + 'address' => '金湖县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320881 => + [ + + [ + 'address' => '宿迁市', + 'start_year' => 1995, + 'end_year' => 1995, + ], + ], + 320882 => + [ + + [ + 'address' => '淮安市', + 'start_year' => 1995, + 'end_year' => 1999, + ], + ], + 320900 => + [ + + [ + 'address' => '盐城市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320902 => + [ + + [ + 'address' => '亭湖区', + 'start_year' => 2003, + 'end_year' => '', + ], + + [ + 'address' => '城区', + 'start_year' => 1983, + 'end_year' => 2002, + ], + ], + 320903 => + [ + + [ + 'address' => '盐都区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 320904 => + [ + + [ + 'address' => '大丰区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 320911 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 320921 => + [ + + [ + 'address' => '响水县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320922 => + [ + + [ + 'address' => '滨海县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320923 => + [ + + [ + 'address' => '阜宁县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320924 => + [ + + [ + 'address' => '射阳县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320925 => + [ + + [ + 'address' => '建湖县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 320926 => + [ + + [ + 'address' => '大丰县', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 320927 => + [ + + [ + 'address' => '东台县', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 320928 => + [ + + [ + 'address' => '盐都县', + 'start_year' => 1996, + 'end_year' => 2002, + ], + ], + 320981 => + [ + + [ + 'address' => '东台市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 320982 => + [ + + [ + 'address' => '大丰市', + 'start_year' => 1996, + 'end_year' => 2014, + ], + ], + 321000 => + [ + + [ + 'address' => '扬州市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 321002 => + [ + + [ + 'address' => '广陵区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 321003 => + [ + + [ + 'address' => '邗江区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 321011 => + [ + + [ + 'address' => '维扬区', + 'start_year' => 2002, + 'end_year' => 2010, + ], + + [ + 'address' => '郊区', + 'start_year' => 1984, + 'end_year' => 2001, + ], + ], + 321012 => + [ + + [ + 'address' => '江都区', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 321021 => + [ + + [ + 'address' => '兴化县', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 321022 => + [ + + [ + 'address' => '高邮县', + 'start_year' => 1983, + 'end_year' => 1990, + ], + ], + 321023 => + [ + + [ + 'address' => '宝应县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 321024 => + [ + + [ + 'address' => '靖江县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 321025 => + [ + + [ + 'address' => '泰兴县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 321026 => + [ + + [ + 'address' => '江都县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 321027 => + [ + + [ + 'address' => '邗江县', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 321028 => + [ + + [ + 'address' => '泰县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 321029 => + [ + + [ + 'address' => '仪征县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 321081 => + [ + + [ + 'address' => '仪征市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 321082 => + [ + + [ + 'address' => '泰州市', + 'start_year' => 1995, + 'end_year' => 1995, + ], + ], + 321083 => + [ + + [ + 'address' => '兴化市', + 'start_year' => 1995, + 'end_year' => 1995, + ], + ], + 321084 => + [ + + [ + 'address' => '高邮市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 321085 => + [ + + [ + 'address' => '靖江市', + 'start_year' => 1995, + 'end_year' => 1995, + ], + ], + 321086 => + [ + + [ + 'address' => '泰兴市', + 'start_year' => 1995, + 'end_year' => 1995, + ], + ], + 321087 => + [ + + [ + 'address' => '姜堰市', + 'start_year' => 1995, + 'end_year' => 1995, + ], + ], + 321088 => + [ + + [ + 'address' => '江都市', + 'start_year' => 1995, + 'end_year' => 2010, + ], + ], + 321100 => + [ + + [ + 'address' => '镇江市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 321102 => + [ + + [ + 'address' => '京口区', + 'start_year' => 1984, + 'end_year' => '', + ], + + [ + 'address' => '城区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 321111 => + [ + + [ + 'address' => '润州区', + 'start_year' => 1984, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 321112 => + [ + + [ + 'address' => '丹徒区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 321121 => + [ + + [ + 'address' => '丹徒县', + 'start_year' => 1983, + 'end_year' => 2001, + ], + ], + 321122 => + [ + + [ + 'address' => '丹阳县', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 321123 => + [ + + [ + 'address' => '句容县', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 321124 => + [ + + [ + 'address' => '扬中县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 321181 => + [ + + [ + 'address' => '丹阳市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 321182 => + [ + + [ + 'address' => '扬中市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 321183 => + [ + + [ + 'address' => '句容市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 321200 => + [ + + [ + 'address' => '泰州市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 321201 => + [ + + [ + 'address' => '泰州市', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 321202 => + [ + + [ + 'address' => '海陵区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 321203 => + [ + + [ + 'address' => '高港区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 321204 => + [ + + [ + 'address' => '姜堰区', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 321281 => + [ + + [ + 'address' => '兴化市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 321282 => + [ + + [ + 'address' => '靖江市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 321283 => + [ + + [ + 'address' => '泰兴市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 321284 => + [ + + [ + 'address' => '姜堰市', + 'start_year' => 1996, + 'end_year' => 2011, + ], + ], + 321300 => + [ + + [ + 'address' => '宿迁市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 321301 => + [ + + [ + 'address' => '常熟市', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 321302 => + [ + + [ + 'address' => '宿城区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 321311 => + [ + + [ + 'address' => '宿豫区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 321321 => + [ + + [ + 'address' => '宿豫县', + 'start_year' => 1996, + 'end_year' => 2003, + ], + ], + 321322 => + [ + + [ + 'address' => '沭阳县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 321323 => + [ + + [ + 'address' => '泗阳县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 321324 => + [ + + [ + 'address' => '泗洪县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 322100 => + [ + + [ + 'address' => '徐州地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322121 => + [ + + [ + 'address' => '丰县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322122 => + [ + + [ + 'address' => '沛县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322123 => + [ + + [ + 'address' => '铜山县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322124 => + [ + + [ + 'address' => '睢宁县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322125 => + [ + + [ + 'address' => '邳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322126 => + [ + + [ + 'address' => '新沂县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322127 => + [ + + [ + 'address' => '东海县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322128 => + [ + + [ + 'address' => '赣榆县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322200 => + [ + + [ + 'address' => '淮阴地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322201 => + [ + + [ + 'address' => '清江市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322221 => + [ + + [ + 'address' => '淮阴县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322222 => + [ + + [ + 'address' => '灌云县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322223 => + [ + + [ + 'address' => '灌南县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322224 => + [ + + [ + 'address' => '沭阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322225 => + [ + + [ + 'address' => '宿迁县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322226 => + [ + + [ + 'address' => '泗阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322227 => + [ + + [ + 'address' => '涟水县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322228 => + [ + + [ + 'address' => '泗洪县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322229 => + [ + + [ + 'address' => '淮安县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322230 => + [ + + [ + 'address' => '洪泽县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322231 => + [ + + [ + 'address' => '盱眙县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322232 => + [ + + [ + 'address' => '金湖县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322300 => + [ + + [ + 'address' => '盐城地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322321 => + [ + + [ + 'address' => '响水县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322322 => + [ + + [ + 'address' => '滨海县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322323 => + [ + + [ + 'address' => '阜宁县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322324 => + [ + + [ + 'address' => '射阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322325 => + [ + + [ + 'address' => '建湖县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322326 => + [ + + [ + 'address' => '盐城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322327 => + [ + + [ + 'address' => '大丰县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322328 => + [ + + [ + 'address' => '东台县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322400 => + [ + + [ + 'address' => '扬州地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322401 => + [ + + [ + 'address' => '扬州市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322402 => + [ + + [ + 'address' => '泰州市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322421 => + [ + + [ + 'address' => '兴化县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322422 => + [ + + [ + 'address' => '高邮县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322423 => + [ + + [ + 'address' => '宝应县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322424 => + [ + + [ + 'address' => '靖江县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322425 => + [ + + [ + 'address' => '泰兴县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322426 => + [ + + [ + 'address' => '江都县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322427 => + [ + + [ + 'address' => '邗江县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322428 => + [ + + [ + 'address' => '泰县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322429 => + [ + + [ + 'address' => '仪征县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322500 => + [ + + [ + 'address' => '南通地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322521 => + [ + + [ + 'address' => '海安县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322522 => + [ + + [ + 'address' => '如皋县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322523 => + [ + + [ + 'address' => '如东县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322524 => + [ + + [ + 'address' => '南通县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322525 => + [ + + [ + 'address' => '海门县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322526 => + [ + + [ + 'address' => '启东县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322600 => + [ + + [ + 'address' => '镇江地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322601 => + [ + + [ + 'address' => '镇江市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322621 => + [ + + [ + 'address' => '丹徒县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322622 => + [ + + [ + 'address' => '武进县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322623 => + [ + + [ + 'address' => '丹阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322624 => + [ + + [ + 'address' => '句容县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322625 => + [ + + [ + 'address' => '金坛县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322626 => + [ + + [ + 'address' => '溧水县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322627 => + [ + + [ + 'address' => '高淳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322628 => + [ + + [ + 'address' => '溧阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322629 => + [ + + [ + 'address' => '宜兴县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322630 => + [ + + [ + 'address' => '扬中县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322700 => + [ + + [ + 'address' => '苏州地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322721 => + [ + + [ + 'address' => '江阴县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322722 => + [ + + [ + 'address' => '无锡县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322723 => + [ + + [ + 'address' => '沙洲县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322724 => + [ + + [ + 'address' => '常熟县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322725 => + [ + + [ + 'address' => '太仓县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322726 => + [ + + [ + 'address' => '昆山县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322727 => + [ + + [ + 'address' => '吴县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 322728 => + [ + + [ + 'address' => '吴江县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 329001 => + [ + + [ + 'address' => '泰州市', + 'start_year' => 1984, + 'end_year' => 1994, + ], + ], + 329002 => + [ + + [ + 'address' => '仪征市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 329003 => + [ + + [ + 'address' => '常熟市', + 'start_year' => 1984, + 'end_year' => 1994, + ], + ], + 329004 => + [ + + [ + 'address' => '张家港市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 329005 => + [ + + [ + 'address' => '江阴市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 329006 => + [ + + [ + 'address' => '宿迁市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 329007 => + [ + + [ + 'address' => '丹阳市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 329008 => + [ + + [ + 'address' => '东台市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 329009 => + [ + + [ + 'address' => '兴化市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 329010 => + [ + + [ + 'address' => '淮安市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 329011 => + [ + + [ + 'address' => '宜兴市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 329012 => + [ + + [ + 'address' => '昆山市', + 'start_year' => 1989, + 'end_year' => 1994, + ], + ], + 329013 => + [ + + [ + 'address' => '启东市', + 'start_year' => 1989, + 'end_year' => 1994, + ], + ], + 329014 => + [ + + [ + 'address' => '新沂市', + 'start_year' => 1990, + 'end_year' => 1994, + ], + ], + 329015 => + [ + + [ + 'address' => '溧阳市', + 'start_year' => 1990, + 'end_year' => 1994, + ], + ], + 329016 => + [ + + [ + 'address' => '如皋市', + 'start_year' => 1991, + 'end_year' => 1994, + ], + ], + 329017 => + [ + + [ + 'address' => '高邮市', + 'start_year' => 1991, + 'end_year' => 1994, + ], + ], + 329018 => + [ + + [ + 'address' => '吴江市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 329019 => + [ + + [ + 'address' => '邳州市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 329020 => + [ + + [ + 'address' => '泰兴市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 329021 => + [ + + [ + 'address' => '通州市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 329022 => + [ + + [ + 'address' => '太仓市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 329023 => + [ + + [ + 'address' => '靖江市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 329024 => + [ + + [ + 'address' => '金坛市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 329025 => + [ + + [ + 'address' => '江都市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 329026 => + [ + + [ + 'address' => '海门市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 329027 => + [ + + [ + 'address' => '扬中市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 329028 => + [ + + [ + 'address' => '姜堰市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 330000 => + [ + + [ + 'address' => '浙江省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330100 => + [ + + [ + 'address' => '杭州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330102 => + [ + + [ + 'address' => '上城区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330103 => + [ + + [ + 'address' => '下城区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330104 => + [ + + [ + 'address' => '江干区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330105 => + [ + + [ + 'address' => '拱墅区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330106 => + [ + + [ + 'address' => '西湖区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330107 => + [ + + [ + 'address' => '半山区', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 330108 => + [ + + [ + 'address' => '滨江区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 330109 => + [ + + [ + 'address' => '萧山区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 330110 => + [ + + [ + 'address' => '余杭区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 330111 => + [ + + [ + 'address' => '富阳区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 330112 => + [ + + [ + 'address' => '临安区', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 330121 => + [ + + [ + 'address' => '萧山县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 330122 => + [ + + [ + 'address' => '桐庐县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330123 => + [ + + [ + 'address' => '富阳县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 330124 => + [ + + [ + 'address' => '临安县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 330125 => + [ + + [ + 'address' => '余杭县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 330126 => + [ + + [ + 'address' => '建德县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 330127 => + [ + + [ + 'address' => '淳安县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330181 => + [ + + [ + 'address' => '萧山市', + 'start_year' => 1995, + 'end_year' => 2000, + ], + ], + 330182 => + [ + + [ + 'address' => '建德市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330183 => + [ + + [ + 'address' => '富阳市', + 'start_year' => 1995, + 'end_year' => 2013, + ], + ], + 330184 => + [ + + [ + 'address' => '余杭市', + 'start_year' => 1995, + 'end_year' => 2000, + ], + ], + 330185 => + [ + + [ + 'address' => '临安市', + 'start_year' => 1996, + 'end_year' => 2016, + ], + ], + 330200 => + [ + + [ + 'address' => '宁波市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330202 => + [ + + [ + 'address' => '镇明区', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 330203 => + [ + + [ + 'address' => '海曙区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330204 => + [ + + [ + 'address' => '江东区', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 330205 => + [ + + [ + 'address' => '江北区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330206 => + [ + + [ + 'address' => '北仑区', + 'start_year' => 1987, + 'end_year' => '', + ], + + [ + 'address' => '滨海区', + 'start_year' => 1985, + 'end_year' => 1986, + ], + ], + 330211 => + [ + + [ + 'address' => '镇海区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 330212 => + [ + + [ + 'address' => '鄞州区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 330213 => + [ + + [ + 'address' => '奉化区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 330219 => + [ + + [ + 'address' => '余姚市', + 'start_year' => 1985, + 'end_year' => 1985, + ], + ], + 330221 => + [ + + [ + 'address' => '镇海县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 330222 => + [ + + [ + 'address' => '慈溪县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 330223 => + [ + + [ + 'address' => '余姚县', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 330224 => + [ + + [ + 'address' => '奉化县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 330225 => + [ + + [ + 'address' => '象山县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330226 => + [ + + [ + 'address' => '宁海县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330227 => + [ + + [ + 'address' => '鄞县', + 'start_year' => 1983, + 'end_year' => 2001, + ], + ], + 330281 => + [ + + [ + 'address' => '余姚市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330282 => + [ + + [ + 'address' => '慈溪市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330283 => + [ + + [ + 'address' => '奉化市', + 'start_year' => 1995, + 'end_year' => 2015, + ], + ], + 330300 => + [ + + [ + 'address' => '温州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 330301 => + [ + + [ + 'address' => '东城区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 330302 => + [ + + [ + 'address' => '南城区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '城区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '鹿城区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 330303 => + [ + + [ + 'address' => '西城区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '龙湾区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 330304 => + [ + + [ + 'address' => '瓯海区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 330305 => + [ + + [ + 'address' => '洞头区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 330321 => + [ + + [ + 'address' => '洞头县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + + [ + 'address' => '瓯海县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 330322 => + [ + + [ + 'address' => '永嘉县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + + [ + 'address' => '洞头县', + 'start_year' => 1982, + 'end_year' => 2014, + ], + ], + 330323 => + [ + + [ + 'address' => '乐清县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '瑞安县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + ], + 330324 => + [ + + [ + 'address' => '文成县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + + [ + 'address' => '永嘉县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 330325 => + [ + + [ + 'address' => '平阳县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + + [ + 'address' => '瑞安县', + 'start_year' => 1982, + 'end_year' => 1986, + ], + ], + 330326 => + [ + + [ + 'address' => '乐清县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + + [ + 'address' => '平阳县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 330327 => + [ + + [ + 'address' => '泰顺县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + + [ + 'address' => '苍南县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 330328 => + [ + + [ + 'address' => '文成县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '瓯海县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + ], + 330329 => + [ + + [ + 'address' => '泰顺县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '苍南县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + ], + 330381 => + [ + + [ + 'address' => '瑞安市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330382 => + [ + + [ + 'address' => '乐清市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330400 => + [ + + [ + 'address' => '嘉兴市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330402 => + [ + + [ + 'address' => '南湖区', + 'start_year' => 2005, + 'end_year' => '', + ], + + [ + 'address' => '城区', + 'start_year' => 1983, + 'end_year' => 1992, + ], + + [ + 'address' => '秀城区', + 'start_year' => 1993, + 'end_year' => 2004, + ], + ], + 330411 => + [ + + [ + 'address' => '秀洲区', + 'start_year' => 1999, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1998, + ], + ], + 330421 => + [ + + [ + 'address' => '嘉善县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330422 => + [ + + [ + 'address' => '平湖县', + 'start_year' => 1983, + 'end_year' => 1990, + ], + ], + 330423 => + [ + + [ + 'address' => '海宁县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 330424 => + [ + + [ + 'address' => '海盐县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330425 => + [ + + [ + 'address' => '桐乡县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 330481 => + [ + + [ + 'address' => '海宁市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330482 => + [ + + [ + 'address' => '平湖市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330483 => + [ + + [ + 'address' => '桐乡市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330500 => + [ + + [ + 'address' => '湖州市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330502 => + [ + + [ + 'address' => '吴兴区', + 'start_year' => 2003, + 'end_year' => '', + ], + + [ + 'address' => '城区', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 330503 => + [ + + [ + 'address' => '南浔区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 330511 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 330521 => + [ + + [ + 'address' => '德清县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330522 => + [ + + [ + 'address' => '长兴县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330523 => + [ + + [ + 'address' => '安吉县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330600 => + [ + + [ + 'address' => '绍兴市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330602 => + [ + + [ + 'address' => '越城区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330603 => + [ + + [ + 'address' => '柯桥区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 330604 => + [ + + [ + 'address' => '上虞区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 330621 => + [ + + [ + 'address' => '绍兴县', + 'start_year' => 1983, + 'end_year' => 2012, + ], + ], + 330622 => + [ + + [ + 'address' => '上虞县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 330623 => + [ + + [ + 'address' => '嵊县', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 330624 => + [ + + [ + 'address' => '新昌县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 330625 => + [ + + [ + 'address' => '诸暨县', + 'start_year' => 1983, + 'end_year' => 1988, + ], + ], + 330681 => + [ + + [ + 'address' => '诸暨市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330682 => + [ + + [ + 'address' => '上虞市', + 'start_year' => 1995, + 'end_year' => 2012, + ], + ], + 330683 => + [ + + [ + 'address' => '嵊州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330700 => + [ + + [ + 'address' => '金华市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 330701 => + [ + + [ + 'address' => '兰溪市', + 'start_year' => 1985, + 'end_year' => 1985, + ], + ], + 330702 => + [ + + [ + 'address' => '婺城区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 330703 => + [ + + [ + 'address' => '金东区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 330721 => + [ + + [ + 'address' => '金华县', + 'start_year' => 1985, + 'end_year' => 1999, + ], + ], + 330722 => + [ + + [ + 'address' => '永康县', + 'start_year' => 1985, + 'end_year' => 1991, + ], + ], + 330723 => + [ + + [ + 'address' => '武义县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 330724 => + [ + + [ + 'address' => '东阳县', + 'start_year' => 1985, + 'end_year' => 1987, + ], + ], + 330725 => + [ + + [ + 'address' => '义乌县', + 'start_year' => 1985, + 'end_year' => 1987, + ], + ], + 330726 => + [ + + [ + 'address' => '浦江县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 330727 => + [ + + [ + 'address' => '磐安县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 330781 => + [ + + [ + 'address' => '兰溪市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330782 => + [ + + [ + 'address' => '义乌市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330783 => + [ + + [ + 'address' => '东阳市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330784 => + [ + + [ + 'address' => '永康市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330800 => + [ + + [ + 'address' => '衢州市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 330802 => + [ + + [ + 'address' => '柯城区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 330803 => + [ + + [ + 'address' => '衢江区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 330821 => + [ + + [ + 'address' => '衢县', + 'start_year' => 1985, + 'end_year' => 2000, + ], + ], + 330822 => + [ + + [ + 'address' => '常山县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 330823 => + [ + + [ + 'address' => '江山县', + 'start_year' => 1985, + 'end_year' => 1986, + ], + ], + 330824 => + [ + + [ + 'address' => '开化县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 330825 => + [ + + [ + 'address' => '龙游县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 330881 => + [ + + [ + 'address' => '江山市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 330900 => + [ + + [ + 'address' => '舟山市', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 330902 => + [ + + [ + 'address' => '定海区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 330903 => + [ + + [ + 'address' => '普陀区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 330921 => + [ + + [ + 'address' => '岱山县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 330922 => + [ + + [ + 'address' => '嵊泗县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 331000 => + [ + + [ + 'address' => '台州市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 331002 => + [ + + [ + 'address' => '椒江区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 331003 => + [ + + [ + 'address' => '黄岩区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 331004 => + [ + + [ + 'address' => '路桥区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 331021 => + [ + + [ + 'address' => '玉环县', + 'start_year' => 1994, + 'end_year' => 2016, + ], + ], + 331022 => + [ + + [ + 'address' => '三门县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 331023 => + [ + + [ + 'address' => '天台县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 331024 => + [ + + [ + 'address' => '仙居县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 331081 => + [ + + [ + 'address' => '温岭市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 331082 => + [ + + [ + 'address' => '临海市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 331083 => + [ + + [ + 'address' => '玉环市', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 331100 => + [ + + [ + 'address' => '丽水市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 331102 => + [ + + [ + 'address' => '莲都区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 331121 => + [ + + [ + 'address' => '青田县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 331122 => + [ + + [ + 'address' => '缙云县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 331123 => + [ + + [ + 'address' => '遂昌县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 331124 => + [ + + [ + 'address' => '松阳县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 331125 => + [ + + [ + 'address' => '云和县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 331126 => + [ + + [ + 'address' => '庆元县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 331127 => + [ + + [ + 'address' => '景宁畲族自治县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 331181 => + [ + + [ + 'address' => '龙泉市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 332100 => + [ + + [ + 'address' => '嘉兴地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332101 => + [ + + [ + 'address' => '湖州市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332102 => + [ + + [ + 'address' => '嘉兴市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332121 => + [ + + [ + 'address' => '嘉兴县', + 'start_year' => '', + 'end_year' => 1980, + ], + + [ + 'address' => '嘉善县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 332122 => + [ + + [ + 'address' => '嘉善县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '平湖县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 332123 => + [ + + [ + 'address' => '平湖县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '海宁县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 332124 => + [ + + [ + 'address' => '海宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '海盐县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 332125 => + [ + + [ + 'address' => '桐乡县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '海盐县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332126 => + [ + + [ + 'address' => '德清县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '桐乡县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332127 => + [ + + [ + 'address' => '德清县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '长兴县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 332128 => + [ + + [ + 'address' => '吴兴县', + 'start_year' => '', + 'end_year' => 1980, + ], + + [ + 'address' => '安吉县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 332129 => + [ + + [ + 'address' => '长兴县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332130 => + [ + + [ + 'address' => '安吉县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332200 => + [ + + [ + 'address' => '宁波地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332221 => + [ + + [ + 'address' => '慈溪县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332222 => + [ + + [ + 'address' => '余姚县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332223 => + [ + + [ + 'address' => '奉化县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332224 => + [ + + [ + 'address' => '象山县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332225 => + [ + + [ + 'address' => '宁海县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332226 => + [ + + [ + 'address' => '鄞县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332227 => + [ + + [ + 'address' => '镇海县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332300 => + [ + + [ + 'address' => '绍兴地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332301 => + [ + + [ + 'address' => '绍兴市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 332321 => + [ + + [ + 'address' => '上虞县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '绍兴县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 332322 => + [ + + [ + 'address' => '上虞县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '嵊县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 332323 => + [ + + [ + 'address' => '嵊县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '新昌县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 332324 => + [ + + [ + 'address' => '新昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '诸暨县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 332325 => + [ + + [ + 'address' => '诸暨县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332400 => + [ + + [ + 'address' => '温州地区', + 'start_year' => '', + 'end_year' => 1980, + ], + + [ + 'address' => '金华地区', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 332401 => + [ + + [ + 'address' => '金华市', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 332402 => + [ + + [ + 'address' => '衢州市', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 332421 => + [ + + [ + 'address' => '兰溪县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '洞头县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 332422 => + [ + + [ + 'address' => '永嘉县', + 'start_year' => '', + 'end_year' => 1980, + ], + + [ + 'address' => '永康县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 332423 => + [ + + [ + 'address' => '武义县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '瑞安县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 332424 => + [ + + [ + 'address' => '东阳县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '文成县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 332425 => + [ + + [ + 'address' => '义乌县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '平阳县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 332426 => + [ + + [ + 'address' => '乐清县', + 'start_year' => '', + 'end_year' => 1980, + ], + + [ + 'address' => '浦江县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 332427 => + [ + + [ + 'address' => '常山县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '泰顺县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 332428 => + [ + + [ + 'address' => '江山县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 332429 => + [ + + [ + 'address' => '开化县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 332430 => + [ + + [ + 'address' => '龙游县', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 332431 => + [ + + [ + 'address' => '磐安县', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 332500 => + [ + + [ + 'address' => '丽水地区', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '金华地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332501 => + [ + + [ + 'address' => '丽水市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + + [ + 'address' => '金华市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332502 => + [ + + [ + 'address' => '衢州市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '龙泉市', + 'start_year' => 1990, + 'end_year' => 1994, + ], + ], + 332521 => + [ + + [ + 'address' => '丽水县', + 'start_year' => 1982, + 'end_year' => 1985, + ], + + [ + 'address' => '金华县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 332522 => + [ + + [ + 'address' => '兰溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '青田县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 332523 => + [ + + [ + 'address' => '云和县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '永康县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332524 => + [ + + [ + 'address' => '武义县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '龙泉县', + 'start_year' => 1982, + 'end_year' => 1989, + ], + ], + 332525 => + [ + + [ + 'address' => '东阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '庆元县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 332526 => + [ + + [ + 'address' => '义乌县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '缙云县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 332527 => + [ + + [ + 'address' => '浦江县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '遂昌县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 332528 => + [ + + [ + 'address' => '松阳县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '衢县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 332529 => + [ + + [ + 'address' => '常山县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '景宁畲族自治县', + 'start_year' => 1984, + 'end_year' => 1999, + ], + ], + 332530 => + [ + + [ + 'address' => '江山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332531 => + [ + + [ + 'address' => '开化县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332581 => + [ + + [ + 'address' => '龙泉市', + 'start_year' => 1995, + 'end_year' => 1999, + ], + ], + 332582 => + [ + + [ + 'address' => '丽水市', + 'start_year' => 1995, + 'end_year' => 1999, + ], + ], + 332600 => + [ + + [ + 'address' => '丽水地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '台州地区', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 332601 => + [ + + [ + 'address' => '椒江市', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 332602 => + [ + + [ + 'address' => '临海市', + 'start_year' => 1986, + 'end_year' => 1993, + ], + ], + 332603 => + [ + + [ + 'address' => '黄岩市', + 'start_year' => 1989, + 'end_year' => 1993, + ], + ], + 332621 => + [ + + [ + 'address' => '临海县', + 'start_year' => 1982, + 'end_year' => 1985, + ], + + [ + 'address' => '丽水县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332622 => + [ + + [ + 'address' => '青田县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '黄岩县', + 'start_year' => 1982, + 'end_year' => 1988, + ], + ], + 332623 => + [ + + [ + 'address' => '云和县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '温岭县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 332624 => + [ + + [ + 'address' => '仙居县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + + [ + 'address' => '龙泉县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332625 => + [ + + [ + 'address' => '天台县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + + [ + 'address' => '庆元县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332626 => + [ + + [ + 'address' => '三门县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + + [ + 'address' => '缙云县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332627 => + [ + + [ + 'address' => '玉环县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + + [ + 'address' => '遂昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332700 => + [ + + [ + 'address' => '台州地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '舟山地区', + 'start_year' => 1982, + 'end_year' => 1986, + ], + ], + 332701 => + [ + + [ + 'address' => '椒江市', + 'start_year' => 1981, + 'end_year' => 1981, + ], + ], + 332721 => + [ + + [ + 'address' => '临海县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '定海县', + 'start_year' => 1982, + 'end_year' => 1986, + ], + ], + 332722 => + [ + + [ + 'address' => '普陀县', + 'start_year' => 1982, + 'end_year' => 1986, + ], + + [ + 'address' => '黄岩县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332723 => + [ + + [ + 'address' => '岱山县', + 'start_year' => 1982, + 'end_year' => 1986, + ], + + [ + 'address' => '温岭县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332724 => + [ + + [ + 'address' => '仙居县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '嵊泗县', + 'start_year' => 1982, + 'end_year' => 1986, + ], + ], + 332725 => + [ + + [ + 'address' => '天台县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332726 => + [ + + [ + 'address' => '三门县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332727 => + [ + + [ + 'address' => '玉环县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332800 => + [ + + [ + 'address' => '舟山地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332821 => + [ + + [ + 'address' => '定海县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332822 => + [ + + [ + 'address' => '普陀县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332823 => + [ + + [ + 'address' => '岱山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 332824 => + [ + + [ + 'address' => '嵊泗县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 339001 => + [ + + [ + 'address' => '余姚市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 339002 => + [ + + [ + 'address' => '海宁市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 339003 => + [ + + [ + 'address' => '兰溪市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 339004 => + [ + + [ + 'address' => '瑞安市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 339005 => + [ + + [ + 'address' => '萧山市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 339006 => + [ + + [ + 'address' => '江山市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 339007 => + [ + + [ + 'address' => '义乌市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + + [ + 'address' => '安徽省', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 339008 => + [ + + [ + 'address' => '东阳市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + + [ + 'address' => '合肥市', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 339009 => + [ + + [ + 'address' => '慈溪市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 339010 => + [ + + [ + 'address' => '奉化市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 339011 => + [ + + [ + 'address' => '诸暨市', + 'start_year' => 1989, + 'end_year' => 1994, + ], + ], + 339012 => + [ + + [ + 'address' => '平湖市', + 'start_year' => 1991, + 'end_year' => 1994, + ], + ], + 339013 => + [ + + [ + 'address' => '建德市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 339014 => + [ + + [ + 'address' => '永康市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 339015 => + [ + + [ + 'address' => '上虞市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 339016 => + [ + + [ + 'address' => '桐乡市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 339017 => + [ + + [ + 'address' => '乐清市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 339018 => + [ + + [ + 'address' => '临海市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 339019 => + [ + + [ + 'address' => '富阳市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 339020 => + [ + + [ + 'address' => '温岭市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 339021 => + [ + + [ + 'address' => '余杭市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 340000 => + [ + + [ + 'address' => '安徽省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340100 => + [ + + [ + 'address' => '合肥市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340102 => + [ + + [ + 'address' => '东市区', + 'start_year' => '', + 'end_year' => 2001, + ], + + [ + 'address' => '瑶海区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 340103 => + [ + + [ + 'address' => '中市区', + 'start_year' => '', + 'end_year' => 2001, + ], + + [ + 'address' => '庐阳区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 340104 => + [ + + [ + 'address' => '蜀山区', + 'start_year' => 2002, + 'end_year' => '', + ], + + [ + 'address' => '西市区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 340111 => + [ + + [ + 'address' => '包河区', + 'start_year' => 2002, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 340121 => + [ + + [ + 'address' => '长丰县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340122 => + [ + + [ + 'address' => '肥东县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 340123 => + [ + + [ + 'address' => '肥西县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340124 => + [ + + [ + 'address' => '庐江县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 340181 => + [ + + [ + 'address' => '巢湖市', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 340200 => + [ + + [ + 'address' => '芜湖市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340202 => + [ + + [ + 'address' => '镜湖区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340203 => + [ + + [ + 'address' => '弋江区', + 'start_year' => 2005, + 'end_year' => '', + ], + + [ + 'address' => '马塘区', + 'start_year' => '', + 'end_year' => 2004, + ], + ], + 340204 => + [ + + [ + 'address' => '新芜区', + 'start_year' => '', + 'end_year' => 2004, + ], + ], + 340205 => + [ + + [ + 'address' => '裕溪口区', + 'start_year' => '', + 'end_year' => 1989, + ], + + [ + 'address' => '鸠江区', + 'start_year' => 1990, + 'end_year' => 2004, + ], + ], + 340206 => + [ + + [ + 'address' => '四褐山区', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 340207 => + [ + + [ + 'address' => '鸠江区', + 'start_year' => 2005, + 'end_year' => '', + ], + ], + 340208 => + [ + + [ + 'address' => '三山区', + 'start_year' => 2005, + 'end_year' => '', + ], + ], + 340211 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 340221 => + [ + + [ + 'address' => '芜湖县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340222 => + [ + + [ + 'address' => '繁昌县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340223 => + [ + + [ + 'address' => '南陵县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340224 => + [ + + [ + 'address' => '青阳县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 340225 => + [ + + [ + 'address' => '无为县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 340300 => + [ + + [ + 'address' => '蚌埠市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340302 => + [ + + [ + 'address' => '东市区', + 'start_year' => '', + 'end_year' => 2003, + ], + + [ + 'address' => '龙子湖区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 340303 => + [ + + [ + 'address' => '中市区', + 'start_year' => '', + 'end_year' => 2003, + ], + + [ + 'address' => '蚌山区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 340304 => + [ + + [ + 'address' => '禹会区', + 'start_year' => 2004, + 'end_year' => '', + ], + + [ + 'address' => '西市区', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 340311 => + [ + + [ + 'address' => '淮上区', + 'start_year' => 2004, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 340321 => + [ + + [ + 'address' => '怀远县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 340322 => + [ + + [ + 'address' => '五河县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 340323 => + [ + + [ + 'address' => '固镇县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 340400 => + [ + + [ + 'address' => '淮南市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340402 => + [ + + [ + 'address' => '大通区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340403 => + [ + + [ + 'address' => '田家庵区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340404 => + [ + + [ + 'address' => '谢家集区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340405 => + [ + + [ + 'address' => '八公山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340406 => + [ + + [ + 'address' => '潘集区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340421 => + [ + + [ + 'address' => '凤台县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340422 => + [ + + [ + 'address' => '寿县', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 340500 => + [ + + [ + 'address' => '马鞍山市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340502 => + [ + + [ + 'address' => '金家庄区', + 'start_year' => '', + 'end_year' => 2011, + ], + ], + 340503 => + [ + + [ + 'address' => '花山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340504 => + [ + + [ + 'address' => '雨山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340505 => + [ + + [ + 'address' => '向山区', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 340506 => + [ + + [ + 'address' => '博望区', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 340511 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 340521 => + [ + + [ + 'address' => '当涂县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340522 => + [ + + [ + 'address' => '含山县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 340523 => + [ + + [ + 'address' => '和县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 340600 => + [ + + [ + 'address' => '淮北市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340602 => + [ + + [ + 'address' => '杜集区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340603 => + [ + + [ + 'address' => '相山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340604 => + [ + + [ + 'address' => '烈山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340611 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 340621 => + [ + + [ + 'address' => '濉溪县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340700 => + [ + + [ + 'address' => '铜陵市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340702 => + [ + + [ + 'address' => '铜官山区', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 340703 => + [ + + [ + 'address' => '狮子山区', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 340704 => + [ + + [ + 'address' => '铜山区', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 340705 => + [ + + [ + 'address' => '铜官区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 340706 => + [ + + [ + 'address' => '义安区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 340711 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340721 => + [ + + [ + 'address' => '铜陵县', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 340722 => + [ + + [ + 'address' => '枞阳县', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 340800 => + [ + + [ + 'address' => '安庆市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340802 => + [ + + [ + 'address' => '迎江区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340803 => + [ + + [ + 'address' => '大观区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 340811 => + [ + + [ + 'address' => '宜秀区', + 'start_year' => 2005, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 2004, + ], + ], + 340821 => + [ + + [ + 'address' => '桐城县', + 'start_year' => 1988, + 'end_year' => 1995, + ], + ], + 340822 => + [ + + [ + 'address' => '怀宁县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 340823 => + [ + + [ + 'address' => '枞阳县', + 'start_year' => 1988, + 'end_year' => 2014, + ], + ], + 340824 => + [ + + [ + 'address' => '潜山县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 340825 => + [ + + [ + 'address' => '太湖县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 340826 => + [ + + [ + 'address' => '宿松县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 340827 => + [ + + [ + 'address' => '望江县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 340828 => + [ + + [ + 'address' => '岳西县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 340881 => + [ + + [ + 'address' => '桐城市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 340901 => + [ + + [ + 'address' => '黄山市', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 341000 => + [ + + [ + 'address' => '黄山市', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 341002 => + [ + + [ + 'address' => '屯溪区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 341003 => + [ + + [ + 'address' => '黄山区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 341004 => + [ + + [ + 'address' => '徽州区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 341021 => + [ + + [ + 'address' => '歙县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 341022 => + [ + + [ + 'address' => '休宁县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 341023 => + [ + + [ + 'address' => '黟县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 341024 => + [ + + [ + 'address' => '祁门县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 341100 => + [ + + [ + 'address' => '滁州市', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 341102 => + [ + + [ + 'address' => '琅琊区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 341103 => + [ + + [ + 'address' => '南谯区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 341121 => + [ + + [ + 'address' => '天长县', + 'start_year' => 1992, + 'end_year' => 1992, + ], + ], + 341122 => + [ + + [ + 'address' => '来安县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 341124 => + [ + + [ + 'address' => '全椒县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 341125 => + [ + + [ + 'address' => '定远县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 341126 => + [ + + [ + 'address' => '凤阳县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 341127 => + [ + + [ + 'address' => '嘉山县', + 'start_year' => 1992, + 'end_year' => 1993, + ], + ], + 341181 => + [ + + [ + 'address' => '天长市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 341182 => + [ + + [ + 'address' => '明光市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 341200 => + [ + + [ + 'address' => '阜阳市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 341202 => + [ + + [ + 'address' => '颍州区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 341203 => + [ + + [ + 'address' => '颍东区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 341204 => + [ + + [ + 'address' => '颍泉区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 341221 => + [ + + [ + 'address' => '临泉县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 341222 => + [ + + [ + 'address' => '太和县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 341223 => + [ + + [ + 'address' => '涡阳县', + 'start_year' => 1996, + 'end_year' => 1999, + ], + ], + 341224 => + [ + + [ + 'address' => '蒙城县', + 'start_year' => 1996, + 'end_year' => 1999, + ], + ], + 341225 => + [ + + [ + 'address' => '阜南县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 341226 => + [ + + [ + 'address' => '颍上县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 341227 => + [ + + [ + 'address' => '利辛县', + 'start_year' => 1996, + 'end_year' => 1999, + ], + ], + 341281 => + [ + + [ + 'address' => '亳州市', + 'start_year' => 1996, + 'end_year' => 1999, + ], + ], + 341282 => + [ + + [ + 'address' => '界首市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 341300 => + [ + + [ + 'address' => '宿州市', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 341302 => + [ + + [ + 'address' => '埇桥区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 341321 => + [ + + [ + 'address' => '砀山县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 341322 => + [ + + [ + 'address' => '萧县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 341323 => + [ + + [ + 'address' => '灵璧县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 341324 => + [ + + [ + 'address' => '泗县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 341400 => + [ + + [ + 'address' => '巢湖市', + 'start_year' => 1999, + 'end_year' => 2010, + ], + ], + 341402 => + [ + + [ + 'address' => '居巢区', + 'start_year' => 1999, + 'end_year' => 2010, + ], + ], + 341421 => + [ + + [ + 'address' => '庐江县', + 'start_year' => 1999, + 'end_year' => 2010, + ], + ], + 341422 => + [ + + [ + 'address' => '无为县', + 'start_year' => 1999, + 'end_year' => 2010, + ], + ], + 341423 => + [ + + [ + 'address' => '含山县', + 'start_year' => 1999, + 'end_year' => 2010, + ], + ], + 341424 => + [ + + [ + 'address' => '和县', + 'start_year' => 1999, + 'end_year' => 2010, + ], + ], + 341500 => + [ + + [ + 'address' => '六安市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 341502 => + [ + + [ + 'address' => '金安区', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 341503 => + [ + + [ + 'address' => '裕安区', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 341504 => + [ + + [ + 'address' => '叶集区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 341521 => + [ + + [ + 'address' => '寿县', + 'start_year' => 1999, + 'end_year' => 2014, + ], + ], + 341522 => + [ + + [ + 'address' => '霍邱县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 341523 => + [ + + [ + 'address' => '舒城县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 341524 => + [ + + [ + 'address' => '金寨县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 341525 => + [ + + [ + 'address' => '霍山县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 341600 => + [ + + [ + 'address' => '亳州市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341602 => + [ + + [ + 'address' => '谯城区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341621 => + [ + + [ + 'address' => '涡阳县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341622 => + [ + + [ + 'address' => '蒙城县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341623 => + [ + + [ + 'address' => '利辛县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341700 => + [ + + [ + 'address' => '池州市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341702 => + [ + + [ + 'address' => '贵池区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341721 => + [ + + [ + 'address' => '东至县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341722 => + [ + + [ + 'address' => '石台县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341723 => + [ + + [ + 'address' => '青阳县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341800 => + [ + + [ + 'address' => '宣城市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341802 => + [ + + [ + 'address' => '宣州区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341821 => + [ + + [ + 'address' => '郎溪县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341822 => + [ + + [ + 'address' => '广德县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341823 => + [ + + [ + 'address' => '泾县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341824 => + [ + + [ + 'address' => '绩溪县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341825 => + [ + + [ + 'address' => '旌德县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 341881 => + [ + + [ + 'address' => '宁国市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 342100 => + [ + + [ + 'address' => '阜阳地区', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 342101 => + [ + + [ + 'address' => '阜阳市', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 342102 => + [ + + [ + 'address' => '亳州市', + 'start_year' => 1986, + 'end_year' => 1995, + ], + ], + 342103 => + [ + + [ + 'address' => '界首市', + 'start_year' => 1989, + 'end_year' => 1995, + ], + ], + 342121 => + [ + + [ + 'address' => '阜阳县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 342122 => + [ + + [ + 'address' => '临泉县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 342123 => + [ + + [ + 'address' => '太和县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 342124 => + [ + + [ + 'address' => '涡阳县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 342125 => + [ + + [ + 'address' => '蒙城县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 342126 => + [ + + [ + 'address' => '亳县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 342127 => + [ + + [ + 'address' => '阜南县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 342128 => + [ + + [ + 'address' => '颍上县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 342129 => + [ + + [ + 'address' => '界首县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 342130 => + [ + + [ + 'address' => '利辛县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 342200 => + [ + + [ + 'address' => '宿县地区', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 342201 => + [ + + [ + 'address' => '宿州市', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 342221 => + [ + + [ + 'address' => '砀山县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 342222 => + [ + + [ + 'address' => '萧县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 342223 => + [ + + [ + 'address' => '宿县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 342224 => + [ + + [ + 'address' => '灵璧县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 342225 => + [ + + [ + 'address' => '泗县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 342226 => + [ + + [ + 'address' => '怀远县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 342227 => + [ + + [ + 'address' => '五河县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 342228 => + [ + + [ + 'address' => '固镇县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 342300 => + [ + + [ + 'address' => '滁县地区', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 342301 => + [ + + [ + 'address' => '滁州市', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 342321 => + [ + + [ + 'address' => '天长县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 342322 => + [ + + [ + 'address' => '来安县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 342323 => + [ + + [ + 'address' => '滁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 342324 => + [ + + [ + 'address' => '全椒县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 342325 => + [ + + [ + 'address' => '定远县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 342326 => + [ + + [ + 'address' => '凤阳县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 342327 => + [ + + [ + 'address' => '嘉山县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 342400 => + [ + + [ + 'address' => '六安地区', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342401 => + [ + + [ + 'address' => '六安市', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342421 => + [ + + [ + 'address' => '六安县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 342422 => + [ + + [ + 'address' => '寿县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342423 => + [ + + [ + 'address' => '霍邱县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342424 => + [ + + [ + 'address' => '肥西县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 342425 => + [ + + [ + 'address' => '舒城县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342426 => + [ + + [ + 'address' => '金寨县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342427 => + [ + + [ + 'address' => '霍山县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342500 => + [ + + [ + 'address' => '宣城地区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 342501 => + [ + + [ + 'address' => '宣城市', + 'start_year' => 1987, + 'end_year' => 1999, + ], + ], + 342502 => + [ + + [ + 'address' => '宁国市', + 'start_year' => 1997, + 'end_year' => 1999, + ], + ], + 342521 => + [ + + [ + 'address' => '宣城县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 342522 => + [ + + [ + 'address' => '郎溪县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 342523 => + [ + + [ + 'address' => '广德县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 342524 => + [ + + [ + 'address' => '宁国县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 342525 => + [ + + [ + 'address' => '当涂县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 342526 => + [ + + [ + 'address' => '繁昌县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 342527 => + [ + + [ + 'address' => '南陵县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 342528 => + [ + + [ + 'address' => '青阳县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 342529 => + [ + + [ + 'address' => '泾县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 342530 => + [ + + [ + 'address' => '旌德县', + 'start_year' => 1987, + 'end_year' => 1999, + ], + ], + 342531 => + [ + + [ + 'address' => '绩溪县', + 'start_year' => 1987, + 'end_year' => 1999, + ], + ], + 342600 => + [ + + [ + 'address' => '巢湖地区', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342601 => + [ + + [ + 'address' => '巢湖市', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 342621 => + [ + + [ + 'address' => '肥东县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 342622 => + [ + + [ + 'address' => '庐江县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342623 => + [ + + [ + 'address' => '无为县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342624 => + [ + + [ + 'address' => '巢县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 342625 => + [ + + [ + 'address' => '含山县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342626 => + [ + + [ + 'address' => '和县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 342700 => + [ + + [ + 'address' => '徽州地区', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 342701 => + [ + + [ + 'address' => '屯溪市', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 342721 => + [ + + [ + 'address' => '绩溪县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 342722 => + [ + + [ + 'address' => '旌德县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 342723 => + [ + + [ + 'address' => '歙县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 342724 => + [ + + [ + 'address' => '休宁县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 342725 => + [ + + [ + 'address' => '黟县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 342726 => + [ + + [ + 'address' => '祁门县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 342727 => + [ + + [ + 'address' => '太平县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 342728 => + [ + + [ + 'address' => '石台县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 342800 => + [ + + [ + 'address' => '安庆地区', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 342821 => + [ + + [ + 'address' => '怀宁县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 342822 => + [ + + [ + 'address' => '桐城县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 342823 => + [ + + [ + 'address' => '枞阳县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 342824 => + [ + + [ + 'address' => '潜山县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 342825 => + [ + + [ + 'address' => '太湖县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 342826 => + [ + + [ + 'address' => '宿松县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 342827 => + [ + + [ + 'address' => '望江县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 342828 => + [ + + [ + 'address' => '岳西县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 342829 => + [ + + [ + 'address' => '东至县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 342830 => + [ + + [ + 'address' => '贵池县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 342831 => + [ + + [ + 'address' => '石台县', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 342900 => + [ + + [ + 'address' => '池州地区', + 'start_year' => 1988, + 'end_year' => 1999, + ], + ], + 342901 => + [ + + [ + 'address' => '贵池市', + 'start_year' => 1988, + 'end_year' => 1999, + ], + ], + 342921 => + [ + + [ + 'address' => '东至县', + 'start_year' => 1988, + 'end_year' => 1999, + ], + ], + 342922 => + [ + + [ + 'address' => '石台县', + 'start_year' => 1988, + 'end_year' => 1999, + ], + ], + 342923 => + [ + + [ + 'address' => '青阳县', + 'start_year' => 1988, + 'end_year' => 1999, + ], + ], + 349001 => + [ + + [ + 'address' => '天长市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 349002 => + [ + + [ + 'address' => '明光市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 350000 => + [ + + [ + 'address' => '福建省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 350100 => + [ + + [ + 'address' => '福州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 350102 => + [ + + [ + 'address' => '鼓楼区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 350103 => + [ + + [ + 'address' => '台江区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 350104 => + [ + + [ + 'address' => '仓山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 350105 => + [ + + [ + 'address' => '马尾区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 350111 => + [ + + [ + 'address' => '晋安区', + 'start_year' => 1995, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 350112 => + [ + + [ + 'address' => '长乐区', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 350121 => + [ + + [ + 'address' => '闽侯县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 350122 => + [ + + [ + 'address' => '连江县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350123 => + [ + + [ + 'address' => '罗源县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350124 => + [ + + [ + 'address' => '闽清县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350125 => + [ + + [ + 'address' => '永泰县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350126 => + [ + + [ + 'address' => '长乐县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 350127 => + [ + + [ + 'address' => '福清县', + 'start_year' => 1983, + 'end_year' => 1989, + ], + ], + 350128 => + [ + + [ + 'address' => '平潭县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350181 => + [ + + [ + 'address' => '福清市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 350182 => + [ + + [ + 'address' => '长乐市', + 'start_year' => 1995, + 'end_year' => 2016, + ], + ], + 350200 => + [ + + [ + 'address' => '厦门市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 350202 => + [ + + [ + 'address' => '鼓浪屿区', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 350203 => + [ + + [ + 'address' => '思明区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 350204 => + [ + + [ + 'address' => '开元区', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 350205 => + [ + + [ + 'address' => '杏林区', + 'start_year' => '', + 'end_year' => 2002, + ], + + [ + 'address' => '海沧区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 350206 => + [ + + [ + 'address' => '湖里区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 350211 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1986, + ], + + [ + 'address' => '集美区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 350212 => + [ + + [ + 'address' => '同安区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 350213 => + [ + + [ + 'address' => '翔安区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 350221 => + [ + + [ + 'address' => '同安县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 350300 => + [ + + [ + 'address' => '莆田市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350302 => + [ + + [ + 'address' => '城厢区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350303 => + [ + + [ + 'address' => '涵江区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350304 => + [ + + [ + 'address' => '荔城区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 350305 => + [ + + [ + 'address' => '秀屿区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 350321 => + [ + + [ + 'address' => '莆田县', + 'start_year' => 1983, + 'end_year' => 2001, + ], + ], + 350322 => + [ + + [ + 'address' => '仙游县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350400 => + [ + + [ + 'address' => '三明市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350402 => + [ + + [ + 'address' => '梅列区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350403 => + [ + + [ + 'address' => '三元区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350420 => + [ + + [ + 'address' => '永安市', + 'start_year' => 1985, + 'end_year' => 1985, + ], + ], + 350421 => + [ + + [ + 'address' => '明溪县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350422 => + [ + + [ + 'address' => '永安县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 350423 => + [ + + [ + 'address' => '清流县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350424 => + [ + + [ + 'address' => '宁化县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350425 => + [ + + [ + 'address' => '大田县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350426 => + [ + + [ + 'address' => '尤溪县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350427 => + [ + + [ + 'address' => '沙县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350428 => + [ + + [ + 'address' => '将乐县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350429 => + [ + + [ + 'address' => '泰宁县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350430 => + [ + + [ + 'address' => '建宁县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 350481 => + [ + + [ + 'address' => '永安市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 350500 => + [ + + [ + 'address' => '泉州市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350501 => + [ + + [ + 'address' => '永安市', + 'start_year' => 1984, + 'end_year' => 1984, + ], + ], + 350502 => + [ + + [ + 'address' => '鲤城区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350503 => + [ + + [ + 'address' => '丰泽区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 350504 => + [ + + [ + 'address' => '洛江区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 350505 => + [ + + [ + 'address' => '泉港区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 350521 => + [ + + [ + 'address' => '惠安县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350522 => + [ + + [ + 'address' => '晋江县', + 'start_year' => 1985, + 'end_year' => 1991, + ], + ], + 350523 => + [ + + [ + 'address' => '南安县', + 'start_year' => 1985, + 'end_year' => 1992, + ], + ], + 350524 => + [ + + [ + 'address' => '安溪县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350525 => + [ + + [ + 'address' => '永春县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350526 => + [ + + [ + 'address' => '德化县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350527 => + [ + + [ + 'address' => '金门县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350581 => + [ + + [ + 'address' => '石狮市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 350582 => + [ + + [ + 'address' => '晋江市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 350583 => + [ + + [ + 'address' => '南安市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 350600 => + [ + + [ + 'address' => '漳州市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350602 => + [ + + [ + 'address' => '芗城区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350603 => + [ + + [ + 'address' => '龙文区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 350621 => + [ + + [ + 'address' => '龙海县', + 'start_year' => 1985, + 'end_year' => 1992, + ], + ], + 350622 => + [ + + [ + 'address' => '云霄县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350623 => + [ + + [ + 'address' => '漳浦县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350624 => + [ + + [ + 'address' => '诏安县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350625 => + [ + + [ + 'address' => '长泰县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350626 => + [ + + [ + 'address' => '东山县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350627 => + [ + + [ + 'address' => '南靖县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350628 => + [ + + [ + 'address' => '平和县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350629 => + [ + + [ + 'address' => '华安县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 350681 => + [ + + [ + 'address' => '龙海市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 350700 => + [ + + [ + 'address' => '南平市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 350702 => + [ + + [ + 'address' => '延平区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 350703 => + [ + + [ + 'address' => '建阳区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 350721 => + [ + + [ + 'address' => '顺昌县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 350722 => + [ + + [ + 'address' => '浦城县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 350723 => + [ + + [ + 'address' => '光泽县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 350724 => + [ + + [ + 'address' => '松溪县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 350725 => + [ + + [ + 'address' => '政和县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 350781 => + [ + + [ + 'address' => '邵武市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 350782 => + [ + + [ + 'address' => '武夷山市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 350783 => + [ + + [ + 'address' => '建瓯市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 350784 => + [ + + [ + 'address' => '建阳市', + 'start_year' => 1995, + 'end_year' => 2013, + ], + ], + 350800 => + [ + + [ + 'address' => '龙岩市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 350802 => + [ + + [ + 'address' => '新罗区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 350803 => + [ + + [ + 'address' => '永定区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 350821 => + [ + + [ + 'address' => '长汀县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 350822 => + [ + + [ + 'address' => '永定县', + 'start_year' => 1996, + 'end_year' => 2013, + ], + ], + 350823 => + [ + + [ + 'address' => '上杭县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 350824 => + [ + + [ + 'address' => '武平县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 350825 => + [ + + [ + 'address' => '连城县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 350881 => + [ + + [ + 'address' => '漳平市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 350900 => + [ + + [ + 'address' => '宁德市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 350902 => + [ + + [ + 'address' => '蕉城区', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 350921 => + [ + + [ + 'address' => '霞浦县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 350922 => + [ + + [ + 'address' => '古田县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 350923 => + [ + + [ + 'address' => '屏南县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 350924 => + [ + + [ + 'address' => '寿宁县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 350925 => + [ + + [ + 'address' => '周宁县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 350926 => + [ + + [ + 'address' => '柘荣县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 350981 => + [ + + [ + 'address' => '福安市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 350982 => + [ + + [ + 'address' => '福鼎市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 352100 => + [ + + [ + 'address' => '南平地区', + 'start_year' => 1988, + 'end_year' => 1993, + ], + + [ + 'address' => '建阳地区', + 'start_year' => 1982, + 'end_year' => 1987, + ], + ], + 352101 => + [ + + [ + 'address' => '南平市', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 352102 => + [ + + [ + 'address' => '邵武市', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 352103 => + [ + + [ + 'address' => '武夷山市', + 'start_year' => 1989, + 'end_year' => 1993, + ], + ], + 352104 => + [ + + [ + 'address' => '建瓯市', + 'start_year' => 1992, + 'end_year' => 1993, + ], + ], + 352121 => + [ + + [ + 'address' => '顺昌县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 352122 => + [ + + [ + 'address' => '建阳县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 352123 => + [ + + [ + 'address' => '建瓯县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 352124 => + [ + + [ + 'address' => '浦城县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 352125 => + [ + + [ + 'address' => '邵武县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352126 => + [ + + [ + 'address' => '崇安县', + 'start_year' => 1982, + 'end_year' => 1988, + ], + ], + 352127 => + [ + + [ + 'address' => '光泽县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 352128 => + [ + + [ + 'address' => '松溪县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 352129 => + [ + + [ + 'address' => '政和县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 352200 => + [ + + [ + 'address' => '宁德地区', + 'start_year' => 1982, + 'end_year' => 1998, + ], + + [ + 'address' => '建阳地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352201 => + [ + + [ + 'address' => '南平市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '宁德市', + 'start_year' => 1988, + 'end_year' => 1998, + ], + ], + 352202 => + [ + + [ + 'address' => '福安市', + 'start_year' => 1989, + 'end_year' => 1998, + ], + ], + 352203 => + [ + + [ + 'address' => '福鼎市', + 'start_year' => 1995, + 'end_year' => 1998, + ], + ], + 352221 => + [ + + [ + 'address' => '宁德县', + 'start_year' => 1982, + 'end_year' => 1987, + ], + + [ + 'address' => '顺昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352222 => + [ + + [ + 'address' => '建阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '连江县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352223 => + [ + + [ + 'address' => '建瓯县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '罗源县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352224 => + [ + + [ + 'address' => '浦城县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '福鼎县', + 'start_year' => 1982, + 'end_year' => 1994, + ], + ], + 352225 => + [ + + [ + 'address' => '邵武县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '霞浦县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 352226 => + [ + + [ + 'address' => '崇安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '福安县', + 'start_year' => 1982, + 'end_year' => 1988, + ], + ], + 352227 => + [ + + [ + 'address' => '光泽县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '古田县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 352228 => + [ + + [ + 'address' => '屏南县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + + [ + 'address' => '松溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352229 => + [ + + [ + 'address' => '寿宁县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + + [ + 'address' => '政和县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352230 => + [ + + [ + 'address' => '周宁县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 352231 => + [ + + [ + 'address' => '柘荣县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 352300 => + [ + + [ + 'address' => '宁德地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '莆田地区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352321 => + [ + + [ + 'address' => '宁德县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '闽清县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352322 => + [ + + [ + 'address' => '永泰县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '连江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352323 => + [ + + [ + 'address' => '罗源县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '长乐县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352324 => + [ + + [ + 'address' => '福清县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '福鼎县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352325 => + [ + + [ + 'address' => '平潭县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '霞浦县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352326 => + [ + + [ + 'address' => '福安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '莆田县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352327 => + [ + + [ + 'address' => '仙游县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '古田县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352328 => + [ + + [ + 'address' => '屏南县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352329 => + [ + + [ + 'address' => '寿宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352330 => + [ + + [ + 'address' => '周宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352331 => + [ + + [ + 'address' => '柘荣县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352400 => + [ + + [ + 'address' => '晋江地区', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '莆田地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352401 => + [ + + [ + 'address' => '泉州市', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 352421 => + [ + + [ + 'address' => '惠安县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '闽清县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352422 => + [ + + [ + 'address' => '晋江县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '永泰县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352423 => + [ + + [ + 'address' => '南安县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '长乐县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352424 => + [ + + [ + 'address' => '安溪县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '福清县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352425 => + [ + + [ + 'address' => '平潭县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '永春县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 352426 => + [ + + [ + 'address' => '德化县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '莆田县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352427 => + [ + + [ + 'address' => '仙游县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '金门县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 352500 => + [ + + [ + 'address' => '晋江地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '龙溪地区', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 352501 => + [ + + [ + 'address' => '泉州市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '漳州市', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 352521 => + [ + + [ + 'address' => '惠安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '龙海县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 352522 => + [ + + [ + 'address' => '云霄县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '晋江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352523 => + [ + + [ + 'address' => '南安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '漳浦县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 352524 => + [ + + [ + 'address' => '安溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '诏安县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 352525 => + [ + + [ + 'address' => '永春县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '长泰县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 352526 => + [ + + [ + 'address' => '东山县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '德化县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352527 => + [ + + [ + 'address' => '南靖县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '金门县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352528 => + [ + + [ + 'address' => '平和县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 352529 => + [ + + [ + 'address' => '华安县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 352600 => + [ + + [ + 'address' => '龙岩地区', + 'start_year' => 1982, + 'end_year' => 1995, + ], + + [ + 'address' => '龙溪地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352601 => + [ + + [ + 'address' => '漳州市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '龙岩市', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 352602 => + [ + + [ + 'address' => '漳平市', + 'start_year' => 1990, + 'end_year' => 1995, + ], + ], + 352621 => + [ + + [ + 'address' => '龙海县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352622 => + [ + + [ + 'address' => '云霄县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '长汀县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 352623 => + [ + + [ + 'address' => '永定县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + + [ + 'address' => '漳浦县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352624 => + [ + + [ + 'address' => '上杭县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + + [ + 'address' => '诏安县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352625 => + [ + + [ + 'address' => '武平县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + + [ + 'address' => '长泰县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352626 => + [ + + [ + 'address' => '东山县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '漳平县', + 'start_year' => 1982, + 'end_year' => 1989, + ], + ], + 352627 => + [ + + [ + 'address' => '南靖县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '连城县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 352628 => + [ + + [ + 'address' => '平和县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352629 => + [ + + [ + 'address' => '华安县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352700 => + [ + + [ + 'address' => '三明地区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '龙岩地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352701 => + [ + + [ + 'address' => '三明市', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '龙岩市', + 'start_year' => 1981, + 'end_year' => 1981, + ], + ], + 352721 => + [ + + [ + 'address' => '明溪县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '龙岩县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 352722 => + [ + + [ + 'address' => '永安县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '长汀县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352723 => + [ + + [ + 'address' => '永定县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '清流县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352724 => + [ + + [ + 'address' => '上杭县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '宁化县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352725 => + [ + + [ + 'address' => '大田县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '武平县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352726 => + [ + + [ + 'address' => '尤溪县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '漳平县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352727 => + [ + + [ + 'address' => '沙县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '连城县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352728 => + [ + + [ + 'address' => '将乐县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352729 => + [ + + [ + 'address' => '泰宁县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352730 => + [ + + [ + 'address' => '建宁县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 352800 => + [ + + [ + 'address' => '三明地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352801 => + [ + + [ + 'address' => '三明市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352821 => + [ + + [ + 'address' => '明溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352822 => + [ + + [ + 'address' => '永安县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352823 => + [ + + [ + 'address' => '清流县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352824 => + [ + + [ + 'address' => '宁化县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352825 => + [ + + [ + 'address' => '大田县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352826 => + [ + + [ + 'address' => '尤溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352827 => + [ + + [ + 'address' => '沙县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352828 => + [ + + [ + 'address' => '将乐县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352829 => + [ + + [ + 'address' => '泰宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 352830 => + [ + + [ + 'address' => '建宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 359001 => + [ + + [ + 'address' => '永安市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 359002 => + [ + + [ + 'address' => '石狮市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 359003 => + [ + + [ + 'address' => '福清市', + 'start_year' => 1990, + 'end_year' => 1994, + ], + ], + 359004 => + [ + + [ + 'address' => '晋江市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 359005 => + [ + + [ + 'address' => '南安市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 359006 => + [ + + [ + 'address' => '龙海市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 359007 => + [ + + [ + 'address' => '邵武市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 359008 => + [ + + [ + 'address' => '武夷山市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 359009 => + [ + + [ + 'address' => '建瓯市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 359010 => + [ + + [ + 'address' => '建阳市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 359011 => + [ + + [ + 'address' => '长乐市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 360000 => + [ + + [ + 'address' => '江西省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360100 => + [ + + [ + 'address' => '南昌市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360102 => + [ + + [ + 'address' => '东湖区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360103 => + [ + + [ + 'address' => '西湖区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360104 => + [ + + [ + 'address' => '青云谱区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360105 => + [ + + [ + 'address' => '湾里区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360111 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 2001, + ], + + [ + 'address' => '青山湖区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 360112 => + [ + + [ + 'address' => '新建区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 360121 => + [ + + [ + 'address' => '南昌县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '新建县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 360122 => + [ + + [ + 'address' => '南昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '新建县', + 'start_year' => 1982, + 'end_year' => 2014, + ], + ], + 360123 => + [ + + [ + 'address' => '安义县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360124 => + [ + + [ + 'address' => '进贤县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360200 => + [ + + [ + 'address' => '景德镇市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360202 => + [ + + [ + 'address' => '昌江区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360203 => + [ + + [ + 'address' => '珠山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360211 => + [ + + [ + 'address' => '鹅湖区', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 360212 => + [ + + [ + 'address' => '蛟潭区', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 360221 => + [ + + [ + 'address' => '乐平县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 360222 => + [ + + [ + 'address' => '浮梁县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 360281 => + [ + + [ + 'address' => '乐平市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 360300 => + [ + + [ + 'address' => '萍乡市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360302 => + [ + + [ + 'address' => '城关区', + 'start_year' => '', + 'end_year' => 1992, + ], + + [ + 'address' => '安源区', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 360311 => + [ + + [ + 'address' => '上栗区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 360312 => + [ + + [ + 'address' => '芦溪区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 360313 => + [ + + [ + 'address' => '湘东区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360321 => + [ + + [ + 'address' => '莲花县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 360322 => + [ + + [ + 'address' => '上栗县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 360323 => + [ + + [ + 'address' => '芦溪县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 360400 => + [ + + [ + 'address' => '九江市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360402 => + [ + + [ + 'address' => '庐山区', + 'start_year' => '', + 'end_year' => 2015, + ], + + [ + 'address' => '濂溪区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 360403 => + [ + + [ + 'address' => '浔阳区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 360404 => + [ + + [ + 'address' => '柴桑区', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 360411 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 360421 => + [ + + [ + 'address' => '九江县', + 'start_year' => 1983, + 'end_year' => 2016, + ], + ], + 360422 => + [ + + [ + 'address' => '瑞昌县', + 'start_year' => 1983, + 'end_year' => 1988, + ], + ], + 360423 => + [ + + [ + 'address' => '武宁县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360424 => + [ + + [ + 'address' => '修水县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360425 => + [ + + [ + 'address' => '永修县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360426 => + [ + + [ + 'address' => '德安县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360427 => + [ + + [ + 'address' => '星子县', + 'start_year' => 1983, + 'end_year' => 2015, + ], + ], + 360428 => + [ + + [ + 'address' => '都昌县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360429 => + [ + + [ + 'address' => '湖口县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360430 => + [ + + [ + 'address' => '彭泽县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360481 => + [ + + [ + 'address' => '瑞昌市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 360482 => + [ + + [ + 'address' => '共青城市', + 'start_year' => 2010, + 'end_year' => '', + ], + ], + 360483 => + [ + + [ + 'address' => '庐山市', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 360500 => + [ + + [ + 'address' => '新余市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360502 => + [ + + [ + 'address' => '渝水区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360521 => + [ + + [ + 'address' => '井冈山', + 'start_year' => '', + 'end_year' => 1980, + ], + + [ + 'address' => '分宜县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360600 => + [ + + [ + 'address' => '鹰潭市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360602 => + [ + + [ + 'address' => '月湖区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 360603 => + [ + + [ + 'address' => '余江区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 360621 => + [ + + [ + 'address' => '贵溪县', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 360622 => + [ + + [ + 'address' => '余江县', + 'start_year' => 1983, + 'end_year' => 2017, + ], + ], + 360681 => + [ + + [ + 'address' => '贵溪市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 360700 => + [ + + [ + 'address' => '赣州市', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360702 => + [ + + [ + 'address' => '章贡区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360703 => + [ + + [ + 'address' => '南康区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 360704 => + [ + + [ + 'address' => '赣县区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 360721 => + [ + + [ + 'address' => '赣县', + 'start_year' => 1998, + 'end_year' => 2015, + ], + ], + 360722 => + [ + + [ + 'address' => '信丰县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360723 => + [ + + [ + 'address' => '大余县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360724 => + [ + + [ + 'address' => '上犹县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360725 => + [ + + [ + 'address' => '崇义县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360726 => + [ + + [ + 'address' => '安远县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360727 => + [ + + [ + 'address' => '龙南县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360728 => + [ + + [ + 'address' => '定南县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360729 => + [ + + [ + 'address' => '全南县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360730 => + [ + + [ + 'address' => '宁都县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360731 => + [ + + [ + 'address' => '于都县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360732 => + [ + + [ + 'address' => '兴国县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360733 => + [ + + [ + 'address' => '会昌县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360734 => + [ + + [ + 'address' => '寻乌县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360735 => + [ + + [ + 'address' => '石城县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360781 => + [ + + [ + 'address' => '瑞金市', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 360782 => + [ + + [ + 'address' => '南康市', + 'start_year' => 1998, + 'end_year' => 2012, + ], + ], + 360800 => + [ + + [ + 'address' => '吉安市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360802 => + [ + + [ + 'address' => '吉州区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360803 => + [ + + [ + 'address' => '青原区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360821 => + [ + + [ + 'address' => '吉安县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360822 => + [ + + [ + 'address' => '吉水县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360823 => + [ + + [ + 'address' => '峡江县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360824 => + [ + + [ + 'address' => '新干县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360825 => + [ + + [ + 'address' => '永丰县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360826 => + [ + + [ + 'address' => '泰和县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360827 => + [ + + [ + 'address' => '遂川县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360828 => + [ + + [ + 'address' => '万安县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360829 => + [ + + [ + 'address' => '安福县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360830 => + [ + + [ + 'address' => '永新县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360881 => + [ + + [ + 'address' => '井冈山市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360900 => + [ + + [ + 'address' => '宜春市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360902 => + [ + + [ + 'address' => '袁州区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360921 => + [ + + [ + 'address' => '奉新县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360922 => + [ + + [ + 'address' => '万载县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360923 => + [ + + [ + 'address' => '上高县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360924 => + [ + + [ + 'address' => '宜丰县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360925 => + [ + + [ + 'address' => '靖安县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360926 => + [ + + [ + 'address' => '铜鼓县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360981 => + [ + + [ + 'address' => '丰城市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360982 => + [ + + [ + 'address' => '樟树市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 360983 => + [ + + [ + 'address' => '高安市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361000 => + [ + + [ + 'address' => '抚州市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361002 => + [ + + [ + 'address' => '临川区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361003 => + [ + + [ + 'address' => '东乡区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 361021 => + [ + + [ + 'address' => '南城县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361022 => + [ + + [ + 'address' => '黎川县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361023 => + [ + + [ + 'address' => '南丰县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361024 => + [ + + [ + 'address' => '崇仁县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361025 => + [ + + [ + 'address' => '乐安县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361026 => + [ + + [ + 'address' => '宜黄县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361027 => + [ + + [ + 'address' => '金溪县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361028 => + [ + + [ + 'address' => '资溪县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361029 => + [ + + [ + 'address' => '东乡县', + 'start_year' => 2000, + 'end_year' => 2015, + ], + ], + 361030 => + [ + + [ + 'address' => '广昌县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361100 => + [ + + [ + 'address' => '上饶市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361102 => + [ + + [ + 'address' => '信州区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361103 => + [ + + [ + 'address' => '广丰区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 361121 => + [ + + [ + 'address' => '上饶县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361122 => + [ + + [ + 'address' => '广丰县', + 'start_year' => 2000, + 'end_year' => 2014, + ], + ], + 361123 => + [ + + [ + 'address' => '玉山县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361124 => + [ + + [ + 'address' => '铅山县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361125 => + [ + + [ + 'address' => '横峰县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361126 => + [ + + [ + 'address' => '弋阳县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361127 => + [ + + [ + 'address' => '余干县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361128 => + [ + + [ + 'address' => '波阳县', + 'start_year' => 2000, + 'end_year' => 2002, + ], + + [ + 'address' => '鄱阳县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 361129 => + [ + + [ + 'address' => '万年县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361130 => + [ + + [ + 'address' => '婺源县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 361181 => + [ + + [ + 'address' => '德兴市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 362100 => + [ + + [ + 'address' => '九江地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '赣州地区', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 362101 => + [ + + [ + 'address' => '赣州市', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 362102 => + [ + + [ + 'address' => '瑞金市', + 'start_year' => 1994, + 'end_year' => 1997, + ], + ], + 362103 => + [ + + [ + 'address' => '南康市', + 'start_year' => 1995, + 'end_year' => 1997, + ], + ], + 362121 => + [ + + [ + 'address' => '九江县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '赣县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 362122 => + [ + + [ + 'address' => '南康县', + 'start_year' => 1982, + 'end_year' => 1994, + ], + + [ + 'address' => '永修县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362123 => + [ + + [ + 'address' => '信丰县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + + [ + 'address' => '彭泽县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362124 => + [ + + [ + 'address' => '大余县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + + [ + 'address' => '德安县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362125 => + [ + + [ + 'address' => '上犹县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + + [ + 'address' => '湖口县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362126 => + [ + + [ + 'address' => '崇义县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + + [ + 'address' => '瑞昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362127 => + [ + + [ + 'address' => '安远县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + + [ + 'address' => '都昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362128 => + [ + + [ + 'address' => '武宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '龙南县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 362129 => + [ + + [ + 'address' => '定南县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + + [ + 'address' => '星子县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362130 => + [ + + [ + 'address' => '修水县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '全南县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 362131 => + [ + + [ + 'address' => '宁都县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 362132 => + [ + + [ + 'address' => '于都县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 362133 => + [ + + [ + 'address' => '兴国县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 362134 => + [ + + [ + 'address' => '瑞金县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + ], + 362135 => + [ + + [ + 'address' => '会昌县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 362136 => + [ + + [ + 'address' => '寻乌县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 362137 => + [ + + [ + 'address' => '石城县', + 'start_year' => 1982, + 'end_year' => 1997, + ], + ], + 362138 => + [ + + [ + 'address' => '广昌县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 362200 => + [ + + [ + 'address' => '上饶地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '宜春地区', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362201 => + [ + + [ + 'address' => '上饶市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '宜春市', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362202 => + [ + + [ + 'address' => '丰城市', + 'start_year' => 1988, + 'end_year' => 1999, + ], + + [ + 'address' => '鹰潭市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362203 => + [ + + [ + 'address' => '樟树市', + 'start_year' => 1988, + 'end_year' => 1999, + ], + ], + 362204 => + [ + + [ + 'address' => '高安市', + 'start_year' => 1993, + 'end_year' => 1999, + ], + ], + 362221 => + [ + + [ + 'address' => '上饶县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '丰城县', + 'start_year' => 1982, + 'end_year' => 1987, + ], + ], + 362222 => + [ + + [ + 'address' => '贵溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '高安县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 362223 => + [ + + [ + 'address' => '婺源县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '清江县', + 'start_year' => 1982, + 'end_year' => 1987, + ], + ], + 362224 => + [ + + [ + 'address' => '余江县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '新余县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 362225 => + [ + + [ + 'address' => '宜春县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '德兴县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362226 => + [ + + [ + 'address' => '万年县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '奉新县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362227 => + [ + + [ + 'address' => '万载县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '玉山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362228 => + [ + + [ + 'address' => '上高县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '乐平县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362229 => + [ + + [ + 'address' => '宜丰县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '广丰县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362230 => + [ + + [ + 'address' => '分宜县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '波阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362231 => + [ + + [ + 'address' => '安义县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '铅山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362232 => + [ + + [ + 'address' => '余干县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '靖安县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362233 => + [ + + [ + 'address' => '横峰县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '铜鼓县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362234 => + [ + + [ + 'address' => '弋阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362300 => + [ + + [ + 'address' => '上饶地区', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '宜春地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362301 => + [ + + [ + 'address' => '上饶市', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '宜春市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362302 => + [ + + [ + 'address' => '德兴市', + 'start_year' => 1990, + 'end_year' => 1999, + ], + + [ + 'address' => '鹰潭市', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 362321 => + [ + + [ + 'address' => '上饶县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '宜春县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362322 => + [ + + [ + 'address' => '广丰县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '高安县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362323 => + [ + + [ + 'address' => '万载县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '玉山县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362324 => + [ + + [ + 'address' => '丰城县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '铅山县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362325 => + [ + + [ + 'address' => '横峰县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '铜鼓县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362326 => + [ + + [ + 'address' => '弋阳县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '清江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362327 => + [ + + [ + 'address' => '宜丰县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '贵溪县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 362328 => + [ + + [ + 'address' => '余江县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '新余县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362329 => + [ + + [ + 'address' => '上高县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '余干县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362330 => + [ + + [ + 'address' => '分宜县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '波阳县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362331 => + [ + + [ + 'address' => '万年县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '安义县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362332 => + [ + + [ + 'address' => '乐平县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '靖安县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362333 => + [ + + [ + 'address' => '奉新县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '德兴县', + 'start_year' => 1982, + 'end_year' => 1989, + ], + ], + 362334 => + [ + + [ + 'address' => '婺源县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362400 => + [ + + [ + 'address' => '吉安地区', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '抚州地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362401 => + [ + + [ + 'address' => '吉安市', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '抚州市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362402 => + [ + + [ + 'address' => '井冈山市', + 'start_year' => 1984, + 'end_year' => 1999, + ], + ], + 362421 => + [ + + [ + 'address' => '临川县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '吉安县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362422 => + [ + + [ + 'address' => '吉水县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '宜黄县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362423 => + [ + + [ + 'address' => '峡江县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '金溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362424 => + [ + + [ + 'address' => '崇仁县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '新干县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362425 => + [ + + [ + 'address' => '永丰县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '资溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362426 => + [ + + [ + 'address' => '乐安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '泰和县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362427 => + [ + + [ + 'address' => '遂川县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '黎川县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362428 => + [ + + [ + 'address' => '万安县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '东乡县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362429 => + [ + + [ + 'address' => '南丰县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '安福县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362430 => + [ + + [ + 'address' => '永新县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '进贤县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362431 => + [ + + [ + 'address' => '南城县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '莲花县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 362432 => + [ + + [ + 'address' => '宁冈县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362433 => + [ + + [ + 'address' => '井冈山县', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 362500 => + [ + + [ + 'address' => '吉安地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '抚州地区', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362501 => + [ + + [ + 'address' => '临川市', + 'start_year' => 1987, + 'end_year' => 1999, + ], + + [ + 'address' => '吉安市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '抚州市', + 'start_year' => 1982, + 'end_year' => 1986, + ], + ], + 362521 => + [ + + [ + 'address' => '临川县', + 'start_year' => 1982, + 'end_year' => 1986, + ], + + [ + 'address' => '吉安县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362522 => + [ + + [ + 'address' => '万安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '南城县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362523 => + [ + + [ + 'address' => '新干县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '黎川县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362524 => + [ + + [ + 'address' => '南丰县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '遂川县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362525 => + [ + + [ + 'address' => '峡江县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '崇仁县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362526 => + [ + + [ + 'address' => '乐安县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '宁冈县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362527 => + [ + + [ + 'address' => '吉水县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '宜黄县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362528 => + [ + + [ + 'address' => '永新县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '金溪县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362529 => + [ + + [ + 'address' => '永丰县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '资溪县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 362530 => + [ + + [ + 'address' => '莲花县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '进贤县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 362531 => + [ + + [ + 'address' => '东乡县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '泰和县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362532 => + [ + + [ + 'address' => '安福县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '广昌县', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 362533 => + [ + + [ + 'address' => '井冈山县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + ], + 362600 => + [ + + [ + 'address' => '九江地区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '赣州地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362601 => + [ + + [ + 'address' => '赣州市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362621 => + [ + + [ + 'address' => '九江县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '广昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362622 => + [ + + [ + 'address' => '定南县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '瑞昌县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 362623 => + [ + + [ + 'address' => '武宁县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '石城县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362624 => + [ + + [ + 'address' => '修水县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '龙南县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362625 => + [ + + [ + 'address' => '宁都县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '永修县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 362626 => + [ + + [ + 'address' => '全南县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '德安县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 362627 => + [ + + [ + 'address' => '兴国县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '星子县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 362628 => + [ + + [ + 'address' => '信丰县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '都昌县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 362629 => + [ + + [ + 'address' => '于都县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '湖口县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 362630 => + [ + + [ + 'address' => '彭泽县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '赣县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362631 => + [ + + [ + 'address' => '瑞金县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362632 => + [ + + [ + 'address' => '南康县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362633 => + [ + + [ + 'address' => '会昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362634 => + [ + + [ + 'address' => '上犹县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362635 => + [ + + [ + 'address' => '安远县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362636 => + [ + + [ + 'address' => '崇义县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362637 => + [ + + [ + 'address' => '寻乌县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 362638 => + [ + + [ + 'address' => '大余县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 369001 => + [ + + [ + 'address' => '瑞昌市', + 'start_year' => 1989, + 'end_year' => 1994, + ], + ], + 369002 => + [ + + [ + 'address' => '乐平市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 370000 => + [ + + [ + 'address' => '山东省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370100 => + [ + + [ + 'address' => '济南市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370102 => + [ + + [ + 'address' => '历下区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370103 => + [ + + [ + 'address' => '市中区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370104 => + [ + + [ + 'address' => '槐荫区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370105 => + [ + + [ + 'address' => '天桥区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370111 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 370112 => + [ + + [ + 'address' => '历城区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 370113 => + [ + + [ + 'address' => '长清区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 370114 => + [ + + [ + 'address' => '章丘区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 370121 => + [ + + [ + 'address' => '历城县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 370122 => + [ + + [ + 'address' => '章丘县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 370123 => + [ + + [ + 'address' => '长清县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 370124 => + [ + + [ + 'address' => '平阴县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 370125 => + [ + + [ + 'address' => '济阳县', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 370126 => + [ + + [ + 'address' => '商河县', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 370181 => + [ + + [ + 'address' => '章丘市', + 'start_year' => 1995, + 'end_year' => 2015, + ], + ], + 370200 => + [ + + [ + 'address' => '青岛市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370202 => + [ + + [ + 'address' => '市南区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370203 => + [ + + [ + 'address' => '市北区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370204 => + [ + + [ + 'address' => '台东区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 370205 => + [ + + [ + 'address' => '四方区', + 'start_year' => '', + 'end_year' => 2011, + ], + ], + 370206 => + [ + + [ + 'address' => '沧口区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 370211 => + [ + + [ + 'address' => '黄岛区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370212 => + [ + + [ + 'address' => '崂山区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 370213 => + [ + + [ + 'address' => '李沧区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 370214 => + [ + + [ + 'address' => '城阳区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 370215 => + [ + + [ + 'address' => '即墨区', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 370221 => + [ + + [ + 'address' => '崂山县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 370222 => + [ + + [ + 'address' => '即墨县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 370223 => + [ + + [ + 'address' => '胶南县', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 370224 => + [ + + [ + 'address' => '胶县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 370225 => + [ + + [ + 'address' => '莱西县', + 'start_year' => 1983, + 'end_year' => 1989, + ], + ], + 370226 => + [ + + [ + 'address' => '平度县', + 'start_year' => 1983, + 'end_year' => 1988, + ], + ], + 370281 => + [ + + [ + 'address' => '胶州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370282 => + [ + + [ + 'address' => '即墨市', + 'start_year' => 1995, + 'end_year' => 2016, + ], + ], + 370283 => + [ + + [ + 'address' => '平度市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370284 => + [ + + [ + 'address' => '胶南市', + 'start_year' => 1995, + 'end_year' => 2011, + ], + ], + 370285 => + [ + + [ + 'address' => '莱西市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370300 => + [ + + [ + 'address' => '淄博市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370302 => + [ + + [ + 'address' => '淄川区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370303 => + [ + + [ + 'address' => '张店区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370304 => + [ + + [ + 'address' => '博山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370305 => + [ + + [ + 'address' => '临淄区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370306 => + [ + + [ + 'address' => '周村区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370321 => + [ + + [ + 'address' => '桓台县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370322 => + [ + + [ + 'address' => '高青县', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 370323 => + [ + + [ + 'address' => '沂源县', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 370400 => + [ + + [ + 'address' => '枣庄市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370402 => + [ + + [ + 'address' => '市中区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370403 => + [ + + [ + 'address' => '薛城区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370404 => + [ + + [ + 'address' => '峄城区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370405 => + [ + + [ + 'address' => '台儿庄区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 370406 => + [ + + [ + 'address' => '山亭区', + 'start_year' => 1983, + 'end_year' => '', + ], + + [ + 'address' => '齐村区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 370421 => + [ + + [ + 'address' => '滕县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 370481 => + [ + + [ + 'address' => '滕州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370500 => + [ + + [ + 'address' => '东营市', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 370502 => + [ + + [ + 'address' => '东营区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 370503 => + [ + + [ + 'address' => '河口区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 370504 => + [ + + [ + 'address' => '牛庄区', + 'start_year' => 1982, + 'end_year' => 1986, + ], + ], + 370505 => + [ + + [ + 'address' => '垦利区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 370521 => + [ + + [ + 'address' => '垦利县', + 'start_year' => 1982, + 'end_year' => 2015, + ], + ], + 370522 => + [ + + [ + 'address' => '利津县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 370523 => + [ + + [ + 'address' => '广饶县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370600 => + [ + + [ + 'address' => '烟台市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370602 => + [ + + [ + 'address' => '芝罘区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370611 => + [ + + [ + 'address' => '福山区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370612 => + [ + + [ + 'address' => '牟平区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 370613 => + [ + + [ + 'address' => '莱山区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 370620 => + [ + + [ + 'address' => '威海市', + 'start_year' => 1985, + 'end_year' => 1985, + ], + ], + 370622 => + [ + + [ + 'address' => '蓬莱县', + 'start_year' => 1983, + 'end_year' => 1990, + ], + ], + 370623 => + [ + + [ + 'address' => '黄县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 370624 => + [ + + [ + 'address' => '招远县', + 'start_year' => 1983, + 'end_year' => 1990, + ], + ], + 370625 => + [ + + [ + 'address' => '掖县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 370627 => + [ + + [ + 'address' => '莱阳县', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 370628 => + [ + + [ + 'address' => '栖霞县', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 370629 => + [ + + [ + 'address' => '海阳县', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 370630 => + [ + + [ + 'address' => '乳山县', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 370631 => + [ + + [ + 'address' => '牟平县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 370632 => + [ + + [ + 'address' => '文登县', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 370633 => + [ + + [ + 'address' => '荣成县', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 370634 => + [ + + [ + 'address' => '长岛县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370681 => + [ + + [ + 'address' => '龙口市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370682 => + [ + + [ + 'address' => '莱阳市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370683 => + [ + + [ + 'address' => '莱州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370684 => + [ + + [ + 'address' => '蓬莱市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370685 => + [ + + [ + 'address' => '招远市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370686 => + [ + + [ + 'address' => '栖霞市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370687 => + [ + + [ + 'address' => '海阳市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 370700 => + [ + + [ + 'address' => '潍坊市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370702 => + [ + + [ + 'address' => '潍城区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370703 => + [ + + [ + 'address' => '寒亭区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370704 => + [ + + [ + 'address' => '坊子区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370705 => + [ + + [ + 'address' => '奎文区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 370721 => + [ + + [ + 'address' => '益都县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 370722 => + [ + + [ + 'address' => '安丘县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 370723 => + [ + + [ + 'address' => '寿光县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 370724 => + [ + + [ + 'address' => '临朐县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370725 => + [ + + [ + 'address' => '昌乐县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370726 => + [ + + [ + 'address' => '昌邑县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 370727 => + [ + + [ + 'address' => '高密县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 370728 => + [ + + [ + 'address' => '诸城县', + 'start_year' => 1983, + 'end_year' => 1986, + ], + ], + 370729 => + [ + + [ + 'address' => '五莲县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 370781 => + [ + + [ + 'address' => '青州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370782 => + [ + + [ + 'address' => '诸城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370783 => + [ + + [ + 'address' => '寿光市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370784 => + [ + + [ + 'address' => '安丘市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370785 => + [ + + [ + 'address' => '高密市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370786 => + [ + + [ + 'address' => '昌邑市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370800 => + [ + + [ + 'address' => '济宁市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370802 => + [ + + [ + 'address' => '市中区', + 'start_year' => 1983, + 'end_year' => 2012, + ], + ], + 370811 => + [ + + [ + 'address' => '任城区', + 'start_year' => 1993, + 'end_year' => '', + ], + + [ + 'address' => '市郊区', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 370812 => + [ + + [ + 'address' => '兖州区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 370822 => + [ + + [ + 'address' => '兖州县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 370823 => + [ + + [ + 'address' => '曲阜县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 370825 => + [ + + [ + 'address' => '邹县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 370826 => + [ + + [ + 'address' => '微山县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370827 => + [ + + [ + 'address' => '鱼台县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370828 => + [ + + [ + 'address' => '金乡县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370829 => + [ + + [ + 'address' => '嘉祥县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 370830 => + [ + + [ + 'address' => '汶上县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 370831 => + [ + + [ + 'address' => '泗水县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 370832 => + [ + + [ + 'address' => '梁山县', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 370881 => + [ + + [ + 'address' => '曲阜市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370882 => + [ + + [ + 'address' => '兖州市', + 'start_year' => 1995, + 'end_year' => 2012, + ], + ], + 370883 => + [ + + [ + 'address' => '邹城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 370900 => + [ + + [ + 'address' => '泰安市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 370901 => + [ + + [ + 'address' => '威海市', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 370902 => + [ + + [ + 'address' => '泰山区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 370911 => + [ + + [ + 'address' => '岱岳区', + 'start_year' => 2000, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => 1985, + 'end_year' => 1999, + ], + ], + 370921 => + [ + + [ + 'address' => '宁阳县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 370922 => + [ + + [ + 'address' => '肥城县', + 'start_year' => 1985, + 'end_year' => 1991, + ], + ], + 370923 => + [ + + [ + 'address' => '东平县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 370981 => + [ + + [ + 'address' => '莱芜市', + 'start_year' => 1985, + 'end_year' => 1985, + ], + ], + 370982 => + [ + + [ + 'address' => '新泰市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 370983 => + [ + + [ + 'address' => '肥城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 371000 => + [ + + [ + 'address' => '威海市', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 371002 => + [ + + [ + 'address' => '环翠区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 371003 => + [ + + [ + 'address' => '文登区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 371021 => + [ + + [ + 'address' => '乳山县', + 'start_year' => 1987, + 'end_year' => 1992, + ], + ], + 371022 => + [ + + [ + 'address' => '文登县', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 371023 => + [ + + [ + 'address' => '荣成县', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 371081 => + [ + + [ + 'address' => '文登市', + 'start_year' => 1995, + 'end_year' => 2013, + ], + ], + 371082 => + [ + + [ + 'address' => '荣成市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 371083 => + [ + + [ + 'address' => '乳山市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 371100 => + [ + + [ + 'address' => '日照市', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 371102 => + [ + + [ + 'address' => '东港区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 371103 => + [ + + [ + 'address' => '岚山区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 371121 => + [ + + [ + 'address' => '五莲县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 371122 => + [ + + [ + 'address' => '莒县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 371200 => + [ + + [ + 'address' => '莱芜市', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 371202 => + [ + + [ + 'address' => '莱城区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 371203 => + [ + + [ + 'address' => '钢城区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 371300 => + [ + + [ + 'address' => '临沂市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371302 => + [ + + [ + 'address' => '兰山区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371311 => + [ + + [ + 'address' => '罗庄区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371312 => + [ + + [ + 'address' => '河东区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371321 => + [ + + [ + 'address' => '沂南县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371322 => + [ + + [ + 'address' => '郯城县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371323 => + [ + + [ + 'address' => '沂水县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371324 => + [ + + [ + 'address' => '兰陵县', + 'start_year' => 2014, + 'end_year' => '', + ], + + [ + 'address' => '苍山县', + 'start_year' => 1994, + 'end_year' => 2013, + ], + ], + 371325 => + [ + + [ + 'address' => '费县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371326 => + [ + + [ + 'address' => '平邑县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371327 => + [ + + [ + 'address' => '莒南县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371328 => + [ + + [ + 'address' => '蒙阴县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371329 => + [ + + [ + 'address' => '临沭县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371400 => + [ + + [ + 'address' => '德州市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371402 => + [ + + [ + 'address' => '德城区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371403 => + [ + + [ + 'address' => '陵城区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 371421 => + [ + + [ + 'address' => '陵县', + 'start_year' => 1994, + 'end_year' => 2013, + ], + ], + 371422 => + [ + + [ + 'address' => '宁津县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371423 => + [ + + [ + 'address' => '庆云县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371424 => + [ + + [ + 'address' => '临邑县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371425 => + [ + + [ + 'address' => '齐河县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371426 => + [ + + [ + 'address' => '平原县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371427 => + [ + + [ + 'address' => '夏津县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371428 => + [ + + [ + 'address' => '武城县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 371481 => + [ + + [ + 'address' => '乐陵市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 371482 => + [ + + [ + 'address' => '禹城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 371500 => + [ + + [ + 'address' => '聊城市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 371502 => + [ + + [ + 'address' => '东昌府区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 371521 => + [ + + [ + 'address' => '阳谷县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 371522 => + [ + + [ + 'address' => '莘县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 371523 => + [ + + [ + 'address' => '茌平县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 371524 => + [ + + [ + 'address' => '东阿县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 371525 => + [ + + [ + 'address' => '冠县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 371526 => + [ + + [ + 'address' => '高唐县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 371581 => + [ + + [ + 'address' => '临清市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 371600 => + [ + + [ + 'address' => '滨州市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371602 => + [ + + [ + 'address' => '滨城区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371603 => + [ + + [ + 'address' => '沾化区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 371621 => + [ + + [ + 'address' => '惠民县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371622 => + [ + + [ + 'address' => '阳信县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371623 => + [ + + [ + 'address' => '无棣县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371624 => + [ + + [ + 'address' => '沾化县', + 'start_year' => 2000, + 'end_year' => 2013, + ], + ], + 371625 => + [ + + [ + 'address' => '博兴县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371626 => + [ + + [ + 'address' => '邹平县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371700 => + [ + + [ + 'address' => '菏泽市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371702 => + [ + + [ + 'address' => '牡丹区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371703 => + [ + + [ + 'address' => '定陶区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 371721 => + [ + + [ + 'address' => '曹县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371722 => + [ + + [ + 'address' => '单县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371723 => + [ + + [ + 'address' => '成武县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371724 => + [ + + [ + 'address' => '巨野县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371725 => + [ + + [ + 'address' => '郓城县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371726 => + [ + + [ + 'address' => '鄄城县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 371727 => + [ + + [ + 'address' => '定陶县', + 'start_year' => 2000, + 'end_year' => 2015, + ], + ], + 371728 => + [ + + [ + 'address' => '东明县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 372100 => + [ + + [ + 'address' => '烟台地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372101 => + [ + + [ + 'address' => '烟台市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372102 => + [ + + [ + 'address' => '威海市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372121 => + [ + + [ + 'address' => '福山县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372122 => + [ + + [ + 'address' => '蓬莱县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372123 => + [ + + [ + 'address' => '黄县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372124 => + [ + + [ + 'address' => '招远县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372125 => + [ + + [ + 'address' => '掖县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372126 => + [ + + [ + 'address' => '莱西县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372127 => + [ + + [ + 'address' => '莱阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372128 => + [ + + [ + 'address' => '栖霞县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372129 => + [ + + [ + 'address' => '海阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372130 => + [ + + [ + 'address' => '乳山县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372131 => + [ + + [ + 'address' => '牟平县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372132 => + [ + + [ + 'address' => '文登县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372133 => + [ + + [ + 'address' => '荣成县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372134 => + [ + + [ + 'address' => '长岛县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372200 => + [ + + [ + 'address' => '昌潍地区', + 'start_year' => '', + 'end_year' => 1980, + ], + + [ + 'address' => '潍坊地区', + 'start_year' => 1981, + 'end_year' => 1982, + ], + ], + 372201 => + [ + + [ + 'address' => '潍坊市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372221 => + [ + + [ + 'address' => '益都县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372222 => + [ + + [ + 'address' => '安丘县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372223 => + [ + + [ + 'address' => '寿光县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372224 => + [ + + [ + 'address' => '临朐县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372225 => + [ + + [ + 'address' => '昌乐县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372226 => + [ + + [ + 'address' => '昌邑县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372227 => + [ + + [ + 'address' => '高密县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372228 => + [ + + [ + 'address' => '诸城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372229 => + [ + + [ + 'address' => '五莲县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372230 => + [ + + [ + 'address' => '平度县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372231 => + [ + + [ + 'address' => '潍县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372300 => + [ + + [ + 'address' => '惠民地区', + 'start_year' => '', + 'end_year' => 1991, + ], + + [ + 'address' => '滨州地区', + 'start_year' => 1992, + 'end_year' => 1999, + ], + ], + 372301 => + [ + + [ + 'address' => '滨州市', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 372321 => + [ + + [ + 'address' => '惠民县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372322 => + [ + + [ + 'address' => '滨县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 372323 => + [ + + [ + 'address' => '阳信县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372324 => + [ + + [ + 'address' => '无棣县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372325 => + [ + + [ + 'address' => '沾化县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372326 => + [ + + [ + 'address' => '利津县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 372327 => + [ + + [ + 'address' => '广饶县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372328 => + [ + + [ + 'address' => '博兴县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372329 => + [ + + [ + 'address' => '桓台县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372330 => + [ + + [ + 'address' => '邹平县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372331 => + [ + + [ + 'address' => '高青县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 372332 => + [ + + [ + 'address' => '垦利县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 372400 => + [ + + [ + 'address' => '德州地区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372401 => + [ + + [ + 'address' => '德州市', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372402 => + [ + + [ + 'address' => '乐陵市', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 372403 => + [ + + [ + 'address' => '禹城市', + 'start_year' => 1993, + 'end_year' => 1993, + ], + ], + 372421 => + [ + + [ + 'address' => '陵县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372422 => + [ + + [ + 'address' => '平原县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372423 => + [ + + [ + 'address' => '夏津县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372424 => + [ + + [ + 'address' => '武城县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372425 => + [ + + [ + 'address' => '齐河县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372426 => + [ + + [ + 'address' => '禹城县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 372427 => + [ + + [ + 'address' => '乐陵县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 372428 => + [ + + [ + 'address' => '临邑县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372429 => + [ + + [ + 'address' => '商河县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 372430 => + [ + + [ + 'address' => '济阳县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 372431 => + [ + + [ + 'address' => '宁津县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372432 => + [ + + [ + 'address' => '庆云县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372500 => + [ + + [ + 'address' => '聊城地区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 372501 => + [ + + [ + 'address' => '聊城市', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 372502 => + [ + + [ + 'address' => '临清市', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 372521 => + [ + + [ + 'address' => '聊城县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '阳谷县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 372522 => + [ + + [ + 'address' => '莘县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '阳谷县', + 'start_year' => 1982, + 'end_year' => 1996, + ], + ], + 372523 => + [ + + [ + 'address' => '茌平县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '莘县', + 'start_year' => 1982, + 'end_year' => 1996, + ], + ], + 372524 => + [ + + [ + 'address' => '东阿县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '茌平县', + 'start_year' => 1982, + 'end_year' => 1996, + ], + ], + 372525 => + [ + + [ + 'address' => '东阿县', + 'start_year' => 1982, + 'end_year' => 1996, + ], + + [ + 'address' => '冠县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 372526 => + [ + + [ + 'address' => '冠县', + 'start_year' => 1982, + 'end_year' => 1996, + ], + + [ + 'address' => '高唐县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 372527 => + [ + + [ + 'address' => '临清县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '高唐县', + 'start_year' => 1982, + 'end_year' => 1996, + ], + ], + 372528 => + [ + + [ + 'address' => '临清县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '聊城县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 372600 => + [ + + [ + 'address' => '泰安地区', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 372601 => + [ + + [ + 'address' => '泰安市', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 372602 => + [ + + [ + 'address' => '新汶市', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '莱芜市', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 372603 => + [ + + [ + 'address' => '新泰市', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 372621 => + [ + + [ + 'address' => '泰安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '莱芜县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 372622 => + [ + + [ + 'address' => '新泰县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '莱芜县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 372623 => + [ + + [ + 'address' => '新泰县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 372624 => + [ + + [ + 'address' => '宁阳县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 372625 => + [ + + [ + 'address' => '肥城县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 372626 => + [ + + [ + 'address' => '东平县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 372627 => + [ + + [ + 'address' => '平阴县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 372628 => + [ + + [ + 'address' => '新汶县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 372629 => + [ + + [ + 'address' => '汶上县', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 372630 => + [ + + [ + 'address' => '泗水县', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 372700 => + [ + + [ + 'address' => '济宁地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372701 => + [ + + [ + 'address' => '济宁市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372721 => + [ + + [ + 'address' => '济宁县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372722 => + [ + + [ + 'address' => '兖州县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372723 => + [ + + [ + 'address' => '曲阜县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372724 => + [ + + [ + 'address' => '泗水县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372725 => + [ + + [ + 'address' => '邹县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372726 => + [ + + [ + 'address' => '微山县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372727 => + [ + + [ + 'address' => '鱼台县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372728 => + [ + + [ + 'address' => '金乡县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372729 => + [ + + [ + 'address' => '嘉祥县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372730 => + [ + + [ + 'address' => '汶上县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372800 => + [ + + [ + 'address' => '临沂地区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372801 => + [ + + [ + 'address' => '临沂市', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 372821 => + [ + + [ + 'address' => '临沂县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372822 => + [ + + [ + 'address' => '郯城县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372823 => + [ + + [ + 'address' => '苍山县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372824 => + [ + + [ + 'address' => '莒南县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372825 => + [ + + [ + 'address' => '日照县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 372826 => + [ + + [ + 'address' => '莒县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 372827 => + [ + + [ + 'address' => '沂水县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372828 => + [ + + [ + 'address' => '沂源县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 372829 => + [ + + [ + 'address' => '蒙阴县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372830 => + [ + + [ + 'address' => '平邑县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372831 => + [ + + [ + 'address' => '费县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372832 => + [ + + [ + 'address' => '沂南县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372833 => + [ + + [ + 'address' => '临沭县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 372900 => + [ + + [ + 'address' => '菏泽地区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372901 => + [ + + [ + 'address' => '菏泽市', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 372921 => + [ + + [ + 'address' => '菏泽县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 372922 => + [ + + [ + 'address' => '曹县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372923 => + [ + + [ + 'address' => '定陶县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372924 => + [ + + [ + 'address' => '成武县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372925 => + [ + + [ + 'address' => '单县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372926 => + [ + + [ + 'address' => '巨野县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372927 => + [ + + [ + 'address' => '梁山县', + 'start_year' => '', + 'end_year' => 1988, + ], + ], + 372928 => + [ + + [ + 'address' => '郓城县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372929 => + [ + + [ + 'address' => '鄄城县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 372930 => + [ + + [ + 'address' => '东明县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 379001 => + [ + + [ + 'address' => '青州市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 379002 => + [ + + [ + 'address' => '龙口市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 379003 => + [ + + [ + 'address' => '曲阜市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 379004 => + [ + + [ + 'address' => '莱芜市', + 'start_year' => 1986, + 'end_year' => 1991, + ], + ], + 379005 => + [ + + [ + 'address' => '新泰市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 379006 => + [ + + [ + 'address' => '威海市', + 'start_year' => 1986, + 'end_year' => 1986, + ], + + [ + 'address' => '胶州市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 379007 => + [ + + [ + 'address' => '诸城市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 379008 => + [ + + [ + 'address' => '莱阳市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 379009 => + [ + + [ + 'address' => '莱州市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 379010 => + [ + + [ + 'address' => '滕州市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 379011 => + [ + + [ + 'address' => '文登市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 379012 => + [ + + [ + 'address' => '荣成市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 379013 => + [ + + [ + 'address' => '即墨市', + 'start_year' => 1989, + 'end_year' => 1994, + ], + ], + 379014 => + [ + + [ + 'address' => '平度市', + 'start_year' => 1989, + 'end_year' => 1994, + ], + ], + 379015 => + [ + + [ + 'address' => '莱西市', + 'start_year' => 1990, + 'end_year' => 1994, + ], + ], + 379016 => + [ + + [ + 'address' => '胶南市', + 'start_year' => 1990, + 'end_year' => 1994, + ], + ], + 379017 => + [ + + [ + 'address' => '蓬莱市', + 'start_year' => 1991, + 'end_year' => 1994, + ], + ], + 379018 => + [ + + [ + 'address' => '招远市', + 'start_year' => 1991, + 'end_year' => 1994, + ], + ], + 379019 => + [ + + [ + 'address' => '肥城市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 379020 => + [ + + [ + 'address' => '章丘市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 379021 => + [ + + [ + 'address' => '兖州市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 379022 => + [ + + [ + 'address' => '邹城市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 379023 => + [ + + [ + 'address' => '寿光市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 379024 => + [ + + [ + 'address' => '乳山市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 379025 => + [ + + [ + 'address' => '乐陵市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 379026 => + [ + + [ + 'address' => '禹城市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 379027 => + [ + + [ + 'address' => '安丘市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 379028 => + [ + + [ + 'address' => '昌邑市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 379029 => + [ + + [ + 'address' => '高密市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 410000 => + [ + + [ + 'address' => '河南省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410100 => + [ + + [ + 'address' => '郑州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410102 => + [ + + [ + 'address' => '中原区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410103 => + [ + + [ + 'address' => '二七区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410104 => + [ + + [ + 'address' => '向阳回族区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '管城回族区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410105 => + [ + + [ + 'address' => '金水区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410106 => + [ + + [ + 'address' => '上街区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410107 => + [ + + [ + 'address' => '新密区', + 'start_year' => 1982, + 'end_year' => 1986, + ], + ], + 410108 => + [ + + [ + 'address' => '惠济区', + 'start_year' => 2003, + 'end_year' => '', + ], + + [ + 'address' => '邙山区', + 'start_year' => 1987, + 'end_year' => 2002, + ], + ], + 410111 => + [ + + [ + 'address' => '金海区', + 'start_year' => 1981, + 'end_year' => 1986, + ], + ], + 410112 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 410121 => + [ + + [ + 'address' => '荥阳县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 410122 => + [ + + [ + 'address' => '中牟县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410123 => + [ + + [ + 'address' => '新郑县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 410124 => + [ + + [ + 'address' => '巩县', + 'start_year' => 1983, + 'end_year' => 1990, + ], + ], + 410125 => + [ + + [ + 'address' => '登封县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 410126 => + [ + + [ + 'address' => '密县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 410181 => + [ + + [ + 'address' => '巩义市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410182 => + [ + + [ + 'address' => '荥阳市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410183 => + [ + + [ + 'address' => '新密市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410184 => + [ + + [ + 'address' => '新郑市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410185 => + [ + + [ + 'address' => '登封市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410200 => + [ + + [ + 'address' => '开封市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410202 => + [ + + [ + 'address' => '龙亭区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410203 => + [ + + [ + 'address' => '顺河回族区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410204 => + [ + + [ + 'address' => '古楼区', + 'start_year' => '', + 'end_year' => 1988, + ], + + [ + 'address' => '鼓楼区', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 410205 => + [ + + [ + 'address' => '南关区', + 'start_year' => '', + 'end_year' => 2004, + ], + + [ + 'address' => '禹王台区', + 'start_year' => 2005, + 'end_year' => '', + ], + ], + 410211 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 2004, + ], + + [ + 'address' => '金明区', + 'start_year' => 2005, + 'end_year' => 2013, + ], + ], + 410212 => + [ + + [ + 'address' => '祥符区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 410221 => + [ + + [ + 'address' => '杞县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410222 => + [ + + [ + 'address' => '通许县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410223 => + [ + + [ + 'address' => '尉氏县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410224 => + [ + + [ + 'address' => '开封县', + 'start_year' => 1983, + 'end_year' => 2013, + ], + ], + 410225 => + [ + + [ + 'address' => '兰考县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410300 => + [ + + [ + 'address' => '洛阳市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410302 => + [ + + [ + 'address' => '洛北区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '老城区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410303 => + [ + + [ + 'address' => '西工区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410304 => + [ + + [ + 'address' => '瀍河回族区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410305 => + [ + + [ + 'address' => '涧西区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410306 => + [ + + [ + 'address' => '吉利区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 410311 => + [ + + [ + 'address' => '洛龙区', + 'start_year' => 2000, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 410321 => + [ + + [ + 'address' => '偃师县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 410322 => + [ + + [ + 'address' => '孟津县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410323 => + [ + + [ + 'address' => '新安县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410324 => + [ + + [ + 'address' => '栾川县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410325 => + [ + + [ + 'address' => '嵩县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410326 => + [ + + [ + 'address' => '汝阳县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410327 => + [ + + [ + 'address' => '宜阳县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410328 => + [ + + [ + 'address' => '洛宁县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410329 => + [ + + [ + 'address' => '伊川县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410381 => + [ + + [ + 'address' => '偃师市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410400 => + [ + + [ + 'address' => '平顶山市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410402 => + [ + + [ + 'address' => '新华区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410403 => + [ + + [ + 'address' => '卫东区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 410404 => + [ + + [ + 'address' => '石龙区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 410411 => + [ + + [ + 'address' => '湛河区', + 'start_year' => 1994, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 410412 => + [ + + [ + 'address' => '舞钢区', + 'start_year' => 1982, + 'end_year' => 1989, + ], + ], + 410421 => + [ + + [ + 'address' => '宝丰县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410422 => + [ + + [ + 'address' => '叶县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410423 => + [ + + [ + 'address' => '鲁山县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410424 => + [ + + [ + 'address' => '临汝县', + 'start_year' => 1986, + 'end_year' => 1987, + ], + ], + 410425 => + [ + + [ + 'address' => '郏县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410426 => + [ + + [ + 'address' => '襄城县', + 'start_year' => 1986, + 'end_year' => 1996, + ], + ], + 410481 => + [ + + [ + 'address' => '舞钢市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410482 => + [ + + [ + 'address' => '汝州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410500 => + [ + + [ + 'address' => '安阳市', + 'start_year' => 1984, + 'end_year' => '', + ], + + [ + 'address' => '鹤壁市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 410502 => + [ + + [ + 'address' => '文峰区', + 'start_year' => 1984, + 'end_year' => '', + ], + + [ + 'address' => '鹤山区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 410503 => + [ + + [ + 'address' => '北关区', + 'start_year' => 1984, + 'end_year' => '', + ], + + [ + 'address' => '山城区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 410504 => + [ + + [ + 'address' => '铁西区', + 'start_year' => 1984, + 'end_year' => 2001, + ], + ], + 410505 => + [ + + [ + 'address' => '殷都区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 410506 => + [ + + [ + 'address' => '龙安区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 410511 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 410521 => + [ + + [ + 'address' => '林县', + 'start_year' => 1984, + 'end_year' => 1993, + ], + ], + 410522 => + [ + + [ + 'address' => '安阳县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 410523 => + [ + + [ + 'address' => '汤阴县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 410524 => + [ + + [ + 'address' => '淇县', + 'start_year' => 1984, + 'end_year' => 1985, + ], + ], + 410525 => + [ + + [ + 'address' => '浚县', + 'start_year' => 1984, + 'end_year' => 1985, + ], + ], + 410526 => + [ + + [ + 'address' => '滑县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410527 => + [ + + [ + 'address' => '内黄县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410581 => + [ + + [ + 'address' => '林州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410600 => + [ + + [ + 'address' => '焦作市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '鹤壁市', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 410602 => + [ + + [ + 'address' => '解放区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '鹤山区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 410603 => + [ + + [ + 'address' => '中站区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '山城区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 410604 => + [ + + [ + 'address' => '马村区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 410611 => + [ + + [ + 'address' => '淇滨区', + 'start_year' => 2001, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 410621 => + [ + + [ + 'address' => '浚县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410622 => + [ + + [ + 'address' => '淇县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410700 => + [ + + [ + 'address' => '新乡市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410702 => + [ + + [ + 'address' => '红旗区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410703 => + [ + + [ + 'address' => '卫滨区', + 'start_year' => 2003, + 'end_year' => '', + ], + + [ + 'address' => '新华区', + 'start_year' => 1983, + 'end_year' => 2002, + ], + ], + 410704 => + [ + + [ + 'address' => '凤泉区', + 'start_year' => 2003, + 'end_year' => '', + ], + + [ + 'address' => '北站区', + 'start_year' => 1983, + 'end_year' => 2002, + ], + ], + 410711 => + [ + + [ + 'address' => '牧野区', + 'start_year' => 2003, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => 1983, + 'end_year' => 2002, + ], + ], + 410721 => + [ + + [ + 'address' => '新乡县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410722 => + [ + + [ + 'address' => '汲县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 410723 => + [ + + [ + 'address' => '辉县', + 'start_year' => 1986, + 'end_year' => 1987, + ], + ], + 410724 => + [ + + [ + 'address' => '获嘉县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410725 => + [ + + [ + 'address' => '原阳县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410726 => + [ + + [ + 'address' => '延津县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410727 => + [ + + [ + 'address' => '封丘县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410728 => + [ + + [ + 'address' => '长垣县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410781 => + [ + + [ + 'address' => '卫辉市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410782 => + [ + + [ + 'address' => '辉县市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410800 => + [ + + [ + 'address' => '焦作市', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 410802 => + [ + + [ + 'address' => '解放区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 410803 => + [ + + [ + 'address' => '中站区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 410804 => + [ + + [ + 'address' => '马村区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 410811 => + [ + + [ + 'address' => '山阳区', + 'start_year' => 1990, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => 1982, + 'end_year' => 1989, + ], + ], + 410821 => + [ + + [ + 'address' => '修武县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410822 => + [ + + [ + 'address' => '博爱县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410823 => + [ + + [ + 'address' => '武陟县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410824 => + [ + + [ + 'address' => '沁阳县', + 'start_year' => 1986, + 'end_year' => 1988, + ], + ], + 410825 => + [ + + [ + 'address' => '温县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 410826 => + [ + + [ + 'address' => '孟县', + 'start_year' => 1986, + 'end_year' => 1995, + ], + ], + 410827 => + [ + + [ + 'address' => '济源县', + 'start_year' => 1986, + 'end_year' => 1987, + ], + ], + 410881 => + [ + + [ + 'address' => '济源市', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 410882 => + [ + + [ + 'address' => '沁阳市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 410883 => + [ + + [ + 'address' => '孟州市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 410900 => + [ + + [ + 'address' => '濮阳市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410902 => + [ + + [ + 'address' => '华龙区', + 'start_year' => 2002, + 'end_year' => '', + ], + + [ + 'address' => '市区', + 'start_year' => 1985, + 'end_year' => 2001, + ], + ], + 410911 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1984, + 'end_year' => 1986, + ], + ], + 410921 => + [ + + [ + 'address' => '滑县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 410922 => + [ + + [ + 'address' => '清丰县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410923 => + [ + + [ + 'address' => '南乐县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410924 => + [ + + [ + 'address' => '内黄县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 410925 => + [ + + [ + 'address' => '长垣县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 410926 => + [ + + [ + 'address' => '范县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410927 => + [ + + [ + 'address' => '台前县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 410928 => + [ + + [ + 'address' => '濮阳县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 411000 => + [ + + [ + 'address' => '许昌市', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 411002 => + [ + + [ + 'address' => '魏都区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 411003 => + [ + + [ + 'address' => '建安区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 411021 => + [ + + [ + 'address' => '禹县', + 'start_year' => 1986, + 'end_year' => 1987, + ], + ], + 411022 => + [ + + [ + 'address' => '长葛县', + 'start_year' => 1986, + 'end_year' => 1992, + ], + ], + 411023 => + [ + + [ + 'address' => '许昌县', + 'start_year' => 1986, + 'end_year' => 2015, + ], + ], + 411024 => + [ + + [ + 'address' => '鄢陵县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 411025 => + [ + + [ + 'address' => '襄城县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 411081 => + [ + + [ + 'address' => '禹州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 411082 => + [ + + [ + 'address' => '长葛市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 411100 => + [ + + [ + 'address' => '漯河市', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 411102 => + [ + + [ + 'address' => '源汇区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 411103 => + [ + + [ + 'address' => '郾城区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 411104 => + [ + + [ + 'address' => '召陵区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 411121 => + [ + + [ + 'address' => '舞阳县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 411122 => + [ + + [ + 'address' => '临颍县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 411123 => + [ + + [ + 'address' => '郾城县', + 'start_year' => 1986, + 'end_year' => 2003, + ], + ], + 411200 => + [ + + [ + 'address' => '三门峡市', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 411202 => + [ + + [ + 'address' => '湖滨区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 411203 => + [ + + [ + 'address' => '陕州区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 411221 => + [ + + [ + 'address' => '渑池县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 411222 => + [ + + [ + 'address' => '陕县', + 'start_year' => 1986, + 'end_year' => 2014, + ], + ], + 411223 => + [ + + [ + 'address' => '灵宝县', + 'start_year' => 1986, + 'end_year' => 1992, + ], + ], + 411224 => + [ + + [ + 'address' => '卢氏县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 411281 => + [ + + [ + 'address' => '义马市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 411282 => + [ + + [ + 'address' => '灵宝市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 411300 => + [ + + [ + 'address' => '南阳市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411302 => + [ + + [ + 'address' => '宛城区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411303 => + [ + + [ + 'address' => '卧龙区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411321 => + [ + + [ + 'address' => '南召县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411322 => + [ + + [ + 'address' => '方城县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411323 => + [ + + [ + 'address' => '西峡县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411324 => + [ + + [ + 'address' => '镇平县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411325 => + [ + + [ + 'address' => '内乡县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411326 => + [ + + [ + 'address' => '淅川县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411327 => + [ + + [ + 'address' => '社旗县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411328 => + [ + + [ + 'address' => '唐河县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411329 => + [ + + [ + 'address' => '新野县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411330 => + [ + + [ + 'address' => '桐柏县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 411381 => + [ + + [ + 'address' => '邓州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 411400 => + [ + + [ + 'address' => '商丘市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 411402 => + [ + + [ + 'address' => '梁园区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 411403 => + [ + + [ + 'address' => '睢阳区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 411421 => + [ + + [ + 'address' => '民权县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 411422 => + [ + + [ + 'address' => '睢县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 411423 => + [ + + [ + 'address' => '宁陵县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 411424 => + [ + + [ + 'address' => '柘城县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 411425 => + [ + + [ + 'address' => '虞城县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 411426 => + [ + + [ + 'address' => '夏邑县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 411481 => + [ + + [ + 'address' => '永城市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 411500 => + [ + + [ + 'address' => '信阳市', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 411502 => + [ + + [ + 'address' => '浉河区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 411503 => + [ + + [ + 'address' => '平桥区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 411521 => + [ + + [ + 'address' => '罗山县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 411522 => + [ + + [ + 'address' => '光山县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 411523 => + [ + + [ + 'address' => '新县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 411524 => + [ + + [ + 'address' => '商城县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 411525 => + [ + + [ + 'address' => '固始县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 411526 => + [ + + [ + 'address' => '潢川县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 411527 => + [ + + [ + 'address' => '淮滨县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 411528 => + [ + + [ + 'address' => '息县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 411600 => + [ + + [ + 'address' => '周口市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411602 => + [ + + [ + 'address' => '川汇区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411621 => + [ + + [ + 'address' => '扶沟县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411622 => + [ + + [ + 'address' => '西华县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411623 => + [ + + [ + 'address' => '商水县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411624 => + [ + + [ + 'address' => '沈丘县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411625 => + [ + + [ + 'address' => '郸城县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411626 => + [ + + [ + 'address' => '淮阳县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411627 => + [ + + [ + 'address' => '太康县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411628 => + [ + + [ + 'address' => '鹿邑县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411681 => + [ + + [ + 'address' => '项城市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411700 => + [ + + [ + 'address' => '驻马店市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411702 => + [ + + [ + 'address' => '驿城区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411721 => + [ + + [ + 'address' => '西平县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411722 => + [ + + [ + 'address' => '上蔡县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411723 => + [ + + [ + 'address' => '平舆县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411724 => + [ + + [ + 'address' => '正阳县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411725 => + [ + + [ + 'address' => '确山县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411726 => + [ + + [ + 'address' => '泌阳县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411727 => + [ + + [ + 'address' => '汝南县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411728 => + [ + + [ + 'address' => '遂平县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 411729 => + [ + + [ + 'address' => '新蔡县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 412100 => + [ + + [ + 'address' => '安阳地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412101 => + [ + + [ + 'address' => '安阳市', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 412102 => + [ + + [ + 'address' => '文峰区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 412103 => + [ + + [ + 'address' => '北关区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 412104 => + [ + + [ + 'address' => '铁西区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 412111 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 412121 => + [ + + [ + 'address' => '林县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 412122 => + [ + + [ + 'address' => '安阳县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 412123 => + [ + + [ + 'address' => '汤阴县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 412124 => + [ + + [ + 'address' => '淇县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 412125 => + [ + + [ + 'address' => '浚县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 412126 => + [ + + [ + 'address' => '濮阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412127 => + [ + + [ + 'address' => '滑县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412128 => + [ + + [ + 'address' => '清丰县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412129 => + [ + + [ + 'address' => '南乐县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412130 => + [ + + [ + 'address' => '内黄县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412131 => + [ + + [ + 'address' => '长垣县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412132 => + [ + + [ + 'address' => '范县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412133 => + [ + + [ + 'address' => '台前县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412200 => + [ + + [ + 'address' => '新乡地区', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412201 => + [ + + [ + 'address' => '新乡市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412202 => + [ + + [ + 'address' => '红旗区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412203 => + [ + + [ + 'address' => '新华区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412204 => + [ + + [ + 'address' => '北站区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 412211 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412221 => + [ + + [ + 'address' => '沁阳县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412222 => + [ + + [ + 'address' => '博爱县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412223 => + [ + + [ + 'address' => '济源县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412224 => + [ + + [ + 'address' => '孟县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412225 => + [ + + [ + 'address' => '温县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412226 => + [ + + [ + 'address' => '武陟县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412227 => + [ + + [ + 'address' => '修武县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412228 => + [ + + [ + 'address' => '获嘉县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412229 => + [ + + [ + 'address' => '新乡县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412230 => + [ + + [ + 'address' => '辉县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412231 => + [ + + [ + 'address' => '汲县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412232 => + [ + + [ + 'address' => '原阳县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412233 => + [ + + [ + 'address' => '延津县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412234 => + [ + + [ + 'address' => '封丘县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412300 => + [ + + [ + 'address' => '商丘地区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 412301 => + [ + + [ + 'address' => '商丘市', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 412302 => + [ + + [ + 'address' => '永城市', + 'start_year' => 1996, + 'end_year' => 1996, + ], + ], + 412321 => + [ + + [ + 'address' => '虞城县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 412322 => + [ + + [ + 'address' => '商丘县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 412323 => + [ + + [ + 'address' => '民权县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 412324 => + [ + + [ + 'address' => '宁陵县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 412325 => + [ + + [ + 'address' => '睢县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 412326 => + [ + + [ + 'address' => '夏邑县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 412327 => + [ + + [ + 'address' => '柘城县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 412328 => + [ + + [ + 'address' => '永城县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 412400 => + [ + + [ + 'address' => '开封地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412421 => + [ + + [ + 'address' => '杞县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412422 => + [ + + [ + 'address' => '通许县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412423 => + [ + + [ + 'address' => '尉氏县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412424 => + [ + + [ + 'address' => '开封县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412425 => + [ + + [ + 'address' => '中牟县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412426 => + [ + + [ + 'address' => '巩县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '新郑县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 412427 => + [ + + [ + 'address' => '巩县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '登封县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 412428 => + [ + + [ + 'address' => '新郑县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '登封县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 412429 => + [ + + [ + 'address' => '密县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412430 => + [ + + [ + 'address' => '兰考县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412500 => + [ + + [ + 'address' => '洛阳地区', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412501 => + [ + + [ + 'address' => '三门峡市', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412502 => + [ + + [ + 'address' => '义马市', + 'start_year' => 1981, + 'end_year' => 1985, + ], + ], + 412521 => + [ + + [ + 'address' => '偃师县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412522 => + [ + + [ + 'address' => '孟津县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412523 => + [ + + [ + 'address' => '新安县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412524 => + [ + + [ + 'address' => '渑池县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412525 => + [ + + [ + 'address' => '陕县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412526 => + [ + + [ + 'address' => '灵宝县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412527 => + [ + + [ + 'address' => '伊川县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412528 => + [ + + [ + 'address' => '汝阳县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412529 => + [ + + [ + 'address' => '嵩县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412530 => + [ + + [ + 'address' => '洛宁县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412531 => + [ + + [ + 'address' => '卢氏县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412532 => + [ + + [ + 'address' => '栾川县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412533 => + [ + + [ + 'address' => '临汝县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412534 => + [ + + [ + 'address' => '宜阳县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412600 => + [ + + [ + 'address' => '许昌地区', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412601 => + [ + + [ + 'address' => '许昌市', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412602 => + [ + + [ + 'address' => '漯河市', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412621 => + [ + + [ + 'address' => '长葛县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412622 => + [ + + [ + 'address' => '禹县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412623 => + [ + + [ + 'address' => '鄢陵县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412624 => + [ + + [ + 'address' => '许昌县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412625 => + [ + + [ + 'address' => '郏县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412626 => + [ + + [ + 'address' => '临颍县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412627 => + [ + + [ + 'address' => '襄城县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412628 => + [ + + [ + 'address' => '宝丰县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412629 => + [ + + [ + 'address' => '郾城县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412630 => + [ + + [ + 'address' => '叶县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412631 => + [ + + [ + 'address' => '鲁山县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 412632 => + [ + + [ + 'address' => '舞阳县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 412700 => + [ + + [ + 'address' => '周口地区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412701 => + [ + + [ + 'address' => '周口市', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412702 => + [ + + [ + 'address' => '项城市', + 'start_year' => 1993, + 'end_year' => 1999, + ], + ], + 412721 => + [ + + [ + 'address' => '扶沟县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412722 => + [ + + [ + 'address' => '西华县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412723 => + [ + + [ + 'address' => '商水县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412724 => + [ + + [ + 'address' => '太康县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412725 => + [ + + [ + 'address' => '鹿邑县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412726 => + [ + + [ + 'address' => '郸城县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412727 => + [ + + [ + 'address' => '淮阳县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412728 => + [ + + [ + 'address' => '沈丘县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412729 => + [ + + [ + 'address' => '项城县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 412800 => + [ + + [ + 'address' => '驻马店地区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412801 => + [ + + [ + 'address' => '驻马店市', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412821 => + [ + + [ + 'address' => '确山县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412822 => + [ + + [ + 'address' => '泌阳县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412823 => + [ + + [ + 'address' => '遂平县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412824 => + [ + + [ + 'address' => '西平县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412825 => + [ + + [ + 'address' => '上蔡县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412826 => + [ + + [ + 'address' => '汝南县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412827 => + [ + + [ + 'address' => '平舆县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412828 => + [ + + [ + 'address' => '新蔡县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412829 => + [ + + [ + 'address' => '正阳县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 412900 => + [ + + [ + 'address' => '南阳地区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412901 => + [ + + [ + 'address' => '南阳市', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412902 => + [ + + [ + 'address' => '邓州市', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 412921 => + [ + + [ + 'address' => '南召县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412922 => + [ + + [ + 'address' => '方城县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412923 => + [ + + [ + 'address' => '西峡县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412924 => + [ + + [ + 'address' => '南阳县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412925 => + [ + + [ + 'address' => '镇平县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412926 => + [ + + [ + 'address' => '内乡县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412927 => + [ + + [ + 'address' => '淅川县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412928 => + [ + + [ + 'address' => '社旗县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412929 => + [ + + [ + 'address' => '唐河县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412930 => + [ + + [ + 'address' => '邓县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 412931 => + [ + + [ + 'address' => '新野县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 412932 => + [ + + [ + 'address' => '桐柏县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 413000 => + [ + + [ + 'address' => '信阳地区', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 413001 => + [ + + [ + 'address' => '信阳市', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 413021 => + [ + + [ + 'address' => '息县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 413022 => + [ + + [ + 'address' => '淮滨县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 413023 => + [ + + [ + 'address' => '信阳县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 413024 => + [ + + [ + 'address' => '潢川县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 413025 => + [ + + [ + 'address' => '光山县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 413026 => + [ + + [ + 'address' => '固始县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 413027 => + [ + + [ + 'address' => '商城县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 413028 => + [ + + [ + 'address' => '罗山县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 413029 => + [ + + [ + 'address' => '新县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 419001 => + [ + + [ + 'address' => '义马市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + + [ + 'address' => '济源市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 419002 => + [ + + [ + 'address' => '汝州市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 419003 => + [ + + [ + 'address' => '济源市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 419004 => + [ + + [ + 'address' => '禹州市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 419005 => + [ + + [ + 'address' => '卫辉市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 419006 => + [ + + [ + 'address' => '辉县市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 419007 => + [ + + [ + 'address' => '沁阳市', + 'start_year' => 1989, + 'end_year' => 1994, + ], + ], + 419008 => + [ + + [ + 'address' => '舞钢市', + 'start_year' => 1990, + 'end_year' => 1994, + ], + ], + 419009 => + [ + + [ + 'address' => '巩义市', + 'start_year' => 1991, + 'end_year' => 1994, + ], + ], + 419010 => + [ + + [ + 'address' => '灵宝市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 419011 => + [ + + [ + 'address' => '长葛市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 419012 => + [ + + [ + 'address' => '偃师市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 419013 => + [ + + [ + 'address' => '邓州市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 419014 => + [ + + [ + 'address' => '林州市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 419015 => + [ + + [ + 'address' => '新密市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 419016 => + [ + + [ + 'address' => '荥阳市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 419017 => + [ + + [ + 'address' => '新郑市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 419018 => + [ + + [ + 'address' => '登封市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 420000 => + [ + + [ + 'address' => '湖北省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420100 => + [ + + [ + 'address' => '武汉市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420102 => + [ + + [ + 'address' => '江岸区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420103 => + [ + + [ + 'address' => '江汉区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420104 => + [ + + [ + 'address' => '硚口区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420105 => + [ + + [ + 'address' => '汉阳区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420106 => + [ + + [ + 'address' => '武昌区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420107 => + [ + + [ + 'address' => '青山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420111 => + [ + + [ + 'address' => '洪山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420112 => + [ + + [ + 'address' => '东西湖区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420113 => + [ + + [ + 'address' => '汉南区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 420114 => + [ + + [ + 'address' => '蔡甸区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 420115 => + [ + + [ + 'address' => '江夏区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 420116 => + [ + + [ + 'address' => '黄陂区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 420117 => + [ + + [ + 'address' => '新洲区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 420121 => + [ + + [ + 'address' => '汉阳县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 420122 => + [ + + [ + 'address' => '武昌县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 420123 => + [ + + [ + 'address' => '黄陂县', + 'start_year' => 1983, + 'end_year' => 1997, + ], + ], + 420124 => + [ + + [ + 'address' => '新洲县', + 'start_year' => 1983, + 'end_year' => 1997, + ], + ], + 420200 => + [ + + [ + 'address' => '黄石市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420202 => + [ + + [ + 'address' => '黄石港区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420203 => + [ + + [ + 'address' => '石灰窑区', + 'start_year' => '', + 'end_year' => 2000, + ], + + [ + 'address' => '西塞山区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 420204 => + [ + + [ + 'address' => '下陆区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420205 => + [ + + [ + 'address' => '铁山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420211 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 420221 => + [ + + [ + 'address' => '大冶县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 420222 => + [ + + [ + 'address' => '阳新县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 420281 => + [ + + [ + 'address' => '大冶市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 420300 => + [ + + [ + 'address' => '十堰市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420302 => + [ + + [ + 'address' => '茅箭区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 420303 => + [ + + [ + 'address' => '张湾区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 420304 => + [ + + [ + 'address' => '郧阳区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 420321 => + [ + + [ + 'address' => '郧县', + 'start_year' => 1994, + 'end_year' => 2013, + ], + ], + 420322 => + [ + + [ + 'address' => '郧西县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 420323 => + [ + + [ + 'address' => '竹山县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 420324 => + [ + + [ + 'address' => '竹溪县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 420325 => + [ + + [ + 'address' => '房县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 420381 => + [ + + [ + 'address' => '丹江口市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 420400 => + [ + + [ + 'address' => '沙市市', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 420500 => + [ + + [ + 'address' => '宜昌市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 420502 => + [ + + [ + 'address' => '西陵区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 420503 => + [ + + [ + 'address' => '伍家岗区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 420504 => + [ + + [ + 'address' => '点军区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 420505 => + [ + + [ + 'address' => '猇亭区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 420506 => + [ + + [ + 'address' => '夷陵区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 420521 => + [ + + [ + 'address' => '宜昌县', + 'start_year' => 1992, + 'end_year' => 2000, + ], + ], + 420523 => + [ + + [ + 'address' => '枝江县', + 'start_year' => 1992, + 'end_year' => 1995, + ], + ], + 420525 => + [ + + [ + 'address' => '远安县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 420526 => + [ + + [ + 'address' => '兴山县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 420527 => + [ + + [ + 'address' => '秭归县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 420528 => + [ + + [ + 'address' => '长阳土家族自治县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 420529 => + [ + + [ + 'address' => '五峰土家族自治县', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 420581 => + [ + + [ + 'address' => '宜都市', + 'start_year' => 1998, + 'end_year' => '', + ], + + [ + 'address' => '枝城市', + 'start_year' => 1996, + 'end_year' => 1997, + ], + ], + 420582 => + [ + + [ + 'address' => '当阳市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 420583 => + [ + + [ + 'address' => '枝城市', + 'start_year' => 1995, + 'end_year' => 1995, + ], + + [ + 'address' => '枝江市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 420600 => + [ + + [ + 'address' => '襄樊市', + 'start_year' => '', + 'end_year' => 2009, + ], + + [ + 'address' => '襄阳市', + 'start_year' => 2010, + 'end_year' => '', + ], + ], + 420602 => + [ + + [ + 'address' => '襄城区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 420603 => + [ + + [ + 'address' => '樊东区', + 'start_year' => 1984, + 'end_year' => 1994, + ], + ], + 420604 => + [ + + [ + 'address' => '樊西区', + 'start_year' => 1984, + 'end_year' => 1994, + ], + ], + 420606 => + [ + + [ + 'address' => '樊城区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 420607 => + [ + + [ + 'address' => '襄州区', + 'start_year' => 2010, + 'end_year' => '', + ], + + [ + 'address' => '襄阳区', + 'start_year' => 2001, + 'end_year' => 2009, + ], + ], + 420611 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1984, + 'end_year' => 1994, + ], + ], + 420621 => + [ + + [ + 'address' => '襄阳县', + 'start_year' => 1983, + 'end_year' => 2000, + ], + ], + 420622 => + [ + + [ + 'address' => '枣阳县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 420623 => + [ + + [ + 'address' => '宜城县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 420624 => + [ + + [ + 'address' => '南漳县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 420625 => + [ + + [ + 'address' => '谷城县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 420626 => + [ + + [ + 'address' => '保康县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 420682 => + [ + + [ + 'address' => '老河口市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 420683 => + [ + + [ + 'address' => '枣阳市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 420684 => + [ + + [ + 'address' => '宜城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 420700 => + [ + + [ + 'address' => '鄂州市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 420702 => + [ + + [ + 'address' => '梁子湖区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 420703 => + [ + + [ + 'address' => '华容区', + 'start_year' => 1987, + 'end_year' => '', + ], + + [ + 'address' => '黄州区', + 'start_year' => 1984, + 'end_year' => 1986, + ], + ], + 420704 => + [ + + [ + 'address' => '鄂城区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 420800 => + [ + + [ + 'address' => '荆门市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 420802 => + [ + + [ + 'address' => '东宝区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 420803 => + [ + + [ + 'address' => '沙洋区', + 'start_year' => 1985, + 'end_year' => 1997, + ], + ], + 420804 => + [ + + [ + 'address' => '掇刀区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 420821 => + [ + + [ + 'address' => '京山县', + 'start_year' => 1996, + 'end_year' => 2017, + ], + ], + 420822 => + [ + + [ + 'address' => '沙洋县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 420881 => + [ + + [ + 'address' => '钟祥市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 420882 => + [ + + [ + 'address' => '京山市', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 420900 => + [ + + [ + 'address' => '孝感市', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 420901 => + [ + + [ + 'address' => '随州市', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 420902 => + [ + + [ + 'address' => '孝南区', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 420921 => + [ + + [ + 'address' => '孝昌县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 420922 => + [ + + [ + 'address' => '大悟县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 420923 => + [ + + [ + 'address' => '云梦县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 420924 => + [ + + [ + 'address' => '汉川县', + 'start_year' => 1993, + 'end_year' => 1996, + ], + ], + 420981 => + [ + + [ + 'address' => '应城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 420982 => + [ + + [ + 'address' => '安陆市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 420983 => + [ + + [ + 'address' => '广水市', + 'start_year' => 1995, + 'end_year' => 1999, + ], + ], + 420984 => + [ + + [ + 'address' => '汉川市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 421000 => + [ + + [ + 'address' => '荆州市', + 'start_year' => 1996, + 'end_year' => '', + ], + + [ + 'address' => '荆沙市', + 'start_year' => 1994, + 'end_year' => 1995, + ], + ], + 421001 => + [ + + [ + 'address' => '老河口市', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 421002 => + [ + + [ + 'address' => '沙市区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 421003 => + [ + + [ + 'address' => '荆州区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 421004 => + [ + + [ + 'address' => '江陵区', + 'start_year' => 1994, + 'end_year' => 1997, + ], + ], + 421022 => + [ + + [ + 'address' => '公安县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 421023 => + [ + + [ + 'address' => '监利县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 421024 => + [ + + [ + 'address' => '松滋县', + 'start_year' => 1994, + 'end_year' => 1994, + ], + + [ + 'address' => '江陵县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 421025 => + [ + + [ + 'address' => '京山县', + 'start_year' => 1994, + 'end_year' => 1995, + ], + ], + 421081 => + [ + + [ + 'address' => '石首市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421082 => + [ + + [ + 'address' => '钟祥市', + 'start_year' => 1995, + 'end_year' => 1995, + ], + ], + 421083 => + [ + + [ + 'address' => '洪湖市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421087 => + [ + + [ + 'address' => '松滋市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421100 => + [ + + [ + 'address' => '黄冈市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421102 => + [ + + [ + 'address' => '黄州区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421121 => + [ + + [ + 'address' => '团风县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421122 => + [ + + [ + 'address' => '红安县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421123 => + [ + + [ + 'address' => '罗田县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421124 => + [ + + [ + 'address' => '英山县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421125 => + [ + + [ + 'address' => '浠水县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421126 => + [ + + [ + 'address' => '蕲春县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421127 => + [ + + [ + 'address' => '黄梅县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421181 => + [ + + [ + 'address' => '麻城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421182 => + [ + + [ + 'address' => '武穴市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 421200 => + [ + + [ + 'address' => '咸宁市', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 421202 => + [ + + [ + 'address' => '咸安区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 421221 => + [ + + [ + 'address' => '嘉鱼县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 421222 => + [ + + [ + 'address' => '通城县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 421223 => + [ + + [ + 'address' => '崇阳县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 421224 => + [ + + [ + 'address' => '通山县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 421281 => + [ + + [ + 'address' => '赤壁市', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 421300 => + [ + + [ + 'address' => '随州市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 421303 => + [ + + [ + 'address' => '曾都区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 421321 => + [ + + [ + 'address' => '随县', + 'start_year' => 2009, + 'end_year' => '', + ], + ], + 421381 => + [ + + [ + 'address' => '广水市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 422100 => + [ + + [ + 'address' => '黄冈地区', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 422101 => + [ + + [ + 'address' => '鄂城市', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '麻城市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 422102 => + [ + + [ + 'address' => '武穴市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 422103 => + [ + + [ + 'address' => '黄州市', + 'start_year' => 1990, + 'end_year' => 1994, + ], + ], + 422121 => + [ + + [ + 'address' => '黄冈县', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 422122 => + [ + + [ + 'address' => '新洲县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422123 => + [ + + [ + 'address' => '红安县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 422124 => + [ + + [ + 'address' => '麻城县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 422125 => + [ + + [ + 'address' => '罗田县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 422126 => + [ + + [ + 'address' => '英山县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 422127 => + [ + + [ + 'address' => '浠水县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 422128 => + [ + + [ + 'address' => '蕲春县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 422129 => + [ + + [ + 'address' => '广济县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 422130 => + [ + + [ + 'address' => '黄梅县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 422131 => + [ + + [ + 'address' => '鄂城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422200 => + [ + + [ + 'address' => '孝感地区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 422201 => + [ + + [ + 'address' => '孝感市', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 422202 => + [ + + [ + 'address' => '应城市', + 'start_year' => 1986, + 'end_year' => 1992, + ], + ], + 422203 => + [ + + [ + 'address' => '安陆市', + 'start_year' => 1987, + 'end_year' => 1992, + ], + ], + 422204 => + [ + + [ + 'address' => '广水市', + 'start_year' => 1988, + 'end_year' => 1992, + ], + ], + 422221 => + [ + + [ + 'address' => '孝感县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422222 => + [ + + [ + 'address' => '黄陂县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422223 => + [ + + [ + 'address' => '大悟县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 422224 => + [ + + [ + 'address' => '应山县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 422225 => + [ + + [ + 'address' => '安陆县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 422226 => + [ + + [ + 'address' => '云梦县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 422227 => + [ + + [ + 'address' => '应城县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 422228 => + [ + + [ + 'address' => '汉川县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 422300 => + [ + + [ + 'address' => '咸宁地区', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 422301 => + [ + + [ + 'address' => '咸宁市', + 'start_year' => 1983, + 'end_year' => 1997, + ], + ], + 422302 => + [ + + [ + 'address' => '蒲圻市', + 'start_year' => 1986, + 'end_year' => 1997, + ], + ], + 422321 => + [ + + [ + 'address' => '咸宁县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422322 => + [ + + [ + 'address' => '嘉鱼县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 422323 => + [ + + [ + 'address' => '蒲圻县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 422324 => + [ + + [ + 'address' => '通城县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 422325 => + [ + + [ + 'address' => '崇阳县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 422326 => + [ + + [ + 'address' => '通山县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 422327 => + [ + + [ + 'address' => '阳新县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 422400 => + [ + + [ + 'address' => '荆州地区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422401 => + [ + + [ + 'address' => '仙桃市', + 'start_year' => 1986, + 'end_year' => 1993, + ], + + [ + 'address' => '荆门市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422402 => + [ + + [ + 'address' => '石首市', + 'start_year' => 1986, + 'end_year' => 1993, + ], + ], + 422403 => + [ + + [ + 'address' => '洪湖市', + 'start_year' => 1987, + 'end_year' => 1993, + ], + ], + 422404 => + [ + + [ + 'address' => '天门市', + 'start_year' => 1987, + 'end_year' => 1993, + ], + ], + 422405 => + [ + + [ + 'address' => '潜江市', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 422406 => + [ + + [ + 'address' => '钟祥市', + 'start_year' => 1992, + 'end_year' => 1993, + ], + ], + 422421 => + [ + + [ + 'address' => '江陵县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422422 => + [ + + [ + 'address' => '松滋县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422423 => + [ + + [ + 'address' => '公安县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422424 => + [ + + [ + 'address' => '石首县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 422425 => + [ + + [ + 'address' => '监利县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422426 => + [ + + [ + 'address' => '洪湖县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 422427 => + [ + + [ + 'address' => '沔阳县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 422428 => + [ + + [ + 'address' => '天门县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 422429 => + [ + + [ + 'address' => '潜江县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 422430 => + [ + + [ + 'address' => '荆门县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422431 => + [ + + [ + 'address' => '钟祥县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 422432 => + [ + + [ + 'address' => '京山县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422500 => + [ + + [ + 'address' => '襄阳地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422501 => + [ + + [ + 'address' => '随州市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422502 => + [ + + [ + 'address' => '老河口市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422521 => + [ + + [ + 'address' => '樊阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422522 => + [ + + [ + 'address' => '枣阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422523 => + [ + + [ + 'address' => '随县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422524 => + [ + + [ + 'address' => '宜城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422525 => + [ + + [ + 'address' => '南漳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422526 => + [ + + [ + 'address' => '光化县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422527 => + [ + + [ + 'address' => '谷城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422528 => + [ + + [ + 'address' => '保康县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422600 => + [ + + [ + 'address' => '郧阳地区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422601 => + [ + + [ + 'address' => '丹江口市', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 422621 => + [ + + [ + 'address' => '均县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422622 => + [ + + [ + 'address' => '郧县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422623 => + [ + + [ + 'address' => '郧西县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422624 => + [ + + [ + 'address' => '竹山县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422625 => + [ + + [ + 'address' => '竹溪县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422626 => + [ + + [ + 'address' => '房县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 422627 => + [ + + [ + 'address' => '神农架林区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422700 => + [ + + [ + 'address' => '宜昌地区', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 422701 => + [ + + [ + 'address' => '枝城市', + 'start_year' => 1987, + 'end_year' => 1991, + ], + ], + 422702 => + [ + + [ + 'address' => '当阳市', + 'start_year' => 1988, + 'end_year' => 1991, + ], + ], + 422721 => + [ + + [ + 'address' => '宜昌县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 422722 => + [ + + [ + 'address' => '宜都县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 422723 => + [ + + [ + 'address' => '枝江县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 422724 => + [ + + [ + 'address' => '当阳县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 422725 => + [ + + [ + 'address' => '远安县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 422726 => + [ + + [ + 'address' => '兴山县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 422727 => + [ + + [ + 'address' => '秭归县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 422728 => + [ + + [ + 'address' => '长阳县', + 'start_year' => '', + 'end_year' => 1983, + ], + + [ + 'address' => '长阳土家族自治县', + 'start_year' => 1984, + 'end_year' => 1991, + ], + ], + 422729 => + [ + + [ + 'address' => '五峰县', + 'start_year' => '', + 'end_year' => 1983, + ], + + [ + 'address' => '五峰土家族自治县', + 'start_year' => 1984, + 'end_year' => 1991, + ], + ], + 422800 => + [ + + [ + 'address' => '恩施土家族苗族自治州', + 'start_year' => 1993, + 'end_year' => '', + ], + + [ + 'address' => '恩施地区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '鄂西土家族苗族自治州', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 422801 => + [ + + [ + 'address' => '恩施市', + 'start_year' => 1981, + 'end_year' => '', + ], + ], + 422802 => + [ + + [ + 'address' => '利川市', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 422821 => + [ + + [ + 'address' => '恩施县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422822 => + [ + + [ + 'address' => '建始县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 422823 => + [ + + [ + 'address' => '巴东县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 422824 => + [ + + [ + 'address' => '利川县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 422825 => + [ + + [ + 'address' => '宣恩县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 422826 => + [ + + [ + 'address' => '咸丰县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 422827 => + [ + + [ + 'address' => '来凤县', + 'start_year' => 1983, + 'end_year' => '', + ], + + [ + 'address' => '来凤土家族自治县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422828 => + [ + + [ + 'address' => '鹤峰县', + 'start_year' => 1983, + 'end_year' => '', + ], + + [ + 'address' => '鹤峰土家族自治县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 422921 => + [ + + [ + 'address' => '神农架林区', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 429001 => + [ + + [ + 'address' => '随州市', + 'start_year' => 1984, + 'end_year' => 1999, + ], + ], + 429002 => + [ + + [ + 'address' => '老河口市', + 'start_year' => 1984, + 'end_year' => 1994, + ], + ], + 429003 => + [ + + [ + 'address' => '枣阳市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 429004 => + [ + + [ + 'address' => '仙桃市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 429005 => + [ + + [ + 'address' => '潜江市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 429006 => + [ + + [ + 'address' => '天门市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 429007 => + [ + + [ + 'address' => '枝城市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 429008 => + [ + + [ + 'address' => '当阳市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 429009 => + [ + + [ + 'address' => '应城市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 429010 => + [ + + [ + 'address' => '安陆市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 429011 => + [ + + [ + 'address' => '广水市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 429012 => + [ + + [ + 'address' => '石首市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 429013 => + [ + + [ + 'address' => '洪湖市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 429014 => + [ + + [ + 'address' => '钟祥市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 429015 => + [ + + [ + 'address' => '丹江口市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 429016 => + [ + + [ + 'address' => '大冶市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 429017 => + [ + + [ + 'address' => '宜城市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 429021 => + [ + + [ + 'address' => '神农架林区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 430000 => + [ + + [ + 'address' => '湖南省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 430100 => + [ + + [ + 'address' => '长沙市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 430102 => + [ + + [ + 'address' => '东区', + 'start_year' => 1983, + 'end_year' => 1995, + ], + + [ + 'address' => '城东区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '芙蓉区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 430103 => + [ + + [ + 'address' => '南区', + 'start_year' => 1983, + 'end_year' => 1995, + ], + + [ + 'address' => '城南区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '天心区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 430104 => + [ + + [ + 'address' => '城西区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '岳麓区', + 'start_year' => 1996, + 'end_year' => '', + ], + + [ + 'address' => '西区', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 430105 => + [ + + [ + 'address' => '北区', + 'start_year' => 1983, + 'end_year' => 1995, + ], + + [ + 'address' => '城北区', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '开福区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 430111 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1995, + ], + + [ + 'address' => '雨花区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 430112 => + [ + + [ + 'address' => '望城区', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 430121 => + [ + + [ + 'address' => '长沙县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 430122 => + [ + + [ + 'address' => '望城县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 430123 => + [ + + [ + 'address' => '浏阳县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 430124 => + [ + + [ + 'address' => '宁乡县', + 'start_year' => 1983, + 'end_year' => 2016, + ], + ], + 430181 => + [ + + [ + 'address' => '浏阳市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 430182 => + [ + + [ + 'address' => '宁乡市', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 430200 => + [ + + [ + 'address' => '株洲市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 430202 => + [ + + [ + 'address' => '东区', + 'start_year' => '', + 'end_year' => 1996, + ], + + [ + 'address' => '荷塘区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 430203 => + [ + + [ + 'address' => '北区', + 'start_year' => '', + 'end_year' => 1996, + ], + + [ + 'address' => '芦淞区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 430204 => + [ + + [ + 'address' => '南区', + 'start_year' => '', + 'end_year' => 1996, + ], + + [ + 'address' => '石峰区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 430211 => + [ + + [ + 'address' => '天元区', + 'start_year' => 1997, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 430219 => + [ + + [ + 'address' => '醴陵市', + 'start_year' => 1985, + 'end_year' => 1985, + ], + ], + 430221 => + [ + + [ + 'address' => '株洲县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 430222 => + [ + + [ + 'address' => '醴陵县', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 430223 => + [ + + [ + 'address' => '攸县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 430224 => + [ + + [ + 'address' => '茶陵县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 430225 => + [ + + [ + 'address' => '炎陵县', + 'start_year' => 1994, + 'end_year' => '', + ], + + [ + 'address' => '酃县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 430281 => + [ + + [ + 'address' => '醴陵市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 430300 => + [ + + [ + 'address' => '湘潭市', + 'start_year' => '', + 'end_year' => '', + ], + + [ + 'address' => '邵阳市', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 430302 => + [ + + [ + 'address' => '东区', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '雨湖区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 430303 => + [ + + [ + 'address' => '湘江区', + 'start_year' => '', + 'end_year' => 1991, + ], + + [ + 'address' => '西区', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 430304 => + [ + + [ + 'address' => '岳塘区', + 'start_year' => '', + 'end_year' => '', + ], + + [ + 'address' => '桥头区', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 430305 => + [ + + [ + 'address' => '板塘区', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 430306 => + [ + + [ + 'address' => '韶山区', + 'start_year' => 1988, + 'end_year' => 1989, + ], + ], + 430311 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 430321 => + [ + + [ + 'address' => '湘潭县', + 'start_year' => 1984, + 'end_year' => '', + ], + + [ + 'address' => '邵东县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 430322 => + [ + + [ + 'address' => '新邵县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '湘乡县', + 'start_year' => 1984, + 'end_year' => 1985, + ], + ], + 430381 => + [ + + [ + 'address' => '湘乡市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 430382 => + [ + + [ + 'address' => '韶山市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 430400 => + [ + + [ + 'address' => '湘潭市', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '衡阳市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 430402 => + [ + + [ + 'address' => '江东区', + 'start_year' => '', + 'end_year' => 2000, + ], + + [ + 'address' => '雨湖区', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 430403 => + [ + + [ + 'address' => '城南区', + 'start_year' => '', + 'end_year' => 2000, + ], + + [ + 'address' => '湘江区', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 430404 => + [ + + [ + 'address' => '城北区', + 'start_year' => '', + 'end_year' => 2000, + ], + + [ + 'address' => '岳塘区', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 430405 => + [ + + [ + 'address' => '板塘区', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '珠晖区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 430406 => + [ + + [ + 'address' => '雁峰区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 430407 => + [ + + [ + 'address' => '石鼓区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 430408 => + [ + + [ + 'address' => '蒸湘区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 430411 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 430412 => + [ + + [ + 'address' => '南岳区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430421 => + [ + + [ + 'address' => '湘潭县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '衡阳县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 430422 => + [ + + [ + 'address' => '湘乡县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '衡南县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 430423 => + [ + + [ + 'address' => '衡山县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 430424 => + [ + + [ + 'address' => '衡东县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 430425 => + [ + + [ + 'address' => '常宁县', + 'start_year' => 1984, + 'end_year' => 1995, + ], + ], + 430426 => + [ + + [ + 'address' => '祁东县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 430427 => + [ + + [ + 'address' => '耒阳县', + 'start_year' => 1984, + 'end_year' => 1985, + ], + ], + 430481 => + [ + + [ + 'address' => '耒阳市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 430482 => + [ + + [ + 'address' => '常宁市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 430500 => + [ + + [ + 'address' => '衡阳市', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '邵阳市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 430502 => + [ + + [ + 'address' => '东区', + 'start_year' => '', + 'end_year' => 1996, + ], + + [ + 'address' => '双清区', + 'start_year' => 1997, + 'end_year' => '', + ], + + [ + 'address' => '江东区', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 430503 => + [ + + [ + 'address' => '城南区', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '大祥区', + 'start_year' => 1997, + 'end_year' => '', + ], + + [ + 'address' => '西区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 430504 => + [ + + [ + 'address' => '城北区', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '桥头区', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 430511 => + [ + + [ + 'address' => '北塔区', + 'start_year' => 1997, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 430521 => + [ + + [ + 'address' => '衡阳县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '邵东县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 430522 => + [ + + [ + 'address' => '新邵县', + 'start_year' => 1984, + 'end_year' => '', + ], + + [ + 'address' => '衡南县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 430523 => + [ + + [ + 'address' => '衡山县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '邵阳县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 430524 => + [ + + [ + 'address' => '衡东县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '隆回县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 430525 => + [ + + [ + 'address' => '常宁县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + + [ + 'address' => '洞口县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 430526 => + [ + + [ + 'address' => '武冈县', + 'start_year' => 1986, + 'end_year' => 1993, + ], + + [ + 'address' => '祁东县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 430527 => + [ + + [ + 'address' => '绥宁县', + 'start_year' => 1986, + 'end_year' => '', + ], + + [ + 'address' => '耒阳县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 430528 => + [ + + [ + 'address' => '新宁县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 430529 => + [ + + [ + 'address' => '城步苗族自治县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 430581 => + [ + + [ + 'address' => '武冈市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 430600 => + [ + + [ + 'address' => '岳阳市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 430602 => + [ + + [ + 'address' => '南区', + 'start_year' => 1984, + 'end_year' => 1995, + ], + + [ + 'address' => '岳阳楼区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 430603 => + [ + + [ + 'address' => '云溪区', + 'start_year' => 1996, + 'end_year' => '', + ], + + [ + 'address' => '北区', + 'start_year' => 1984, + 'end_year' => 1995, + ], + ], + 430611 => + [ + + [ + 'address' => '君山区', + 'start_year' => 1996, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => 1984, + 'end_year' => 1995, + ], + ], + 430621 => + [ + + [ + 'address' => '岳阳县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 430622 => + [ + + [ + 'address' => '临湘县', + 'start_year' => 1986, + 'end_year' => 1991, + ], + ], + 430623 => + [ + + [ + 'address' => '华容县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 430624 => + [ + + [ + 'address' => '湘阴县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 430626 => + [ + + [ + 'address' => '平江县', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 430627 => + [ + + [ + 'address' => '汨罗县', + 'start_year' => 1986, + 'end_year' => 1986, + ], + ], + 430681 => + [ + + [ + 'address' => '汨罗市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 430682 => + [ + + [ + 'address' => '临湘市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 430700 => + [ + + [ + 'address' => '常德市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430702 => + [ + + [ + 'address' => '武陵区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430703 => + [ + + [ + 'address' => '鼎城区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430721 => + [ + + [ + 'address' => '安乡县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430722 => + [ + + [ + 'address' => '汉寿县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430723 => + [ + + [ + 'address' => '澧县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430724 => + [ + + [ + 'address' => '临澧县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430725 => + [ + + [ + 'address' => '桃源县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430726 => + [ + + [ + 'address' => '石门县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430781 => + [ + + [ + 'address' => '津市市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 430800 => + [ + + [ + 'address' => '大庸市', + 'start_year' => 1988, + 'end_year' => 1993, + ], + + [ + 'address' => '张家界市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 430802 => + [ + + [ + 'address' => '永定区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430811 => + [ + + [ + 'address' => '武陵源区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430821 => + [ + + [ + 'address' => '慈利县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430822 => + [ + + [ + 'address' => '桑植县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 430900 => + [ + + [ + 'address' => '益阳市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 430902 => + [ + + [ + 'address' => '资阳区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 430903 => + [ + + [ + 'address' => '赫山区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 430921 => + [ + + [ + 'address' => '南县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 430922 => + [ + + [ + 'address' => '桃江县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 430923 => + [ + + [ + 'address' => '安化县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 430981 => + [ + + [ + 'address' => '沅江市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431000 => + [ + + [ + 'address' => '郴州市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 431002 => + [ + + [ + 'address' => '北湖区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 431003 => + [ + + [ + 'address' => '苏仙区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 431021 => + [ + + [ + 'address' => '桂阳县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 431022 => + [ + + [ + 'address' => '宜章县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 431023 => + [ + + [ + 'address' => '永兴县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 431024 => + [ + + [ + 'address' => '嘉禾县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 431025 => + [ + + [ + 'address' => '临武县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 431026 => + [ + + [ + 'address' => '汝城县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 431027 => + [ + + [ + 'address' => '桂东县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 431028 => + [ + + [ + 'address' => '安仁县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 431081 => + [ + + [ + 'address' => '资兴市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431100 => + [ + + [ + 'address' => '永州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431102 => + [ + + [ + 'address' => '芝山区', + 'start_year' => 1995, + 'end_year' => 2004, + ], + + [ + 'address' => '零陵区', + 'start_year' => 2005, + 'end_year' => '', + ], + ], + 431103 => + [ + + [ + 'address' => '冷水滩区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431121 => + [ + + [ + 'address' => '祁阳县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431122 => + [ + + [ + 'address' => '东安县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431123 => + [ + + [ + 'address' => '双牌县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431124 => + [ + + [ + 'address' => '道县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431125 => + [ + + [ + 'address' => '江永县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431126 => + [ + + [ + 'address' => '宁远县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431127 => + [ + + [ + 'address' => '蓝山县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431128 => + [ + + [ + 'address' => '新田县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431129 => + [ + + [ + 'address' => '江华瑶族自治县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 431200 => + [ + + [ + 'address' => '怀化市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431202 => + [ + + [ + 'address' => '鹤城区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431221 => + [ + + [ + 'address' => '中方县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431222 => + [ + + [ + 'address' => '沅陵县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431223 => + [ + + [ + 'address' => '辰溪县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431224 => + [ + + [ + 'address' => '溆浦县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431225 => + [ + + [ + 'address' => '会同县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431226 => + [ + + [ + 'address' => '麻阳苗族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431227 => + [ + + [ + 'address' => '新晃侗族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431228 => + [ + + [ + 'address' => '芷江侗族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431229 => + [ + + [ + 'address' => '靖州苗族侗族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431230 => + [ + + [ + 'address' => '通道侗族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431281 => + [ + + [ + 'address' => '洪江市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 431300 => + [ + + [ + 'address' => '娄底市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 431302 => + [ + + [ + 'address' => '娄星区', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 431321 => + [ + + [ + 'address' => '双峰县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 431322 => + [ + + [ + 'address' => '新化县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 431381 => + [ + + [ + 'address' => '冷水江市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 431382 => + [ + + [ + 'address' => '涟源市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 432100 => + [ + + [ + 'address' => '湘潭地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432121 => + [ + + [ + 'address' => '湘潭县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432122 => + [ + + [ + 'address' => '湘乡县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432123 => + [ + + [ + 'address' => '醴陵县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432124 => + [ + + [ + 'address' => '浏阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432125 => + [ + + [ + 'address' => '攸县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432126 => + [ + + [ + 'address' => '茶陵县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432127 => + [ + + [ + 'address' => '酃县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432200 => + [ + + [ + 'address' => '岳阳地区', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432201 => + [ + + [ + 'address' => '岳阳市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432221 => + [ + + [ + 'address' => '岳阳县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 432222 => + [ + + [ + 'address' => '平江县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432223 => + [ + + [ + 'address' => '湘阴县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432224 => + [ + + [ + 'address' => '汨罗县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432225 => + [ + + [ + 'address' => '临湘县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432226 => + [ + + [ + 'address' => '华容县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432300 => + [ + + [ + 'address' => '益阳地区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432301 => + [ + + [ + 'address' => '益阳市', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432302 => + [ + + [ + 'address' => '沅江市', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 432321 => + [ + + [ + 'address' => '益阳县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432322 => + [ + + [ + 'address' => '南县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432323 => + [ + + [ + 'address' => '沅江县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432324 => + [ + + [ + 'address' => '宁乡县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432325 => + [ + + [ + 'address' => '桃江县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432326 => + [ + + [ + 'address' => '安化县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432400 => + [ + + [ + 'address' => '常德地区', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432401 => + [ + + [ + 'address' => '常德市', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432402 => + [ + + [ + 'address' => '津市市', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432421 => + [ + + [ + 'address' => '常德县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432422 => + [ + + [ + 'address' => '安乡县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432423 => + [ + + [ + 'address' => '汉寿县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432424 => + [ + + [ + 'address' => '澧县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432425 => + [ + + [ + 'address' => '临澧县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432426 => + [ + + [ + 'address' => '桃源县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432427 => + [ + + [ + 'address' => '石门县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432428 => + [ + + [ + 'address' => '慈利县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 432500 => + [ + + [ + 'address' => '娄底地区', + 'start_year' => 1982, + 'end_year' => 1998, + ], + + [ + 'address' => '涟源地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 432501 => + [ + + [ + 'address' => '娄底市', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 432502 => + [ + + [ + 'address' => '冷水江市', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 432503 => + [ + + [ + 'address' => '涟源市', + 'start_year' => 1987, + 'end_year' => 1998, + ], + ], + 432521 => + [ + + [ + 'address' => '涟源县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 432522 => + [ + + [ + 'address' => '双峰县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 432523 => + [ + + [ + 'address' => '邵东县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432524 => + [ + + [ + 'address' => '新化县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 432525 => + [ + + [ + 'address' => '新邵县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432600 => + [ + + [ + 'address' => '邵阳地区', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432621 => + [ + + [ + 'address' => '邵阳县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432622 => + [ + + [ + 'address' => '隆回县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432623 => + [ + + [ + 'address' => '武冈县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432624 => + [ + + [ + 'address' => '洞口县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432625 => + [ + + [ + 'address' => '新宁县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432626 => + [ + + [ + 'address' => '绥宁县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432627 => + [ + + [ + 'address' => '城步苗族自治县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 432700 => + [ + + [ + 'address' => '衡阳地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432721 => + [ + + [ + 'address' => '衡阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432722 => + [ + + [ + 'address' => '衡南县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432723 => + [ + + [ + 'address' => '衡山县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432724 => + [ + + [ + 'address' => '衡东县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432725 => + [ + + [ + 'address' => '常宁县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432726 => + [ + + [ + 'address' => '祁东县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432727 => + [ + + [ + 'address' => '祁阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432800 => + [ + + [ + 'address' => '郴州地区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432801 => + [ + + [ + 'address' => '郴州市', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432802 => + [ + + [ + 'address' => '资兴市', + 'start_year' => 1984, + 'end_year' => 1993, + ], + ], + 432821 => + [ + + [ + 'address' => '郴县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432822 => + [ + + [ + 'address' => '桂阳县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432823 => + [ + + [ + 'address' => '永兴县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432824 => + [ + + [ + 'address' => '宜章县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432825 => + [ + + [ + 'address' => '资兴县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 432826 => + [ + + [ + 'address' => '嘉禾县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432827 => + [ + + [ + 'address' => '临武县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432828 => + [ + + [ + 'address' => '汝城县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432829 => + [ + + [ + 'address' => '桂东县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432830 => + [ + + [ + 'address' => '耒阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 432831 => + [ + + [ + 'address' => '安仁县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 432900 => + [ + + [ + 'address' => '零陵地区', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 432901 => + [ + + [ + 'address' => '永州市', + 'start_year' => 1982, + 'end_year' => 1994, + ], + ], + 432902 => + [ + + [ + 'address' => '冷水滩市', + 'start_year' => 1984, + 'end_year' => 1994, + ], + ], + 432921 => + [ + + [ + 'address' => '零陵县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 432922 => + [ + + [ + 'address' => '东安县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 432923 => + [ + + [ + 'address' => '道县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 432924 => + [ + + [ + 'address' => '宁远县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 432925 => + [ + + [ + 'address' => '江永县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 432926 => + [ + + [ + 'address' => '江华瑶族自治县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 432927 => + [ + + [ + 'address' => '蓝山县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 432928 => + [ + + [ + 'address' => '新田县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 432929 => + [ + + [ + 'address' => '双牌县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 432930 => + [ + + [ + 'address' => '祁阳县', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 433000 => + [ + + [ + 'address' => '怀化地区', + 'start_year' => 1981, + 'end_year' => 1996, + ], + + [ + 'address' => '黔阳地区', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 433001 => + [ + + [ + 'address' => '怀化市', + 'start_year' => 1982, + 'end_year' => 1996, + ], + + [ + 'address' => '洪江市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 433002 => + [ + + [ + 'address' => '怀化市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '洪江市', + 'start_year' => 1982, + 'end_year' => 1996, + ], + ], + 433021 => + [ + + [ + 'address' => '黔阳县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 433022 => + [ + + [ + 'address' => '沅陵县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 433023 => + [ + + [ + 'address' => '辰溪县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 433024 => + [ + + [ + 'address' => '溆浦县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 433025 => + [ + + [ + 'address' => '麻阳县', + 'start_year' => '', + 'end_year' => 1987, + ], + + [ + 'address' => '麻阳苗族自治县', + 'start_year' => 1988, + 'end_year' => 1996, + ], + ], + 433026 => + [ + + [ + 'address' => '新晃侗族自治县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 433027 => + [ + + [ + 'address' => '芷江侗族自治县', + 'start_year' => 1986, + 'end_year' => 1996, + ], + + [ + 'address' => '芷江县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 433028 => + [ + + [ + 'address' => '怀化县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 433029 => + [ + + [ + 'address' => '会同县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 433030 => + [ + + [ + 'address' => '靖县', + 'start_year' => '', + 'end_year' => 1986, + ], + + [ + 'address' => '靖州苗族侗族自治县', + 'start_year' => 1987, + 'end_year' => 1996, + ], + ], + 433031 => + [ + + [ + 'address' => '通道侗族自治县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 433100 => + [ + + [ + 'address' => '湘西土家族苗族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 433101 => + [ + + [ + 'address' => '吉首市', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 433102 => + [ + + [ + 'address' => '大庸市', + 'start_year' => 1985, + 'end_year' => 1987, + ], + ], + 433121 => + [ + + [ + 'address' => '吉首县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 433122 => + [ + + [ + 'address' => '泸溪县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 433123 => + [ + + [ + 'address' => '凤凰县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 433124 => + [ + + [ + 'address' => '花垣县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 433125 => + [ + + [ + 'address' => '保靖县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 433126 => + [ + + [ + 'address' => '古丈县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 433127 => + [ + + [ + 'address' => '永顺县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 433128 => + [ + + [ + 'address' => '大庸县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 433129 => + [ + + [ + 'address' => '桑植县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 433130 => + [ + + [ + 'address' => '龙山县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 439001 => + [ + + [ + 'address' => '醴陵市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 439002 => + [ + + [ + 'address' => '湘乡市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 439003 => + [ + + [ + 'address' => '耒阳市', + 'start_year' => 1986, + 'end_year' => 1994, + ], + ], + 439004 => + [ + + [ + 'address' => '汨罗市', + 'start_year' => 1987, + 'end_year' => 1994, + ], + ], + 439005 => + [ + + [ + 'address' => '津市市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 439006 => + [ + + [ + 'address' => '韶山市', + 'start_year' => 1990, + 'end_year' => 1994, + ], + ], + 439007 => + [ + + [ + 'address' => '临湘市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 439008 => + [ + + [ + 'address' => '浏阳市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 439009 => + [ + + [ + 'address' => '资兴市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 439010 => + [ + + [ + 'address' => '沅江市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 439011 => + [ + + [ + 'address' => '武冈市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 440000 => + [ + + [ + 'address' => '广东省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440100 => + [ + + [ + 'address' => '广州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440102 => + [ + + [ + 'address' => '东山区', + 'start_year' => '', + 'end_year' => 2004, + ], + ], + 440103 => + [ + + [ + 'address' => '荔湾区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440104 => + [ + + [ + 'address' => '越秀区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440105 => + [ + + [ + 'address' => '海珠区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440106 => + [ + + [ + 'address' => '天河区', + 'start_year' => 1988, + 'end_year' => '', + ], + + [ + 'address' => '芳村区', + 'start_year' => 1985, + 'end_year' => 1987, + ], + ], + 440107 => + [ + + [ + 'address' => '天河区', + 'start_year' => 1985, + 'end_year' => 1987, + ], + + [ + 'address' => '芳村区', + 'start_year' => 1988, + 'end_year' => 2004, + ], + ], + 440111 => + [ + + [ + 'address' => '白云区', + 'start_year' => 1987, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 440112 => + [ + + [ + 'address' => '黄埔区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440113 => + [ + + [ + 'address' => '番禺区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 440114 => + [ + + [ + 'address' => '花都区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 440115 => + [ + + [ + 'address' => '南沙区', + 'start_year' => 2005, + 'end_year' => '', + ], + ], + 440116 => + [ + + [ + 'address' => '萝岗区', + 'start_year' => 2005, + 'end_year' => 2013, + ], + ], + 440117 => + [ + + [ + 'address' => '从化区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 440118 => + [ + + [ + 'address' => '增城区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 440121 => + [ + + [ + 'address' => '花县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 440122 => + [ + + [ + 'address' => '从化县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 440123 => + [ + + [ + 'address' => '新丰县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 440124 => + [ + + [ + 'address' => '龙门县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 440125 => + [ + + [ + 'address' => '增城县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 440126 => + [ + + [ + 'address' => '番禺县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 440127 => + [ + + [ + 'address' => '清远县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 440128 => + [ + + [ + 'address' => '佛冈县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 440181 => + [ + + [ + 'address' => '番禺市', + 'start_year' => 1995, + 'end_year' => 1999, + ], + ], + 440182 => + [ + + [ + 'address' => '花都市', + 'start_year' => 1995, + 'end_year' => 1999, + ], + ], + 440183 => + [ + + [ + 'address' => '增城市', + 'start_year' => 1995, + 'end_year' => 2013, + ], + ], + 440184 => + [ + + [ + 'address' => '从化市', + 'start_year' => 1995, + 'end_year' => 2013, + ], + ], + 440200 => + [ + + [ + 'address' => '韶关市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440202 => + [ + + [ + 'address' => '北江区', + 'start_year' => 1984, + 'end_year' => 2003, + ], + ], + 440203 => + [ + + [ + 'address' => '武江区', + 'start_year' => 2003, + 'end_year' => '', + ], + + [ + 'address' => '浈江区', + 'start_year' => 1984, + 'end_year' => 2002, + ], + ], + 440204 => + [ + + [ + 'address' => '武江区', + 'start_year' => 1984, + 'end_year' => 2002, + ], + + [ + 'address' => '浈江区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 440205 => + [ + + [ + 'address' => '曲江区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 440221 => + [ + + [ + 'address' => '曲江县', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 440222 => + [ + + [ + 'address' => '始兴县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 440223 => + [ + + [ + 'address' => '南雄县', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 440224 => + [ + + [ + 'address' => '仁化县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 440225 => + [ + + [ + 'address' => '乐昌县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 440226 => + [ + + [ + 'address' => '连县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 440227 => + [ + + [ + 'address' => '阳山县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 440228 => + [ + + [ + 'address' => '英德县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 440229 => + [ + + [ + 'address' => '翁源县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 440230 => + [ + + [ + 'address' => '连山壮族瑶族自治县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 440231 => + [ + + [ + 'address' => '连南瑶族自治县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 440232 => + [ + + [ + 'address' => '乳源瑶族自治县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 440233 => + [ + + [ + 'address' => '新丰县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 440281 => + [ + + [ + 'address' => '乐昌市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 440282 => + [ + + [ + 'address' => '南雄市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 440300 => + [ + + [ + 'address' => '深圳市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440303 => + [ + + [ + 'address' => '罗湖区', + 'start_year' => 1990, + 'end_year' => '', + ], + ], + 440304 => + [ + + [ + 'address' => '福田区', + 'start_year' => 1990, + 'end_year' => '', + ], + ], + 440305 => + [ + + [ + 'address' => '南山区', + 'start_year' => 1990, + 'end_year' => '', + ], + ], + 440306 => + [ + + [ + 'address' => '宝安区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 440307 => + [ + + [ + 'address' => '龙岗区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 440308 => + [ + + [ + 'address' => '盐田区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 440309 => + [ + + [ + 'address' => '龙华区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 440310 => + [ + + [ + 'address' => '坪山区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 440311 => + [ + + [ + 'address' => '光明区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 440321 => + [ + + [ + 'address' => '宝安县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 440400 => + [ + + [ + 'address' => '珠海市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440402 => + [ + + [ + 'address' => '香洲区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 440403 => + [ + + [ + 'address' => '斗门区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 440404 => + [ + + [ + 'address' => '金湾区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 440421 => + [ + + [ + 'address' => '斗门县', + 'start_year' => 1983, + 'end_year' => 2000, + ], + ], + 440500 => + [ + + [ + 'address' => '汕头市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440502 => + [ + + [ + 'address' => '同平区', + 'start_year' => '', + 'end_year' => 1990, + ], + + [ + 'address' => '龙湖区', + 'start_year' => 1991, + 'end_year' => 1993, + ], + ], + 440503 => + [ + + [ + 'address' => '安平区', + 'start_year' => '', + 'end_year' => 1990, + ], + + [ + 'address' => '金园区', + 'start_year' => 1991, + 'end_year' => 1993, + ], + ], + 440504 => + [ + + [ + 'address' => '公园区', + 'start_year' => '', + 'end_year' => 1990, + ], + + [ + 'address' => '升平区', + 'start_year' => 1991, + 'end_year' => 1993, + ], + ], + 440505 => + [ + + [ + 'address' => '金沙区', + 'start_year' => '', + 'end_year' => 1990, + ], + ], + 440506 => + [ + + [ + 'address' => '达豪区', + 'start_year' => 1984, + 'end_year' => 2002, + ], + ], + 440507 => + [ + + [ + 'address' => '龙湖区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 440508 => + [ + + [ + 'address' => '金园区', + 'start_year' => 1994, + 'end_year' => 2002, + ], + ], + 440509 => + [ + + [ + 'address' => '升平区', + 'start_year' => 1994, + 'end_year' => 2002, + ], + ], + 440510 => + [ + + [ + 'address' => '河浦区', + 'start_year' => 1994, + 'end_year' => 2002, + ], + ], + 440511 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1990, + ], + + [ + 'address' => '金平区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 440512 => + [ + + [ + 'address' => '濠江区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 440513 => + [ + + [ + 'address' => '潮阳区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 440514 => + [ + + [ + 'address' => '潮南区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 440515 => + [ + + [ + 'address' => '澄海区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 440521 => + [ + + [ + 'address' => '澄海县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 440522 => + [ + + [ + 'address' => '饶平县', + 'start_year' => 1983, + 'end_year' => 1990, + ], + ], + 440523 => + [ + + [ + 'address' => '南澳县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 440524 => + [ + + [ + 'address' => '潮阳县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 440525 => + [ + + [ + 'address' => '揭阳县', + 'start_year' => 1983, + 'end_year' => 1990, + ], + ], + 440526 => + [ + + [ + 'address' => '揭西县', + 'start_year' => 1983, + 'end_year' => 1990, + ], + ], + 440527 => + [ + + [ + 'address' => '普宁县', + 'start_year' => 1983, + 'end_year' => 1990, + ], + ], + 440528 => + [ + + [ + 'address' => '惠来县', + 'start_year' => 1983, + 'end_year' => 1990, + ], + ], + 440582 => + [ + + [ + 'address' => '潮阳市', + 'start_year' => 1995, + 'end_year' => 2002, + ], + ], + 440583 => + [ + + [ + 'address' => '澄海市', + 'start_year' => 1995, + 'end_year' => 2002, + ], + ], + 440600 => + [ + + [ + 'address' => '佛山市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440602 => + [ + + [ + 'address' => '城区', + 'start_year' => 1987, + 'end_year' => 2001, + ], + + [ + 'address' => '汾江区', + 'start_year' => 1984, + 'end_year' => 1986, + ], + ], + 440603 => + [ + + [ + 'address' => '石湾区', + 'start_year' => 1984, + 'end_year' => 2001, + ], + ], + 440604 => + [ + + [ + 'address' => '禅城区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 440605 => + [ + + [ + 'address' => '南海区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 440606 => + [ + + [ + 'address' => '顺德区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 440607 => + [ + + [ + 'address' => '三水区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 440608 => + [ + + [ + 'address' => '高明区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 440620 => + [ + + [ + 'address' => '中山市', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 440621 => + [ + + [ + 'address' => '三水县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 440622 => + [ + + [ + 'address' => '南海县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 440623 => + [ + + [ + 'address' => '顺德县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 440624 => + [ + + [ + 'address' => '高明县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 440681 => + [ + + [ + 'address' => '顺德市', + 'start_year' => 1995, + 'end_year' => 2001, + ], + ], + 440682 => + [ + + [ + 'address' => '南海市', + 'start_year' => 1995, + 'end_year' => 2001, + ], + ], + 440683 => + [ + + [ + 'address' => '三水市', + 'start_year' => 1995, + 'end_year' => 2001, + ], + ], + 440684 => + [ + + [ + 'address' => '高明市', + 'start_year' => 1995, + 'end_year' => 2001, + ], + ], + 440700 => + [ + + [ + 'address' => '江门市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440702 => + [ + + [ + 'address' => '城区', + 'start_year' => 1984, + 'end_year' => 1993, + ], + ], + 440703 => + [ + + [ + 'address' => '蓬江区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 440704 => + [ + + [ + 'address' => '江海区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 440705 => + [ + + [ + 'address' => '新会区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 440711 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1984, + 'end_year' => 1993, + ], + ], + 440721 => + [ + + [ + 'address' => '新会县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 440722 => + [ + + [ + 'address' => '台山县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 440723 => + [ + + [ + 'address' => '恩平县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 440724 => + [ + + [ + 'address' => '开平县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 440725 => + [ + + [ + 'address' => '鹤山县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 440726 => + [ + + [ + 'address' => '阳江县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 440727 => + [ + + [ + 'address' => '阳春县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 440781 => + [ + + [ + 'address' => '台山市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 440782 => + [ + + [ + 'address' => '新会市', + 'start_year' => 1995, + 'end_year' => 2001, + ], + ], + 440783 => + [ + + [ + 'address' => '开平市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 440784 => + [ + + [ + 'address' => '鹤山市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 440785 => + [ + + [ + 'address' => '恩平市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 440800 => + [ + + [ + 'address' => '湛江市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440802 => + [ + + [ + 'address' => '赤坎区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440803 => + [ + + [ + 'address' => '霞山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440804 => + [ + + [ + 'address' => '坡头区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 440811 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1993, + ], + + [ + 'address' => '麻章区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 440821 => + [ + + [ + 'address' => '吴川县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 440822 => + [ + + [ + 'address' => '廉江县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 440823 => + [ + + [ + 'address' => '遂溪县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 440824 => + [ + + [ + 'address' => '海康县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 440825 => + [ + + [ + 'address' => '徐闻县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 440881 => + [ + + [ + 'address' => '廉江市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 440882 => + [ + + [ + 'address' => '雷州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 440883 => + [ + + [ + 'address' => '吴川市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 440900 => + [ + + [ + 'address' => '茂名市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 440902 => + [ + + [ + 'address' => '茂南区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 440903 => + [ + + [ + 'address' => '茂港区', + 'start_year' => 2001, + 'end_year' => 2013, + ], + ], + 440904 => + [ + + [ + 'address' => '电白区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 440921 => + [ + + [ + 'address' => '信宜县', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 440922 => + [ + + [ + 'address' => '高州县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 440923 => + [ + + [ + 'address' => '电白县', + 'start_year' => 1983, + 'end_year' => 2013, + ], + ], + 440924 => + [ + + [ + 'address' => '化州县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 440981 => + [ + + [ + 'address' => '高州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 440982 => + [ + + [ + 'address' => '化州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 440983 => + [ + + [ + 'address' => '信宜市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 441000 => + [ + + [ + 'address' => '海口市', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 441001 => + [ + + [ + 'address' => '潮州市', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 441002 => + [ + + [ + 'address' => '新华区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 441003 => + [ + + [ + 'address' => '立新区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 441004 => + [ + + [ + 'address' => '东方红区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 441005 => + [ + + [ + 'address' => '秀英区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 441100 => + [ + + [ + 'address' => '三亚市', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 441200 => + [ + + [ + 'address' => '肇庆市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441202 => + [ + + [ + 'address' => '端州区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441203 => + [ + + [ + 'address' => '鼎湖区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441204 => + [ + + [ + 'address' => '高要区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 441221 => + [ + + [ + 'address' => '高要县', + 'start_year' => 1988, + 'end_year' => 1992, + ], + ], + 441222 => + [ + + [ + 'address' => '四会县', + 'start_year' => 1988, + 'end_year' => 1992, + ], + ], + 441223 => + [ + + [ + 'address' => '广宁县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441224 => + [ + + [ + 'address' => '怀集县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441225 => + [ + + [ + 'address' => '封开县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441226 => + [ + + [ + 'address' => '德庆县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441227 => + [ + + [ + 'address' => '云浮县', + 'start_year' => 1988, + 'end_year' => 1991, + ], + ], + 441228 => + [ + + [ + 'address' => '新兴县', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 441229 => + [ + + [ + 'address' => '郁南县', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 441230 => + [ + + [ + 'address' => '罗定县', + 'start_year' => 1988, + 'end_year' => 1992, + ], + ], + 441283 => + [ + + [ + 'address' => '高要市', + 'start_year' => 1995, + 'end_year' => 2014, + ], + ], + 441284 => + [ + + [ + 'address' => '四会市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 441300 => + [ + + [ + 'address' => '惠州市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441302 => + [ + + [ + 'address' => '惠城区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441303 => + [ + + [ + 'address' => '惠阳区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 441321 => + [ + + [ + 'address' => '惠阳县', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 441322 => + [ + + [ + 'address' => '博罗县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441323 => + [ + + [ + 'address' => '惠东县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441324 => + [ + + [ + 'address' => '龙门县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441381 => + [ + + [ + 'address' => '惠阳市', + 'start_year' => 1995, + 'end_year' => 2002, + ], + ], + 441400 => + [ + + [ + 'address' => '梅州市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441402 => + [ + + [ + 'address' => '梅江区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441403 => + [ + + [ + 'address' => '梅县区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 441421 => + [ + + [ + 'address' => '梅县', + 'start_year' => 1988, + 'end_year' => 2012, + ], + ], + 441422 => + [ + + [ + 'address' => '大埔县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441423 => + [ + + [ + 'address' => '丰顺县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441424 => + [ + + [ + 'address' => '五华县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441425 => + [ + + [ + 'address' => '兴宁县', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 441426 => + [ + + [ + 'address' => '平远县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441427 => + [ + + [ + 'address' => '蕉岭县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441481 => + [ + + [ + 'address' => '兴宁市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 441500 => + [ + + [ + 'address' => '汕尾市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441502 => + [ + + [ + 'address' => '城区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441521 => + [ + + [ + 'address' => '海丰县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441522 => + [ + + [ + 'address' => '陆丰县', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 441523 => + [ + + [ + 'address' => '陆河县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441581 => + [ + + [ + 'address' => '陆丰市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 441600 => + [ + + [ + 'address' => '河源市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441602 => + [ + + [ + 'address' => '源城区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441611 => + [ + + [ + 'address' => '郊区', + 'start_year' => 1988, + 'end_year' => 1992, + ], + ], + 441621 => + [ + + [ + 'address' => '紫金县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441622 => + [ + + [ + 'address' => '龙川县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441623 => + [ + + [ + 'address' => '连平县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441624 => + [ + + [ + 'address' => '和平县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441625 => + [ + + [ + 'address' => '东源县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 441700 => + [ + + [ + 'address' => '阳江市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441702 => + [ + + [ + 'address' => '江城区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441703 => + [ + + [ + 'address' => '阳东区', + 'start_year' => 1988, + 'end_year' => 1990, + ], + ], + 441704 => + [ + + [ + 'address' => '阳东区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 441721 => + [ + + [ + 'address' => '阳西县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441722 => + [ + + [ + 'address' => '阳春县', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 441723 => + [ + + [ + 'address' => '阳东县', + 'start_year' => 1991, + 'end_year' => 2013, + ], + ], + 441781 => + [ + + [ + 'address' => '阳春市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 441800 => + [ + + [ + 'address' => '清远市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441802 => + [ + + [ + 'address' => '清城区', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441803 => + [ + + [ + 'address' => '清新区', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 441811 => + [ + + [ + 'address' => '清郊区', + 'start_year' => 1988, + 'end_year' => 1991, + ], + ], + 441821 => + [ + + [ + 'address' => '佛冈县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441822 => + [ + + [ + 'address' => '英德县', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 441823 => + [ + + [ + 'address' => '阳山县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441824 => + [ + + [ + 'address' => '连县', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 441825 => + [ + + [ + 'address' => '连山壮族瑶族自治县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441826 => + [ + + [ + 'address' => '连南瑶族自治县', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 441827 => + [ + + [ + 'address' => '清新县', + 'start_year' => 1992, + 'end_year' => 2011, + ], + ], + 441881 => + [ + + [ + 'address' => '英德市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 441882 => + [ + + [ + 'address' => '连州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 441900 => + [ + + [ + 'address' => '东莞市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 442000 => + [ + + [ + 'address' => '中山市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 442100 => + [ + + [ + 'address' => '海南行政区', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442101 => + [ + + [ + 'address' => '海口市', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 442102 => + [ + + [ + 'address' => '通什市', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 442121 => + [ + + [ + 'address' => '琼山县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442122 => + [ + + [ + 'address' => '文昌县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442123 => + [ + + [ + 'address' => '琼海县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442124 => + [ + + [ + 'address' => '万宁县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442125 => + [ + + [ + 'address' => '定安县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442126 => + [ + + [ + 'address' => '屯昌县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442127 => + [ + + [ + 'address' => '澄迈县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442128 => + [ + + [ + 'address' => '临高县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442129 => + [ + + [ + 'address' => '儋县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442130 => + [ + + [ + 'address' => '东方黎族自治县', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 442131 => + [ + + [ + 'address' => '乐东黎族自治县', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 442132 => + [ + + [ + 'address' => '琼中黎族苗族自治县', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 442133 => + [ + + [ + 'address' => '保亭黎族苗族自治县', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 442134 => + [ + + [ + 'address' => '陵水黎族自治县', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 442135 => + [ + + [ + 'address' => '白沙黎族自治县', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 442136 => + [ + + [ + 'address' => '昌江黎族自治县', + 'start_year' => 1987, + 'end_year' => 1987, + ], + ], + 442200 => + [ + + [ + 'address' => '海南黎族苗族自治州', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 442201 => + [ + + [ + 'address' => '三亚市', + 'start_year' => 1984, + 'end_year' => 1986, + ], + ], + 442202 => + [ + + [ + 'address' => '通什市', + 'start_year' => 1986, + 'end_year' => 1986, + ], + ], + 442221 => + [ + + [ + 'address' => '崖县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 442222 => + [ + + [ + 'address' => '东方县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 442223 => + [ + + [ + 'address' => '乐东县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 442224 => + [ + + [ + 'address' => '琼中县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 442225 => + [ + + [ + 'address' => '保亭县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 442226 => + [ + + [ + 'address' => '陵水县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 442227 => + [ + + [ + 'address' => '白沙县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 442228 => + [ + + [ + 'address' => '昌江县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 442300 => + [ + + [ + 'address' => '汕头地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442301 => + [ + + [ + 'address' => '潮州市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 442302 => + [ + + [ + 'address' => '潮州市', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 442321 => + [ + + [ + 'address' => '潮安县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442322 => + [ + + [ + 'address' => '澄海县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442323 => + [ + + [ + 'address' => '饶平县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442324 => + [ + + [ + 'address' => '南澳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442325 => + [ + + [ + 'address' => '潮阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442326 => + [ + + [ + 'address' => '揭阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442327 => + [ + + [ + 'address' => '揭西县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442328 => + [ + + [ + 'address' => '普宁县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442329 => + [ + + [ + 'address' => '惠来县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442330 => + [ + + [ + 'address' => '陆丰县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442331 => + [ + + [ + 'address' => '海丰县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442400 => + [ + + [ + 'address' => '梅县地区', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442401 => + [ + + [ + 'address' => '梅县市', + 'start_year' => 1983, + 'end_year' => 1987, + ], + + [ + 'address' => '梅州市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442421 => + [ + + [ + 'address' => '梅县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442422 => + [ + + [ + 'address' => '大埔县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442423 => + [ + + [ + 'address' => '丰顺县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442424 => + [ + + [ + 'address' => '五华县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442425 => + [ + + [ + 'address' => '兴宁县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442426 => + [ + + [ + 'address' => '平远县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442427 => + [ + + [ + 'address' => '蕉岭县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442500 => + [ + + [ + 'address' => '惠阳地区', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442501 => + [ + + [ + 'address' => '惠州市', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442502 => + [ + + [ + 'address' => '东莞市', + 'start_year' => 1985, + 'end_year' => 1987, + ], + ], + 442521 => + [ + + [ + 'address' => '惠阳县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442522 => + [ + + [ + 'address' => '紫金县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442523 => + [ + + [ + 'address' => '和平县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442524 => + [ + + [ + 'address' => '连平县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442525 => + [ + + [ + 'address' => '河源县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442526 => + [ + + [ + 'address' => '博罗县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442527 => + [ + + [ + 'address' => '东莞县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 442528 => + [ + + [ + 'address' => '惠东县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442529 => + [ + + [ + 'address' => '龙川县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442530 => + [ + + [ + 'address' => '陆丰县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 442531 => + [ + + [ + 'address' => '海丰县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 442600 => + [ + + [ + 'address' => '佛山地区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '韶关地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442621 => + [ + + [ + 'address' => '三水县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '始兴县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442622 => + [ + + [ + 'address' => '南海县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '南雄县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442623 => + [ + + [ + 'address' => '仁化县', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '顺德县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 442624 => + [ + + [ + 'address' => '中山县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '乐昌县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442625 => + [ + + [ + 'address' => '斗门县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '连县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442626 => + [ + + [ + 'address' => '新会县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '阳山县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442627 => + [ + + [ + 'address' => '台山县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '英德县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442628 => + [ + + [ + 'address' => '恩平县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '清远县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442629 => + [ + + [ + 'address' => '佛冈县', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '开平县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 442630 => + [ + + [ + 'address' => '翁源县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442631 => + [ + + [ + 'address' => '连山壮族瑶族自治县', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '鹤山县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 442632 => + [ + + [ + 'address' => '连南瑶族自治县', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '高明县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 442633 => + [ + + [ + 'address' => '乳源瑶族自治县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442700 => + [ + + [ + 'address' => '佛山地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 442721 => + [ + + [ + 'address' => '三水县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 442722 => + [ + + [ + 'address' => '南海县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 442723 => + [ + + [ + 'address' => '顺德县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 442724 => + [ + + [ + 'address' => '中山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 442725 => + [ + + [ + 'address' => '斗门县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 442726 => + [ + + [ + 'address' => '新会县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 442727 => + [ + + [ + 'address' => '台山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 442728 => + [ + + [ + 'address' => '恩平县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 442729 => + [ + + [ + 'address' => '开平县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 442730 => + [ + + [ + 'address' => '高鹤县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 442731 => + [ + + [ + 'address' => '鹤山县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + ], + 442732 => + [ + + [ + 'address' => '高明县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + ], + 442800 => + [ + + [ + 'address' => '肇庆地区', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442801 => + [ + + [ + 'address' => '肇庆市', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442821 => + [ + + [ + 'address' => '高要县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442822 => + [ + + [ + 'address' => '四会县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442823 => + [ + + [ + 'address' => '广宁县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442824 => + [ + + [ + 'address' => '怀集县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442825 => + [ + + [ + 'address' => '封开县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442826 => + [ + + [ + 'address' => '德庆县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442827 => + [ + + [ + 'address' => '云浮县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442828 => + [ + + [ + 'address' => '新兴县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442829 => + [ + + [ + 'address' => '郁南县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442830 => + [ + + [ + 'address' => '罗定县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 442900 => + [ + + [ + 'address' => '湛江地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442921 => + [ + + [ + 'address' => '阳江县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442922 => + [ + + [ + 'address' => '阳春县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442923 => + [ + + [ + 'address' => '信宜县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442924 => + [ + + [ + 'address' => '高州县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442925 => + [ + + [ + 'address' => '电白县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442926 => + [ + + [ + 'address' => '吴川县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442927 => + [ + + [ + 'address' => '化州县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442928 => + [ + + [ + 'address' => '廉江县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442929 => + [ + + [ + 'address' => '遂溪县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442930 => + [ + + [ + 'address' => '海康县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 442931 => + [ + + [ + 'address' => '徐闻县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 445100 => + [ + + [ + 'address' => '潮州市', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 445102 => + [ + + [ + 'address' => '湘桥区', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 445103 => + [ + + [ + 'address' => '潮安区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 445121 => + [ + + [ + 'address' => '潮安县', + 'start_year' => 1991, + 'end_year' => 2012, + ], + ], + 445122 => + [ + + [ + 'address' => '饶平县', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 445200 => + [ + + [ + 'address' => '揭阳市', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 445202 => + [ + + [ + 'address' => '榕城区', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 445203 => + [ + + [ + 'address' => '揭东区', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 445221 => + [ + + [ + 'address' => '揭东县', + 'start_year' => 1991, + 'end_year' => 2011, + ], + ], + 445222 => + [ + + [ + 'address' => '揭西县', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 445223 => + [ + + [ + 'address' => '普宁县', + 'start_year' => 1991, + 'end_year' => 1992, + ], + ], + 445224 => + [ + + [ + 'address' => '惠来县', + 'start_year' => 1991, + 'end_year' => '', + ], + ], + 445281 => + [ + + [ + 'address' => '普宁市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 445300 => + [ + + [ + 'address' => '云浮市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 445302 => + [ + + [ + 'address' => '云城区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 445303 => + [ + + [ + 'address' => '云安区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 445321 => + [ + + [ + 'address' => '新兴县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 445322 => + [ + + [ + 'address' => '郁南县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 445323 => + [ + + [ + 'address' => '云安县', + 'start_year' => 1996, + 'end_year' => 2013, + ], + ], + 445381 => + [ + + [ + 'address' => '罗定市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 449001 => + [ + + [ + 'address' => '潮州市', + 'start_year' => 1984, + 'end_year' => 1990, + ], + + [ + 'address' => '顺德市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 449002 => + [ + + [ + 'address' => '中山市', + 'start_year' => 1984, + 'end_year' => 1987, + ], + + [ + 'address' => '台山市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 449003 => + [ + + [ + 'address' => '海口市', + 'start_year' => 1986, + 'end_year' => 1986, + ], + + [ + 'address' => '番禺市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 449004 => + [ + + [ + 'address' => '南海市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 449005 => + [ + + [ + 'address' => '云浮市', + 'start_year' => 1992, + 'end_year' => 1993, + ], + ], + 449006 => + [ + + [ + 'address' => '新会市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 449007 => + [ + + [ + 'address' => '开平市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449008 => + [ + + [ + 'address' => '三水市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449009 => + [ + + [ + 'address' => '普宁市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449010 => + [ + + [ + 'address' => '罗定市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449011 => + [ + + [ + 'address' => '潮阳市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449012 => + [ + + [ + 'address' => '高州市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449013 => + [ + + [ + 'address' => '花都市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449014 => + [ + + [ + 'address' => '高要市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449015 => + [ + + [ + 'address' => '鹤山市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449016 => + [ + + [ + 'address' => '四会市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449017 => + [ + + [ + 'address' => '增城市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449018 => + [ + + [ + 'address' => '廉江市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 449019 => + [ + + [ + 'address' => '英德市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449020 => + [ + + [ + 'address' => '恩平市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449021 => + [ + + [ + 'address' => '从化市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449022 => + [ + + [ + 'address' => '澄海市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449023 => + [ + + [ + 'address' => '高明市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449024 => + [ + + [ + 'address' => '连州市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449025 => + [ + + [ + 'address' => '雷州市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449026 => + [ + + [ + 'address' => '乐昌市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449027 => + [ + + [ + 'address' => '阳春市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449028 => + [ + + [ + 'address' => '惠阳市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449029 => + [ + + [ + 'address' => '吴川市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449030 => + [ + + [ + 'address' => '兴宁市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 449031 => + [ + + [ + 'address' => '化州市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 450000 => + [ + + [ + 'address' => '广西壮族自治区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450100 => + [ + + [ + 'address' => '南宁市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450102 => + [ + + [ + 'address' => '兴宁区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450103 => + [ + + [ + 'address' => '新城区', + 'start_year' => '', + 'end_year' => 2003, + ], + + [ + 'address' => '青秀区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 450104 => + [ + + [ + 'address' => '城北区', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 450105 => + [ + + [ + 'address' => '江南区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450106 => + [ + + [ + 'address' => '永新区', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 450107 => + [ + + [ + 'address' => '市郊区', + 'start_year' => 1984, + 'end_year' => 2000, + ], + + [ + 'address' => '西乡塘区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 450108 => + [ + + [ + 'address' => '良庆区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 450109 => + [ + + [ + 'address' => '邕宁区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 450110 => + [ + + [ + 'address' => '武鸣区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 450121 => + [ + + [ + 'address' => '邕宁县', + 'start_year' => 1983, + 'end_year' => 2003, + ], + ], + 450122 => + [ + + [ + 'address' => '武鸣县', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 450123 => + [ + + [ + 'address' => '隆安县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 450124 => + [ + + [ + 'address' => '马山县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 450125 => + [ + + [ + 'address' => '上林县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 450126 => + [ + + [ + 'address' => '宾阳县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 450127 => + [ + + [ + 'address' => '横县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 450200 => + [ + + [ + 'address' => '柳州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450202 => + [ + + [ + 'address' => '城中区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450203 => + [ + + [ + 'address' => '鱼峰区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450204 => + [ + + [ + 'address' => '柳南区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450205 => + [ + + [ + 'address' => '柳北区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450206 => + [ + + [ + 'address' => '市郊区', + 'start_year' => 1984, + 'end_year' => 2001, + ], + + [ + 'address' => '柳江区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 450221 => + [ + + [ + 'address' => '柳江县', + 'start_year' => 1983, + 'end_year' => 2015, + ], + ], + 450222 => + [ + + [ + 'address' => '柳城县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 450223 => + [ + + [ + 'address' => '鹿寨县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 450224 => + [ + + [ + 'address' => '融安县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 450225 => + [ + + [ + 'address' => '融水苗族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 450226 => + [ + + [ + 'address' => '三江侗族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 450300 => + [ + + [ + 'address' => '桂林市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450302 => + [ + + [ + 'address' => '秀峰区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450303 => + [ + + [ + 'address' => '叠彩区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450304 => + [ + + [ + 'address' => '象山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450305 => + [ + + [ + 'address' => '七星区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450306 => + [ + + [ + 'address' => '市郊区', + 'start_year' => 1984, + 'end_year' => 1995, + ], + ], + 450311 => + [ + + [ + 'address' => '雁山区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 450312 => + [ + + [ + 'address' => '临桂区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 450321 => + [ + + [ + 'address' => '阳朔县', + 'start_year' => 1981, + 'end_year' => '', + ], + ], + 450322 => + [ + + [ + 'address' => '临桂县', + 'start_year' => 1983, + 'end_year' => 2012, + ], + ], + 450323 => + [ + + [ + 'address' => '灵川县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 450324 => + [ + + [ + 'address' => '全州县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 450325 => + [ + + [ + 'address' => '兴安县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 450326 => + [ + + [ + 'address' => '永福县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 450327 => + [ + + [ + 'address' => '灌阳县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 450328 => + [ + + [ + 'address' => '龙胜各族自治县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 450329 => + [ + + [ + 'address' => '资源县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 450330 => + [ + + [ + 'address' => '平乐县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 450331 => + [ + + [ + 'address' => '荔浦县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 450332 => + [ + + [ + 'address' => '恭城瑶族自治县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 450400 => + [ + + [ + 'address' => '梧州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450402 => + [ + + [ + 'address' => '白云区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 450403 => + [ + + [ + 'address' => '万秀区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 450404 => + [ + + [ + 'address' => '蝶山区', + 'start_year' => '', + 'end_year' => 2012, + ], + ], + 450405 => + [ + + [ + 'address' => '市郊区', + 'start_year' => 1984, + 'end_year' => 2002, + ], + + [ + 'address' => '长洲区', + 'start_year' => 2003, + 'end_year' => '', + ], + + [ + 'address' => '鸳江区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 450406 => + [ + + [ + 'address' => '龙圩区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 450421 => + [ + + [ + 'address' => '苍梧县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 450422 => + [ + + [ + 'address' => '藤县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 450423 => + [ + + [ + 'address' => '蒙山县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 450481 => + [ + + [ + 'address' => '岑溪市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 450500 => + [ + + [ + 'address' => '北海市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 450502 => + [ + + [ + 'address' => '海城区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 450503 => + [ + + [ + 'address' => '市郊区', + 'start_year' => 1984, + 'end_year' => 1993, + ], + + [ + 'address' => '银海区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 450512 => + [ + + [ + 'address' => '铁山港区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 450521 => + [ + + [ + 'address' => '合浦县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 450600 => + [ + + [ + 'address' => '防城港市', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 450602 => + [ + + [ + 'address' => '港口区', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 450603 => + [ + + [ + 'address' => '防城区', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 450621 => + [ + + [ + 'address' => '上思县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 450681 => + [ + + [ + 'address' => '东兴市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 450700 => + [ + + [ + 'address' => '钦州市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 450702 => + [ + + [ + 'address' => '钦南区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 450703 => + [ + + [ + 'address' => '钦北区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 450721 => + [ + + [ + 'address' => '灵山县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 450722 => + [ + + [ + 'address' => '浦北县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 450800 => + [ + + [ + 'address' => '贵港市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 450802 => + [ + + [ + 'address' => '港北区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 450803 => + [ + + [ + 'address' => '港南区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 450804 => + [ + + [ + 'address' => '覃塘区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 450821 => + [ + + [ + 'address' => '平南县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 450881 => + [ + + [ + 'address' => '桂平市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 450900 => + [ + + [ + 'address' => '玉林市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 450902 => + [ + + [ + 'address' => '玉州区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 450903 => + [ + + [ + 'address' => '福绵区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 450921 => + [ + + [ + 'address' => '容县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 450922 => + [ + + [ + 'address' => '陆川县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 450923 => + [ + + [ + 'address' => '博白县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 450924 => + [ + + [ + 'address' => '兴业县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 450981 => + [ + + [ + 'address' => '北流市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 451000 => + [ + + [ + 'address' => '百色市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451002 => + [ + + [ + 'address' => '右江区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451021 => + [ + + [ + 'address' => '田阳县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451022 => + [ + + [ + 'address' => '田东县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451023 => + [ + + [ + 'address' => '平果县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451024 => + [ + + [ + 'address' => '德保县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451025 => + [ + + [ + 'address' => '靖西县', + 'start_year' => 2002, + 'end_year' => 2014, + ], + ], + 451026 => + [ + + [ + 'address' => '那坡县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451027 => + [ + + [ + 'address' => '凌云县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451028 => + [ + + [ + 'address' => '乐业县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451029 => + [ + + [ + 'address' => '田林县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451030 => + [ + + [ + 'address' => '西林县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451031 => + [ + + [ + 'address' => '隆林各族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451081 => + [ + + [ + 'address' => '靖西市', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 451100 => + [ + + [ + 'address' => '贺州市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451102 => + [ + + [ + 'address' => '八步区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451103 => + [ + + [ + 'address' => '平桂区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 451121 => + [ + + [ + 'address' => '昭平县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451122 => + [ + + [ + 'address' => '钟山县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451123 => + [ + + [ + 'address' => '富川瑶族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451200 => + [ + + [ + 'address' => '河池市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451202 => + [ + + [ + 'address' => '金城江区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451203 => + [ + + [ + 'address' => '宜州区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 451221 => + [ + + [ + 'address' => '南丹县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451222 => + [ + + [ + 'address' => '天峨县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451223 => + [ + + [ + 'address' => '凤山县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451224 => + [ + + [ + 'address' => '东兰县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451225 => + [ + + [ + 'address' => '罗城仫佬族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451226 => + [ + + [ + 'address' => '环江毛南族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451227 => + [ + + [ + 'address' => '巴马瑶族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451228 => + [ + + [ + 'address' => '都安瑶族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451229 => + [ + + [ + 'address' => '大化瑶族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451281 => + [ + + [ + 'address' => '宜州市', + 'start_year' => 2002, + 'end_year' => 2015, + ], + ], + 451300 => + [ + + [ + 'address' => '来宾市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451302 => + [ + + [ + 'address' => '兴宾区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451321 => + [ + + [ + 'address' => '忻城县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451322 => + [ + + [ + 'address' => '象州县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451323 => + [ + + [ + 'address' => '武宣县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451324 => + [ + + [ + 'address' => '金秀瑶族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451381 => + [ + + [ + 'address' => '合山市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451400 => + [ + + [ + 'address' => '崇左市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451402 => + [ + + [ + 'address' => '江州区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451421 => + [ + + [ + 'address' => '扶绥县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451422 => + [ + + [ + 'address' => '宁明县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451423 => + [ + + [ + 'address' => '龙州县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451424 => + [ + + [ + 'address' => '大新县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451425 => + [ + + [ + 'address' => '天等县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 451481 => + [ + + [ + 'address' => '凭祥市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 452100 => + [ + + [ + 'address' => '南宁地区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452101 => + [ + + [ + 'address' => '凭祥市', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452121 => + [ + + [ + 'address' => '邕宁县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452122 => + [ + + [ + 'address' => '横县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452123 => + [ + + [ + 'address' => '宾阳县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452124 => + [ + + [ + 'address' => '上林县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452125 => + [ + + [ + 'address' => '武鸣县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452126 => + [ + + [ + 'address' => '隆安县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452127 => + [ + + [ + 'address' => '马山县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452128 => + [ + + [ + 'address' => '扶绥县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452129 => + [ + + [ + 'address' => '崇左县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452130 => + [ + + [ + 'address' => '大新县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452131 => + [ + + [ + 'address' => '天等县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452132 => + [ + + [ + 'address' => '宁明县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452133 => + [ + + [ + 'address' => '龙州县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452200 => + [ + + [ + 'address' => '柳州地区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452201 => + [ + + [ + 'address' => '合山市', + 'start_year' => 1981, + 'end_year' => 2001, + ], + ], + 452221 => + [ + + [ + 'address' => '柳江县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452222 => + [ + + [ + 'address' => '柳城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452223 => + [ + + [ + 'address' => '鹿寨县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452224 => + [ + + [ + 'address' => '象州县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452225 => + [ + + [ + 'address' => '武宣县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452226 => + [ + + [ + 'address' => '来宾县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452227 => + [ + + [ + 'address' => '融安县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452228 => + [ + + [ + 'address' => '三江侗族自治县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452229 => + [ + + [ + 'address' => '融水苗族自治县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452230 => + [ + + [ + 'address' => '金秀瑶族自治县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452231 => + [ + + [ + 'address' => '忻城县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452300 => + [ + + [ + 'address' => '桂林地区', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 452321 => + [ + + [ + 'address' => '临桂县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452322 => + [ + + [ + 'address' => '灵川县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 452323 => + [ + + [ + 'address' => '全州县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 452324 => + [ + + [ + 'address' => '兴安县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 452325 => + [ + + [ + 'address' => '永福县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 452326 => + [ + + [ + 'address' => '阳朔县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 452327 => + [ + + [ + 'address' => '灌阳县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 452328 => + [ + + [ + 'address' => '龙胜各族自治县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 452329 => + [ + + [ + 'address' => '资源县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 452330 => + [ + + [ + 'address' => '平乐县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 452331 => + [ + + [ + 'address' => '荔浦县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 452332 => + [ + + [ + 'address' => '恭城县', + 'start_year' => '', + 'end_year' => 1989, + ], + + [ + 'address' => '恭城瑶族自治县', + 'start_year' => 1990, + 'end_year' => 1997, + ], + ], + 452400 => + [ + + [ + 'address' => '梧州地区', + 'start_year' => '', + 'end_year' => 1996, + ], + + [ + 'address' => '贺州地区', + 'start_year' => 1997, + 'end_year' => 2001, + ], + ], + 452401 => + [ + + [ + 'address' => '岑溪市', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 452402 => + [ + + [ + 'address' => '贺州市', + 'start_year' => 1997, + 'end_year' => 2001, + ], + ], + 452421 => + [ + + [ + 'address' => '岑溪县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 452422 => + [ + + [ + 'address' => '苍梧县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452423 => + [ + + [ + 'address' => '藤县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 452424 => + [ + + [ + 'address' => '昭平县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452425 => + [ + + [ + 'address' => '蒙山县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 452426 => + [ + + [ + 'address' => '贺县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 452427 => + [ + + [ + 'address' => '钟山县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452428 => + [ + + [ + 'address' => '富川县', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '富川瑶族自治县', + 'start_year' => 1983, + 'end_year' => 2001, + ], + ], + 452500 => + [ + + [ + 'address' => '玉林地区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 452501 => + [ + + [ + 'address' => '玉林市', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 452502 => + [ + + [ + 'address' => '贵港市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 452503 => + [ + + [ + 'address' => '桂平市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 452504 => + [ + + [ + 'address' => '北流市', + 'start_year' => 1994, + 'end_year' => 1996, + ], + ], + 452521 => + [ + + [ + 'address' => '玉林县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452522 => + [ + + [ + 'address' => '贵县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 452523 => + [ + + [ + 'address' => '桂平县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 452524 => + [ + + [ + 'address' => '平南县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 452525 => + [ + + [ + 'address' => '容县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 452526 => + [ + + [ + 'address' => '北流县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 452527 => + [ + + [ + 'address' => '陆川县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 452528 => + [ + + [ + 'address' => '博白县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 452600 => + [ + + [ + 'address' => '百色地区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452601 => + [ + + [ + 'address' => '百色市', + 'start_year' => 1983, + 'end_year' => 2001, + ], + ], + 452621 => + [ + + [ + 'address' => '百色县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452622 => + [ + + [ + 'address' => '田阳县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452623 => + [ + + [ + 'address' => '田东县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452624 => + [ + + [ + 'address' => '平果县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452625 => + [ + + [ + 'address' => '德保县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452626 => + [ + + [ + 'address' => '靖西县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452627 => + [ + + [ + 'address' => '那坡县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452628 => + [ + + [ + 'address' => '凌云县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452629 => + [ + + [ + 'address' => '乐业县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452630 => + [ + + [ + 'address' => '田林县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452631 => + [ + + [ + 'address' => '隆林各族自治县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452632 => + [ + + [ + 'address' => '西林县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452700 => + [ + + [ + 'address' => '河池地区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452701 => + [ + + [ + 'address' => '河池市', + 'start_year' => 1983, + 'end_year' => 2001, + ], + ], + 452702 => + [ + + [ + 'address' => '宜州市', + 'start_year' => 1993, + 'end_year' => 2001, + ], + ], + 452721 => + [ + + [ + 'address' => '河池县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452722 => + [ + + [ + 'address' => '宜山县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 452723 => + [ + + [ + 'address' => '罗城仫佬族自治县', + 'start_year' => 1983, + 'end_year' => 2001, + ], + + [ + 'address' => '罗城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452724 => + [ + + [ + 'address' => '环江县', + 'start_year' => '', + 'end_year' => 1985, + ], + + [ + 'address' => '环江毛南族自治县', + 'start_year' => 1986, + 'end_year' => 2001, + ], + ], + 452725 => + [ + + [ + 'address' => '南丹县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452726 => + [ + + [ + 'address' => '天峨县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452727 => + [ + + [ + 'address' => '凤山县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452728 => + [ + + [ + 'address' => '东兰县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452729 => + [ + + [ + 'address' => '巴马瑶族自治县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452730 => + [ + + [ + 'address' => '都安瑶族自治县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 452731 => + [ + + [ + 'address' => '大化瑶族自治县', + 'start_year' => 1987, + 'end_year' => 2001, + ], + ], + 452800 => + [ + + [ + 'address' => '钦州地区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 452801 => + [ + + [ + 'address' => '北海市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452802 => + [ + + [ + 'address' => '钦州市', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 452821 => + [ + + [ + 'address' => '上思县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 452822 => + [ + + [ + 'address' => '防城各族自治县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 452823 => + [ + + [ + 'address' => '钦州县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 452824 => + [ + + [ + 'address' => '灵山县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 452825 => + [ + + [ + 'address' => '合浦县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 452826 => + [ + + [ + 'address' => '浦北县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 460000 => + [ + + [ + 'address' => '海南省', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 460001 => + [ + + [ + 'address' => '五指山市', + 'start_year' => 2001, + 'end_year' => 2002, + ], + + [ + 'address' => '通什市', + 'start_year' => 1988, + 'end_year' => 2000, + ], + ], + 460002 => + [ + + [ + 'address' => '琼海市', + 'start_year' => 1992, + 'end_year' => 2002, + ], + ], + 460003 => + [ + + [ + 'address' => '儋州市', + 'start_year' => 1993, + 'end_year' => 2002, + ], + ], + 460004 => + [ + + [ + 'address' => '琼山市', + 'start_year' => 1994, + 'end_year' => 2001, + ], + ], + 460005 => + [ + + [ + 'address' => '文昌市', + 'start_year' => 1995, + 'end_year' => 2002, + ], + ], + 460006 => + [ + + [ + 'address' => '万宁市', + 'start_year' => 1996, + 'end_year' => 2002, + ], + ], + 460007 => + [ + + [ + 'address' => '东方市', + 'start_year' => 1997, + 'end_year' => 2002, + ], + ], + 460021 => + [ + + [ + 'address' => '琼山县', + 'start_year' => 1988, + 'end_year' => 1993, + ], + ], + 460022 => + [ + + [ + 'address' => '文昌县', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 460023 => + [ + + [ + 'address' => '琼海县', + 'start_year' => 1988, + 'end_year' => 1991, + ], + ], + 460024 => + [ + + [ + 'address' => '万宁县', + 'start_year' => 1988, + 'end_year' => 1995, + ], + ], + 460025 => + [ + + [ + 'address' => '定安县', + 'start_year' => 1988, + 'end_year' => 2002, + ], + ], + 460026 => + [ + + [ + 'address' => '屯昌县', + 'start_year' => 1988, + 'end_year' => 2002, + ], + ], + 460027 => + [ + + [ + 'address' => '澄迈县', + 'start_year' => 1988, + 'end_year' => 2002, + ], + ], + 460028 => + [ + + [ + 'address' => '临高县', + 'start_year' => 1988, + 'end_year' => 2002, + ], + ], + 460029 => + [ + + [ + 'address' => '儋县', + 'start_year' => 1988, + 'end_year' => 1992, + ], + ], + 460030 => + [ + + [ + 'address' => '白沙黎族自治县', + 'start_year' => 1988, + 'end_year' => 2002, + ], + ], + 460031 => + [ + + [ + 'address' => '昌江黎族自治县', + 'start_year' => 1988, + 'end_year' => 2002, + ], + ], + 460032 => + [ + + [ + 'address' => '东方黎族自治县', + 'start_year' => 1988, + 'end_year' => 1996, + ], + ], + 460033 => + [ + + [ + 'address' => '乐东黎族自治县', + 'start_year' => 1988, + 'end_year' => 2002, + ], + ], + 460034 => + [ + + [ + 'address' => '陵水黎族自治县', + 'start_year' => 1988, + 'end_year' => 2002, + ], + ], + 460035 => + [ + + [ + 'address' => '保亭黎族苗族自治县', + 'start_year' => 1988, + 'end_year' => 2002, + ], + ], + 460036 => + [ + + [ + 'address' => '琼中黎族苗族自治县', + 'start_year' => 1988, + 'end_year' => 2002, + ], + ], + 460100 => + [ + + [ + 'address' => '海口市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 460102 => + [ + + [ + 'address' => '振东区', + 'start_year' => 1990, + 'end_year' => 2001, + ], + ], + 460103 => + [ + + [ + 'address' => '新华区', + 'start_year' => 1990, + 'end_year' => 2001, + ], + ], + 460104 => + [ + + [ + 'address' => '秀英区', + 'start_year' => 1990, + 'end_year' => 2001, + ], + ], + 460105 => + [ + + [ + 'address' => '秀英区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 460106 => + [ + + [ + 'address' => '龙华区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 460107 => + [ + + [ + 'address' => '琼山区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 460108 => + [ + + [ + 'address' => '美兰区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 460200 => + [ + + [ + 'address' => '三亚市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 460202 => + [ + + [ + 'address' => '海棠区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 460203 => + [ + + [ + 'address' => '吉阳区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 460204 => + [ + + [ + 'address' => '天涯区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 460205 => + [ + + [ + 'address' => '崖州区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 460300 => + [ + + [ + 'address' => '三沙市', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 460400 => + [ + + [ + 'address' => '儋州市', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 469001 => + [ + + [ + 'address' => '五指山市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469002 => + [ + + [ + 'address' => '琼海市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469003 => + [ + + [ + 'address' => '儋州市', + 'start_year' => 2003, + 'end_year' => 2014, + ], + ], + 469005 => + [ + + [ + 'address' => '文昌市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469006 => + [ + + [ + 'address' => '万宁市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469007 => + [ + + [ + 'address' => '东方市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469021 => + [ + + [ + 'address' => '定安县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469022 => + [ + + [ + 'address' => '屯昌县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469023 => + [ + + [ + 'address' => '澄迈县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469024 => + [ + + [ + 'address' => '临高县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469025 => + [ + + [ + 'address' => '白沙黎族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469026 => + [ + + [ + 'address' => '昌江黎族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469027 => + [ + + [ + 'address' => '乐东黎族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469028 => + [ + + [ + 'address' => '陵水黎族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469029 => + [ + + [ + 'address' => '保亭黎族苗族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 469030 => + [ + + [ + 'address' => '琼中黎族苗族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 500000 => + [ + + [ + 'address' => '重庆市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500101 => + [ + + [ + 'address' => '万县区', + 'start_year' => 1997, + 'end_year' => 1997, + ], + + [ + 'address' => '万州区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 500102 => + [ + + [ + 'address' => '涪陵区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500103 => + [ + + [ + 'address' => '渝中区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500104 => + [ + + [ + 'address' => '大渡口区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500105 => + [ + + [ + 'address' => '江北区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500106 => + [ + + [ + 'address' => '沙坪坝区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500107 => + [ + + [ + 'address' => '九龙坡区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500108 => + [ + + [ + 'address' => '南岸区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500109 => + [ + + [ + 'address' => '北碚区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500110 => + [ + + [ + 'address' => '万盛区', + 'start_year' => 1997, + 'end_year' => 2010, + ], + + [ + 'address' => '綦江区', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 500111 => + [ + + [ + 'address' => '双桥区', + 'start_year' => 1997, + 'end_year' => 2010, + ], + + [ + 'address' => '大足区', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 500112 => + [ + + [ + 'address' => '渝北区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500113 => + [ + + [ + 'address' => '巴南区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500114 => + [ + + [ + 'address' => '黔江区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 500115 => + [ + + [ + 'address' => '长寿区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 500116 => + [ + + [ + 'address' => '江津区', + 'start_year' => 2006, + 'end_year' => '', + ], + ], + 500117 => + [ + + [ + 'address' => '合川区', + 'start_year' => 2006, + 'end_year' => '', + ], + ], + 500118 => + [ + + [ + 'address' => '永川区', + 'start_year' => 2006, + 'end_year' => '', + ], + ], + 500119 => + [ + + [ + 'address' => '南川区', + 'start_year' => 2006, + 'end_year' => '', + ], + ], + 500120 => + [ + + [ + 'address' => '璧山区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 500151 => + [ + + [ + 'address' => '铜梁区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 500152 => + [ + + [ + 'address' => '潼南区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 500153 => + [ + + [ + 'address' => '荣昌区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 500154 => + [ + + [ + 'address' => '开州区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 500155 => + [ + + [ + 'address' => '梁平区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 500156 => + [ + + [ + 'address' => '武隆区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 500221 => + [ + + [ + 'address' => '长寿县', + 'start_year' => 1997, + 'end_year' => 2000, + ], + ], + 500222 => + [ + + [ + 'address' => '綦江县', + 'start_year' => 1997, + 'end_year' => 2010, + ], + ], + 500223 => + [ + + [ + 'address' => '潼南县', + 'start_year' => 1997, + 'end_year' => 2014, + ], + ], + 500224 => + [ + + [ + 'address' => '铜梁县', + 'start_year' => 1997, + 'end_year' => 2013, + ], + ], + 500225 => + [ + + [ + 'address' => '大足县', + 'start_year' => 1997, + 'end_year' => 2010, + ], + ], + 500226 => + [ + + [ + 'address' => '荣昌县', + 'start_year' => 1997, + 'end_year' => 2014, + ], + ], + 500227 => + [ + + [ + 'address' => '璧山县', + 'start_year' => 1997, + 'end_year' => 2013, + ], + ], + 500228 => + [ + + [ + 'address' => '梁平县', + 'start_year' => 1997, + 'end_year' => 2015, + ], + ], + 500229 => + [ + + [ + 'address' => '城口县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500230 => + [ + + [ + 'address' => '丰都县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500231 => + [ + + [ + 'address' => '垫江县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500232 => + [ + + [ + 'address' => '武隆县', + 'start_year' => 1997, + 'end_year' => 2015, + ], + ], + 500233 => + [ + + [ + 'address' => '忠县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500234 => + [ + + [ + 'address' => '开县', + 'start_year' => 1997, + 'end_year' => 2015, + ], + ], + 500235 => + [ + + [ + 'address' => '云阳县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500236 => + [ + + [ + 'address' => '奉节县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500237 => + [ + + [ + 'address' => '巫山县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500238 => + [ + + [ + 'address' => '巫溪县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500239 => + [ + + [ + 'address' => '黔江土家族苗族自治县', + 'start_year' => 1997, + 'end_year' => 1999, + ], + ], + 500240 => + [ + + [ + 'address' => '石柱土家族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500241 => + [ + + [ + 'address' => '秀山土家族苗族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500242 => + [ + + [ + 'address' => '酉阳土家族苗族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500243 => + [ + + [ + 'address' => '彭水苗族土家族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 500381 => + [ + + [ + 'address' => '江津市', + 'start_year' => 1997, + 'end_year' => 2005, + ], + ], + 500382 => + [ + + [ + 'address' => '合川市', + 'start_year' => 1997, + 'end_year' => 2005, + ], + ], + 500383 => + [ + + [ + 'address' => '永川市', + 'start_year' => 1997, + 'end_year' => 2005, + ], + ], + 500384 => + [ + + [ + 'address' => '南川市', + 'start_year' => 1997, + 'end_year' => 2005, + ], + ], + 510000 => + [ + + [ + 'address' => '四川省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510100 => + [ + + [ + 'address' => '成都市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510102 => + [ + + [ + 'address' => '东城区', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 510103 => + [ + + [ + 'address' => '西城区', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 510104 => + [ + + [ + 'address' => '锦江区', + 'start_year' => 1990, + 'end_year' => '', + ], + ], + 510105 => + [ + + [ + 'address' => '青羊区', + 'start_year' => 1990, + 'end_year' => '', + ], + ], + 510106 => + [ + + [ + 'address' => '金牛区', + 'start_year' => 1990, + 'end_year' => '', + ], + ], + 510107 => + [ + + [ + 'address' => '武侯区', + 'start_year' => 1990, + 'end_year' => '', + ], + ], + 510108 => + [ + + [ + 'address' => '成华区', + 'start_year' => 1990, + 'end_year' => '', + ], + ], + 510111 => + [ + + [ + 'address' => '金牛区', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 510112 => + [ + + [ + 'address' => '龙泉驿区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510113 => + [ + + [ + 'address' => '青白江区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510114 => + [ + + [ + 'address' => '新都区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 510115 => + [ + + [ + 'address' => '温江区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 510116 => + [ + + [ + 'address' => '双流区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 510117 => + [ + + [ + 'address' => '郫都区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 510121 => + [ + + [ + 'address' => '金堂县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510122 => + [ + + [ + 'address' => '双流县', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 510123 => + [ + + [ + 'address' => '温江县', + 'start_year' => 1983, + 'end_year' => 2001, + ], + ], + 510124 => + [ + + [ + 'address' => '郫县', + 'start_year' => 1983, + 'end_year' => 2015, + ], + ], + 510125 => + [ + + [ + 'address' => '新都县', + 'start_year' => 1983, + 'end_year' => 2000, + ], + ], + 510126 => + [ + + [ + 'address' => '彭县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 510127 => + [ + + [ + 'address' => '灌县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 510128 => + [ + + [ + 'address' => '崇庆县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 510129 => + [ + + [ + 'address' => '大邑县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 510130 => + [ + + [ + 'address' => '邛崃县', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 510131 => + [ + + [ + 'address' => '蒲江县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 510132 => + [ + + [ + 'address' => '新津县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 510181 => + [ + + [ + 'address' => '都江堰市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 510182 => + [ + + [ + 'address' => '彭州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 510183 => + [ + + [ + 'address' => '邛崃市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 510184 => + [ + + [ + 'address' => '崇州市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 510185 => + [ + + [ + 'address' => '简阳市', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 510200 => + [ + + [ + 'address' => '重庆市', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 510202 => + [ + + [ + 'address' => '市中区', + 'start_year' => '', + 'end_year' => 1993, + ], + + [ + 'address' => '渝中区', + 'start_year' => 1994, + 'end_year' => 1996, + ], + ], + 510203 => + [ + + [ + 'address' => '大渡口区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 510211 => + [ + + [ + 'address' => '江北区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 510212 => + [ + + [ + 'address' => '沙坪坝区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 510213 => + [ + + [ + 'address' => '九龙坡区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 510214 => + [ + + [ + 'address' => '南岸区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 510215 => + [ + + [ + 'address' => '北碚区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 510216 => + [ + + [ + 'address' => '万盛区', + 'start_year' => 1993, + 'end_year' => 1996, + ], + + [ + 'address' => '南桐矿区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 510217 => + [ + + [ + 'address' => '双桥区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 510218 => + [ + + [ + 'address' => '渝北区', + 'start_year' => 1994, + 'end_year' => 1996, + ], + ], + 510219 => + [ + + [ + 'address' => '巴南区', + 'start_year' => 1994, + 'end_year' => 1996, + ], + ], + 510221 => + [ + + [ + 'address' => '长寿县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 510222 => + [ + + [ + 'address' => '巴县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 510223 => + [ + + [ + 'address' => '綦江县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 510224 => + [ + + [ + 'address' => '江北县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 510225 => + [ + + [ + 'address' => '江津县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 510226 => + [ + + [ + 'address' => '合川县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 510227 => + [ + + [ + 'address' => '潼南县', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 510228 => + [ + + [ + 'address' => '铜梁县', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 510229 => + [ + + [ + 'address' => '永川县', + 'start_year' => 1983, + 'end_year' => 1991, + ], + ], + 510230 => + [ + + [ + 'address' => '大足县', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 510231 => + [ + + [ + 'address' => '荣昌县', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 510232 => + [ + + [ + 'address' => '璧山县', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 510281 => + [ + + [ + 'address' => '永川市', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 510282 => + [ + + [ + 'address' => '合川市', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 510283 => + [ + + [ + 'address' => '江津市', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 510300 => + [ + + [ + 'address' => '自贡市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510302 => + [ + + [ + 'address' => '自流井区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510303 => + [ + + [ + 'address' => '贡井区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510304 => + [ + + [ + 'address' => '大安区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510311 => + [ + + [ + 'address' => '沿滩区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510321 => + [ + + [ + 'address' => '荣县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510322 => + [ + + [ + 'address' => '富顺县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 510400 => + [ + + [ + 'address' => '攀枝花市', + 'start_year' => 1987, + 'end_year' => '', + ], + + [ + 'address' => '渡口市', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 510402 => + [ + + [ + 'address' => '东区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510403 => + [ + + [ + 'address' => '西区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510411 => + [ + + [ + 'address' => '仁和区', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 510421 => + [ + + [ + 'address' => '米易县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510422 => + [ + + [ + 'address' => '盐边县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 510500 => + [ + + [ + 'address' => '泸州市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 510502 => + [ + + [ + 'address' => '市中区', + 'start_year' => 1984, + 'end_year' => 1994, + ], + + [ + 'address' => '江阳区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 510503 => + [ + + [ + 'address' => '纳溪区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 510504 => + [ + + [ + 'address' => '龙马潭区', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 510521 => + [ + + [ + 'address' => '泸县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 510522 => + [ + + [ + 'address' => '合江县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 510523 => + [ + + [ + 'address' => '纳溪县', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 510524 => + [ + + [ + 'address' => '叙永县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510525 => + [ + + [ + 'address' => '古蔺县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510600 => + [ + + [ + 'address' => '德阳市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 510602 => + [ + + [ + 'address' => '市中区', + 'start_year' => 1984, + 'end_year' => 1995, + ], + ], + 510603 => + [ + + [ + 'address' => '旌阳区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 510604 => + [ + + [ + 'address' => '罗江区', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 510621 => + [ + + [ + 'address' => '德阳县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 510622 => + [ + + [ + 'address' => '绵竹县', + 'start_year' => 1983, + 'end_year' => 1995, + ], + ], + 510623 => + [ + + [ + 'address' => '中江县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 510624 => + [ + + [ + 'address' => '广汉县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 510625 => + [ + + [ + 'address' => '什邡县', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 510626 => + [ + + [ + 'address' => '罗江县', + 'start_year' => 1996, + 'end_year' => 2016, + ], + ], + 510681 => + [ + + [ + 'address' => '广汉市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 510682 => + [ + + [ + 'address' => '什邡市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 510683 => + [ + + [ + 'address' => '绵竹市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 510700 => + [ + + [ + 'address' => '绵阳市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510702 => + [ + + [ + 'address' => '市中区', + 'start_year' => 1985, + 'end_year' => 1991, + ], + ], + 510703 => + [ + + [ + 'address' => '涪城区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 510704 => + [ + + [ + 'address' => '游仙区', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 510705 => + [ + + [ + 'address' => '安州区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 510721 => + [ + + [ + 'address' => '江油县', + 'start_year' => 1985, + 'end_year' => 1987, + ], + ], + 510722 => + [ + + [ + 'address' => '三台县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510723 => + [ + + [ + 'address' => '盐亭县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510724 => + [ + + [ + 'address' => '安县', + 'start_year' => 1985, + 'end_year' => 2015, + ], + ], + 510725 => + [ + + [ + 'address' => '梓潼县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510726 => + [ + + [ + 'address' => '北川县', + 'start_year' => 1985, + 'end_year' => 2002, + ], + + [ + 'address' => '北川羌族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 510727 => + [ + + [ + 'address' => '平武县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510781 => + [ + + [ + 'address' => '江油市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 510800 => + [ + + [ + 'address' => '广元市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510802 => + [ + + [ + 'address' => '利州区', + 'start_year' => 2007, + 'end_year' => '', + ], + + [ + 'address' => '市中区', + 'start_year' => 1985, + 'end_year' => 2006, + ], + ], + 510811 => + [ + + [ + 'address' => '元坝区', + 'start_year' => 1989, + 'end_year' => 2012, + ], + + [ + 'address' => '昭化区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 510812 => + [ + + [ + 'address' => '朝天区', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 510821 => + [ + + [ + 'address' => '旺苍县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510822 => + [ + + [ + 'address' => '青川县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510823 => + [ + + [ + 'address' => '剑阁县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510824 => + [ + + [ + 'address' => '苍溪县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510900 => + [ + + [ + 'address' => '遂宁市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510902 => + [ + + [ + 'address' => '市中区', + 'start_year' => 1985, + 'end_year' => 2002, + ], + ], + 510903 => + [ + + [ + 'address' => '船山区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 510904 => + [ + + [ + 'address' => '安居区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 510921 => + [ + + [ + 'address' => '蓬溪县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510922 => + [ + + [ + 'address' => '射洪县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 510923 => + [ + + [ + 'address' => '大英县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 511000 => + [ + + [ + 'address' => '内江市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511002 => + [ + + [ + 'address' => '市中区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511011 => + [ + + [ + 'address' => '东兴区', + 'start_year' => 1989, + 'end_year' => '', + ], + ], + 511021 => + [ + + [ + 'address' => '内江县', + 'start_year' => 1985, + 'end_year' => 1988, + ], + ], + 511022 => + [ + + [ + 'address' => '乐至县', + 'start_year' => 1985, + 'end_year' => 1997, + ], + ], + 511023 => + [ + + [ + 'address' => '安岳县', + 'start_year' => 1985, + 'end_year' => 1997, + ], + ], + 511024 => + [ + + [ + 'address' => '威远县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511025 => + [ + + [ + 'address' => '资中县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511026 => + [ + + [ + 'address' => '资阳县', + 'start_year' => 1985, + 'end_year' => 1992, + ], + ], + 511027 => + [ + + [ + 'address' => '简阳县', + 'start_year' => 1985, + 'end_year' => 1993, + ], + ], + 511028 => + [ + + [ + 'address' => '隆昌县', + 'start_year' => 1985, + 'end_year' => 2016, + ], + ], + 511081 => + [ + + [ + 'address' => '资阳市', + 'start_year' => 1995, + 'end_year' => 1997, + ], + ], + 511082 => + [ + + [ + 'address' => '简阳市', + 'start_year' => 1995, + 'end_year' => 1997, + ], + ], + 511083 => + [ + + [ + 'address' => '隆昌市', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 511100 => + [ + + [ + 'address' => '乐山市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511102 => + [ + + [ + 'address' => '市中区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511111 => + [ + + [ + 'address' => '沙湾区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511112 => + [ + + [ + 'address' => '五通桥区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511113 => + [ + + [ + 'address' => '金口河区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511121 => + [ + + [ + 'address' => '仁寿县', + 'start_year' => 1985, + 'end_year' => 1996, + ], + ], + 511122 => + [ + + [ + 'address' => '眉山县', + 'start_year' => 1985, + 'end_year' => 1996, + ], + ], + 511123 => + [ + + [ + 'address' => '犍为县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511124 => + [ + + [ + 'address' => '井研县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511125 => + [ + + [ + 'address' => '峨眉县', + 'start_year' => 1985, + 'end_year' => 1987, + ], + ], + 511126 => + [ + + [ + 'address' => '夹江县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511127 => + [ + + [ + 'address' => '洪雅县', + 'start_year' => 1985, + 'end_year' => 1996, + ], + ], + 511128 => + [ + + [ + 'address' => '彭山县', + 'start_year' => 1985, + 'end_year' => 1996, + ], + ], + 511129 => + [ + + [ + 'address' => '沐川县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511130 => + [ + + [ + 'address' => '青神县', + 'start_year' => 1985, + 'end_year' => 1996, + ], + ], + 511131 => + [ + + [ + 'address' => '丹棱县', + 'start_year' => 1985, + 'end_year' => 1996, + ], + ], + 511132 => + [ + + [ + 'address' => '峨边彝族自治县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511133 => + [ + + [ + 'address' => '马边彝族自治县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 511181 => + [ + + [ + 'address' => '峨眉山市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 511200 => + [ + + [ + 'address' => '万县市', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511202 => + [ + + [ + 'address' => '龙宝区', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511203 => + [ + + [ + 'address' => '天城区', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511204 => + [ + + [ + 'address' => '五桥区', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511221 => + [ + + [ + 'address' => '开县', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511222 => + [ + + [ + 'address' => '忠县', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511223 => + [ + + [ + 'address' => '梁平县', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511224 => + [ + + [ + 'address' => '云阳县', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511225 => + [ + + [ + 'address' => '奉节县', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511226 => + [ + + [ + 'address' => '巫山县', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511227 => + [ + + [ + 'address' => '巫溪县', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511228 => + [ + + [ + 'address' => '城口县', + 'start_year' => 1992, + 'end_year' => 1996, + ], + ], + 511300 => + [ + + [ + 'address' => '南充市', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 511302 => + [ + + [ + 'address' => '顺庆区', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 511303 => + [ + + [ + 'address' => '高坪区', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 511304 => + [ + + [ + 'address' => '嘉陵区', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 511321 => + [ + + [ + 'address' => '南部县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 511322 => + [ + + [ + 'address' => '营山县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 511323 => + [ + + [ + 'address' => '蓬安县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 511324 => + [ + + [ + 'address' => '仪陇县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 511325 => + [ + + [ + 'address' => '西充县', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 511381 => + [ + + [ + 'address' => '阆中市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 511400 => + [ + + [ + 'address' => '眉山市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511402 => + [ + + [ + 'address' => '东坡区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511403 => + [ + + [ + 'address' => '彭山区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 511421 => + [ + + [ + 'address' => '仁寿县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511422 => + [ + + [ + 'address' => '彭山县', + 'start_year' => 2000, + 'end_year' => 2013, + ], + ], + 511423 => + [ + + [ + 'address' => '洪雅县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511424 => + [ + + [ + 'address' => '丹棱县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511425 => + [ + + [ + 'address' => '青神县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511500 => + [ + + [ + 'address' => '宜宾市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 511502 => + [ + + [ + 'address' => '翠屏区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 511503 => + [ + + [ + 'address' => '南溪区', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 511521 => + [ + + [ + 'address' => '宜宾县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 511522 => + [ + + [ + 'address' => '南溪县', + 'start_year' => 1996, + 'end_year' => 2010, + ], + ], + 511523 => + [ + + [ + 'address' => '江安县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 511524 => + [ + + [ + 'address' => '长宁县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 511525 => + [ + + [ + 'address' => '高县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 511526 => + [ + + [ + 'address' => '珙县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 511527 => + [ + + [ + 'address' => '筠连县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 511528 => + [ + + [ + 'address' => '兴文县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 511529 => + [ + + [ + 'address' => '屏山县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 511600 => + [ + + [ + 'address' => '广安市', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 511602 => + [ + + [ + 'address' => '广安区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 511603 => + [ + + [ + 'address' => '前锋区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 511621 => + [ + + [ + 'address' => '岳池县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 511622 => + [ + + [ + 'address' => '武胜县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 511623 => + [ + + [ + 'address' => '邻水县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 511681 => + [ + + [ + 'address' => '华蓥市', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 511700 => + [ + + [ + 'address' => '达州市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 511702 => + [ + + [ + 'address' => '通川区', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 511703 => + [ + + [ + 'address' => '达川区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 511721 => + [ + + [ + 'address' => '达县', + 'start_year' => 1999, + 'end_year' => 2012, + ], + ], + 511722 => + [ + + [ + 'address' => '宣汉县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 511723 => + [ + + [ + 'address' => '开江县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 511724 => + [ + + [ + 'address' => '大竹县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 511725 => + [ + + [ + 'address' => '渠县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 511781 => + [ + + [ + 'address' => '万源市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 511800 => + [ + + [ + 'address' => '雅安市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511802 => + [ + + [ + 'address' => '雨城区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511803 => + [ + + [ + 'address' => '名山区', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 511821 => + [ + + [ + 'address' => '名山县', + 'start_year' => 2000, + 'end_year' => 2011, + ], + ], + 511822 => + [ + + [ + 'address' => '荥经县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511823 => + [ + + [ + 'address' => '汉源县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511824 => + [ + + [ + 'address' => '石棉县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511825 => + [ + + [ + 'address' => '天全县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511826 => + [ + + [ + 'address' => '芦山县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511827 => + [ + + [ + 'address' => '宝兴县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511900 => + [ + + [ + 'address' => '巴中市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511902 => + [ + + [ + 'address' => '巴州区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511903 => + [ + + [ + 'address' => '恩阳区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 511921 => + [ + + [ + 'address' => '通江县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511922 => + [ + + [ + 'address' => '南江县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 511923 => + [ + + [ + 'address' => '平昌县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 512000 => + [ + + [ + 'address' => '资阳市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 512002 => + [ + + [ + 'address' => '雁江区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 512021 => + [ + + [ + 'address' => '安岳县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 512022 => + [ + + [ + 'address' => '乐至县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 512081 => + [ + + [ + 'address' => '简阳市', + 'start_year' => 2000, + 'end_year' => 2015, + ], + ], + 512100 => + [ + + [ + 'address' => '永川地区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '温江地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512121 => + [ + + [ + 'address' => '江津县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '温江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512122 => + [ + + [ + 'address' => '合川县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '郫县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512123 => + [ + + [ + 'address' => '潼南县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '灌县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512124 => + [ + + [ + 'address' => '彭县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '铜梁县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512125 => + [ + + [ + 'address' => '什邡县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '永川县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512126 => + [ + + [ + 'address' => '大足县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '广汉县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512127 => + [ + + [ + 'address' => '新都县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '荣昌县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512128 => + [ + + [ + 'address' => '新津县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '璧山县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512129 => + [ + + [ + 'address' => '蒲江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512130 => + [ + + [ + 'address' => '邛崃县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512131 => + [ + + [ + 'address' => '大邑县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512132 => + [ + + [ + 'address' => '崇庆县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512200 => + [ + + [ + 'address' => '万县地区', + 'start_year' => 1982, + 'end_year' => 1991, + ], + + [ + 'address' => '绵阳地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512201 => + [ + + [ + 'address' => '万县市', + 'start_year' => 1982, + 'end_year' => 1991, + ], + + [ + 'address' => '绵阳市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512202 => + [ + + [ + 'address' => '市中区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512221 => + [ + + [ + 'address' => '万县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + + [ + 'address' => '江油县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512222 => + [ + + [ + 'address' => '开县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + + [ + 'address' => '青川县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512223 => + [ + + [ + 'address' => '平武县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '忠县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 512224 => + [ + + [ + 'address' => '广元县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '梁平县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 512225 => + [ + + [ + 'address' => '云阳县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + + [ + 'address' => '旺苍县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512226 => + [ + + [ + 'address' => '剑阁县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '奉节县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 512227 => + [ + + [ + 'address' => '巫山县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + + [ + 'address' => '梓潼县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512228 => + [ + + [ + 'address' => '三台县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '巫溪县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + ], + 512229 => + [ + + [ + 'address' => '城口县', + 'start_year' => 1982, + 'end_year' => 1991, + ], + + [ + 'address' => '盐亭县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512230 => + [ + + [ + 'address' => '射洪县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512231 => + [ + + [ + 'address' => '遂宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512232 => + [ + + [ + 'address' => '蓬溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512233 => + [ + + [ + 'address' => '中江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512234 => + [ + + [ + 'address' => '德阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512235 => + [ + + [ + 'address' => '绵竹县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512236 => + [ + + [ + 'address' => '安县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512237 => + [ + + [ + 'address' => '北川县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512300 => + [ + + [ + 'address' => '内江地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '涪陵地区', + 'start_year' => 1982, + 'end_year' => 1994, + ], + ], + 512301 => + [ + + [ + 'address' => '内江市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '涪陵市', + 'start_year' => 1983, + 'end_year' => 1994, + ], + ], + 512302 => + [ + + [ + 'address' => '南川市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 512321 => + [ + + [ + 'address' => '内江县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '涪陵县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512322 => + [ + + [ + 'address' => '乐至县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '垫江县', + 'start_year' => 1982, + 'end_year' => 1994, + ], + ], + 512323 => + [ + + [ + 'address' => '南川县', + 'start_year' => 1982, + 'end_year' => 1993, + ], + + [ + 'address' => '安岳县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512324 => + [ + + [ + 'address' => '丰都县', + 'start_year' => 1982, + 'end_year' => 1994, + ], + + [ + 'address' => '威远县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512325 => + [ + + [ + 'address' => '石柱县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '石柱土家族自治县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + + [ + 'address' => '资中县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512326 => + [ + + [ + 'address' => '武隆县', + 'start_year' => 1982, + 'end_year' => 1994, + ], + + [ + 'address' => '资阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512327 => + [ + + [ + 'address' => '彭水县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '彭水苗族土家族自治县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + + [ + 'address' => '简阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512328 => + [ + + [ + 'address' => '黔江县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '黔江土家族苗族自治县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 512329 => + [ + + [ + 'address' => '酉阳县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '酉阳土家族苗族自治县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 512330 => + [ + + [ + 'address' => '秀山县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '秀山土家族苗族自治县', + 'start_year' => 1983, + 'end_year' => 1987, + ], + ], + 512400 => + [ + + [ + 'address' => '内江地区', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '宜宾地区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512401 => + [ + + [ + 'address' => '内江市', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '宜宾市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512402 => + [ + + [ + 'address' => '泸州市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512421 => + [ + + [ + 'address' => '内江县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '宜宾县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512422 => + [ + + [ + 'address' => '富顺县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '资中县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512423 => + [ + + [ + 'address' => '资阳县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '隆昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512424 => + [ + + [ + 'address' => '南溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '简阳县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512425 => + [ + + [ + 'address' => '威远县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '江安县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512426 => + [ + + [ + 'address' => '纳溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '隆昌县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512427 => + [ + + [ + 'address' => '安岳县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '泸县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512428 => + [ + + [ + 'address' => '乐至县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '合江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512429 => + [ + + [ + 'address' => '古蔺县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512430 => + [ + + [ + 'address' => '叙永县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512431 => + [ + + [ + 'address' => '长宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512432 => + [ + + [ + 'address' => '兴文县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512433 => + [ + + [ + 'address' => '珙县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512434 => + [ + + [ + 'address' => '高县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512435 => + [ + + [ + 'address' => '筠连县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512436 => + [ + + [ + 'address' => '屏山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512500 => + [ + + [ + 'address' => '乐山地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '宜宾地区', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 512501 => + [ + + [ + 'address' => '乐山市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '宜宾市', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 512502 => + [ + + [ + 'address' => '泸州市', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512521 => + [ + + [ + 'address' => '夹江县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '泸县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512522 => + [ + + [ + 'address' => '富顺县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '洪雅县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512523 => + [ + + [ + 'address' => '丹棱县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '合江县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512524 => + [ + + [ + 'address' => '纳溪县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '青神县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512525 => + [ + + [ + 'address' => '叙永县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '眉山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512526 => + [ + + [ + 'address' => '古蔺县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '彭山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512527 => + [ + + [ + 'address' => '井研县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '宜宾县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 512528 => + [ + + [ + 'address' => '仁寿县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '南溪县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 512529 => + [ + + [ + 'address' => '江安县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + + [ + 'address' => '犍为县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512530 => + [ + + [ + 'address' => '沐川县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '长宁县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 512531 => + [ + + [ + 'address' => '峨眉县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '高县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 512532 => + [ + + [ + 'address' => '筠连县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + + [ + 'address' => '金口河工农区', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512533 => + [ + + [ + 'address' => '峨边县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + + [ + 'address' => '珙县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 512534 => + [ + + [ + 'address' => '兴文县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + + [ + 'address' => '马边县', + 'start_year' => 1981, + 'end_year' => 1981, + ], + ], + 512535 => + [ + + [ + 'address' => '屏山县', + 'start_year' => 1982, + 'end_year' => 1995, + ], + ], + 512600 => + [ + + [ + 'address' => '乐山地区', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '永川地区', + 'start_year' => 1981, + 'end_year' => 1981, + ], + + [ + 'address' => '江津地区', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 512601 => + [ + + [ + 'address' => '乐山市', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512621 => + [ + + [ + 'address' => '仁寿县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '永川县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512622 => + [ + + [ + 'address' => '大足县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '眉山县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512623 => + [ + + [ + 'address' => '犍为县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '铜梁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512624 => + [ + + [ + 'address' => '井研县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '合川县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512625 => + [ + + [ + 'address' => '峨眉县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '潼南县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512626 => + [ + + [ + 'address' => '夹江县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '璧山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512627 => + [ + + [ + 'address' => '江津县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '洪雅县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512628 => + [ + + [ + 'address' => '彭山县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '荣昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512629 => + [ + + [ + 'address' => '沐川县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512630 => + [ + + [ + 'address' => '青神县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512631 => + [ + + [ + 'address' => '丹棱县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512632 => + [ + + [ + 'address' => '峨边县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '峨边彝族自治县', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 512633 => + [ + + [ + 'address' => '马边县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '马边彝族自治县', + 'start_year' => 1983, + 'end_year' => 1984, + ], + ], + 512634 => + [ + + [ + 'address' => '金口河工农区', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512700 => + [ + + [ + 'address' => '涪陵地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '温江地区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512721 => + [ + + [ + 'address' => '涪陵县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '温江县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512722 => + [ + + [ + 'address' => '垫江县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '郫县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512723 => + [ + + [ + 'address' => '丰都县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '新都县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512724 => + [ + + [ + 'address' => '广汉县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '石柱县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512725 => + [ + + [ + 'address' => '什邡县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '秀山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512726 => + [ + + [ + 'address' => '彭县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '酉阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512727 => + [ + + [ + 'address' => '灌县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '黔江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512728 => + [ + + [ + 'address' => '崇庆县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '彭水县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512729 => + [ + + [ + 'address' => '大邑县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '武隆县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512730 => + [ + + [ + 'address' => '南川县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '邛崃县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512731 => + [ + + [ + 'address' => '蒲江县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512732 => + [ + + [ + 'address' => '新津县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512800 => + [ + + [ + 'address' => '万县地区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '绵阳地区', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512801 => + [ + + [ + 'address' => '万县市', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '绵阳市', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512802 => + [ + + [ + 'address' => '市中区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512821 => + [ + + [ + 'address' => '万县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '德阳县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512822 => + [ + + [ + 'address' => '开县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '绵竹县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512823 => + [ + + [ + 'address' => '城口县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '安县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512824 => + [ + + [ + 'address' => '巫溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '江油县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512825 => + [ + + [ + 'address' => '巫山县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '梓潼县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512826 => + [ + + [ + 'address' => '剑阁县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + + [ + 'address' => '奉节县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512827 => + [ + + [ + 'address' => '云阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '广元县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512828 => + [ + + [ + 'address' => '忠县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '旺苍县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512829 => + [ + + [ + 'address' => '梁平县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '青川县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512830 => + [ + + [ + 'address' => '平武县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512831 => + [ + + [ + 'address' => '北川县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512832 => + [ + + [ + 'address' => '遂宁县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512833 => + [ + + [ + 'address' => '三台县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512834 => + [ + + [ + 'address' => '中江县', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 512835 => + [ + + [ + 'address' => '蓬溪县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512836 => + [ + + [ + 'address' => '射洪县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512837 => + [ + + [ + 'address' => '盐亭县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512900 => + [ + + [ + 'address' => '南充地区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 512901 => + [ + + [ + 'address' => '南充市', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 512902 => + [ + + [ + 'address' => '华蓥市', + 'start_year' => 1985, + 'end_year' => 1992, + ], + ], + 512903 => + [ + + [ + 'address' => '阆中市', + 'start_year' => 1991, + 'end_year' => 1992, + ], + ], + 512921 => + [ + + [ + 'address' => '南充县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 512922 => + [ + + [ + 'address' => '南部县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '苍溪县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512923 => + [ + + [ + 'address' => '岳池县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '阆中县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512924 => + [ + + [ + 'address' => '仪陇县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '营山县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 512925 => + [ + + [ + 'address' => '南部县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '广安县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 512926 => + [ + + [ + 'address' => '蓬安县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '西充县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512927 => + [ + + [ + 'address' => '仪陇县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '营山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512928 => + [ + + [ + 'address' => '武胜县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '蓬安县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 512929 => + [ + + [ + 'address' => '广安县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '西充县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 512930 => + [ + + [ + 'address' => '岳池县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '阆中县', + 'start_year' => 1982, + 'end_year' => 1990, + ], + ], + 512931 => + [ + + [ + 'address' => '武胜县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '苍溪县', + 'start_year' => 1982, + 'end_year' => 1984, + ], + ], + 512932 => + [ + + [ + 'address' => '华云工农区', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 513000 => + [ + + [ + 'address' => '达县地区', + 'start_year' => '', + 'end_year' => 1992, + ], + + [ + 'address' => '达川地区', + 'start_year' => 1993, + 'end_year' => 1998, + ], + ], + 513001 => + [ + + [ + 'address' => '达县市', + 'start_year' => '', + 'end_year' => 1992, + ], + + [ + 'address' => '达川市', + 'start_year' => 1993, + 'end_year' => 1998, + ], + ], + 513002 => + [ + + [ + 'address' => '万源市', + 'start_year' => 1993, + 'end_year' => 1998, + ], + ], + 513021 => + [ + + [ + 'address' => '达县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 513022 => + [ + + [ + 'address' => '万源县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '宣汉县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 513023 => + [ + + [ + 'address' => '宣汉县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '开江县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 513024 => + [ + + [ + 'address' => '万源县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '开江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513025 => + [ + + [ + 'address' => '通江县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '邻水县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513026 => + [ + + [ + 'address' => '南江县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '大竹县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513027 => + [ + + [ + 'address' => '巴中县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + + [ + 'address' => '渠县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513028 => + [ + + [ + 'address' => '南江县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '平昌县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 513029 => + [ + + [ + 'address' => '大竹县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + + [ + 'address' => '巴中县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513030 => + [ + + [ + 'address' => '平昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '渠县', + 'start_year' => 1982, + 'end_year' => 1998, + ], + ], + 513031 => + [ + + [ + 'address' => '通江县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '邻水县', + 'start_year' => 1982, + 'end_year' => 1992, + ], + ], + 513032 => + [ + + [ + 'address' => '白沙工农区', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 513100 => + [ + + [ + 'address' => '雅安地区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 513101 => + [ + + [ + 'address' => '雅安市', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 513121 => + [ + + [ + 'address' => '雅安县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 513122 => + [ + + [ + 'address' => '名山县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '芦山县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513123 => + [ + + [ + 'address' => '名山县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '荥经县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 513124 => + [ + + [ + 'address' => '汉源县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '荥经县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513125 => + [ + + [ + 'address' => '汉源县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '石棉县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 513126 => + [ + + [ + 'address' => '天全县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + + [ + 'address' => '石棉县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513127 => + [ + + [ + 'address' => '天全县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '芦山县', + 'start_year' => 1982, + 'end_year' => 1999, + ], + ], + 513128 => + [ + + [ + 'address' => '宝兴县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 513200 => + [ + + [ + 'address' => '阿坝藏族羌族自治州', + 'start_year' => 1987, + 'end_year' => '', + ], + + [ + 'address' => '阿坝藏族自治州', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 513201 => + [ + + [ + 'address' => '马尔康区', + 'start_year' => 2015, + 'end_year' => 2015, + ], + + [ + 'address' => '马尔康市', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 513221 => + [ + + [ + 'address' => '汶川县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '马尔康县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513222 => + [ + + [ + 'address' => '理县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '红原县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513223 => + [ + + [ + 'address' => '茂县', + 'start_year' => 1987, + 'end_year' => '', + ], + + [ + 'address' => '茂汶羌族自治县', + 'start_year' => 1982, + 'end_year' => 1986, + ], + + [ + 'address' => '阿坝县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513224 => + [ + + [ + 'address' => '松潘县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '若尔盖县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513225 => + [ + + [ + 'address' => '九寨沟县', + 'start_year' => 1997, + 'end_year' => '', + ], + + [ + 'address' => '南坪县', + 'start_year' => 1982, + 'end_year' => 1996, + ], + + [ + 'address' => '黑水县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513226 => + [ + + [ + 'address' => '松潘县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '金川县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513227 => + [ + + [ + 'address' => '南坪县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '小金县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513228 => + [ + + [ + 'address' => '茂汶羌族自治县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '黑水县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513229 => + [ + + [ + 'address' => '汶川县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '马尔康县', + 'start_year' => 1982, + 'end_year' => 2014, + ], + ], + 513230 => + [ + + [ + 'address' => '壤塘县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '理县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513231 => + [ + + [ + 'address' => '小金县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '阿坝县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513232 => + [ + + [ + 'address' => '若尔盖县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '金川县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513233 => + [ + + [ + 'address' => '壤塘县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '红原县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513300 => + [ + + [ + 'address' => '甘孜藏族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 513301 => + [ + + [ + 'address' => '康定市', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 513321 => + [ + + [ + 'address' => '康定县', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 513322 => + [ + + [ + 'address' => '泸定县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '炉霍县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513323 => + [ + + [ + 'address' => '丹巴县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '甘孜县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513324 => + [ + + [ + 'address' => '九龙县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '新龙县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513325 => + [ + + [ + 'address' => '白玉县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '雅江县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513326 => + [ + + [ + 'address' => '德格县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '道孚县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513327 => + [ + + [ + 'address' => '炉霍县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '石渠县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513328 => + [ + + [ + 'address' => '甘孜县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '色达县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513329 => + [ + + [ + 'address' => '新龙县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '泸定县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513330 => + [ + + [ + 'address' => '丹巴县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '德格县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513331 => + [ + + [ + 'address' => '九龙县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '白玉县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513332 => + [ + + [ + 'address' => '石渠县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '雅江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513333 => + [ + + [ + 'address' => '色达县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '道孚县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513334 => + [ + + [ + 'address' => '理塘县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 513335 => + [ + + [ + 'address' => '乡城县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '巴塘县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513336 => + [ + + [ + 'address' => '乡城县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '稻城县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513337 => + [ + + [ + 'address' => '巴塘县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '稻城县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513338 => + [ + + [ + 'address' => '得荣县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 513400 => + [ + + [ + 'address' => '凉山彝族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 513401 => + [ + + [ + 'address' => '西昌市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 513421 => + [ + + [ + 'address' => '西昌县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 513422 => + [ + + [ + 'address' => '昭觉县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '木里藏族自治县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513423 => + [ + + [ + 'address' => '甘洛县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '盐源县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513424 => + [ + + [ + 'address' => '峨边县', + 'start_year' => '', + 'end_year' => 1980, + ], + + [ + 'address' => '德昌县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513425 => + [ + + [ + 'address' => '会理县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '马边县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 513426 => + [ + + [ + 'address' => '会东县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '雷波县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513427 => + [ + + [ + 'address' => '宁南县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 513428 => + [ + + [ + 'address' => '会东县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '普格县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513429 => + [ + + [ + 'address' => '会理县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '布拖县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513430 => + [ + + [ + 'address' => '德昌县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '金阳县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513431 => + [ + + [ + 'address' => '昭觉县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '美姑县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513432 => + [ + + [ + 'address' => '喜德县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '金阳县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513433 => + [ + + [ + 'address' => '冕宁县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '布拖县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513434 => + [ + + [ + 'address' => '普格县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '越西县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513435 => + [ + + [ + 'address' => '喜德县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '甘洛县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513436 => + [ + + [ + 'address' => '美姑县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '越西县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513437 => + [ + + [ + 'address' => '盐源县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '雷波县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 513438 => + [ + + [ + 'address' => '木里藏族自治县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513439 => + [ + + [ + 'address' => '冕宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 513500 => + [ + + [ + 'address' => '黔江地区', + 'start_year' => 1988, + 'end_year' => 1996, + ], + ], + 513521 => + [ + + [ + 'address' => '石柱土家族自治县', + 'start_year' => 1988, + 'end_year' => 1996, + ], + ], + 513522 => + [ + + [ + 'address' => '秀山土家族苗族自治县', + 'start_year' => 1988, + 'end_year' => 1996, + ], + ], + 513523 => + [ + + [ + 'address' => '黔江土家族苗族自治县', + 'start_year' => 1988, + 'end_year' => 1996, + ], + ], + 513524 => + [ + + [ + 'address' => '酉阳土家族苗族自治县', + 'start_year' => 1988, + 'end_year' => 1996, + ], + ], + 513525 => + [ + + [ + 'address' => '彭水苗族土家族自治县', + 'start_year' => 1988, + 'end_year' => 1996, + ], + ], + 513600 => + [ + + [ + 'address' => '广安地区', + 'start_year' => 1993, + 'end_year' => 1997, + ], + ], + 513601 => + [ + + [ + 'address' => '华蓥市', + 'start_year' => 1993, + 'end_year' => 1997, + ], + ], + 513621 => + [ + + [ + 'address' => '岳池县', + 'start_year' => 1993, + 'end_year' => 1997, + ], + ], + 513622 => + [ + + [ + 'address' => '广安县', + 'start_year' => 1993, + 'end_year' => 1997, + ], + ], + 513623 => + [ + + [ + 'address' => '武胜县', + 'start_year' => 1993, + 'end_year' => 1997, + ], + ], + 513624 => + [ + + [ + 'address' => '邻水县', + 'start_year' => 1993, + 'end_year' => 1997, + ], + ], + 513700 => + [ + + [ + 'address' => '巴中地区', + 'start_year' => 1993, + 'end_year' => 1999, + ], + ], + 513701 => + [ + + [ + 'address' => '巴中市', + 'start_year' => 1993, + 'end_year' => 1999, + ], + ], + 513721 => + [ + + [ + 'address' => '通江县', + 'start_year' => 1993, + 'end_year' => 1999, + ], + ], + 513722 => + [ + + [ + 'address' => '南江县', + 'start_year' => 1993, + 'end_year' => 1999, + ], + ], + 513723 => + [ + + [ + 'address' => '平昌县', + 'start_year' => 1993, + 'end_year' => 1999, + ], + ], + 513800 => + [ + + [ + 'address' => '眉山地区', + 'start_year' => 1997, + 'end_year' => 1999, + ], + ], + 513821 => + [ + + [ + 'address' => '眉山县', + 'start_year' => 1997, + 'end_year' => 1999, + ], + ], + 513822 => + [ + + [ + 'address' => '仁寿县', + 'start_year' => 1997, + 'end_year' => 1999, + ], + ], + 513823 => + [ + + [ + 'address' => '彭山县', + 'start_year' => 1997, + 'end_year' => 1999, + ], + ], + 513824 => + [ + + [ + 'address' => '洪雅县', + 'start_year' => 1997, + 'end_year' => 1999, + ], + ], + 513825 => + [ + + [ + 'address' => '丹棱县', + 'start_year' => 1997, + 'end_year' => 1999, + ], + ], + 513826 => + [ + + [ + 'address' => '青神县', + 'start_year' => 1997, + 'end_year' => 1999, + ], + ], + 513900 => + [ + + [ + 'address' => '资阳地区', + 'start_year' => 1998, + 'end_year' => 1999, + ], + ], + 513901 => + [ + + [ + 'address' => '资阳市', + 'start_year' => 1998, + 'end_year' => 1999, + ], + ], + 513902 => + [ + + [ + 'address' => '简阳市', + 'start_year' => 1998, + 'end_year' => 1999, + ], + ], + 513921 => + [ + + [ + 'address' => '安岳县', + 'start_year' => 1998, + 'end_year' => 1999, + ], + ], + 513922 => + [ + + [ + 'address' => '乐至县', + 'start_year' => 1998, + 'end_year' => 1999, + ], + ], + 517000 => + [ + + [ + 'address' => '涪陵市', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 517002 => + [ + + [ + 'address' => '枳城区', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 517003 => + [ + + [ + 'address' => '李渡区', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 517021 => + [ + + [ + 'address' => '垫江县', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 517022 => + [ + + [ + 'address' => '丰都县', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 517023 => + [ + + [ + 'address' => '武隆县', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 517081 => + [ + + [ + 'address' => '南川市', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 519001 => + [ + + [ + 'address' => '广汉市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 519002 => + [ + + [ + 'address' => '江油市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 519003 => + [ + + [ + 'address' => '都江堰市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 519004 => + [ + + [ + 'address' => '峨眉山市', + 'start_year' => 1988, + 'end_year' => 1994, + ], + ], + 519005 => + [ + + [ + 'address' => '永川市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 519006 => + [ + + [ + 'address' => '合川市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 519007 => + [ + + [ + 'address' => '江津市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 519008 => + [ + + [ + 'address' => '阆中市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 519009 => + [ + + [ + 'address' => '资阳市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 519010 => + [ + + [ + 'address' => '彭州市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 519011 => + [ + + [ + 'address' => '简阳市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 519012 => + [ + + [ + 'address' => '邛崃市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 519013 => + [ + + [ + 'address' => '崇州市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 520000 => + [ + + [ + 'address' => '贵州省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 520100 => + [ + + [ + 'address' => '贵阳市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 520102 => + [ + + [ + 'address' => '南明区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 520103 => + [ + + [ + 'address' => '云岩区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 520111 => + [ + + [ + 'address' => '花溪区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 520112 => + [ + + [ + 'address' => '乌当区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 520113 => + [ + + [ + 'address' => '白云区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 520114 => + [ + + [ + 'address' => '小河区', + 'start_year' => 2000, + 'end_year' => 2011, + ], + ], + 520115 => + [ + + [ + 'address' => '观山湖区', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 520121 => + [ + + [ + 'address' => '开阳县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 520122 => + [ + + [ + 'address' => '息烽县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 520123 => + [ + + [ + 'address' => '修文县', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 520181 => + [ + + [ + 'address' => '清镇市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 520200 => + [ + + [ + 'address' => '六盘水市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 520201 => + [ + + [ + 'address' => '水城特区', + 'start_year' => '', + 'end_year' => 1986, + ], + + [ + 'address' => '钟山区', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 520202 => + [ + + [ + 'address' => '盘县特区', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 520203 => + [ + + [ + 'address' => '六枝特区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 520221 => + [ + + [ + 'address' => '水城县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 520222 => + [ + + [ + 'address' => '盘县', + 'start_year' => 1999, + 'end_year' => 2016, + ], + ], + 520281 => + [ + + [ + 'address' => '盘州市', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 520300 => + [ + + [ + 'address' => '遵义市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520302 => + [ + + [ + 'address' => '红花岗区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520303 => + [ + + [ + 'address' => '汇川区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 520304 => + [ + + [ + 'address' => '播州区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 520321 => + [ + + [ + 'address' => '遵义县', + 'start_year' => 1997, + 'end_year' => 2015, + ], + ], + 520322 => + [ + + [ + 'address' => '桐梓县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520323 => + [ + + [ + 'address' => '绥阳县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520324 => + [ + + [ + 'address' => '正安县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520325 => + [ + + [ + 'address' => '道真仡佬族苗族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520326 => + [ + + [ + 'address' => '务川仡佬族苗族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520327 => + [ + + [ + 'address' => '凤冈县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520328 => + [ + + [ + 'address' => '湄潭县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520329 => + [ + + [ + 'address' => '余庆县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520330 => + [ + + [ + 'address' => '习水县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520381 => + [ + + [ + 'address' => '赤水市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520382 => + [ + + [ + 'address' => '仁怀市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 520400 => + [ + + [ + 'address' => '安顺市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 520402 => + [ + + [ + 'address' => '西秀区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 520403 => + [ + + [ + 'address' => '平坝区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 520421 => + [ + + [ + 'address' => '平坝县', + 'start_year' => 2000, + 'end_year' => 2013, + ], + ], + 520422 => + [ + + [ + 'address' => '普定县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 520423 => + [ + + [ + 'address' => '镇宁布依族苗族自治县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 520424 => + [ + + [ + 'address' => '关岭布依族苗族自治县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 520425 => + [ + + [ + 'address' => '紫云苗族布依族自治县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 520500 => + [ + + [ + 'address' => '毕节市', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520502 => + [ + + [ + 'address' => '七星关区', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520521 => + [ + + [ + 'address' => '大方县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520522 => + [ + + [ + 'address' => '黔西县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520523 => + [ + + [ + 'address' => '金沙县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520524 => + [ + + [ + 'address' => '织金县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520525 => + [ + + [ + 'address' => '纳雍县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520526 => + [ + + [ + 'address' => '威宁彝族回族苗族自治县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520527 => + [ + + [ + 'address' => '赫章县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520600 => + [ + + [ + 'address' => '铜仁市', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520602 => + [ + + [ + 'address' => '碧江区', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520603 => + [ + + [ + 'address' => '万山区', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520621 => + [ + + [ + 'address' => '江口县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520622 => + [ + + [ + 'address' => '玉屏侗族自治县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520623 => + [ + + [ + 'address' => '石阡县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520624 => + [ + + [ + 'address' => '思南县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520625 => + [ + + [ + 'address' => '印江土家族苗族自治县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520626 => + [ + + [ + 'address' => '德江县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520627 => + [ + + [ + 'address' => '沿河土家族自治县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 520628 => + [ + + [ + 'address' => '松桃苗族自治县', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 522100 => + [ + + [ + 'address' => '遵义地区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 522101 => + [ + + [ + 'address' => '遵义市', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 522102 => + [ + + [ + 'address' => '赤水市', + 'start_year' => 1990, + 'end_year' => 1996, + ], + ], + 522103 => + [ + + [ + 'address' => '仁怀市', + 'start_year' => 1995, + 'end_year' => 1996, + ], + ], + 522121 => + [ + + [ + 'address' => '遵义县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 522122 => + [ + + [ + 'address' => '桐梓县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 522123 => + [ + + [ + 'address' => '绥阳县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 522124 => + [ + + [ + 'address' => '正安县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 522125 => + [ + + [ + 'address' => '道真仡佬族苗族自治县', + 'start_year' => 1986, + 'end_year' => 1996, + ], + + [ + 'address' => '道真县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 522126 => + [ + + [ + 'address' => '务川仡佬族苗族自治县', + 'start_year' => 1986, + 'end_year' => 1996, + ], + + [ + 'address' => '务川县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 522127 => + [ + + [ + 'address' => '凤冈县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 522128 => + [ + + [ + 'address' => '湄潭县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 522129 => + [ + + [ + 'address' => '余庆县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 522130 => + [ + + [ + 'address' => '仁怀县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 522131 => + [ + + [ + 'address' => '赤水县', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 522132 => + [ + + [ + 'address' => '习水县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 522200 => + [ + + [ + 'address' => '铜仁地区', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522201 => + [ + + [ + 'address' => '铜仁市', + 'start_year' => 1987, + 'end_year' => 2010, + ], + ], + 522221 => + [ + + [ + 'address' => '铜仁县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 522222 => + [ + + [ + 'address' => '江口县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522223 => + [ + + [ + 'address' => '玉屏侗族自治县', + 'start_year' => 1983, + 'end_year' => 2010, + ], + + [ + 'address' => '玉屏县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 522224 => + [ + + [ + 'address' => '石阡县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522225 => + [ + + [ + 'address' => '思南县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522226 => + [ + + [ + 'address' => '印江县', + 'start_year' => '', + 'end_year' => 1985, + ], + + [ + 'address' => '印江土家族苗族自治县', + 'start_year' => 1986, + 'end_year' => 2010, + ], + ], + 522227 => + [ + + [ + 'address' => '德江县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522228 => + [ + + [ + 'address' => '沿河县', + 'start_year' => '', + 'end_year' => 1985, + ], + + [ + 'address' => '沿河土家族自治县', + 'start_year' => 1986, + 'end_year' => 2010, + ], + ], + 522229 => + [ + + [ + 'address' => '松桃苗族自治县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522230 => + [ + + [ + 'address' => '万山特区', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522300 => + [ + + [ + 'address' => '兴义地区', + 'start_year' => '', + 'end_year' => 1980, + ], + + [ + 'address' => '黔西南布依族苗族自治州', + 'start_year' => 1981, + 'end_year' => '', + ], + ], + 522301 => + [ + + [ + 'address' => '兴义市', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 522321 => + [ + + [ + 'address' => '兴义县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 522322 => + [ + + [ + 'address' => '兴仁县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522323 => + [ + + [ + 'address' => '普安县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522324 => + [ + + [ + 'address' => '晴隆县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522325 => + [ + + [ + 'address' => '贞丰县', + 'start_year' => 1981, + 'end_year' => '', + ], + + [ + 'address' => '贞丰布依族苗族自治县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 522326 => + [ + + [ + 'address' => '望谟县', + 'start_year' => 1981, + 'end_year' => '', + ], + + [ + 'address' => '望谟布依族苗族自治县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 522327 => + [ + + [ + 'address' => '册亨县', + 'start_year' => 1981, + 'end_year' => '', + ], + + [ + 'address' => '册亨布依族自治县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 522328 => + [ + + [ + 'address' => '安龙县', + 'start_year' => 1981, + 'end_year' => '', + ], + + [ + 'address' => '安龙布依族苗族自治县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 522400 => + [ + + [ + 'address' => '毕节地区', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522401 => + [ + + [ + 'address' => '毕节市', + 'start_year' => 1993, + 'end_year' => 2010, + ], + ], + 522421 => + [ + + [ + 'address' => '毕节县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 522422 => + [ + + [ + 'address' => '大方县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522423 => + [ + + [ + 'address' => '黔西县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522424 => + [ + + [ + 'address' => '金沙县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522425 => + [ + + [ + 'address' => '织金县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522426 => + [ + + [ + 'address' => '纳雍县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522427 => + [ + + [ + 'address' => '威宁彝族回族苗族自治县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522428 => + [ + + [ + 'address' => '赫章县', + 'start_year' => '', + 'end_year' => 2010, + ], + ], + 522500 => + [ + + [ + 'address' => '安顺地区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 522501 => + [ + + [ + 'address' => '安顺市', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 522502 => + [ + + [ + 'address' => '清镇市', + 'start_year' => 1992, + 'end_year' => 1994, + ], + ], + 522521 => + [ + + [ + 'address' => '安顺县', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 522522 => + [ + + [ + 'address' => '开阳县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 522523 => + [ + + [ + 'address' => '息烽县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 522524 => + [ + + [ + 'address' => '修文县', + 'start_year' => '', + 'end_year' => 1994, + ], + ], + 522525 => + [ + + [ + 'address' => '清镇县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 522526 => + [ + + [ + 'address' => '平坝县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 522527 => + [ + + [ + 'address' => '普定县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 522528 => + [ + + [ + 'address' => '关岭县', + 'start_year' => '', + 'end_year' => 1980, + ], + + [ + 'address' => '关岭布依族苗族自治县', + 'start_year' => 1981, + 'end_year' => 1999, + ], + ], + 522529 => + [ + + [ + 'address' => '镇宁布依族苗族自治县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 522530 => + [ + + [ + 'address' => '紫云苗族布依族自治县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 522600 => + [ + + [ + 'address' => '黔东南苗族侗族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522601 => + [ + + [ + 'address' => '凯里市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 522621 => + [ + + [ + 'address' => '凯里县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 522622 => + [ + + [ + 'address' => '黄平县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522623 => + [ + + [ + 'address' => '施秉县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522624 => + [ + + [ + 'address' => '三穗县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522625 => + [ + + [ + 'address' => '镇远县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522626 => + [ + + [ + 'address' => '岑巩县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522627 => + [ + + [ + 'address' => '天柱县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522628 => + [ + + [ + 'address' => '锦屏县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522629 => + [ + + [ + 'address' => '剑河县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522630 => + [ + + [ + 'address' => '台江县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522631 => + [ + + [ + 'address' => '黎平县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522632 => + [ + + [ + 'address' => '榕江县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522633 => + [ + + [ + 'address' => '从江县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522634 => + [ + + [ + 'address' => '雷山县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522635 => + [ + + [ + 'address' => '麻江县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522636 => + [ + + [ + 'address' => '丹寨县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522700 => + [ + + [ + 'address' => '黔南布依族苗族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522701 => + [ + + [ + 'address' => '都匀市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522702 => + [ + + [ + 'address' => '福泉市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 522721 => + [ + + [ + 'address' => '都匀县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 522722 => + [ + + [ + 'address' => '荔波县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522723 => + [ + + [ + 'address' => '贵定县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522724 => + [ + + [ + 'address' => '福泉县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 522725 => + [ + + [ + 'address' => '瓮安县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522726 => + [ + + [ + 'address' => '独山县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522727 => + [ + + [ + 'address' => '平塘县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522728 => + [ + + [ + 'address' => '罗甸县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522729 => + [ + + [ + 'address' => '长顺县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522730 => + [ + + [ + 'address' => '龙里县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522731 => + [ + + [ + 'address' => '惠水县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 522732 => + [ + + [ + 'address' => '三都水族自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 530000 => + [ + + [ + 'address' => '云南省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 530100 => + [ + + [ + 'address' => '昆明市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 530102 => + [ + + [ + 'address' => '五华区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 530103 => + [ + + [ + 'address' => '盘龙区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 530111 => + [ + + [ + 'address' => '官渡区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 530112 => + [ + + [ + 'address' => '西山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 530113 => + [ + + [ + 'address' => '东川区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 530114 => + [ + + [ + 'address' => '呈贡区', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 530115 => + [ + + [ + 'address' => '晋宁区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 530121 => + [ + + [ + 'address' => '呈贡县', + 'start_year' => 1982, + 'end_year' => 2010, + ], + + [ + 'address' => '安宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 530122 => + [ + + [ + 'address' => '呈贡县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '晋宁县', + 'start_year' => 1982, + 'end_year' => 2015, + ], + ], + 530123 => + [ + + [ + 'address' => '安宁县', + 'start_year' => 1982, + 'end_year' => 1994, + ], + + [ + 'address' => '富民县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 530124 => + [ + + [ + 'address' => '富民县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '晋宁县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 530125 => + [ + + [ + 'address' => '宜良县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 530126 => + [ + + [ + 'address' => '石林彝族自治县', + 'start_year' => 1998, + 'end_year' => '', + ], + + [ + 'address' => '路南彝族自治县', + 'start_year' => 1983, + 'end_year' => 1997, + ], + ], + 530127 => + [ + + [ + 'address' => '嵩明县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 530128 => + [ + + [ + 'address' => '禄劝县', + 'start_year' => 1983, + 'end_year' => 1984, + ], + + [ + 'address' => '禄劝彝族苗族自治县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 530129 => + [ + + [ + 'address' => '寻甸回族彝族自治县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 530181 => + [ + + [ + 'address' => '安宁市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 530200 => + [ + + [ + 'address' => '东川市', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 530300 => + [ + + [ + 'address' => '曲靖市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530302 => + [ + + [ + 'address' => '麒麟区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530303 => + [ + + [ + 'address' => '沾益区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 530304 => + [ + + [ + 'address' => '马龙区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 530321 => + [ + + [ + 'address' => '马龙县', + 'start_year' => 1997, + 'end_year' => 2017, + ], + ], + 530322 => + [ + + [ + 'address' => '陆良县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530323 => + [ + + [ + 'address' => '师宗县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530324 => + [ + + [ + 'address' => '罗平县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530325 => + [ + + [ + 'address' => '富源县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530326 => + [ + + [ + 'address' => '会泽县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530327 => + [ + + [ + 'address' => '寻甸回族彝族自治县', + 'start_year' => 1997, + 'end_year' => 1997, + ], + ], + 530328 => + [ + + [ + 'address' => '沾益县', + 'start_year' => 1997, + 'end_year' => 2015, + ], + ], + 530381 => + [ + + [ + 'address' => '宣威市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530400 => + [ + + [ + 'address' => '玉溪市', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530402 => + [ + + [ + 'address' => '红塔区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530403 => + [ + + [ + 'address' => '江川区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 530421 => + [ + + [ + 'address' => '江川县', + 'start_year' => 1997, + 'end_year' => 2014, + ], + ], + 530422 => + [ + + [ + 'address' => '澄江县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530423 => + [ + + [ + 'address' => '通海县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530424 => + [ + + [ + 'address' => '华宁县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530425 => + [ + + [ + 'address' => '易门县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530426 => + [ + + [ + 'address' => '峨山彝族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530427 => + [ + + [ + 'address' => '新平彝族傣族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530428 => + [ + + [ + 'address' => '元江哈尼族彝族傣族自治县', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 530500 => + [ + + [ + 'address' => '保山市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 530502 => + [ + + [ + 'address' => '隆阳区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 530521 => + [ + + [ + 'address' => '施甸县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 530522 => + [ + + [ + 'address' => '腾冲县', + 'start_year' => 2000, + 'end_year' => 2014, + ], + ], + 530523 => + [ + + [ + 'address' => '龙陵县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 530524 => + [ + + [ + 'address' => '昌宁县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 530581 => + [ + + [ + 'address' => '腾冲市', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 530600 => + [ + + [ + 'address' => '昭通市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530602 => + [ + + [ + 'address' => '昭阳区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530621 => + [ + + [ + 'address' => '鲁甸县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530622 => + [ + + [ + 'address' => '巧家县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530623 => + [ + + [ + 'address' => '盐津县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530624 => + [ + + [ + 'address' => '大关县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530625 => + [ + + [ + 'address' => '永善县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530626 => + [ + + [ + 'address' => '绥江县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530627 => + [ + + [ + 'address' => '镇雄县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530628 => + [ + + [ + 'address' => '彝良县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530629 => + [ + + [ + 'address' => '威信县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530630 => + [ + + [ + 'address' => '水富县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 530700 => + [ + + [ + 'address' => '丽江市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 530702 => + [ + + [ + 'address' => '古城区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 530721 => + [ + + [ + 'address' => '玉龙纳西族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 530722 => + [ + + [ + 'address' => '永胜县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 530723 => + [ + + [ + 'address' => '华坪县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 530724 => + [ + + [ + 'address' => '宁蒗彝族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 530800 => + [ + + [ + 'address' => '思茅市', + 'start_year' => 2003, + 'end_year' => 2006, + ], + + [ + 'address' => '普洱市', + 'start_year' => 2007, + 'end_year' => '', + ], + ], + 530802 => + [ + + [ + 'address' => '思茅区', + 'start_year' => 2007, + 'end_year' => '', + ], + + [ + 'address' => '翠云区', + 'start_year' => 2003, + 'end_year' => 2006, + ], + ], + 530821 => + [ + + [ + 'address' => '宁洱哈尼族彝族自治县', + 'start_year' => 2007, + 'end_year' => '', + ], + + [ + 'address' => '普洱哈尼族彝族自治县', + 'start_year' => 2003, + 'end_year' => 2006, + ], + ], + 530822 => + [ + + [ + 'address' => '墨江哈尼族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530823 => + [ + + [ + 'address' => '景东彝族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530824 => + [ + + [ + 'address' => '景谷傣族彝族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530825 => + [ + + [ + 'address' => '镇沅彝族哈尼族拉祜族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530826 => + [ + + [ + 'address' => '江城哈尼族彝族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530827 => + [ + + [ + 'address' => '孟连傣族拉祜族佤族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530828 => + [ + + [ + 'address' => '澜沧拉祜族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530829 => + [ + + [ + 'address' => '西盟佤族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530900 => + [ + + [ + 'address' => '临沧市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530902 => + [ + + [ + 'address' => '临翔区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530921 => + [ + + [ + 'address' => '凤庆县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530922 => + [ + + [ + 'address' => '云县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530923 => + [ + + [ + 'address' => '永德县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530924 => + [ + + [ + 'address' => '镇康县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530925 => + [ + + [ + 'address' => '双江拉祜族佤族布朗族傣族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530926 => + [ + + [ + 'address' => '耿马傣族佤族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 530927 => + [ + + [ + 'address' => '沧源佤族自治县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 532100 => + [ + + [ + 'address' => '昭通地区', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 532101 => + [ + + [ + 'address' => '昭通市', + 'start_year' => 1981, + 'end_year' => 2000, + ], + ], + 532121 => + [ + + [ + 'address' => '昭通县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 532122 => + [ + + [ + 'address' => '鲁甸县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 532123 => + [ + + [ + 'address' => '巧家县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 532124 => + [ + + [ + 'address' => '盐津县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 532125 => + [ + + [ + 'address' => '大关县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 532126 => + [ + + [ + 'address' => '永善县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 532127 => + [ + + [ + 'address' => '绥江县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 532128 => + [ + + [ + 'address' => '镇雄县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 532129 => + [ + + [ + 'address' => '彝良县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 532130 => + [ + + [ + 'address' => '威信县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 532131 => + [ + + [ + 'address' => '水富县', + 'start_year' => 1981, + 'end_year' => 2000, + ], + ], + 532200 => + [ + + [ + 'address' => '曲靖地区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532201 => + [ + + [ + 'address' => '曲靖市', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 532202 => + [ + + [ + 'address' => '宣威市', + 'start_year' => 1994, + 'end_year' => 1996, + ], + ], + 532221 => + [ + + [ + 'address' => '曲靖县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 532222 => + [ + + [ + 'address' => '沾益县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 532223 => + [ + + [ + 'address' => '马龙县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532224 => + [ + + [ + 'address' => '宣威县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 532225 => + [ + + [ + 'address' => '富源县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532226 => + [ + + [ + 'address' => '罗平县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532227 => + [ + + [ + 'address' => '师宗县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532228 => + [ + + [ + 'address' => '陆良县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532229 => + [ + + [ + 'address' => '宜良县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 532230 => + [ + + [ + 'address' => '路南彝族自治县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 532231 => + [ + + [ + 'address' => '寻甸回族彝族自治县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532232 => + [ + + [ + 'address' => '嵩明县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 532233 => + [ + + [ + 'address' => '会泽县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532300 => + [ + + [ + 'address' => '楚雄彝族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532301 => + [ + + [ + 'address' => '楚雄市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 532321 => + [ + + [ + 'address' => '楚雄县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 532322 => + [ + + [ + 'address' => '双柏县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532323 => + [ + + [ + 'address' => '牟定县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532324 => + [ + + [ + 'address' => '南华县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532325 => + [ + + [ + 'address' => '姚安县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532326 => + [ + + [ + 'address' => '大姚县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532327 => + [ + + [ + 'address' => '永仁县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532328 => + [ + + [ + 'address' => '元谋县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532329 => + [ + + [ + 'address' => '武定县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532330 => + [ + + [ + 'address' => '禄劝县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 532331 => + [ + + [ + 'address' => '禄丰县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532400 => + [ + + [ + 'address' => '玉溪地区', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532401 => + [ + + [ + 'address' => '玉溪市', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 532421 => + [ + + [ + 'address' => '玉溪县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 532422 => + [ + + [ + 'address' => '江川县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532423 => + [ + + [ + 'address' => '澄江县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532424 => + [ + + [ + 'address' => '通海县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532425 => + [ + + [ + 'address' => '华宁县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532426 => + [ + + [ + 'address' => '易门县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532427 => + [ + + [ + 'address' => '峨山彝族自治县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532428 => + [ + + [ + 'address' => '新平彝族傣族自治县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532429 => + [ + + [ + 'address' => '元江哈尼族彝族傣族自治县', + 'start_year' => '', + 'end_year' => 1996, + ], + ], + 532500 => + [ + + [ + 'address' => '红河哈尼族彝族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532501 => + [ + + [ + 'address' => '个旧市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532502 => + [ + + [ + 'address' => '开远市', + 'start_year' => 1981, + 'end_year' => '', + ], + ], + 532503 => + [ + + [ + 'address' => '蒙自市', + 'start_year' => 2010, + 'end_year' => '', + ], + ], + 532504 => + [ + + [ + 'address' => '弥勒市', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 532521 => + [ + + [ + 'address' => '开远县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 532522 => + [ + + [ + 'address' => '蒙自县', + 'start_year' => '', + 'end_year' => 2009, + ], + ], + 532523 => + [ + + [ + 'address' => '屏边苗族自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532524 => + [ + + [ + 'address' => '建水县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532525 => + [ + + [ + 'address' => '石屏县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532526 => + [ + + [ + 'address' => '弥勒县', + 'start_year' => '', + 'end_year' => 2012, + ], + ], + 532527 => + [ + + [ + 'address' => '泸西县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532528 => + [ + + [ + 'address' => '元阳县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532529 => + [ + + [ + 'address' => '红河县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532530 => + [ + + [ + 'address' => '金平县', + 'start_year' => '', + 'end_year' => 1984, + ], + + [ + 'address' => '金平苗族瑶族傣族自治县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 532531 => + [ + + [ + 'address' => '绿春县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532532 => + [ + + [ + 'address' => '河口瑶族自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532600 => + [ + + [ + 'address' => '文山壮族苗族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532601 => + [ + + [ + 'address' => '文山市', + 'start_year' => 2010, + 'end_year' => '', + ], + ], + 532621 => + [ + + [ + 'address' => '文山县', + 'start_year' => '', + 'end_year' => 2009, + ], + ], + 532622 => + [ + + [ + 'address' => '砚山县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532623 => + [ + + [ + 'address' => '西畴县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532624 => + [ + + [ + 'address' => '麻栗坡县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532625 => + [ + + [ + 'address' => '马关县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532626 => + [ + + [ + 'address' => '丘北县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532627 => + [ + + [ + 'address' => '广南县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532628 => + [ + + [ + 'address' => '富宁县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532700 => + [ + + [ + 'address' => '思茅地区', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 532701 => + [ + + [ + 'address' => '思茅市', + 'start_year' => 1993, + 'end_year' => 2002, + ], + ], + 532721 => + [ + + [ + 'address' => '思茅县', + 'start_year' => 1981, + 'end_year' => 1992, + ], + ], + 532722 => + [ + + [ + 'address' => '普洱县', + 'start_year' => '', + 'end_year' => 1984, + ], + + [ + 'address' => '普洱哈尼族彝族自治县', + 'start_year' => 1985, + 'end_year' => 2002, + ], + ], + 532723 => + [ + + [ + 'address' => '墨江哈尼族自治县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 532724 => + [ + + [ + 'address' => '景东县', + 'start_year' => '', + 'end_year' => 1984, + ], + + [ + 'address' => '景东彝族自治县', + 'start_year' => 1985, + 'end_year' => 2002, + ], + ], + 532725 => + [ + + [ + 'address' => '景谷傣族彝族自治县', + 'start_year' => 1985, + 'end_year' => 2002, + ], + + [ + 'address' => '景谷县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 532726 => + [ + + [ + 'address' => '镇沅县', + 'start_year' => '', + 'end_year' => 1989, + ], + + [ + 'address' => '镇沅彝族哈尼族拉祜族自治县', + 'start_year' => 1990, + 'end_year' => 2002, + ], + ], + 532727 => + [ + + [ + 'address' => '江城哈尼族彝族自治县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 532728 => + [ + + [ + 'address' => '孟连傣族拉祜族佤族自治县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 532729 => + [ + + [ + 'address' => '澜沧拉祜族自治县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 532730 => + [ + + [ + 'address' => '西盟佤族自治县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 532800 => + [ + + [ + 'address' => '西双版纳傣族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532801 => + [ + + [ + 'address' => '景洪市', + 'start_year' => 1993, + 'end_year' => '', + ], + ], + 532821 => + [ + + [ + 'address' => '景洪县', + 'start_year' => '', + 'end_year' => 1992, + ], + ], + 532822 => + [ + + [ + 'address' => '勐海县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532823 => + [ + + [ + 'address' => '勐腊县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532900 => + [ + + [ + 'address' => '大理白族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532901 => + [ + + [ + 'address' => '下关市', + 'start_year' => '', + 'end_year' => 1982, + ], + + [ + 'address' => '大理市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 532921 => + [ + + [ + 'address' => '大理县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 532922 => + [ + + [ + 'address' => '漾濞县', + 'start_year' => '', + 'end_year' => 1984, + ], + + [ + 'address' => '漾濞彝族自治县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 532923 => + [ + + [ + 'address' => '祥云县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532924 => + [ + + [ + 'address' => '宾川县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532925 => + [ + + [ + 'address' => '弥渡县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532926 => + [ + + [ + 'address' => '南涧彝族自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532927 => + [ + + [ + 'address' => '巍山彝族回族自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532928 => + [ + + [ + 'address' => '永平县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532929 => + [ + + [ + 'address' => '云龙县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532930 => + [ + + [ + 'address' => '洱源县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532931 => + [ + + [ + 'address' => '剑川县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 532932 => + [ + + [ + 'address' => '鹤庆县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 533000 => + [ + + [ + 'address' => '保山地区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 533001 => + [ + + [ + 'address' => '保山市', + 'start_year' => 1983, + 'end_year' => 1999, + ], + ], + 533021 => + [ + + [ + 'address' => '保山县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 533022 => + [ + + [ + 'address' => '施甸县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 533023 => + [ + + [ + 'address' => '腾冲县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 533024 => + [ + + [ + 'address' => '龙陵县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 533025 => + [ + + [ + 'address' => '昌宁县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 533100 => + [ + + [ + 'address' => '德宏傣族景颇族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 533101 => + [ + + [ + 'address' => '畹町市', + 'start_year' => 1985, + 'end_year' => 1998, + ], + ], + 533102 => + [ + + [ + 'address' => '瑞丽市', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 533103 => + [ + + [ + 'address' => '潞西市', + 'start_year' => 1996, + 'end_year' => 2009, + ], + + [ + 'address' => '芒市', + 'start_year' => 2010, + 'end_year' => '', + ], + ], + 533121 => + [ + + [ + 'address' => '潞西县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 533122 => + [ + + [ + 'address' => '梁河县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 533123 => + [ + + [ + 'address' => '盈江县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 533124 => + [ + + [ + 'address' => '陇川县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 533125 => + [ + + [ + 'address' => '瑞丽县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 533126 => + [ + + [ + 'address' => '畹町镇', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 533200 => + [ + + [ + 'address' => '丽江地区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 533221 => + [ + + [ + 'address' => '丽江纳西族自治县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 533222 => + [ + + [ + 'address' => '永胜县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 533223 => + [ + + [ + 'address' => '华坪县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 533224 => + [ + + [ + 'address' => '宁蒗彝族自治县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 533300 => + [ + + [ + 'address' => '怒江傈僳族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 533301 => + [ + + [ + 'address' => '泸水市', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 533321 => + [ + + [ + 'address' => '泸水县', + 'start_year' => 1982, + 'end_year' => 2015, + ], + + [ + 'address' => '碧江县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 533322 => + [ + + [ + 'address' => '碧江县', + 'start_year' => 1982, + 'end_year' => 1985, + ], + + [ + 'address' => '福贡县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 533323 => + [ + + [ + 'address' => '福贡县', + 'start_year' => 1982, + 'end_year' => '', + ], + + [ + 'address' => '贡山独龙族怒族自治县', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 533324 => + [ + + [ + 'address' => '泸水县', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '贡山独龙族怒族自治县', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 533325 => + [ + + [ + 'address' => '兰坪县', + 'start_year' => '', + 'end_year' => 1986, + ], + + [ + 'address' => '兰坪白族普米族自治县', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 533400 => + [ + + [ + 'address' => '迪庆藏族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 533401 => + [ + + [ + 'address' => '香格里拉市', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 533421 => + [ + + [ + 'address' => '中甸县', + 'start_year' => '', + 'end_year' => 2000, + ], + + [ + 'address' => '香格里拉县', + 'start_year' => 2001, + 'end_year' => 2013, + ], + ], + 533422 => + [ + + [ + 'address' => '德钦县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 533423 => + [ + + [ + 'address' => '维西傈僳族自治县', + 'start_year' => 1985, + 'end_year' => '', + ], + + [ + 'address' => '维西县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 533500 => + [ + + [ + 'address' => '临沧地区', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 533521 => + [ + + [ + 'address' => '临沧县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 533522 => + [ + + [ + 'address' => '凤庆县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 533523 => + [ + + [ + 'address' => '云县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 533524 => + [ + + [ + 'address' => '永德县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 533525 => + [ + + [ + 'address' => '镇康县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 533526 => + [ + + [ + 'address' => '双江县', + 'start_year' => '', + 'end_year' => 1984, + ], + + [ + 'address' => '双江拉祜族佤族布朗族傣族自治县', + 'start_year' => 1985, + 'end_year' => 2002, + ], + ], + 533527 => + [ + + [ + 'address' => '耿马傣族佤族自治县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 533528 => + [ + + [ + 'address' => '沧源佤族自治县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 540000 => + [ + + [ + 'address' => '西藏自治区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 540100 => + [ + + [ + 'address' => '拉萨市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 540102 => + [ + + [ + 'address' => '城关区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 540103 => + [ + + [ + 'address' => '堆龙德庆区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 540104 => + [ + + [ + 'address' => '达孜区', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540121 => + [ + + [ + 'address' => '林周县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 540122 => + [ + + [ + 'address' => '当雄县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 540123 => + [ + + [ + 'address' => '尼木县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 540124 => + [ + + [ + 'address' => '曲水县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 540125 => + [ + + [ + 'address' => '堆龙德庆县', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 540126 => + [ + + [ + 'address' => '达孜县', + 'start_year' => '', + 'end_year' => 2016, + ], + ], + 540127 => + [ + + [ + 'address' => '墨竹工卡县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 540128 => + [ + + [ + 'address' => '工布江达县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 540129 => + [ + + [ + 'address' => '林芝县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 540130 => + [ + + [ + 'address' => '米林县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 540131 => + [ + + [ + 'address' => '墨脱县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 540200 => + [ + + [ + 'address' => '日喀则市', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540202 => + [ + + [ + 'address' => '桑珠孜区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540221 => + [ + + [ + 'address' => '南木林县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540222 => + [ + + [ + 'address' => '江孜县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540223 => + [ + + [ + 'address' => '定日县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540224 => + [ + + [ + 'address' => '萨迦县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540225 => + [ + + [ + 'address' => '拉孜县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540226 => + [ + + [ + 'address' => '昂仁县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540227 => + [ + + [ + 'address' => '谢通门县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540228 => + [ + + [ + 'address' => '白朗县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540229 => + [ + + [ + 'address' => '仁布县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540230 => + [ + + [ + 'address' => '康马县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540231 => + [ + + [ + 'address' => '定结县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540232 => + [ + + [ + 'address' => '仲巴县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540233 => + [ + + [ + 'address' => '亚东县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540234 => + [ + + [ + 'address' => '吉隆县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540235 => + [ + + [ + 'address' => '聂拉木县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540236 => + [ + + [ + 'address' => '萨嘎县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540237 => + [ + + [ + 'address' => '岗巴县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540300 => + [ + + [ + 'address' => '昌都市', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540302 => + [ + + [ + 'address' => '卡若区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540321 => + [ + + [ + 'address' => '江达县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540322 => + [ + + [ + 'address' => '贡觉县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540323 => + [ + + [ + 'address' => '类乌齐县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540324 => + [ + + [ + 'address' => '丁青县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540325 => + [ + + [ + 'address' => '察雅县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540326 => + [ + + [ + 'address' => '八宿县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540327 => + [ + + [ + 'address' => '左贡县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540328 => + [ + + [ + 'address' => '芒康县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540329 => + [ + + [ + 'address' => '洛隆县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540330 => + [ + + [ + 'address' => '边坝县', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 540400 => + [ + + [ + 'address' => '林芝市', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 540402 => + [ + + [ + 'address' => '巴宜区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 540421 => + [ + + [ + 'address' => '工布江达县', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 540422 => + [ + + [ + 'address' => '米林县', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 540423 => + [ + + [ + 'address' => '墨脱县', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 540424 => + [ + + [ + 'address' => '波密县', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 540425 => + [ + + [ + 'address' => '察隅县', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 540426 => + [ + + [ + 'address' => '朗县', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 540500 => + [ + + [ + 'address' => '山南市', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540502 => + [ + + [ + 'address' => '乃东区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540521 => + [ + + [ + 'address' => '扎囊县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540522 => + [ + + [ + 'address' => '贡嘎县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540523 => + [ + + [ + 'address' => '桑日县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540524 => + [ + + [ + 'address' => '琼结县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540525 => + [ + + [ + 'address' => '曲松县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540526 => + [ + + [ + 'address' => '措美县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540527 => + [ + + [ + 'address' => '洛扎县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540528 => + [ + + [ + 'address' => '加查县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540529 => + [ + + [ + 'address' => '隆子县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540530 => + [ + + [ + 'address' => '错那县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540531 => + [ + + [ + 'address' => '浪卡子县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 540600 => + [ + + [ + 'address' => '那曲市', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540602 => + [ + + [ + 'address' => '色尼区', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540621 => + [ + + [ + 'address' => '嘉黎县', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540622 => + [ + + [ + 'address' => '比如县', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540623 => + [ + + [ + 'address' => '聂荣县', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540624 => + [ + + [ + 'address' => '安多县', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540625 => + [ + + [ + 'address' => '申扎县', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540626 => + [ + + [ + 'address' => '索县', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540627 => + [ + + [ + 'address' => '班戈县', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540628 => + [ + + [ + 'address' => '巴青县', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540629 => + [ + + [ + 'address' => '尼玛县', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 540630 => + [ + + [ + 'address' => '双湖县', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 542100 => + [ + + [ + 'address' => '昌都地区', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542121 => + [ + + [ + 'address' => '昌都县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542122 => + [ + + [ + 'address' => '江达县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542123 => + [ + + [ + 'address' => '贡觉县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542124 => + [ + + [ + 'address' => '类乌齐县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542125 => + [ + + [ + 'address' => '丁青县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542126 => + [ + + [ + 'address' => '察雅县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542127 => + [ + + [ + 'address' => '八宿县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542128 => + [ + + [ + 'address' => '左贡县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542129 => + [ + + [ + 'address' => '芒康县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542130 => + [ + + [ + 'address' => '波密县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 542131 => + [ + + [ + 'address' => '察隅县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 542132 => + [ + + [ + 'address' => '洛隆县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542133 => + [ + + [ + 'address' => '边坝县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542134 => + [ + + [ + 'address' => '盐井县', + 'start_year' => 1983, + 'end_year' => 1998, + ], + ], + 542135 => + [ + + [ + 'address' => '碧土县', + 'start_year' => 1983, + 'end_year' => 1998, + ], + ], + 542136 => + [ + + [ + 'address' => '妥坝县', + 'start_year' => 1983, + 'end_year' => 1998, + ], + ], + 542137 => + [ + + [ + 'address' => '生达县', + 'start_year' => 1983, + 'end_year' => 1998, + ], + ], + 542200 => + [ + + [ + 'address' => '山南地区', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542221 => + [ + + [ + 'address' => '乃东县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542222 => + [ + + [ + 'address' => '扎囊县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542223 => + [ + + [ + 'address' => '贡嘎县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542224 => + [ + + [ + 'address' => '桑日县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542225 => + [ + + [ + 'address' => '琼结县', + 'start_year' => 1986, + 'end_year' => 2015, + ], + + [ + 'address' => '穷结县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 542226 => + [ + + [ + 'address' => '曲松县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542227 => + [ + + [ + 'address' => '措美县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542228 => + [ + + [ + 'address' => '洛扎县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542229 => + [ + + [ + 'address' => '加查县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542230 => + [ + + [ + 'address' => '朗县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 542231 => + [ + + [ + 'address' => '隆子县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542232 => + [ + + [ + 'address' => '错那县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542233 => + [ + + [ + 'address' => '浪卡子县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 542300 => + [ + + [ + 'address' => '日喀则地区', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542301 => + [ + + [ + 'address' => '日喀则市', + 'start_year' => 1986, + 'end_year' => 2013, + ], + ], + 542321 => + [ + + [ + 'address' => '日喀则县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 542322 => + [ + + [ + 'address' => '南木林县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542323 => + [ + + [ + 'address' => '江孜县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542324 => + [ + + [ + 'address' => '定日县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542325 => + [ + + [ + 'address' => '萨迦县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542326 => + [ + + [ + 'address' => '拉孜县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542327 => + [ + + [ + 'address' => '昂仁县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542328 => + [ + + [ + 'address' => '谢通门县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542329 => + [ + + [ + 'address' => '白朗县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542330 => + [ + + [ + 'address' => '仁布县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542331 => + [ + + [ + 'address' => '康马县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542332 => + [ + + [ + 'address' => '定结县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542333 => + [ + + [ + 'address' => '仲巴县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542334 => + [ + + [ + 'address' => '亚东县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542335 => + [ + + [ + 'address' => '吉隆县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542336 => + [ + + [ + 'address' => '聂拉木县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542337 => + [ + + [ + 'address' => '萨嘎县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542338 => + [ + + [ + 'address' => '岗巴县', + 'start_year' => '', + 'end_year' => 2013, + ], + ], + 542400 => + [ + + [ + 'address' => '那曲地区', + 'start_year' => '', + 'end_year' => 2016, + ], + ], + 542421 => + [ + + [ + 'address' => '那曲县', + 'start_year' => '', + 'end_year' => 2016, + ], + ], + 542422 => + [ + + [ + 'address' => '嘉黎县', + 'start_year' => '', + 'end_year' => 2016, + ], + ], + 542423 => + [ + + [ + 'address' => '比如县', + 'start_year' => '', + 'end_year' => 2016, + ], + ], + 542424 => + [ + + [ + 'address' => '聂荣县', + 'start_year' => '', + 'end_year' => 2016, + ], + ], + 542425 => + [ + + [ + 'address' => '安多县', + 'start_year' => '', + 'end_year' => 2016, + ], + ], + 542426 => + [ + + [ + 'address' => '申扎县', + 'start_year' => '', + 'end_year' => 2016, + ], + ], + 542427 => + [ + + [ + 'address' => '索县', + 'start_year' => '', + 'end_year' => 2016, + ], + ], + 542428 => + [ + + [ + 'address' => '班戈县', + 'start_year' => '', + 'end_year' => 2016, + ], + ], + 542429 => + [ + + [ + 'address' => '巴青县', + 'start_year' => '', + 'end_year' => 2016, + ], + ], + 542430 => + [ + + [ + 'address' => '尼玛县', + 'start_year' => 1983, + 'end_year' => 2016, + ], + ], + 542431 => + [ + + [ + 'address' => '双湖县', + 'start_year' => 2012, + 'end_year' => 2016, + ], + ], + 542500 => + [ + + [ + 'address' => '阿里地区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 542521 => + [ + + [ + 'address' => '普兰县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 542522 => + [ + + [ + 'address' => '札达县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 542523 => + [ + + [ + 'address' => '噶尔县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 542524 => + [ + + [ + 'address' => '日土县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 542525 => + [ + + [ + 'address' => '革吉县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 542526 => + [ + + [ + 'address' => '改则县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 542527 => + [ + + [ + 'address' => '措勤县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 542528 => + [ + + [ + 'address' => '隆格尔县', + 'start_year' => 1983, + 'end_year' => 1998, + ], + ], + 542600 => + [ + + [ + 'address' => '林芝地区', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 542621 => + [ + + [ + 'address' => '林芝县', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 542622 => + [ + + [ + 'address' => '工布江达县', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 542623 => + [ + + [ + 'address' => '米林县', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 542624 => + [ + + [ + 'address' => '墨脱县', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 542625 => + [ + + [ + 'address' => '波密县', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 542626 => + [ + + [ + 'address' => '察隅县', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 542627 => + [ + + [ + 'address' => '朗县', + 'start_year' => 1983, + 'end_year' => 2014, + ], + ], + 542700 => + [ + + [ + 'address' => '江孜地区', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 542721 => + [ + + [ + 'address' => '江孜县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 542722 => + [ + + [ + 'address' => '浪卡子县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 542723 => + [ + + [ + 'address' => '白朗县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 542724 => + [ + + [ + 'address' => '仁布县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 542725 => + [ + + [ + 'address' => '康马县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 542726 => + [ + + [ + 'address' => '亚东县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 542727 => + [ + + [ + 'address' => '岗巴县', + 'start_year' => 1983, + 'end_year' => 1985, + ], + ], + 610000 => + [ + + [ + 'address' => '陕西省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610100 => + [ + + [ + 'address' => '西安市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610102 => + [ + + [ + 'address' => '新城区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610103 => + [ + + [ + 'address' => '碑林区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610104 => + [ + + [ + 'address' => '莲湖区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610111 => + [ + + [ + 'address' => '灞桥区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610112 => + [ + + [ + 'address' => '未央区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610113 => + [ + + [ + 'address' => '雁塔区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610114 => + [ + + [ + 'address' => '阎良区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610115 => + [ + + [ + 'address' => '临潼区', + 'start_year' => 1997, + 'end_year' => '', + ], + ], + 610116 => + [ + + [ + 'address' => '长安区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 610117 => + [ + + [ + 'address' => '高陵区', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 610118 => + [ + + [ + 'address' => '鄠邑区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 610121 => + [ + + [ + 'address' => '长安县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 610122 => + [ + + [ + 'address' => '蓝田县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610123 => + [ + + [ + 'address' => '临潼县', + 'start_year' => 1983, + 'end_year' => 1996, + ], + ], + 610124 => + [ + + [ + 'address' => '周至县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610125 => + [ + + [ + 'address' => '户县', + 'start_year' => 1983, + 'end_year' => 2015, + ], + ], + 610126 => + [ + + [ + 'address' => '高陵县', + 'start_year' => 1983, + 'end_year' => 2013, + ], + ], + 610200 => + [ + + [ + 'address' => '铜川市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610202 => + [ + + [ + 'address' => '城区', + 'start_year' => '', + 'end_year' => 1999, + ], + + [ + 'address' => '王益区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 610203 => + [ + + [ + 'address' => '印台区', + 'start_year' => 2000, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 610204 => + [ + + [ + 'address' => '耀州区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 610221 => + [ + + [ + 'address' => '耀县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 610222 => + [ + + [ + 'address' => '宜君县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610300 => + [ + + [ + 'address' => '宝鸡市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610302 => + [ + + [ + 'address' => '渭滨区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610303 => + [ + + [ + 'address' => '金台区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610304 => + [ + + [ + 'address' => '杨陵区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '陈仓区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 610321 => + [ + + [ + 'address' => '宝鸡县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 610322 => + [ + + [ + 'address' => '凤翔县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610323 => + [ + + [ + 'address' => '岐山县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610324 => + [ + + [ + 'address' => '扶风县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610325 => + [ + + [ + 'address' => '武功县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 610326 => + [ + + [ + 'address' => '眉县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610327 => + [ + + [ + 'address' => '陇县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610328 => + [ + + [ + 'address' => '千阳县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610329 => + [ + + [ + 'address' => '麟游县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610330 => + [ + + [ + 'address' => '凤县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610331 => + [ + + [ + 'address' => '太白县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 610400 => + [ + + [ + 'address' => '咸阳市', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 610401 => + [ + + [ + 'address' => '咸阳市', + 'start_year' => 1983, + 'end_year' => 1983, + ], + ], + 610402 => + [ + + [ + 'address' => '秦都区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610403 => + [ + + [ + 'address' => '杨陵区', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610404 => + [ + + [ + 'address' => '渭城区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 610421 => + [ + + [ + 'address' => '兴平县', + 'start_year' => 1983, + 'end_year' => 1992, + ], + ], + 610422 => + [ + + [ + 'address' => '三原县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610423 => + [ + + [ + 'address' => '泾阳县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610424 => + [ + + [ + 'address' => '乾县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610425 => + [ + + [ + 'address' => '礼泉县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610426 => + [ + + [ + 'address' => '永寿县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610427 => + [ + + [ + 'address' => '彬县', + 'start_year' => 1983, + 'end_year' => 2017, + ], + ], + 610428 => + [ + + [ + 'address' => '长武县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610429 => + [ + + [ + 'address' => '旬邑县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610430 => + [ + + [ + 'address' => '淳化县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610431 => + [ + + [ + 'address' => '武功县', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 610481 => + [ + + [ + 'address' => '兴平市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 610482 => + [ + + [ + 'address' => '彬州市', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 610500 => + [ + + [ + 'address' => '渭南市', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 610502 => + [ + + [ + 'address' => '临渭区', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 610503 => + [ + + [ + 'address' => '华州区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 610521 => + [ + + [ + 'address' => '华县', + 'start_year' => 1994, + 'end_year' => 2014, + ], + ], + 610522 => + [ + + [ + 'address' => '潼关县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 610523 => + [ + + [ + 'address' => '大荔县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 610524 => + [ + + [ + 'address' => '合阳县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 610525 => + [ + + [ + 'address' => '澄城县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 610526 => + [ + + [ + 'address' => '蒲城县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 610527 => + [ + + [ + 'address' => '白水县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 610528 => + [ + + [ + 'address' => '富平县', + 'start_year' => 1994, + 'end_year' => '', + ], + ], + 610581 => + [ + + [ + 'address' => '韩城市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 610582 => + [ + + [ + 'address' => '华阴市', + 'start_year' => 1995, + 'end_year' => '', + ], + ], + 610600 => + [ + + [ + 'address' => '延安市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610602 => + [ + + [ + 'address' => '宝塔区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610603 => + [ + + [ + 'address' => '安塞区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 610621 => + [ + + [ + 'address' => '延长县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610622 => + [ + + [ + 'address' => '延川县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610623 => + [ + + [ + 'address' => '子长县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610624 => + [ + + [ + 'address' => '安塞县', + 'start_year' => 1996, + 'end_year' => 2015, + ], + ], + 610625 => + [ + + [ + 'address' => '志丹县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610626 => + [ + + [ + 'address' => '吴旗县', + 'start_year' => 1996, + 'end_year' => 2004, + ], + + [ + 'address' => '吴起县', + 'start_year' => 2005, + 'end_year' => '', + ], + ], + 610627 => + [ + + [ + 'address' => '甘泉县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610628 => + [ + + [ + 'address' => '富县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610629 => + [ + + [ + 'address' => '洛川县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610630 => + [ + + [ + 'address' => '宜川县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610631 => + [ + + [ + 'address' => '黄龙县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610632 => + [ + + [ + 'address' => '黄陵县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610700 => + [ + + [ + 'address' => '汉中市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610702 => + [ + + [ + 'address' => '汉台区', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610703 => + [ + + [ + 'address' => '南郑区', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 610721 => + [ + + [ + 'address' => '南郑县', + 'start_year' => 1996, + 'end_year' => 2016, + ], + ], + 610722 => + [ + + [ + 'address' => '城固县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610723 => + [ + + [ + 'address' => '洋县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610724 => + [ + + [ + 'address' => '西乡县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610725 => + [ + + [ + 'address' => '勉县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610726 => + [ + + [ + 'address' => '宁强县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610727 => + [ + + [ + 'address' => '略阳县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610728 => + [ + + [ + 'address' => '镇巴县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610729 => + [ + + [ + 'address' => '留坝县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610730 => + [ + + [ + 'address' => '佛坪县', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 610800 => + [ + + [ + 'address' => '榆林市', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 610802 => + [ + + [ + 'address' => '榆阳区', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 610803 => + [ + + [ + 'address' => '横山区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 610821 => + [ + + [ + 'address' => '神木县', + 'start_year' => 1999, + 'end_year' => 2016, + ], + ], + 610822 => + [ + + [ + 'address' => '府谷县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 610823 => + [ + + [ + 'address' => '横山县', + 'start_year' => 1999, + 'end_year' => 2014, + ], + ], + 610824 => + [ + + [ + 'address' => '靖边县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 610825 => + [ + + [ + 'address' => '定边县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 610826 => + [ + + [ + 'address' => '绥德县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 610827 => + [ + + [ + 'address' => '米脂县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 610828 => + [ + + [ + 'address' => '佳县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 610829 => + [ + + [ + 'address' => '吴堡县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 610830 => + [ + + [ + 'address' => '清涧县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 610831 => + [ + + [ + 'address' => '子洲县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 610881 => + [ + + [ + 'address' => '神木市', + 'start_year' => 2017, + 'end_year' => '', + ], + ], + 610900 => + [ + + [ + 'address' => '安康市', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 610902 => + [ + + [ + 'address' => '汉滨区', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 610921 => + [ + + [ + 'address' => '汉阴县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 610922 => + [ + + [ + 'address' => '石泉县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 610923 => + [ + + [ + 'address' => '宁陕县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 610924 => + [ + + [ + 'address' => '紫阳县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 610925 => + [ + + [ + 'address' => '岚皋县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 610926 => + [ + + [ + 'address' => '平利县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 610927 => + [ + + [ + 'address' => '镇坪县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 610928 => + [ + + [ + 'address' => '旬阳县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 610929 => + [ + + [ + 'address' => '白河县', + 'start_year' => 2000, + 'end_year' => '', + ], + ], + 611000 => + [ + + [ + 'address' => '商洛市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 611002 => + [ + + [ + 'address' => '商州区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 611021 => + [ + + [ + 'address' => '洛南县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 611022 => + [ + + [ + 'address' => '丹凤县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 611023 => + [ + + [ + 'address' => '商南县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 611024 => + [ + + [ + 'address' => '山阳县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 611025 => + [ + + [ + 'address' => '镇安县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 611026 => + [ + + [ + 'address' => '柞水县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 612100 => + [ + + [ + 'address' => '渭南地区', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 612101 => + [ + + [ + 'address' => '渭南市', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 612102 => + [ + + [ + 'address' => '韩城市', + 'start_year' => 1983, + 'end_year' => 1993, + ], + ], + 612103 => + [ + + [ + 'address' => '华阴市', + 'start_year' => 1990, + 'end_year' => 1993, + ], + ], + 612121 => + [ + + [ + 'address' => '蓝田县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612122 => + [ + + [ + 'address' => '临潼县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612123 => + [ + + [ + 'address' => '渭南县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612124 => + [ + + [ + 'address' => '华县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 612125 => + [ + + [ + 'address' => '华阴县', + 'start_year' => '', + 'end_year' => 1989, + ], + ], + 612126 => + [ + + [ + 'address' => '潼关县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 612127 => + [ + + [ + 'address' => '大荔县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 612128 => + [ + + [ + 'address' => '蒲城县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 612129 => + [ + + [ + 'address' => '澄城县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 612130 => + [ + + [ + 'address' => '白水县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 612131 => + [ + + [ + 'address' => '韩城县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612132 => + [ + + [ + 'address' => '合阳县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 612133 => + [ + + [ + 'address' => '富平县', + 'start_year' => '', + 'end_year' => 1993, + ], + ], + 612200 => + [ + + [ + 'address' => '咸阳地区', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612201 => + [ + + [ + 'address' => '咸阳市', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612221 => + [ + + [ + 'address' => '兴平县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612222 => + [ + + [ + 'address' => '周至县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612223 => + [ + + [ + 'address' => '户县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612224 => + [ + + [ + 'address' => '三原县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612225 => + [ + + [ + 'address' => '泾阳县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612226 => + [ + + [ + 'address' => '高陵县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612227 => + [ + + [ + 'address' => '乾县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612228 => + [ + + [ + 'address' => '礼泉县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612229 => + [ + + [ + 'address' => '永寿县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612230 => + [ + + [ + 'address' => '彬县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612231 => + [ + + [ + 'address' => '长武县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612232 => + [ + + [ + 'address' => '旬邑县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612233 => + [ + + [ + 'address' => '淳化县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612300 => + [ + + [ + 'address' => '汉中地区', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612301 => + [ + + [ + 'address' => '汉中市', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612321 => + [ + + [ + 'address' => '南郑县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612322 => + [ + + [ + 'address' => '城固县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612323 => + [ + + [ + 'address' => '洋县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612324 => + [ + + [ + 'address' => '西乡县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612325 => + [ + + [ + 'address' => '勉县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612326 => + [ + + [ + 'address' => '宁强县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612327 => + [ + + [ + 'address' => '略阳县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612328 => + [ + + [ + 'address' => '镇巴县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612329 => + [ + + [ + 'address' => '留坝县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612330 => + [ + + [ + 'address' => '佛坪县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612400 => + [ + + [ + 'address' => '安康地区', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 612401 => + [ + + [ + 'address' => '安康市', + 'start_year' => 1988, + 'end_year' => 1999, + ], + ], + 612421 => + [ + + [ + 'address' => '安康县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 612422 => + [ + + [ + 'address' => '汉阴县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 612423 => + [ + + [ + 'address' => '石泉县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 612424 => + [ + + [ + 'address' => '宁陕县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 612425 => + [ + + [ + 'address' => '紫阳县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 612426 => + [ + + [ + 'address' => '岚皋县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 612427 => + [ + + [ + 'address' => '平利县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 612428 => + [ + + [ + 'address' => '镇坪县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 612429 => + [ + + [ + 'address' => '旬阳县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 612430 => + [ + + [ + 'address' => '白河县', + 'start_year' => '', + 'end_year' => 1999, + ], + ], + 612500 => + [ + + [ + 'address' => '商洛地区', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 612501 => + [ + + [ + 'address' => '商州市', + 'start_year' => 1988, + 'end_year' => 2000, + ], + ], + 612521 => + [ + + [ + 'address' => '商县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 612522 => + [ + + [ + 'address' => '洛南县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 612523 => + [ + + [ + 'address' => '丹凤县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 612524 => + [ + + [ + 'address' => '商南县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 612525 => + [ + + [ + 'address' => '山阳县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 612526 => + [ + + [ + 'address' => '镇安县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 612527 => + [ + + [ + 'address' => '柞水县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 612600 => + [ + + [ + 'address' => '延安地区', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612601 => + [ + + [ + 'address' => '延安市', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612621 => + [ + + [ + 'address' => '延长县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612622 => + [ + + [ + 'address' => '延川县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612623 => + [ + + [ + 'address' => '子长县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612624 => + [ + + [ + 'address' => '安塞县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612625 => + [ + + [ + 'address' => '志丹县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612626 => + [ + + [ + 'address' => '吴旗县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612627 => + [ + + [ + 'address' => '甘泉县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612628 => + [ + + [ + 'address' => '富县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612629 => + [ + + [ + 'address' => '洛川县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612630 => + [ + + [ + 'address' => '宜川县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612631 => + [ + + [ + 'address' => '黄龙县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612632 => + [ + + [ + 'address' => '黄陵县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 612633 => + [ + + [ + 'address' => '宜君县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 612700 => + [ + + [ + 'address' => '榆林地区', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 612701 => + [ + + [ + 'address' => '榆林市', + 'start_year' => 1988, + 'end_year' => 1998, + ], + ], + 612721 => + [ + + [ + 'address' => '榆林县', + 'start_year' => '', + 'end_year' => 1987, + ], + ], + 612722 => + [ + + [ + 'address' => '神木县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 612723 => + [ + + [ + 'address' => '府谷县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 612724 => + [ + + [ + 'address' => '横山县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 612725 => + [ + + [ + 'address' => '靖边县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 612726 => + [ + + [ + 'address' => '定边县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 612727 => + [ + + [ + 'address' => '绥德县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 612728 => + [ + + [ + 'address' => '米脂县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 612729 => + [ + + [ + 'address' => '佳县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 612730 => + [ + + [ + 'address' => '吴堡县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 612731 => + [ + + [ + 'address' => '清涧县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 612732 => + [ + + [ + 'address' => '子洲县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 619001 => + [ + + [ + 'address' => '兴平市', + 'start_year' => 1993, + 'end_year' => 1994, + ], + ], + 619002 => + [ + + [ + 'address' => '韩城市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 619003 => + [ + + [ + 'address' => '华阴市', + 'start_year' => 1994, + 'end_year' => 1994, + ], + ], + 620000 => + [ + + [ + 'address' => '甘肃省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 620100 => + [ + + [ + 'address' => '兰州市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 620102 => + [ + + [ + 'address' => '城关区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 620103 => + [ + + [ + 'address' => '七里河区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 620104 => + [ + + [ + 'address' => '西固区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 620105 => + [ + + [ + 'address' => '安宁区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 620111 => + [ + + [ + 'address' => '红古区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 620112 => + [ + + [ + 'address' => '白银区', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 620121 => + [ + + [ + 'address' => '永登县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 620122 => + [ + + [ + 'address' => '皋兰县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 620123 => + [ + + [ + 'address' => '榆中县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 620200 => + [ + + [ + 'address' => '嘉峪关市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 620300 => + [ + + [ + 'address' => '金昌市', + 'start_year' => 1981, + 'end_year' => '', + ], + ], + 620302 => + [ + + [ + 'address' => '金川区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 620321 => + [ + + [ + 'address' => '永昌县', + 'start_year' => 1981, + 'end_year' => '', + ], + ], + 620400 => + [ + + [ + 'address' => '白银市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620402 => + [ + + [ + 'address' => '白银区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620403 => + [ + + [ + 'address' => '平川区', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620421 => + [ + + [ + 'address' => '靖远县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620422 => + [ + + [ + 'address' => '会宁县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620423 => + [ + + [ + 'address' => '景泰县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620500 => + [ + + [ + 'address' => '天水市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620502 => + [ + + [ + 'address' => '秦城区', + 'start_year' => 1985, + 'end_year' => 2003, + ], + + [ + 'address' => '秦州区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 620503 => + [ + + [ + 'address' => '北道区', + 'start_year' => 1985, + 'end_year' => 2003, + ], + + [ + 'address' => '麦积区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 620521 => + [ + + [ + 'address' => '清水县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620522 => + [ + + [ + 'address' => '秦安县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620523 => + [ + + [ + 'address' => '甘谷县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620524 => + [ + + [ + 'address' => '武山县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620525 => + [ + + [ + 'address' => '张家川回族自治县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 620600 => + [ + + [ + 'address' => '武威市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 620602 => + [ + + [ + 'address' => '凉州区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 620621 => + [ + + [ + 'address' => '民勤县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 620622 => + [ + + [ + 'address' => '古浪县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 620623 => + [ + + [ + 'address' => '天祝藏族自治县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 620700 => + [ + + [ + 'address' => '张掖市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620702 => + [ + + [ + 'address' => '甘州区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620721 => + [ + + [ + 'address' => '肃南裕固族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620722 => + [ + + [ + 'address' => '民乐县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620723 => + [ + + [ + 'address' => '临泽县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620724 => + [ + + [ + 'address' => '高台县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620725 => + [ + + [ + 'address' => '山丹县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620800 => + [ + + [ + 'address' => '平凉市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620802 => + [ + + [ + 'address' => '崆峒区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620821 => + [ + + [ + 'address' => '泾川县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620822 => + [ + + [ + 'address' => '灵台县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620823 => + [ + + [ + 'address' => '崇信县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620824 => + [ + + [ + 'address' => '华亭县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620825 => + [ + + [ + 'address' => '庄浪县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620826 => + [ + + [ + 'address' => '静宁县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620900 => + [ + + [ + 'address' => '酒泉市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620902 => + [ + + [ + 'address' => '肃州区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620921 => + [ + + [ + 'address' => '金塔县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620922 => + [ + + [ + 'address' => '瓜州县', + 'start_year' => 2006, + 'end_year' => '', + ], + ], + 620923 => + [ + + [ + 'address' => '肃北蒙古族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620924 => + [ + + [ + 'address' => '阿克塞哈萨克族自治县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620925 => + [ + + [ + 'address' => '安西县', + 'start_year' => 2002, + 'end_year' => 2005, + ], + ], + 620981 => + [ + + [ + 'address' => '玉门市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 620982 => + [ + + [ + 'address' => '敦煌市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 621000 => + [ + + [ + 'address' => '庆阳市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 621002 => + [ + + [ + 'address' => '西峰区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 621021 => + [ + + [ + 'address' => '庆城县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 621022 => + [ + + [ + 'address' => '环县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 621023 => + [ + + [ + 'address' => '华池县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 621024 => + [ + + [ + 'address' => '合水县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 621025 => + [ + + [ + 'address' => '正宁县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 621026 => + [ + + [ + 'address' => '宁县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 621027 => + [ + + [ + 'address' => '镇原县', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 621100 => + [ + + [ + 'address' => '定西市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 621102 => + [ + + [ + 'address' => '安定区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 621121 => + [ + + [ + 'address' => '通渭县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 621122 => + [ + + [ + 'address' => '陇西县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 621123 => + [ + + [ + 'address' => '渭源县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 621124 => + [ + + [ + 'address' => '临洮县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 621125 => + [ + + [ + 'address' => '漳县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 621126 => + [ + + [ + 'address' => '岷县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 621200 => + [ + + [ + 'address' => '陇南市', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 621202 => + [ + + [ + 'address' => '武都区', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 621221 => + [ + + [ + 'address' => '成县', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 621222 => + [ + + [ + 'address' => '文县', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 621223 => + [ + + [ + 'address' => '宕昌县', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 621224 => + [ + + [ + 'address' => '康县', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 621225 => + [ + + [ + 'address' => '西和县', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 621226 => + [ + + [ + 'address' => '礼县', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 621227 => + [ + + [ + 'address' => '徽县', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 621228 => + [ + + [ + 'address' => '两当县', + 'start_year' => 2004, + 'end_year' => '', + ], + ], + 622100 => + [ + + [ + 'address' => '酒泉地区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622101 => + [ + + [ + 'address' => '玉门市', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622102 => + [ + + [ + 'address' => '酒泉市', + 'start_year' => 1985, + 'end_year' => 2001, + ], + ], + 622103 => + [ + + [ + 'address' => '敦煌市', + 'start_year' => 1987, + 'end_year' => 2001, + ], + ], + 622121 => + [ + + [ + 'address' => '酒泉县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622122 => + [ + + [ + 'address' => '敦煌县', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 622123 => + [ + + [ + 'address' => '金塔县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622124 => + [ + + [ + 'address' => '肃北蒙古族自治县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622125 => + [ + + [ + 'address' => '阿克塞哈萨克族自治县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622126 => + [ + + [ + 'address' => '安西县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622200 => + [ + + [ + 'address' => '张掖地区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622201 => + [ + + [ + 'address' => '张掖市', + 'start_year' => 1985, + 'end_year' => 2001, + ], + ], + 622221 => + [ + + [ + 'address' => '张掖县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622222 => + [ + + [ + 'address' => '肃南裕固族自治县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622223 => + [ + + [ + 'address' => '民乐县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622224 => + [ + + [ + 'address' => '临泽县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622225 => + [ + + [ + 'address' => '高台县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622226 => + [ + + [ + 'address' => '山丹县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622300 => + [ + + [ + 'address' => '武威地区', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 622301 => + [ + + [ + 'address' => '武威市', + 'start_year' => 1985, + 'end_year' => 2000, + ], + ], + 622321 => + [ + + [ + 'address' => '武威县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622322 => + [ + + [ + 'address' => '民勤县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 622323 => + [ + + [ + 'address' => '古浪县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 622324 => + [ + + [ + 'address' => '景泰县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622325 => + [ + + [ + 'address' => '永昌县', + 'start_year' => '', + 'end_year' => 1980, + ], + ], + 622326 => + [ + + [ + 'address' => '天祝藏族自治县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 622400 => + [ + + [ + 'address' => '定西地区', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 622421 => + [ + + [ + 'address' => '定西县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 622422 => + [ + + [ + 'address' => '靖远县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622423 => + [ + + [ + 'address' => '会宁县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622424 => + [ + + [ + 'address' => '通渭县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 622425 => + [ + + [ + 'address' => '陇西县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 622426 => + [ + + [ + 'address' => '渭源县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 622427 => + [ + + [ + 'address' => '临洮县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 622428 => + [ + + [ + 'address' => '漳县', + 'start_year' => 1985, + 'end_year' => 2002, + ], + ], + 622429 => + [ + + [ + 'address' => '岷县', + 'start_year' => 1985, + 'end_year' => 2002, + ], + ], + 622500 => + [ + + [ + 'address' => '天水地区', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622501 => + [ + + [ + 'address' => '天水市', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622521 => + [ + + [ + 'address' => '张家川回族自治县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622522 => + [ + + [ + 'address' => '天水县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622523 => + [ + + [ + 'address' => '清水县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622524 => + [ + + [ + 'address' => '徽县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622525 => + [ + + [ + 'address' => '两当县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622526 => + [ + + [ + 'address' => '礼县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622527 => + [ + + [ + 'address' => '西和县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622528 => + [ + + [ + 'address' => '武山县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622529 => + [ + + [ + 'address' => '甘谷县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622530 => + [ + + [ + 'address' => '秦安县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622531 => + [ + + [ + 'address' => '漳县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622600 => + [ + + [ + 'address' => '武都地区', + 'start_year' => '', + 'end_year' => 1984, + ], + + [ + 'address' => '陇南地区', + 'start_year' => 1985, + 'end_year' => 2003, + ], + ], + 622621 => + [ + + [ + 'address' => '武都县', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 622622 => + [ + + [ + 'address' => '岷县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 622623 => + [ + + [ + 'address' => '宕昌县', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 622624 => + [ + + [ + 'address' => '成县', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 622625 => + [ + + [ + 'address' => '康县', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 622626 => + [ + + [ + 'address' => '文县', + 'start_year' => '', + 'end_year' => 2003, + ], + ], + 622627 => + [ + + [ + 'address' => '西和县', + 'start_year' => 1985, + 'end_year' => 2003, + ], + ], + 622628 => + [ + + [ + 'address' => '礼县', + 'start_year' => 1985, + 'end_year' => 2003, + ], + ], + 622629 => + [ + + [ + 'address' => '两当县', + 'start_year' => 1985, + 'end_year' => 2003, + ], + ], + 622630 => + [ + + [ + 'address' => '徽县', + 'start_year' => 1985, + 'end_year' => 2003, + ], + ], + 622700 => + [ + + [ + 'address' => '平凉地区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622701 => + [ + + [ + 'address' => '平凉市', + 'start_year' => 1983, + 'end_year' => 2001, + ], + ], + 622721 => + [ + + [ + 'address' => '平凉县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 622722 => + [ + + [ + 'address' => '泾川县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622723 => + [ + + [ + 'address' => '灵台县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622724 => + [ + + [ + 'address' => '崇信县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622725 => + [ + + [ + 'address' => '华亭县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622726 => + [ + + [ + 'address' => '庄浪县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622727 => + [ + + [ + 'address' => '静宁县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622800 => + [ + + [ + 'address' => '庆阳地区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622801 => + [ + + [ + 'address' => '西峰市', + 'start_year' => 1985, + 'end_year' => 2001, + ], + ], + 622821 => + [ + + [ + 'address' => '庆阳县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622822 => + [ + + [ + 'address' => '环县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622823 => + [ + + [ + 'address' => '华池县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622824 => + [ + + [ + 'address' => '合水县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622825 => + [ + + [ + 'address' => '正宁县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622826 => + [ + + [ + 'address' => '宁县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622827 => + [ + + [ + 'address' => '镇原县', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 622900 => + [ + + [ + 'address' => '临夏回族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 622901 => + [ + + [ + 'address' => '临夏市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 622921 => + [ + + [ + 'address' => '临夏县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 622922 => + [ + + [ + 'address' => '康乐县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 622923 => + [ + + [ + 'address' => '永靖县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 622924 => + [ + + [ + 'address' => '广河县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 622925 => + [ + + [ + 'address' => '和政县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 622926 => + [ + + [ + 'address' => '东乡族自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 622927 => + [ + + [ + 'address' => '积石山保安族东乡族撒拉族自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 623000 => + [ + + [ + 'address' => '甘南藏族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 623001 => + [ + + [ + 'address' => '合作市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 623021 => + [ + + [ + 'address' => '临潭县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 623022 => + [ + + [ + 'address' => '卓尼县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 623023 => + [ + + [ + 'address' => '舟曲县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 623024 => + [ + + [ + 'address' => '迭部县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 623025 => + [ + + [ + 'address' => '玛曲县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 623026 => + [ + + [ + 'address' => '碌曲县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 623027 => + [ + + [ + 'address' => '夏河县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 630000 => + [ + + [ + 'address' => '青海省', + 'start_year' => '', + 'end_year' => '', + ], + ], + 630100 => + [ + + [ + 'address' => '西宁市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 630102 => + [ + + [ + 'address' => '城东区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 630103 => + [ + + [ + 'address' => '城中区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 630104 => + [ + + [ + 'address' => '城西区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 630105 => + [ + + [ + 'address' => '城北区', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 630111 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 630121 => + [ + + [ + 'address' => '大通县', + 'start_year' => '', + 'end_year' => 1984, + ], + + [ + 'address' => '大通回族土族自治县', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 630122 => + [ + + [ + 'address' => '湟中县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 630123 => + [ + + [ + 'address' => '湟源县', + 'start_year' => 1999, + 'end_year' => '', + ], + ], + 630200 => + [ + + [ + 'address' => '海东市', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 630202 => + [ + + [ + 'address' => '乐都区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 630203 => + [ + + [ + 'address' => '平安区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 630221 => + [ + + [ + 'address' => '平安县', + 'start_year' => 2013, + 'end_year' => 2014, + ], + ], + 630222 => + [ + + [ + 'address' => '民和回族土族自治县', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 630223 => + [ + + [ + 'address' => '互助土族自治县', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 630224 => + [ + + [ + 'address' => '化隆回族自治县', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 630225 => + [ + + [ + 'address' => '循化撒拉族自治县', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 632100 => + [ + + [ + 'address' => '海东地区', + 'start_year' => '', + 'end_year' => 2012, + ], + ], + 632121 => + [ + + [ + 'address' => '平安县', + 'start_year' => '', + 'end_year' => 2012, + ], + ], + 632122 => + [ + + [ + 'address' => '民和县', + 'start_year' => '', + 'end_year' => 1984, + ], + + [ + 'address' => '民和回族土族自治县', + 'start_year' => 1985, + 'end_year' => 2012, + ], + ], + 632123 => + [ + + [ + 'address' => '乐都县', + 'start_year' => '', + 'end_year' => 2012, + ], + ], + 632124 => + [ + + [ + 'address' => '湟中县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 632125 => + [ + + [ + 'address' => '湟源县', + 'start_year' => '', + 'end_year' => 1998, + ], + ], + 632126 => + [ + + [ + 'address' => '互助土族自治县', + 'start_year' => '', + 'end_year' => 2012, + ], + ], + 632127 => + [ + + [ + 'address' => '化隆回族自治县', + 'start_year' => '', + 'end_year' => 2012, + ], + ], + 632128 => + [ + + [ + 'address' => '循化撒拉族自治县', + 'start_year' => '', + 'end_year' => 2012, + ], + ], + 632200 => + [ + + [ + 'address' => '海北藏族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632221 => + [ + + [ + 'address' => '门源回族自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632222 => + [ + + [ + 'address' => '祁连县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632223 => + [ + + [ + 'address' => '海晏县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632224 => + [ + + [ + 'address' => '刚察县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632300 => + [ + + [ + 'address' => '黄南藏族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632321 => + [ + + [ + 'address' => '同仁县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632322 => + [ + + [ + 'address' => '尖扎县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632323 => + [ + + [ + 'address' => '泽库县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632324 => + [ + + [ + 'address' => '河南蒙古族自治县', + 'start_year' => 1981, + 'end_year' => '', + ], + ], + 632421 => + [ + + [ + 'address' => '河南蒙古族自治县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 632500 => + [ + + [ + 'address' => '海南藏族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632521 => + [ + + [ + 'address' => '共和县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632522 => + [ + + [ + 'address' => '同德县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632523 => + [ + + [ + 'address' => '贵德县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632524 => + [ + + [ + 'address' => '兴海县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632525 => + [ + + [ + 'address' => '贵南县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632600 => + [ + + [ + 'address' => '果洛藏族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632621 => + [ + + [ + 'address' => '玛沁县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632622 => + [ + + [ + 'address' => '班玛县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632623 => + [ + + [ + 'address' => '甘德县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632624 => + [ + + [ + 'address' => '达日县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632625 => + [ + + [ + 'address' => '久治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632626 => + [ + + [ + 'address' => '玛多县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632700 => + [ + + [ + 'address' => '玉树藏族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632701 => + [ + + [ + 'address' => '玉树市', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 632721 => + [ + + [ + 'address' => '玉树县', + 'start_year' => '', + 'end_year' => 2012, + ], + ], + 632722 => + [ + + [ + 'address' => '杂多县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632723 => + [ + + [ + 'address' => '称多县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632724 => + [ + + [ + 'address' => '治多县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632725 => + [ + + [ + 'address' => '囊谦县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632726 => + [ + + [ + 'address' => '曲麻莱县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632800 => + [ + + [ + 'address' => '海西蒙古族藏族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632801 => + [ + + [ + 'address' => '格尔木市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632802 => + [ + + [ + 'address' => '德令哈市', + 'start_year' => 1988, + 'end_year' => '', + ], + ], + 632821 => + [ + + [ + 'address' => '乌兰县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632822 => + [ + + [ + 'address' => '都兰县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 632823 => + [ + + [ + 'address' => '天峻县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 640000 => + [ + + [ + 'address' => '宁夏回族自治区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 640100 => + [ + + [ + 'address' => '银川市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 640102 => + [ + + [ + 'address' => '城区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 640103 => + [ + + [ + 'address' => '新城区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 640104 => + [ + + [ + 'address' => '兴庆区', + 'start_year' => 2002, + 'end_year' => '', + ], + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 640105 => + [ + + [ + 'address' => '西夏区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 640106 => + [ + + [ + 'address' => '金凤区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 640121 => + [ + + [ + 'address' => '永宁县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 640122 => + [ + + [ + 'address' => '贺兰县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 640181 => + [ + + [ + 'address' => '灵武市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 640200 => + [ + + [ + 'address' => '石咀山市', + 'start_year' => '', + 'end_year' => 1986, + ], + + [ + 'address' => '石嘴山市', + 'start_year' => 1987, + 'end_year' => '', + ], + ], + 640202 => + [ + + [ + 'address' => '大武口区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 640204 => + [ + + [ + 'address' => '石炭井区', + 'start_year' => '', + 'end_year' => 2001, + ], + ], + 640205 => + [ + + [ + 'address' => '惠农区', + 'start_year' => 2003, + 'end_year' => '', + ], + + [ + 'address' => '石咀山区', + 'start_year' => '', + 'end_year' => 1986, + ], + + [ + 'address' => '石嘴山区', + 'start_year' => 1987, + 'end_year' => 2002, + ], + ], + 640211 => + [ + + [ + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1986, + ], + ], + 640221 => + [ + + [ + 'address' => '平罗县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 640222 => + [ + + [ + 'address' => '陶乐县', + 'start_year' => '', + 'end_year' => 2002, + ], + ], + 640223 => + [ + + [ + 'address' => '惠农县', + 'start_year' => 1987, + 'end_year' => 2002, + ], + ], + 640300 => + [ + + [ + 'address' => '吴忠市', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 640302 => + [ + + [ + 'address' => '利通区', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 640303 => + [ + + [ + 'address' => '红寺堡区', + 'start_year' => 2009, + 'end_year' => '', + ], + ], + 640321 => + [ + + [ + 'address' => '中卫县', + 'start_year' => 1998, + 'end_year' => 2002, + ], + ], + 640322 => + [ + + [ + 'address' => '中宁县', + 'start_year' => 1998, + 'end_year' => 2002, + ], + ], + 640323 => + [ + + [ + 'address' => '盐池县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 640324 => + [ + + [ + 'address' => '同心县', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 640381 => + [ + + [ + 'address' => '青铜峡市', + 'start_year' => 1998, + 'end_year' => '', + ], + ], + 640382 => + [ + + [ + 'address' => '灵武市', + 'start_year' => 1998, + 'end_year' => 2001, + ], + ], + 640400 => + [ + + [ + 'address' => '固原市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 640402 => + [ + + [ + 'address' => '原州区', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 640421 => + [ + + [ + 'address' => '海原县', + 'start_year' => 2001, + 'end_year' => 2002, + ], + ], + 640422 => + [ + + [ + 'address' => '西吉县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 640423 => + [ + + [ + 'address' => '隆德县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 640424 => + [ + + [ + 'address' => '泾源县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 640425 => + [ + + [ + 'address' => '彭阳县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 640500 => + [ + + [ + 'address' => '中卫市', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 640502 => + [ + + [ + 'address' => '沙坡头区', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 640521 => + [ + + [ + 'address' => '中宁县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 640522 => + [ + + [ + 'address' => '海原县', + 'start_year' => 2003, + 'end_year' => '', + ], + ], + 642100 => + [ + + [ + 'address' => '银南地区', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 642101 => + [ + + [ + 'address' => '吴忠市', + 'start_year' => 1983, + 'end_year' => 1997, + ], + ], + 642102 => + [ + + [ + 'address' => '青铜峡市', + 'start_year' => 1984, + 'end_year' => 1997, + ], + ], + 642103 => + [ + + [ + 'address' => '灵武市', + 'start_year' => 1996, + 'end_year' => 1997, + ], + ], + 642121 => + [ + + [ + 'address' => '吴忠县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 642122 => + [ + + [ + 'address' => '青铜峡县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 642123 => + [ + + [ + 'address' => '中卫县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 642124 => + [ + + [ + 'address' => '中宁县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 642125 => + [ + + [ + 'address' => '灵武县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 642126 => + [ + + [ + 'address' => '盐池县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 642127 => + [ + + [ + 'address' => '同心县', + 'start_year' => '', + 'end_year' => 1997, + ], + ], + 642200 => + [ + + [ + 'address' => '固原地区', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 642221 => + [ + + [ + 'address' => '固原县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 642222 => + [ + + [ + 'address' => '海原县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 642223 => + [ + + [ + 'address' => '西吉县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 642224 => + [ + + [ + 'address' => '隆德县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 642225 => + [ + + [ + 'address' => '泾源县', + 'start_year' => '', + 'end_year' => 2000, + ], + ], + 642226 => + [ + + [ + 'address' => '彭阳县', + 'start_year' => 1983, + 'end_year' => 2000, + ], + ], + 650000 => + [ + + [ + 'address' => '新疆维吾尔自治区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 650100 => + [ + + [ + 'address' => '乌鲁木齐市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 650102 => + [ + + [ + 'address' => '天山区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 650103 => + [ + + [ + 'address' => '沙依巴克区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 650104 => + [ + + [ + 'address' => '新市区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 650105 => + [ + + [ + 'address' => '水磨沟区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 650106 => + [ + + [ + 'address' => '头屯河区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 650107 => + [ + + [ + 'address' => '南山区', + 'start_year' => '', + 'end_year' => 1988, + ], + + [ + 'address' => '南山矿区', + 'start_year' => 1989, + 'end_year' => 1998, + ], + + [ + 'address' => '南泉区', + 'start_year' => 1999, + 'end_year' => 2001, + ], + + [ + 'address' => '达坂城区', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 650108 => + [ + + [ + 'address' => '东山区', + 'start_year' => 1987, + 'end_year' => 2006, + ], + ], + 650109 => + [ + + [ + 'address' => '米东区', + 'start_year' => 2007, + 'end_year' => '', + ], + ], + 650121 => + [ + + [ + 'address' => '乌鲁木齐县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 650200 => + [ + + [ + 'address' => '克拉玛依市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 650202 => + [ + + [ + 'address' => '独山子区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 650203 => + [ + + [ + 'address' => '克拉玛依区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 650204 => + [ + + [ + 'address' => '白碱滩区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 650205 => + [ + + [ + 'address' => '乌尔禾区', + 'start_year' => 1982, + 'end_year' => '', + ], + ], + 650300 => + [ + + [ + 'address' => '石河子市', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 650400 => + [ + + [ + 'address' => '吐鲁番市', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 650402 => + [ + + [ + 'address' => '高昌区', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 650421 => + [ + + [ + 'address' => '鄯善县', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 650422 => + [ + + [ + 'address' => '托克逊县', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 650500 => + [ + + [ + 'address' => '哈密市', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 650502 => + [ + + [ + 'address' => '伊州区', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 650521 => + [ + + [ + 'address' => '巴里坤哈萨克自治县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 650522 => + [ + + [ + 'address' => '伊吾县', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 652100 => + [ + + [ + 'address' => '吐鲁番地区', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 652101 => + [ + + [ + 'address' => '吐鲁番市', + 'start_year' => 1984, + 'end_year' => 2014, + ], + ], + 652121 => + [ + + [ + 'address' => '吐鲁番县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652122 => + [ + + [ + 'address' => '鄯善县', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 652123 => + [ + + [ + 'address' => '托克逊县', + 'start_year' => '', + 'end_year' => 2014, + ], + ], + 652200 => + [ + + [ + 'address' => '哈密地区', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 652201 => + [ + + [ + 'address' => '哈密市', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 652221 => + [ + + [ + 'address' => '哈密县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 652222 => + [ + + [ + 'address' => '巴里坤哈萨克自治县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 652223 => + [ + + [ + 'address' => '伊吾县', + 'start_year' => '', + 'end_year' => 2015, + ], + ], + 652300 => + [ + + [ + 'address' => '昌吉回族自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652301 => + [ + + [ + 'address' => '昌吉市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 652302 => + [ + + [ + 'address' => '阜康市', + 'start_year' => 1992, + 'end_year' => '', + ], + ], + 652303 => + [ + + [ + 'address' => '米泉市', + 'start_year' => 1996, + 'end_year' => 2006, + ], + ], + 652321 => + [ + + [ + 'address' => '昌吉县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 652322 => + [ + + [ + 'address' => '米泉县', + 'start_year' => '', + 'end_year' => 1995, + ], + ], + 652323 => + [ + + [ + 'address' => '呼图壁县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652324 => + [ + + [ + 'address' => '玛纳斯县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652325 => + [ + + [ + 'address' => '奇台县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652326 => + [ + + [ + 'address' => '阜康县', + 'start_year' => '', + 'end_year' => 1991, + ], + ], + 652327 => + [ + + [ + 'address' => '吉木萨尔县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652328 => + [ + + [ + 'address' => '木垒哈萨克自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652400 => + [ + + [ + 'address' => '伊犁哈萨克自治州', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652401 => + [ + + [ + 'address' => '伊宁市', + 'start_year' => 1982, + 'end_year' => 1983, + ], + + [ + 'address' => '奎屯市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 652402 => + [ + + [ + 'address' => '一区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + + [ + 'address' => '伊宁市', + 'start_year' => '', + 'end_year' => 1981, + ], + ], + 652403 => + [ + + [ + 'address' => '一区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '二区', + 'start_year' => 1982, + 'end_year' => 1982, + ], + ], + 652404 => + [ + + [ + 'address' => '二区', + 'start_year' => '', + 'end_year' => 1981, + ], + + [ + 'address' => '奎屯市', + 'start_year' => 1982, + 'end_year' => 1983, + ], + ], + 652421 => + [ + + [ + 'address' => '伊宁县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652422 => + [ + + [ + 'address' => '察布查尔锡伯自治县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652423 => + [ + + [ + 'address' => '霍城县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652424 => + [ + + [ + 'address' => '巩留县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652425 => + [ + + [ + 'address' => '新源县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652426 => + [ + + [ + 'address' => '昭苏县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652427 => + [ + + [ + 'address' => '特克斯县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652428 => + [ + + [ + 'address' => '尼勒克县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652500 => + [ + + [ + 'address' => '塔城地区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652521 => + [ + + [ + 'address' => '塔城县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652522 => + [ + + [ + 'address' => '额敏县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652523 => + [ + + [ + 'address' => '乌苏县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652524 => + [ + + [ + 'address' => '沙湾县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652525 => + [ + + [ + 'address' => '托里县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652526 => + [ + + [ + 'address' => '裕民县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652527 => + [ + + [ + 'address' => '和布克赛尔蒙古自治县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652600 => + [ + + [ + 'address' => '阿勒泰地区', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652621 => + [ + + [ + 'address' => '阿勒泰县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652622 => + [ + + [ + 'address' => '布尔津县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652623 => + [ + + [ + 'address' => '富蕴县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652624 => + [ + + [ + 'address' => '福海县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652625 => + [ + + [ + 'address' => '哈巴河县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652626 => + [ + + [ + 'address' => '青河县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652627 => + [ + + [ + 'address' => '吉木乃县', + 'start_year' => '', + 'end_year' => 1983, + ], + ], + 652700 => + [ + + [ + 'address' => '博尔塔拉蒙古自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652701 => + [ + + [ + 'address' => '博乐市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 652702 => + [ + + [ + 'address' => '阿拉山口市', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 652721 => + [ + + [ + 'address' => '博乐县', + 'start_year' => '', + 'end_year' => 1984, + ], + ], + 652722 => + [ + + [ + 'address' => '精河县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652723 => + [ + + [ + 'address' => '温泉县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652800 => + [ + + [ + 'address' => '巴音郭楞蒙古自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652801 => + [ + + [ + 'address' => '库尔勒市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652821 => + [ + + [ + 'address' => '库尔勒县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 652822 => + [ + + [ + 'address' => '轮台县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652823 => + [ + + [ + 'address' => '尉犁县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652824 => + [ + + [ + 'address' => '若羌县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652825 => + [ + + [ + 'address' => '且末县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652826 => + [ + + [ + 'address' => '焉耆回族自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652827 => + [ + + [ + 'address' => '和静县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652828 => + [ + + [ + 'address' => '和硕县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652829 => + [ + + [ + 'address' => '博湖县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652900 => + [ + + [ + 'address' => '阿克苏地区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652901 => + [ + + [ + 'address' => '阿克苏市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 652921 => + [ + + [ + 'address' => '阿克苏县', + 'start_year' => '', + 'end_year' => 1982, + ], + ], + 652922 => + [ + + [ + 'address' => '温宿县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652923 => + [ + + [ + 'address' => '库车县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652924 => + [ + + [ + 'address' => '沙雅县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652925 => + [ + + [ + 'address' => '新和县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652926 => + [ + + [ + 'address' => '拜城县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652927 => + [ + + [ + 'address' => '乌什县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652928 => + [ + + [ + 'address' => '阿瓦提县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 652929 => + [ + + [ + 'address' => '柯坪县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653000 => + [ + + [ + 'address' => '克孜勒苏柯尔克孜自治州', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653001 => + [ + + [ + 'address' => '阿图什市', + 'start_year' => 1986, + 'end_year' => '', + ], + ], + 653021 => + [ + + [ + 'address' => '阿图什县', + 'start_year' => '', + 'end_year' => 1985, + ], + ], + 653022 => + [ + + [ + 'address' => '阿克陶县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653023 => + [ + + [ + 'address' => '阿合奇县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653024 => + [ + + [ + 'address' => '乌恰县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653100 => + [ + + [ + 'address' => '喀什地区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653101 => + [ + + [ + 'address' => '喀什市', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653121 => + [ + + [ + 'address' => '疏附县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653122 => + [ + + [ + 'address' => '疏勒县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653123 => + [ + + [ + 'address' => '英吉沙县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653124 => + [ + + [ + 'address' => '泽普县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653125 => + [ + + [ + 'address' => '莎车县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653126 => + [ + + [ + 'address' => '叶城县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653127 => + [ + + [ + 'address' => '麦盖提县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653128 => + [ + + [ + 'address' => '岳普湖县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653129 => + [ + + [ + 'address' => '伽师县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653130 => + [ + + [ + 'address' => '巴楚县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653131 => + [ + + [ + 'address' => '塔什库尔干塔吉克自治县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653200 => + [ + + [ + 'address' => '和田地区', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653201 => + [ + + [ + 'address' => '和田市', + 'start_year' => 1983, + 'end_year' => '', + ], + ], + 653221 => + [ + + [ + 'address' => '和田县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653222 => + [ + + [ + 'address' => '墨玉县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653223 => + [ + + [ + 'address' => '皮山县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653224 => + [ + + [ + 'address' => '洛浦县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653225 => + [ + + [ + 'address' => '策勒县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653226 => + [ + + [ + 'address' => '于田县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 653227 => + [ + + [ + 'address' => '民丰县', + 'start_year' => '', + 'end_year' => '', + ], + ], + 654000 => + [ + + [ + 'address' => '伊犁哈萨克自治州', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654001 => + [ + + [ + 'address' => '奎屯市', + 'start_year' => 1984, + 'end_year' => 2000, + ], + ], + 654002 => + [ + + [ + 'address' => '伊宁市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 654003 => + [ + + [ + 'address' => '奎屯市', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 654004 => + [ + + [ + 'address' => '霍尔果斯市', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 654021 => + [ + + [ + 'address' => '伊宁县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 654022 => + [ + + [ + 'address' => '察布查尔锡伯自治县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 654023 => + [ + + [ + 'address' => '霍城县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 654024 => + [ + + [ + 'address' => '巩留县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 654025 => + [ + + [ + 'address' => '新源县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 654026 => + [ + + [ + 'address' => '昭苏县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 654027 => + [ + + [ + 'address' => '特克斯县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 654028 => + [ + + [ + 'address' => '尼勒克县', + 'start_year' => 2001, + 'end_year' => '', + ], + ], + 654100 => + [ + + [ + 'address' => '伊犁地区', + 'start_year' => 1984, + 'end_year' => 2000, + ], + ], + 654101 => + [ + + [ + 'address' => '伊宁市', + 'start_year' => 1984, + 'end_year' => 2000, + ], + ], + 654121 => + [ + + [ + 'address' => '伊宁县', + 'start_year' => 1984, + 'end_year' => 2000, + ], + ], + 654122 => + [ + + [ + 'address' => '察布查尔锡伯自治县', + 'start_year' => 1984, + 'end_year' => 2000, + ], + ], + 654123 => + [ + + [ + 'address' => '霍城县', + 'start_year' => 1984, + 'end_year' => 2000, + ], + ], + 654124 => + [ + + [ + 'address' => '巩留县', + 'start_year' => 1984, + 'end_year' => 2000, + ], + ], + 654125 => + [ + + [ + 'address' => '新源县', + 'start_year' => 1984, + 'end_year' => 2000, + ], + ], + 654126 => + [ + + [ + 'address' => '昭苏县', + 'start_year' => 1984, + 'end_year' => 2000, + ], + ], + 654127 => + [ + + [ + 'address' => '特克斯县', + 'start_year' => 1984, + 'end_year' => 2000, + ], + ], + 654128 => + [ + + [ + 'address' => '尼勒克县', + 'start_year' => 1984, + 'end_year' => 2000, + ], + ], + 654200 => + [ + + [ + 'address' => '塔城地区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654201 => + [ + + [ + 'address' => '塔城市', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654202 => + [ + + [ + 'address' => '乌苏市', + 'start_year' => 1996, + 'end_year' => '', + ], + ], + 654221 => + [ + + [ + 'address' => '额敏县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654222 => + [ + + [ + 'address' => '乌苏县', + 'start_year' => 1984, + 'end_year' => 1995, + ], + ], + 654223 => + [ + + [ + 'address' => '沙湾县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654224 => + [ + + [ + 'address' => '托里县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654225 => + [ + + [ + 'address' => '裕民县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654226 => + [ + + [ + 'address' => '和布克赛尔蒙古自治县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654300 => + [ + + [ + 'address' => '阿勒泰地区', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654301 => + [ + + [ + 'address' => '阿勒泰市', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654321 => + [ + + [ + 'address' => '布尔津县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654322 => + [ + + [ + 'address' => '富蕴县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654323 => + [ + + [ + 'address' => '福海县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654324 => + [ + + [ + 'address' => '哈巴河县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654325 => + [ + + [ + 'address' => '青河县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 654326 => + [ + + [ + 'address' => '吉木乃县', + 'start_year' => 1984, + 'end_year' => '', + ], + ], + 659001 => + [ + + [ + 'address' => '石河子市', + 'start_year' => 1985, + 'end_year' => '', + ], + ], + 659002 => + [ + + [ + 'address' => '阿拉尔市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 659003 => + [ + + [ + 'address' => '图木舒克市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 659004 => + [ + + [ + 'address' => '五家渠市', + 'start_year' => 2002, + 'end_year' => '', + ], + ], + 659005 => + [ + + [ + 'address' => '北屯市', + 'start_year' => 2011, + 'end_year' => '', + ], + ], + 659006 => + [ + + [ + 'address' => '铁门关市', + 'start_year' => 2012, + 'end_year' => '', + ], + ], + 659007 => + [ + + [ + 'address' => '双河市', + 'start_year' => 2014, + 'end_year' => '', + ], + ], + 659008 => + [ + + [ + 'address' => '可克达拉市', + 'start_year' => 2015, + 'end_year' => '', + ], + ], + 659009 => + [ + + [ + 'address' => '昆玉市', + 'start_year' => 2016, + 'end_year' => '', + ], + ], + 810000 => + [ + + [ + 'address' => '香港特别行政区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 820000 => + [ + + [ + 'address' => '澳门特别行政区', + 'start_year' => 2013, + 'end_year' => '', + ], + ], + 830000 => + [ + + [ + 'address' => '台湾省', + 'start_year' => 2013, + 'end_year' => '', + ], + ], +]; diff --git a/src/Checker.php b/src/Checker.php index 4294c68..b90f97f 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -76,12 +76,13 @@ private function _generateLongType($id) * 检查地址码 * * @param string $addressCode 地址码 + * @param string $birthdayCode 出生日期码 * * @return bool */ - private function _checkAddressCode($addressCode) + private function _checkAddressCode($addressCode, $birthdayCode) { - return (bool) $this->_getAddressInfo($addressCode); + return (bool) $this->_getAddressInfo($addressCode, $birthdayCode); } /** diff --git a/src/Helper.php b/src/Helper.php index c9d8e0a..22e510d 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -11,10 +11,11 @@ trait Helper * 获取地址码信息. * * @param string $addressCode 地址码 + * @param string $birthdayCode 出生日期码 * * @return bool|mixed|string */ - private function _getAddressInfo($addressCode) + private function _getAddressInfo($addressCode, $birthdayCode) { $addressInfo = [ 'province' => '', @@ -24,7 +25,7 @@ private function _getAddressInfo($addressCode) // 省级信息 $provinceAddressCode = substr($addressCode, 0, 2).'0000'; - $addressInfo['province'] = $this->_getAddress($provinceAddressCode); + $addressInfo['province'] = $this->_getAddress($provinceAddressCode, $birthdayCode); $firstCharacter = substr($addressCode, 0, 1); // 用于判断是否是港澳台居民居住证(8字开头) @@ -35,10 +36,10 @@ private function _getAddressInfo($addressCode) // 市级信息 $cityAddressCode = substr($addressCode, 0, 4).'00'; - $addressInfo['city'] = $this->_getAddress($cityAddressCode); + $addressInfo['city'] = $this->_getAddress($cityAddressCode, $birthdayCode); // 县级信息 - $addressInfo['district'] = $this->_getAddress($addressCode); + $addressInfo['district'] = $this->_getAddress($addressCode, $birthdayCode); return empty($addressInfo) ? false : $addressInfo; } @@ -47,12 +48,26 @@ private function _getAddressInfo($addressCode) * 获取省市区地址码. * * @param string $addressCode 地址码 + * @param string $birthdayCode 出生日期码 * * @return string */ - private function _getAddress($addressCode) + private function _getAddress($addressCode, $birthdayCode) { - return isset($this->_addressCodeList[$addressCode]) ? $this->_addressCodeList[$addressCode] : (isset($this->_abandonedAddressCodeList[$addressCode]) ? $this->_abandonedAddressCodeList[$addressCode] : ''); + $year = substr($birthdayCode, 0, 4); + + if (isset($this->_addressCodeList[$addressCode])) { + return $this->_addressCodeList[$addressCode]; + } else { + if (isset($this->_addressCodeTimeline[$addressCode])) { + foreach ($this->_addressCodeTimeline[$addressCode] as $val) { + if ($year >= $val['star_year'] && $year <= $val['end_year']) { + return $val['address']; + } + } + } + return ''; + } } /** diff --git a/src/IdValidator.php b/src/IdValidator.php index aeac0a9..b5d0110 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -10,7 +10,7 @@ class IdValidator use Helper, Generator, Checker; private $_addressCodeList = []; // 现行地址码数据 - private $_abandonedAddressCodeList = []; // 废弃地址码数据 + private $_addressCodeTimeline = []; // 地址码变更时间线 /** * IdValidator constructor. @@ -18,7 +18,7 @@ class IdValidator public function __construct() { $this->_addressCodeList = include __DIR__.'/../data/addressCode.php'; - $this->_abandonedAddressCodeList = include __DIR__.'/../data/abandonedAddressCode.php'; + $this->_addressCodeTimeline = include __DIR__.'/../data/addressCodeTimeline.php'; } /** @@ -37,7 +37,7 @@ public function isValid($id) } // 分别验证:*地址码*、*出生日期码*和*顺序码* - if (!$this->_checkAddressCode($code['addressCode']) || !$this->_checkBirthdayCode($code['birthdayCode']) || !$this->_checkOrderCode($code['order'])) { + if (!$this->_checkAddressCode($code['addressCode'], $code['birthdayCode']) || !$this->_checkBirthdayCode($code['birthdayCode']) || !$this->_checkOrderCode($code['order'])) { return false; } @@ -67,11 +67,11 @@ public function getInfo($id) return false; } $code = $this->_checkIdArgument($id); - $addressInfo = $this->_getAddressInfo($code['addressCode']); + $addressInfo = $this->_getAddressInfo($code['addressCode'], $code['birthdayCode']); return [ 'addressCode' => $code['addressCode'], - 'abandoned' => isset($this->_abandonedAddressCodeList[$code['addressCode']]) ? 1 : 0, + 'abandoned' => isset($this->_addressCodeList[$code['addressCode']]) ? 0 : 1, 'address' => is_array($addressInfo) ? implode($addressInfo) : '', 'birthdayCode' => date('Y-m-d', strtotime($code['birthdayCode'])), 'constellation' => $this->_getConstellation($code['birthdayCode']), From d1d7f12c3dcd021a9723974594cc695193eb1360 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 22 Oct 2018 18:31:29 +0800 Subject: [PATCH 061/128] Refactor _getAddress --- src/Helper.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 22e510d..72146f4 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -55,19 +55,19 @@ private function _getAddressInfo($addressCode, $birthdayCode) private function _getAddress($addressCode, $birthdayCode) { $year = substr($birthdayCode, 0, 4); - + $address = ''; if (isset($this->_addressCodeList[$addressCode])) { - return $this->_addressCodeList[$addressCode]; + $address = $this->_addressCodeList[$addressCode]; } else { if (isset($this->_addressCodeTimeline[$addressCode])) { foreach ($this->_addressCodeTimeline[$addressCode] as $val) { - if ($year >= $val['star_year'] && $year <= $val['end_year']) { - return $val['address']; + if ($year >= $val['star_year']) { + $address = $val['address']; } } } - return ''; } + return $address; } /** From c0bda88af2819251a01f32978f5ef837073d7bde Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 23 Oct 2018 10:29:54 +0800 Subject: [PATCH 062/128] Update styleCI config --- .styleci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.styleci.yml b/.styleci.yml index 6a36e2c..71cafce 100644 --- a/.styleci.yml +++ b/.styleci.yml @@ -1,6 +1,4 @@ preset: recommended risky: true finder: - exclude: - - data name: "*.php" From e75663da4b4a1f6b5bd11dc2fe2c4e209e32b0ed Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 23 Oct 2018 10:31:10 +0800 Subject: [PATCH 063/128] Update styleCI config --- .styleci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.styleci.yml b/.styleci.yml index 71cafce..6a36e2c 100644 --- a/.styleci.yml +++ b/.styleci.yml @@ -1,4 +1,6 @@ preset: recommended risky: true finder: + exclude: + - data name: "*.php" From abb1a3eb5b44994a81a5a52090430f2eeed551ad Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 23 Oct 2018 02:31:49 +0000 Subject: [PATCH 064/128] Apply fixes from StyleCI --- src/Checker.php | 2 +- src/Helper.php | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Checker.php b/src/Checker.php index b90f97f..dc0af75 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -75,7 +75,7 @@ private function _generateLongType($id) /** * 检查地址码 * - * @param string $addressCode 地址码 + * @param string $addressCode 地址码 * @param string $birthdayCode 出生日期码 * * @return bool diff --git a/src/Helper.php b/src/Helper.php index 72146f4..3ad57a5 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -10,7 +10,7 @@ trait Helper /** * 获取地址码信息. * - * @param string $addressCode 地址码 + * @param string $addressCode 地址码 * @param string $birthdayCode 出生日期码 * * @return bool|mixed|string @@ -47,7 +47,7 @@ private function _getAddressInfo($addressCode, $birthdayCode) /** * 获取省市区地址码. * - * @param string $addressCode 地址码 + * @param string $addressCode 地址码 * @param string $birthdayCode 出生日期码 * * @return string @@ -67,6 +67,7 @@ private function _getAddress($addressCode, $birthdayCode) } } } + return $address; } From 6b2cd1ff33aabb7e84c6c1985e3d4e739f6b65a5 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 23 Oct 2018 14:10:49 +0800 Subject: [PATCH 065/128] Fix data --- data/addressCodeTimeline.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/addressCodeTimeline.php b/data/addressCodeTimeline.php index f6ec024..09c3958 100644 --- a/data/addressCodeTimeline.php +++ b/data/addressCodeTimeline.php @@ -65607,7 +65607,7 @@ [ 'address' => '香港特别行政区', - 'start_year' => 2013, + 'start_year' => '', 'end_year' => '', ], ], @@ -65616,7 +65616,7 @@ [ 'address' => '澳门特别行政区', - 'start_year' => 2013, + 'start_year' => '', 'end_year' => '', ], ], @@ -65625,7 +65625,7 @@ [ 'address' => '台湾省', - 'start_year' => 2013, + 'start_year' => '', 'end_year' => '', ], ], From ab13d038347e8ddce0f1fc0afb70cb1952d13f77 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 23 Oct 2018 16:38:10 +0800 Subject: [PATCH 066/128] Refactor _getAddress --- src/Helper.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 3ad57a5..4333c0d 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -54,13 +54,15 @@ private function _getAddressInfo($addressCode, $birthdayCode) */ private function _getAddress($addressCode, $birthdayCode) { - $year = substr($birthdayCode, 0, 4); $address = ''; - if (isset($this->_addressCodeList[$addressCode])) { - $address = $this->_addressCodeList[$addressCode]; - } else { - if (isset($this->_addressCodeTimeline[$addressCode])) { - foreach ($this->_addressCodeTimeline[$addressCode] as $val) { + if (isset($this->_addressCodeTimeline[$addressCode])) { + $timeline = $this->_addressCodeTimeline[$addressCode]; + $firstStartYear = $timeline[0]['start_year']; + $year = substr($birthdayCode, 0, 4); + if ($year < $firstStartYear) { + $address = $timeline[0]['address']; + } else { + foreach ($timeline as $val) { if ($year >= $val['star_year']) { $address = $val['address']; } From a16abb18ad14119b89f9bec423d4d70990a99362 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 23 Oct 2018 17:10:56 +0800 Subject: [PATCH 067/128] Fix --- src/Helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Helper.php b/src/Helper.php index 4333c0d..f89a00a 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -63,7 +63,7 @@ private function _getAddress($addressCode, $birthdayCode) $address = $timeline[0]['address']; } else { foreach ($timeline as $val) { - if ($year >= $val['star_year']) { + if ($year >= $val['start_year']) { $address = $val['address']; } } From 5e0d83ce885100b161ffcbf22010c59c1cd1f025 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 24 Oct 2018 13:08:01 +0800 Subject: [PATCH 068/128] Remove _getRandInt function --- src/Generator.php | 14 +++++++------- src/Helper.php | 12 ------------ 2 files changed, 7 insertions(+), 19 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index ab7e3a7..ebc6fbf 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -16,7 +16,7 @@ trait Generator */ private function _generatorOrderCode($sex) { - $orderCode = $this->_getRandInt(999, 111); + $orderCode = rand(111, 999); if ($sex !== null && $sex !== $orderCode % 2) { $orderCode -= 1; @@ -40,22 +40,22 @@ private function _generatorBirthdayCode($birthday) $day = $this->_getStrPad(substr($birthday, 6, 2), 2); } if (!isset($year) || empty($year) || $year < 1800 || $year > date('Y')) { - $year = $this->_getStrPad($this->_getRandInt(99, 50), 2, '0'); + $year = $this->_getStrPad(rand(50, 99), 2, '0'); $year = '19'.$year; } if (!isset($month) || empty($month) || $month < 1 || $month > 12) { - $month = $this->_getStrPad($this->_getRandInt(12, 1), 2, '0'); + $month = $this->_getStrPad(rand(1, 12), 2, '0'); } if (!isset($day) || empty($day) || $day < 1 || $day > 31) { - $day = $this->_getStrPad($this->_getRandInt(28, 1), 2, '0'); + $day = $this->_getStrPad(rand(1, 28), 2, '0'); } if (!checkdate($month, $day, $year)) { - $year = $this->_getStrPad($this->_getRandInt(99, 50), 2, '0'); - $month = $this->_getStrPad($this->_getRandInt(12, 1), 2, '0'); - $day = $this->_getStrPad($this->_getRandInt(28, 1), 2, '0'); + $year = $this->_getStrPad(rand(50, 99), 2, '0'); + $month = $this->_getStrPad(rand(1, 12), 2, '0'); + $day = $this->_getStrPad(rand(1, 28), 2, '0'); } return $year.$month.$day; diff --git a/src/Helper.php b/src/Helper.php index f89a00a..43c95ce 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -115,18 +115,6 @@ private function _getChineseZodiac($birthdayCode) return $chineseZodiacList[$key]; } - /** - * 生成随机数. - * - * @param int $max 最大值 - * @param int $min 最小值 - * - * @return int - */ - private function _getRandInt($max, $min = 1) - { - return rand($min, $max); - } /** * 获取数字补位. From 87738435c70df8ba5f4431426e28944732bed73f Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 24 Oct 2018 13:11:45 +0800 Subject: [PATCH 069/128] Remove _getStrPad function --- src/Generator.php | 18 +++++++++--------- src/Helper.php | 16 ---------------- 2 files changed, 9 insertions(+), 25 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index ebc6fbf..d0bd84b 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -35,27 +35,27 @@ private function _generatorOrderCode($sex) private function _generatorBirthdayCode($birthday) { if ($birthday && is_numeric($birthday)) { - $year = $this->_getStrPad(substr($birthday, 0, 4), 4); - $month = $this->_getStrPad(substr($birthday, 4, 2), 2); - $day = $this->_getStrPad(substr($birthday, 6, 2), 2); + $year = str_pad(substr($birthday, 0, 4), 4, '0', false); + $month = str_pad(substr($birthday, 4, 2), 2, '0', false); + $day = str_pad(substr($birthday, 6, 2), 2, '0', false); } if (!isset($year) || empty($year) || $year < 1800 || $year > date('Y')) { - $year = $this->_getStrPad(rand(50, 99), 2, '0'); + $year = str_pad(rand(50, 99), 2, '0', false); $year = '19'.$year; } if (!isset($month) || empty($month) || $month < 1 || $month > 12) { - $month = $this->_getStrPad(rand(1, 12), 2, '0'); + $month = str_pad(rand(1, 12), 2, '0', false); } if (!isset($day) || empty($day) || $day < 1 || $day > 31) { - $day = $this->_getStrPad(rand(1, 28), 2, '0'); + $day = str_pad(rand(1, 28), 2, '0', false); } if (!checkdate($month, $day, $year)) { - $year = $this->_getStrPad(rand(50, 99), 2, '0'); - $month = $this->_getStrPad(rand(1, 12), 2, '0'); - $day = $this->_getStrPad(rand(1, 28), 2, '0'); + $year = str_pad(rand(50, 99), 2, '0', false); + $month = str_pad(rand(1, 12), 2, '0', false); + $day = str_pad(rand(1, 28), 2, '0', false); } return $year.$month.$day; diff --git a/src/Helper.php b/src/Helper.php index 43c95ce..efd2793 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -114,20 +114,4 @@ private function _getChineseZodiac($birthdayCode) return $chineseZodiacList[$key]; } - - - /** - * 获取数字补位. - * - * @param string|int $str 字符串 - * @param int $len 长度 - * @param string $chr 补位值 - * @param bool $right 左右 - * - * @return string - */ - private function _getStrPad($str, $len = 2, $chr = '0', $right = false) - { - return str_pad((string) $str, $len, $chr, $right === true ? STR_PAD_RIGHT : STR_PAD_LEFT); - } } From 72bb19ba8a2ead0f5543ee0d051a7ca7c58e2025 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 24 Oct 2018 13:16:38 +0800 Subject: [PATCH 070/128] STR_PAD_LEFT --- src/Generator.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index d0bd84b..78e0d8d 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -35,27 +35,27 @@ private function _generatorOrderCode($sex) private function _generatorBirthdayCode($birthday) { if ($birthday && is_numeric($birthday)) { - $year = str_pad(substr($birthday, 0, 4), 4, '0', false); - $month = str_pad(substr($birthday, 4, 2), 2, '0', false); - $day = str_pad(substr($birthday, 6, 2), 2, '0', false); + $year = str_pad(substr($birthday, 0, 4), 4, '0', STR_PAD_LEFT); + $month = str_pad(substr($birthday, 4, 2), 2, '0', STR_PAD_LEFT); + $day = str_pad(substr($birthday, 6, 2), 2, '0', STR_PAD_LEFT); } if (!isset($year) || empty($year) || $year < 1800 || $year > date('Y')) { - $year = str_pad(rand(50, 99), 2, '0', false); + $year = str_pad(rand(50, 99), 2, '0', STR_PAD_LEFT); $year = '19'.$year; } if (!isset($month) || empty($month) || $month < 1 || $month > 12) { - $month = str_pad(rand(1, 12), 2, '0', false); + $month = str_pad(rand(1, 12), 2, '0', STR_PAD_LEFT); } if (!isset($day) || empty($day) || $day < 1 || $day > 31) { - $day = str_pad(rand(1, 28), 2, '0', false); + $day = str_pad(rand(1, 28), 2, '0', STR_PAD_LEFT); } if (!checkdate($month, $day, $year)) { - $year = str_pad(rand(50, 99), 2, '0', false); - $month = str_pad(rand(1, 12), 2, '0', false); - $day = str_pad(rand(1, 28), 2, '0', false); + $year = str_pad(rand(50, 99), 2, '0', STR_PAD_LEFT); + $month = str_pad(rand(1, 12), 2, '0', STR_PAD_LEFT); + $day = str_pad(rand(1, 28), 2, '0', STR_PAD_LEFT); } return $year.$month.$day; From 6bd3b2696e5bac456d48ff8e128e26863f30a10f Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 24 Oct 2018 13:53:55 +0800 Subject: [PATCH 071/128] [Refactor] _generatorBirthdayCode function --- src/Generator.php | 45 +++++++++++++++++++++++++++++---------------- 1 file changed, 29 insertions(+), 16 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index 78e0d8d..c21aa45 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -32,30 +32,28 @@ private function _generatorOrderCode($sex) * * @return string */ - private function _generatorBirthdayCode($birthday) + public function _generatorBirthdayCode($birthday) { - if ($birthday && is_numeric($birthday)) { - $year = str_pad(substr($birthday, 0, 4), 4, '0', STR_PAD_LEFT); - $month = str_pad(substr($birthday, 4, 2), 2, '0', STR_PAD_LEFT); - $day = str_pad(substr($birthday, 6, 2), 2, '0', STR_PAD_LEFT); - } - if (!isset($year) || empty($year) || $year < 1800 || $year > date('Y')) { - $year = str_pad(rand(50, 99), 2, '0', STR_PAD_LEFT); - $year = '19'.$year; + $year = $this->_datePad(substr($birthday, 0, 4), 'year'); + $month = $this->_datePad(substr($birthday, 4, 2), 'month'); + $day = $this->_datePad(substr($birthday, 6, 2), 'day'); + + if ($year < 1800 || $year > date('Y')) { + $year = $this->_datePad(rand(1950, date('Y') - 1), 'year'); } - if (!isset($month) || empty($month) || $month < 1 || $month > 12) { - $month = str_pad(rand(1, 12), 2, '0', STR_PAD_LEFT); + if ($month < 1 || $month > 12) { + $month = $this->_datePad(rand(1, 12), 'month'); } - if (!isset($day) || empty($day) || $day < 1 || $day > 31) { - $day = str_pad(rand(1, 28), 2, '0', STR_PAD_LEFT); + if ($day < 1 || $day > 31) { + $day = $this->_datePad(rand(1, 28), 'day'); } if (!checkdate($month, $day, $year)) { - $year = str_pad(rand(50, 99), 2, '0', STR_PAD_LEFT); - $month = str_pad(rand(1, 12), 2, '0', STR_PAD_LEFT); - $day = str_pad(rand(1, 28), 2, '0', STR_PAD_LEFT); + $year = $this->_datePad(rand(1950, date('Y') - 1), 'year'); + $month = $this->_datePad(rand(1, 12), 'month'); + $day = $this->_datePad(rand(1, 28), 'day'); } return $year.$month.$day; @@ -166,4 +164,19 @@ private function _getRandAddressCode($pattern) return $result[array_rand($result)]; } + + /** + * 日期补全. + * + * @param string|int $date 日期 + * @param string $type 类型 + * + * @return string + */ + private function _datePad($date, $type = 'year') + { + $padLength = $type == 'year' ? 4: 2; + $newDate = str_pad($date, $padLength, '0', STR_PAD_LEFT); + return $newDate; + } } From bd92480cb1730df60ec36d9df33c30ac5ef57bec Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 24 Oct 2018 05:55:32 +0000 Subject: [PATCH 072/128] Apply fixes from StyleCI --- src/Generator.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Generator.php b/src/Generator.php index c21aa45..893856f 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -175,8 +175,9 @@ private function _getRandAddressCode($pattern) */ private function _datePad($date, $type = 'year') { - $padLength = $type == 'year' ? 4: 2; + $padLength = $type == 'year' ? 4 : 2; $newDate = str_pad($date, $padLength, '0', STR_PAD_LEFT); + return $newDate; } } From a464687188def9c715192a1f1ecf24d4569a3771 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 24 Oct 2018 14:02:41 +0800 Subject: [PATCH 073/128] =?UTF-8?q?=E5=BC=BA=E8=BD=AC=20checkdate=20?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E7=9A=84=E6=95=B0=E6=8D=AE=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Generator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.php b/src/Generator.php index 893856f..f7d5907 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -50,7 +50,7 @@ public function _generatorBirthdayCode($birthday) $day = $this->_datePad(rand(1, 28), 'day'); } - if (!checkdate($month, $day, $year)) { + if (!checkdate((int) $month, (int) $day, (int) $year)) { $year = $this->_datePad(rand(1950, date('Y') - 1), 'year'); $month = $this->_datePad(rand(1, 12), 'month'); $day = $this->_datePad(rand(1, 28), 'day'); From 593c778d0bff54b0c82878f8432c16d427c68717 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 24 Oct 2018 14:05:16 +0800 Subject: [PATCH 074/128] Fix --- src/Generator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.php b/src/Generator.php index f7d5907..a204971 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -32,7 +32,7 @@ private function _generatorOrderCode($sex) * * @return string */ - public function _generatorBirthdayCode($birthday) + private function _generatorBirthdayCode($birthday) { $year = $this->_datePad(substr($birthday, 0, 4), 'year'); $month = $this->_datePad(substr($birthday, 4, 2), 'month'); From 3b6445e172041ab0dc0c96b1889c115d4db2ac45 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 24 Oct 2018 14:06:54 +0800 Subject: [PATCH 075/128] Update README.md --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 975774e..9fc2d95 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ * [Python 版本](https://github.com/jxlwqq/id-validator.py) * [Ruby 版本](https://github.com/renyijiu/id_validator) +* [JavaScript 版本](https://github.com/mc-zone/IDValidator) [![Build Status](https://travis-ci.org/jxlwqq/id-validator.svg?branch=master)](https://travis-ci.org/jxlwqq/id-validator) @@ -99,11 +100,6 @@ $idValidator->upgradeId('610104620927690'); // 15 位号码升级为 18 位 ``` ## 参考资料 -* ~~GB 11643-1999 公民身份证号码~~ - -* ~~GB 2260-1995 中华人民共和国行政区划代码~~ - -* [IDValidator JavaScript 版本](https://github.com/mc-zone/IDValidator) * [中华人民共和国公民身份号码](https://zh.wikipedia.org/wiki/中华人民共和国公民身份号码) From b03ad4dc0be6784cd531495d9efbcd965190b4ca Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 24 Oct 2018 15:55:23 +0800 Subject: [PATCH 076/128] Fix data --- data/addressCodeTimeline.php | 4645 +++++++++++++++++----------------- 1 file changed, 2323 insertions(+), 2322 deletions(-) diff --git a/data/addressCodeTimeline.php b/data/addressCodeTimeline.php index 09c3958..dc94d04 100644 --- a/data/addressCodeTimeline.php +++ b/data/addressCodeTimeline.php @@ -16,6 +16,7 @@ return [ 110000 => [ + [ 'address' => '北京市', 'start_year' => '', @@ -448,17 +449,17 @@ 120110 => [ - [ - 'address' => '东丽区', - 'start_year' => 1992, - 'end_year' => '', - ], - [ 'address' => '东郊区', 'start_year' => '', 'end_year' => 1991, ], + + [ + 'address' => '东丽区', + 'start_year' => 1992, + 'end_year' => '', + ], ], 120111 => [ @@ -493,17 +494,17 @@ 120113 => [ - [ - 'address' => '北辰区', - 'start_year' => 1992, - 'end_year' => '', - ], - [ 'address' => '北郊区', 'start_year' => '', 'end_year' => 1991, ], + + [ + 'address' => '北辰区', + 'start_year' => 1992, + 'end_year' => '', + ], ], 120114 => [ @@ -793,17 +794,17 @@ 130124 => [ - [ - 'address' => '栾城县', - 'start_year' => 1993, - 'end_year' => 2013, - ], - [ 'address' => '正定县', 'start_year' => 1986, 'end_year' => 1992, ], + + [ + 'address' => '栾城县', + 'start_year' => 1993, + 'end_year' => 2013, + ], ], 130125 => [ @@ -1111,32 +1112,32 @@ 130229 => [ + [ + 'address' => '迁西县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + [ 'address' => '玉田县', 'start_year' => 1984, 'end_year' => '', ], + ], + 130230 => + [ [ - 'address' => '迁西县', + 'address' => '遵化县', 'start_year' => 1983, 'end_year' => 1983, ], - ], - 130230 => - [ [ 'address' => '唐海县', 'start_year' => 1984, 'end_year' => 2011, ], - - [ - 'address' => '遵化县', - 'start_year' => 1983, - 'end_year' => 1983, - ], ], 130281 => [ @@ -2878,17 +2879,17 @@ 132201 => [ - [ - 'address' => '南宫市', - 'start_year' => 1986, - 'end_year' => 1992, - ], - [ 'address' => '邢台市', 'start_year' => '', 'end_year' => 1982, ], + + [ + 'address' => '南宫市', + 'start_year' => 1986, + 'end_year' => 1992, + ], ], 132202 => [ @@ -4195,17 +4196,17 @@ 132903 => [ - [ - 'address' => '任丘市', - 'start_year' => 1986, - 'end_year' => 1992, - ], - [ 'address' => '运河区', 'start_year' => '', 'end_year' => 1982, ], + + [ + 'address' => '任丘市', + 'start_year' => 1986, + 'end_year' => 1992, + ], ], 132904 => [ @@ -4225,17 +4226,17 @@ 132905 => [ - [ - 'address' => '河间市', - 'start_year' => 1990, - 'end_year' => 1992, - ], - [ 'address' => '泊头市', 'start_year' => 1982, 'end_year' => 1983, ], + + [ + 'address' => '河间市', + 'start_year' => 1990, + 'end_year' => 1992, + ], ], 132921 => [ @@ -6007,17 +6008,17 @@ 142122 => [ - [ - 'address' => '天镇县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - [ 'address' => '阳高县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '天镇县', + 'start_year' => 1982, + 'end_year' => 1992, + ], ], 142123 => [ @@ -6052,47 +6053,47 @@ 142125 => [ + [ + 'address' => '灵丘县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '浑源县', 'start_year' => 1982, 'end_year' => 1992, ], + ], + 142126 => + [ [ - 'address' => '灵丘县', + 'address' => '浑源县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142126 => - [ [ 'address' => '应县', 'start_year' => 1982, 'end_year' => 1992, ], + ], + 142127 => + [ [ - 'address' => '浑源县', + 'address' => '怀仁县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142127 => - [ [ 'address' => '山阴县', 'start_year' => 1982, 'end_year' => 1987, ], - - [ - 'address' => '怀仁县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 142128 => [ @@ -6127,47 +6128,47 @@ 142130 => [ - [ - 'address' => '左云县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - [ 'address' => '朔县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142131 => - [ [ - 'address' => '右玉县', + 'address' => '左云县', 'start_year' => 1982, 'end_year' => 1992, ], + ], + 142131 => + [ [ 'address' => '平鲁县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142132 => - [ [ - 'address' => '大同县', + 'address' => '右玉县', 'start_year' => 1982, 'end_year' => 1992, ], + ], + 142132 => + [ [ 'address' => '左云县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '大同县', + 'start_year' => 1982, + 'end_year' => 1992, + ], ], 142133 => [ @@ -6244,32 +6245,32 @@ 142223 => [ + [ + 'address' => '代县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '五台县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 142224 => + [ [ - 'address' => '代县', + 'address' => '繁峙县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142224 => - [ [ 'address' => '原平县', 'start_year' => 1982, 'end_year' => 1992, ], - - [ - 'address' => '繁峙县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 142225 => [ @@ -6304,17 +6305,17 @@ 142227 => [ - [ - 'address' => '宁武县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '静乐县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '宁武县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 142228 => [ @@ -6358,17 +6359,17 @@ 142231 => [ - [ - 'address' => '岢岚县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '河曲县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '岢岚县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 142232 => [ @@ -6388,62 +6389,62 @@ 142233 => [ + [ + 'address' => '神池县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '保德县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 142234 => + [ [ - 'address' => '神池县', + 'address' => '宁武县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142234 => - [ [ 'address' => '偏关县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 142300 => + [ [ - 'address' => '宁武县', + 'address' => '晋中地区', 'start_year' => '', 'end_year' => 1981, ], - ], - 142300 => - [ [ 'address' => '吕梁地区', 'start_year' => 1982, 'end_year' => 2002, ], + ], + 142301 => + [ [ - 'address' => '晋中地区', + 'address' => '榆次市', 'start_year' => '', 'end_year' => 1981, ], - ], - 142301 => - [ [ 'address' => '孝义市', 'start_year' => 1992, 'end_year' => 2002, ], - - [ - 'address' => '榆次市', - 'start_year' => '', - 'end_year' => 1981, - ], ], 142302 => [ @@ -6496,62 +6497,62 @@ 142323 => [ + [ + 'address' => '盂县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '交城县', 'start_year' => 1982, 'end_year' => 2002, ], + ], + 142324 => + [ [ - 'address' => '盂县', + 'address' => '平定县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142324 => - [ [ 'address' => '孝义县', 'start_year' => 1982, 'end_year' => 1991, ], + ], + 142325 => + [ [ - 'address' => '平定县', + 'address' => '昔阳县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142325 => - [ [ 'address' => '兴县', 'start_year' => 1982, 'end_year' => 2002, ], + ], + 142326 => + [ [ - 'address' => '昔阳县', + 'address' => '和顺县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142326 => - [ [ 'address' => '临县', 'start_year' => 1982, 'end_year' => 2002, ], - - [ - 'address' => '和顺县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 142327 => [ @@ -6601,17 +6602,17 @@ 142330 => [ - [ - 'address' => '方山县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - [ 'address' => '祁县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '方山县', + 'start_year' => 1982, + 'end_year' => 2002, + ], ], 142331 => [ @@ -6631,32 +6632,32 @@ 142332 => [ - [ - 'address' => '中阳县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - [ 'address' => '介休县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142333 => - [ [ - 'address' => '交口县', + 'address' => '中阳县', 'start_year' => 1982, 'end_year' => 2002, ], + ], + 142333 => + [ [ 'address' => '灵石县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '交口县', + 'start_year' => 1982, + 'end_year' => 2002, + ], ], 142400 => [ @@ -6694,17 +6695,17 @@ 142421 => [ - [ - 'address' => '榆社县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - [ 'address' => '离石县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '榆社县', + 'start_year' => 1982, + 'end_year' => 1998, + ], ], 142422 => [ @@ -6754,47 +6755,47 @@ 142425 => [ + [ + 'address' => '方山县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '平定县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 142426 => + [ [ - 'address' => '方山县', + 'address' => '石楼县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142426 => - [ [ 'address' => '盂县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 142427 => + [ [ - 'address' => '石楼县', + 'address' => '岚县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142427 => - [ [ 'address' => '寿阳县', 'start_year' => 1982, 'end_year' => 1998, ], - - [ - 'address' => '岚县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 142428 => [ @@ -6844,32 +6845,32 @@ 142431 => [ + [ + 'address' => '文水县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '平遥县', 'start_year' => 1982, 'end_year' => 1998, ], + ], + 142432 => + [ [ - 'address' => '文水县', + 'address' => '柳林县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142432 => - [ [ 'address' => '介休县', 'start_year' => 1982, 'end_year' => 1991, ], - - [ - 'address' => '柳林县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 142433 => [ @@ -6925,17 +6926,17 @@ 142523 => [ - [ - 'address' => '屯留县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '襄垣县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '屯留县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 142524 => [ @@ -6955,17 +6956,17 @@ 142525 => [ - [ - 'address' => '沁水县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '黎城县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '沁水县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 142526 => [ @@ -7015,47 +7016,47 @@ 142529 => [ - [ - 'address' => '陵川县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '高平县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142530 => - [ [ - 'address' => '壶关县', + 'address' => '陵川县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 142530 => + [ [ 'address' => '晋城县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142531 => - [ [ - 'address' => '平顺县', + 'address' => '壶关县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 142531 => + [ [ 'address' => '阳城县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '平顺县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 142532 => [ @@ -7075,17 +7076,17 @@ 142533 => [ - [ - 'address' => '武乡县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '长子县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '武乡县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 142534 => [ @@ -7105,17 +7106,17 @@ 142535 => [ - [ - 'address' => '沁县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '沁源县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '沁县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 142536 => [ @@ -7186,17 +7187,17 @@ 142622 => [ - [ - 'address' => '翼城县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '隰县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '翼城县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 142623 => [ @@ -7216,17 +7217,17 @@ 142624 => [ - [ - 'address' => '临汾县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '永和县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '临汾县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 142625 => [ @@ -7270,77 +7271,77 @@ 142628 => [ - [ - 'address' => '安泽县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '霍县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142629 => - [ [ - 'address' => '浮山县', + 'address' => '安泽县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 142629 => + [ [ 'address' => '翼城县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142630 => - [ [ - 'address' => '吉县', + 'address' => '浮山县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 142630 => + [ [ 'address' => '浮山县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142631 => - [ [ - 'address' => '乡宁县', + 'address' => '吉县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 142631 => + [ [ 'address' => '曲沃县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142632 => - [ [ - 'address' => '蒲县', + 'address' => '乡宁县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 142632 => + [ [ 'address' => '襄汾县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '蒲县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 142633 => [ @@ -7390,17 +7391,17 @@ 142636 => [ - [ - 'address' => '汾西县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '蒲县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '汾西县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 142700 => [ @@ -7465,47 +7466,47 @@ 142723 => [ - [ - 'address' => '芮城县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '闻喜县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142724 => - [ [ - 'address' => '临猗县', + 'address' => '芮城县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 142724 => + [ [ 'address' => '绛县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142725 => - [ [ - 'address' => '万荣县', + 'address' => '临猗县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 142725 => + [ [ 'address' => '垣曲县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '万荣县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 142726 => [ @@ -7525,17 +7526,17 @@ 142727 => [ - [ - 'address' => '稷山县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '芮城县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '稷山县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 142728 => [ @@ -7600,32 +7601,32 @@ 142732 => [ - [ - 'address' => '平陆县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '稷山县', 'start_year' => '', 'end_year' => 1981, ], - ], - 142733 => - [ [ - 'address' => '垣曲县', + 'address' => '平陆县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 142733 => + [ [ 'address' => '河津县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '垣曲县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 149001 => [ @@ -7702,17 +7703,17 @@ 150105 => [ - [ - 'address' => '赛罕区', - 'start_year' => 2000, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1999, ], + + [ + 'address' => '赛罕区', + 'start_year' => 2000, + 'end_year' => '', + ], ], 150121 => [ @@ -7798,17 +7799,17 @@ 150205 => [ - [ - 'address' => '石拐区', - 'start_year' => 1999, - 'end_year' => '', - ], - [ 'address' => '石拐矿区', 'start_year' => '', 'end_year' => 1998, ], + + [ + 'address' => '石拐区', + 'start_year' => 1999, + 'end_year' => '', + ], ], 150206 => [ @@ -7828,17 +7829,17 @@ 150207 => [ - [ - 'address' => '九原区', - 'start_year' => 1999, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1998, ], + + [ + 'address' => '九原区', + 'start_year' => 1999, + 'end_year' => '', + ], ], 150221 => [ @@ -7933,17 +7934,17 @@ 150404 => [ - [ - 'address' => '松山区', - 'start_year' => 1993, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => 1983, 'end_year' => 1992, ], + + [ + 'address' => '松山区', + 'start_year' => 1993, + 'end_year' => '', + ], ], 150421 => [ @@ -9031,32 +9032,32 @@ 152524 => [ - [ - 'address' => '苏尼特右旗', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '鄂托克前旗', 'start_year' => '', 'end_year' => 1981, ], - ], - 152525 => - [ [ - 'address' => '东乌珠穆沁旗', + 'address' => '苏尼特右旗', 'start_year' => 1982, 'end_year' => '', ], + ], + 152525 => + [ [ 'address' => '鄂托克旗', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '东乌珠穆沁旗', + 'start_year' => 1982, + 'end_year' => '', + ], ], 152526 => [ @@ -9133,17 +9134,17 @@ 152600 => [ - [ - 'address' => '乌兰察布盟', - 'start_year' => 1982, - 'end_year' => 2002, - ], - [ 'address' => '锡林郭勒盟', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '乌兰察布盟', + 'start_year' => 1982, + 'end_year' => 2002, + ], ], 152601 => [ @@ -9172,62 +9173,62 @@ 152621 => [ + [ + 'address' => '阿巴哈纳尔旗', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '武川县', 'start_year' => 1982, 'end_year' => 1995, ], + ], + 152622 => + [ [ - 'address' => '阿巴哈纳尔旗', + 'address' => '阿巴嘎旗', 'start_year' => '', 'end_year' => 1981, ], - ], - 152622 => - [ [ 'address' => '和林格尔县', 'start_year' => 1982, 'end_year' => 1994, ], + ], + 152623 => + [ [ - 'address' => '阿巴嘎旗', + 'address' => '苏尼特左旗', 'start_year' => '', 'end_year' => 1981, ], - ], - 152623 => - [ [ 'address' => '清水河县', 'start_year' => 1982, 'end_year' => 1994, ], + ], + 152624 => + [ [ - 'address' => '苏尼特左旗', + 'address' => '苏尼特右旗', 'start_year' => '', 'end_year' => 1981, ], - ], - 152624 => - [ [ 'address' => '卓资县', 'start_year' => 1982, 'end_year' => 2002, ], - - [ - 'address' => '苏尼特右旗', - 'start_year' => '', - 'end_year' => 1981, - ], ], 152625 => [ @@ -9247,77 +9248,77 @@ 152626 => [ + [ + 'address' => '西乌珠穆沁旗', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '商都县', 'start_year' => 1982, 'end_year' => 2002, ], + ], + 152627 => + [ [ - 'address' => '西乌珠穆沁旗', + 'address' => '太仆寺旗', 'start_year' => '', 'end_year' => 1981, ], - ], - 152627 => - [ [ 'address' => '兴和县', 'start_year' => 1982, 'end_year' => 2002, ], + ], + 152628 => + [ [ - 'address' => '太仆寺旗', + 'address' => '镶黄旗', 'start_year' => '', 'end_year' => 1981, ], - ], - 152628 => - [ [ 'address' => '丰镇县', 'start_year' => 1982, 'end_year' => 1989, ], + ], + 152629 => + [ [ - 'address' => '镶黄旗', + 'address' => '正镶白旗', 'start_year' => '', 'end_year' => 1981, ], - ], - 152629 => - [ [ 'address' => '凉城县', 'start_year' => 1982, 'end_year' => 2002, ], + ], + 152630 => + [ [ - 'address' => '正镶白旗', + 'address' => '正蓝旗', 'start_year' => '', 'end_year' => 1981, ], - ], - 152630 => - [ [ 'address' => '察哈尔右翼前旗', 'start_year' => 1982, 'end_year' => 2002, ], - - [ - 'address' => '正蓝旗', - 'start_year' => '', - 'end_year' => 1981, - ], ], 152631 => [ @@ -9364,17 +9365,17 @@ 152700 => [ - [ - 'address' => '伊克昭盟', - 'start_year' => 1982, - 'end_year' => 2000, - ], - [ 'address' => '巴彦淖尔盟', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '伊克昭盟', + 'start_year' => 1982, + 'end_year' => 2000, + ], ], 152701 => [ @@ -9388,17 +9389,17 @@ 152721 => [ - [ - 'address' => '东胜县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '临河县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '东胜县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 152722 => [ @@ -9418,17 +9419,17 @@ 152723 => [ - [ - 'address' => '准格尔旗', - 'start_year' => 1982, - 'end_year' => 2000, - ], - [ 'address' => '磴口县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '准格尔旗', + 'start_year' => 1982, + 'end_year' => 2000, + ], ], 152724 => [ @@ -9485,9 +9486,9 @@ [ [ - 'address' => '乌审旗', - 'start_year' => 1982, - 'end_year' => 2000, + 'address' => '潮格旗', + 'start_year' => '', + 'end_year' => 1980, ], [ @@ -9497,9 +9498,9 @@ ], [ - 'address' => '潮格旗', - 'start_year' => '', - 'end_year' => 1980, + 'address' => '乌审旗', + 'start_year' => 1982, + 'end_year' => 2000, ], ], 152728 => @@ -9529,47 +9530,47 @@ 152801 => [ + [ + 'address' => '集宁市', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '临河市', 'start_year' => 1984, 'end_year' => 2002, ], + ], + 152821 => + [ [ - 'address' => '集宁市', + 'address' => '武川县', 'start_year' => '', 'end_year' => 1981, ], - ], - 152821 => - [ [ 'address' => '临河县', 'start_year' => 1982, 'end_year' => 1983, ], + ], + 152822 => + [ [ - 'address' => '武川县', + 'address' => '和林格尔县', 'start_year' => '', 'end_year' => 1981, ], - ], - 152822 => - [ [ 'address' => '五原县', 'start_year' => 1982, 'end_year' => 2002, ], - - [ - 'address' => '和林格尔县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 152823 => [ @@ -9589,47 +9590,47 @@ 152824 => [ - [ - 'address' => '乌拉特前旗', - 'start_year' => 1982, - 'end_year' => 2002, - ], - [ 'address' => '卓资县', 'start_year' => '', 'end_year' => 1981, ], - ], - 152825 => - [ [ - 'address' => '乌拉特中旗', + 'address' => '乌拉特前旗', 'start_year' => 1982, 'end_year' => 2002, ], + ], + 152825 => + [ [ 'address' => '化德县', 'start_year' => '', 'end_year' => 1981, ], - ], - 152826 => - [ [ - 'address' => '乌拉特后旗', + 'address' => '乌拉特中旗', 'start_year' => 1982, 'end_year' => 2002, ], + ], + 152826 => + [ [ 'address' => '商都县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '乌拉特后旗', + 'start_year' => 1982, + 'end_year' => 2002, + ], ], 152827 => [ @@ -9913,17 +9914,17 @@ 210200 => [ - [ - 'address' => '大连市', - 'start_year' => 1981, - 'end_year' => '', - ], - [ 'address' => '旅大市', 'start_year' => '', 'end_year' => 1980, ], + + [ + 'address' => '大连市', + 'start_year' => 1981, + 'end_year' => '', + ], ], 210202 => [ @@ -10109,9 +10110,9 @@ [ [ - 'address' => '千山区', - 'start_year' => 1996, - 'end_year' => '', + 'address' => '郊区', + 'start_year' => '', + 'end_year' => 1983, ], [ @@ -10121,9 +10122,9 @@ ], [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1983, + 'address' => '千山区', + 'start_year' => 1996, + 'end_year' => '', ], ], 210319 => @@ -10192,17 +10193,17 @@ 210403 => [ - [ - 'address' => '东洲区', - 'start_year' => 1999, - 'end_year' => '', - ], - [ 'address' => '露天区', 'start_year' => '', 'end_year' => 1998, ], + + [ + 'address' => '东洲区', + 'start_year' => 1999, + 'end_year' => '', + ], ], 210404 => [ @@ -10315,17 +10316,17 @@ 210511 => [ - [ - 'address' => '南芬区', - 'start_year' => 1985, - 'end_year' => 1985, - ], - [ 'address' => '立新区', 'start_year' => '', 'end_year' => 1983, ], + + [ + 'address' => '南芬区', + 'start_year' => 1985, + 'end_year' => 1985, + ], ], 210521 => [ @@ -10522,17 +10523,17 @@ 210711 => [ - [ - 'address' => '太和区', - 'start_year' => 1983, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '太和区', + 'start_year' => 1983, + 'end_year' => '', + ], ], 210719 => [ @@ -10675,17 +10676,17 @@ 210811 => [ - [ - 'address' => '老边区', - 'start_year' => 1984, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1983, ], + + [ + 'address' => '老边区', + 'start_year' => 1984, + 'end_year' => '', + ], ], 210821 => [ @@ -10789,17 +10790,17 @@ 210911 => [ - [ - 'address' => '细河区', - 'start_year' => 1984, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1983, ], + + [ + 'address' => '细河区', + 'start_year' => 1984, + 'end_year' => '', + ], ], 210921 => [ @@ -10867,17 +10868,17 @@ 211011 => [ - [ - 'address' => '太子河区', - 'start_year' => 1984, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1983, ], + + [ + 'address' => '太子河区', + 'start_year' => 1984, + 'end_year' => '', + ], ], 211021 => [ @@ -10918,17 +10919,17 @@ 211102 => [ - [ - 'address' => '双台子区', - 'start_year' => 1986, - 'end_year' => '', - ], - [ 'address' => '盘山区', 'start_year' => 1984, 'end_year' => 1985, ], + + [ + 'address' => '双台子区', + 'start_year' => 1986, + 'end_year' => '', + ], ], 211103 => [ @@ -11068,17 +11069,17 @@ 211281 => [ - [ - 'address' => '调兵山市', - 'start_year' => 2002, - 'end_year' => '', - ], - [ 'address' => '铁法市', 'start_year' => 1995, 'end_year' => 2001, ], + + [ + 'address' => '调兵山市', + 'start_year' => 2002, + 'end_year' => '', + ], ], 211282 => [ @@ -11200,17 +11201,17 @@ 211400 => [ - [ - 'address' => '葫芦岛市', - 'start_year' => 1994, - 'end_year' => '', - ], - [ 'address' => '锦西市', 'start_year' => 1989, 'end_year' => 1993, ], + + [ + 'address' => '葫芦岛市', + 'start_year' => 1994, + 'end_year' => '', + ], ], 211402 => [ @@ -11620,17 +11621,17 @@ 220105 => [ - [ - 'address' => '二道区', - 'start_year' => 1995, - 'end_year' => '', - ], - [ 'address' => '二道河子区', 'start_year' => '', 'end_year' => 1994, ], + + [ + 'address' => '二道区', + 'start_year' => 1995, + 'end_year' => '', + ], ], 220106 => [ @@ -11779,17 +11780,17 @@ 220211 => [ - [ - 'address' => '丰满区', - 'start_year' => 1992, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1991, ], + + [ + 'address' => '丰满区', + 'start_year' => 1992, + 'end_year' => '', + ], ], 220221 => [ @@ -11839,17 +11840,17 @@ 220281 => [ - [ - 'address' => '桦甸市', - 'start_year' => 2003, - 'end_year' => 2003, - ], - [ 'address' => '蛟河市', 'start_year' => 1995, 'end_year' => '', ], + + [ + 'address' => '桦甸市', + 'start_year' => 2003, + 'end_year' => 2003, + ], ], 220282 => [ @@ -12268,17 +12269,17 @@ 220702 => [ - [ - 'address' => '宁江区', - 'start_year' => 1995, - 'end_year' => '', - ], - [ 'address' => '扶余区', 'start_year' => 1992, 'end_year' => 1994, ], + + [ + 'address' => '宁江区', + 'start_year' => 1995, + 'end_year' => '', + ], ], 220721 => [ @@ -13144,17 +13145,17 @@ 230121 => [ - [ - 'address' => '呼兰县', - 'start_year' => 1984, - 'end_year' => 2003, - ], - [ 'address' => '阿城县', 'start_year' => 1983, 'end_year' => 1983, ], + + [ + 'address' => '呼兰县', + 'start_year' => 1984, + 'end_year' => 2003, + ], ], 230122 => [ @@ -13579,77 +13580,77 @@ 230402 => [ - [ - 'address' => '向阳区', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '萨尔图区', 'start_year' => '', 'end_year' => 1981, ], - ], - 230403 => - [ [ - 'address' => '工农区', + 'address' => '向阳区', 'start_year' => 1982, 'end_year' => '', ], + ], + 230403 => + [ [ 'address' => '龙凤区', 'start_year' => '', 'end_year' => 1981, ], - ], - 230404 => - [ [ - 'address' => '南山区', + 'address' => '工农区', 'start_year' => 1982, 'end_year' => '', ], + ], + 230404 => + [ [ 'address' => '让胡路区', 'start_year' => '', 'end_year' => 1981, ], - ], - 230405 => - [ [ - 'address' => '兴安区', + 'address' => '南山区', 'start_year' => 1982, 'end_year' => '', ], + ], + 230405 => + [ [ 'address' => '红岗区', 'start_year' => '', 'end_year' => 1981, ], - ], - 230406 => - [ [ - 'address' => '东山区', + 'address' => '兴安区', 'start_year' => 1982, 'end_year' => '', ], + ], + 230406 => + [ [ 'address' => '大同区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '东山区', + 'start_year' => 1982, + 'end_year' => '', + ], ], 230407 => [ @@ -13681,17 +13682,17 @@ 230500 => [ - [ - 'address' => '双鸭山市', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '鹤岗市', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '双鸭山市', + 'start_year' => 1982, + 'end_year' => '', + ], ], 230502 => [ @@ -13711,17 +13712,17 @@ 230503 => [ - [ - 'address' => '岭东区', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '工农区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '岭东区', + 'start_year' => 1982, + 'end_year' => '', + ], ], 230504 => [ @@ -13891,17 +13892,17 @@ 230606 => [ - [ - 'address' => '大同区', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '宝山区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '大同区', + 'start_year' => 1982, + 'end_year' => '', + ], ], 230621 => [ @@ -14743,17 +14744,17 @@ 232100 => [ - [ - 'address' => '松花江地区', - 'start_year' => 1982, - 'end_year' => 1995, - ], - [ 'address' => '绥化地区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '松花江地区', + 'start_year' => 1982, + 'end_year' => 1995, + ], ], 232101 => [ @@ -14800,62 +14801,62 @@ 232122 => [ + [ + 'address' => '肇东县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '宾县', 'start_year' => 1982, 'end_year' => 1990, ], + ], + 232123 => + [ [ - 'address' => '肇东县', + 'address' => '绥化县', 'start_year' => '', 'end_year' => 1981, ], - ], - 232123 => - [ [ 'address' => '呼兰县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 232124 => + [ [ - 'address' => '绥化县', + 'address' => '安达县', 'start_year' => '', 'end_year' => 1981, ], - ], - 232124 => - [ [ 'address' => '双城县', 'start_year' => 1982, 'end_year' => 1987, ], + ], + 232125 => + [ [ - 'address' => '安达县', + 'address' => '望奎县', 'start_year' => '', 'end_year' => 1981, ], - ], - 232125 => - [ [ 'address' => '五常县', 'start_year' => 1982, 'end_year' => 1992, ], - - [ - 'address' => '望奎县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 232126 => [ @@ -14875,17 +14876,17 @@ 232127 => [ - [ - 'address' => '木兰县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - [ 'address' => '青冈县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '木兰县', + 'start_year' => 1982, + 'end_year' => 1995, + ], ], 232128 => [ @@ -14905,17 +14906,17 @@ 232129 => [ - [ - 'address' => '尚志县', - 'start_year' => 1982, - 'end_year' => 1987, - ], - [ 'address' => '肇州县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '尚志县', + 'start_year' => 1982, + 'end_year' => 1987, + ], ], 232130 => [ @@ -14935,17 +14936,17 @@ 232131 => [ - [ - 'address' => '延寿县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - [ 'address' => '明水县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '延寿县', + 'start_year' => 1982, + 'end_year' => 1995, + ], ], 232132 => [ @@ -14959,17 +14960,17 @@ 232200 => [ - [ - 'address' => '嫩江地区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - [ 'address' => '松花江地区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '嫩江地区', + 'start_year' => 1982, + 'end_year' => 1983, + ], ], 232221 => [ @@ -15004,17 +15005,17 @@ 232223 => [ - [ - 'address' => '依安县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - [ 'address' => '巴彦县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '依安县', + 'start_year' => 1982, + 'end_year' => 1983, + ], ], 232224 => [ @@ -15049,32 +15050,32 @@ 232226 => [ - [ - 'address' => '杜尔伯特蒙古族自治县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - [ 'address' => '阿城县', 'start_year' => '', 'end_year' => 1981, ], - ], - 232227 => - [ [ - 'address' => '富裕县', + 'address' => '杜尔伯特蒙古族自治县', 'start_year' => 1982, 'end_year' => 1983, ], + ], + 232227 => + [ [ 'address' => '尚志县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '富裕县', + 'start_year' => 1982, + 'end_year' => 1983, + ], ], 232228 => [ @@ -15094,47 +15095,47 @@ 232229 => [ - [ - 'address' => '克山县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - [ 'address' => '延寿县', 'start_year' => '', 'end_year' => 1981, ], - ], - 232230 => - [ [ - 'address' => '克东县', + 'address' => '克山县', 'start_year' => 1982, 'end_year' => 1983, ], + ], + 232230 => + [ [ 'address' => '通河县', 'start_year' => '', 'end_year' => 1981, ], - ], - 232231 => - [ [ - 'address' => '拜泉县', + 'address' => '克东县', 'start_year' => 1982, 'end_year' => 1983, ], + ], + 232231 => + [ [ 'address' => '方正县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '拜泉县', + 'start_year' => 1982, + 'end_year' => 1983, + ], ], 232300 => [ @@ -15190,17 +15191,17 @@ 232321 => [ - [ - 'address' => '海伦县', - 'start_year' => 1982, - 'end_year' => 1988, - ], - [ 'address' => '讷河县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '海伦县', + 'start_year' => 1982, + 'end_year' => 1988, + ], ], 232322 => [ @@ -15274,17 +15275,17 @@ 232327 => [ - [ - 'address' => '安达县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - [ 'address' => '泰来县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '安达县', + 'start_year' => 1982, + 'end_year' => 1983, + ], ], 232328 => [ @@ -15319,32 +15320,32 @@ 232330 => [ - [ - 'address' => '庆安县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - [ 'address' => '林甸县', 'start_year' => '', 'end_year' => 1981, ], - ], - 232331 => - [ [ - 'address' => '明水县', + 'address' => '庆安县', 'start_year' => 1982, 'end_year' => 1998, ], + ], + 232331 => + [ [ 'address' => '杜尔伯特蒙古族自治县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '明水县', + 'start_year' => 1982, + 'end_year' => 1998, + ], ], 232332 => [ @@ -15430,62 +15431,62 @@ 232421 => [ + [ + 'address' => '桦南县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '富锦县', 'start_year' => 1982, 'end_year' => 1983, ], + ], + 232422 => + [ [ - 'address' => '桦南县', + 'address' => '集贤县', 'start_year' => '', 'end_year' => 1981, ], - ], - 232422 => - [ [ 'address' => '桦南县', 'start_year' => 1982, 'end_year' => 1983, ], + ], + 232423 => + [ [ - 'address' => '集贤县', + 'address' => '宝清县', 'start_year' => '', 'end_year' => 1981, ], - ], - 232423 => - [ [ 'address' => '依兰县', 'start_year' => 1982, 'end_year' => 1983, ], + ], + 232424 => + [ [ - 'address' => '宝清县', + 'address' => '富锦县', 'start_year' => '', 'end_year' => 1981, ], - ], - 232424 => - [ [ 'address' => '勃利县', 'start_year' => 1982, 'end_year' => 1982, ], - - [ - 'address' => '富锦县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 232425 => [ @@ -15520,17 +15521,17 @@ 232427 => [ - [ - 'address' => '宝清县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - [ 'address' => '汤原县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '宝清县', + 'start_year' => 1982, + 'end_year' => 1983, + ], ], 232428 => [ @@ -15550,17 +15551,17 @@ 232429 => [ - [ - 'address' => '绥滨县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - [ 'address' => '萝北县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '绥滨县', + 'start_year' => 1982, + 'end_year' => 1983, + ], ], 232430 => [ @@ -15580,17 +15581,17 @@ 232431 => [ - [ - 'address' => '同江县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - [ 'address' => '饶河县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '同江县', + 'start_year' => 1982, + 'end_year' => 1983, + ], ], 232432 => [ @@ -15652,47 +15653,47 @@ 232503 => [ - [ - 'address' => '东凤区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '先锋区', 'start_year' => '', 'end_year' => 1981, ], - ], - 232504 => - [ [ - 'address' => '先锋区', + 'address' => '东凤区', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 232504 => + [ [ 'address' => '爱民区', 'start_year' => '', 'end_year' => 1981, ], - ], - 232505 => - [ [ - 'address' => '爱民区', + 'address' => '先锋区', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 232505 => + [ [ 'address' => '阳明区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '爱民区', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 232506 => [ @@ -15715,17 +15716,17 @@ 232521 => [ - [ - 'address' => '宁安县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '海林县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '宁安县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 232522 => [ @@ -15760,32 +15761,32 @@ 232524 => [ - [ - 'address' => '东宁县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '密山县', 'start_year' => '', 'end_year' => 1981, ], - ], - 232525 => - [ [ - 'address' => '林口县', + 'address' => '东宁县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 232525 => + [ [ 'address' => '穆棱县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '林口县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 232526 => [ @@ -15805,17 +15806,17 @@ 232527 => [ - [ - 'address' => '密山县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '鸡东县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '密山县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 232528 => [ @@ -16708,41 +16709,41 @@ 320205 => [ - [ - 'address' => '锡山区', - 'start_year' => 2000, - 'end_year' => '', - ], - [ 'address' => '马山区', 'start_year' => 1987, 'end_year' => 1999, ], - ], - 320206 => - [ [ - 'address' => '惠山区', + 'address' => '锡山区', 'start_year' => 2000, 'end_year' => '', ], ], - 320211 => + 320206 => [ [ - 'address' => '滨湖区', + 'address' => '惠山区', 'start_year' => 2000, 'end_year' => '', ], + ], + 320211 => + [ [ 'address' => '郊区', 'start_year' => 1983, 'end_year' => 1999, ], + + [ + 'address' => '滨湖区', + 'start_year' => 2000, + 'end_year' => '', + ], ], 320213 => [ @@ -16846,17 +16847,17 @@ 320304 => [ - [ - 'address' => '九里区', - 'start_year' => 1995, - 'end_year' => 2009, - ], - [ 'address' => '矿区', 'start_year' => '', 'end_year' => 1994, ], + + [ + 'address' => '九里区', + 'start_year' => 1995, + 'end_year' => 2009, + ], ], 320305 => [ @@ -16870,17 +16871,17 @@ 320311 => [ - [ - 'address' => '泉山区', - 'start_year' => 1993, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1992, ], + + [ + 'address' => '泉山区', + 'start_year' => 1993, + 'end_year' => '', + ], ], 320312 => [ @@ -17011,17 +17012,17 @@ 320411 => [ - [ - 'address' => '新北区', - 'start_year' => 2002, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => 1983, 'end_year' => 2001, ], + + [ + 'address' => '新北区', + 'start_year' => 2002, + 'end_year' => '', + ], ], 320412 => [ @@ -17326,17 +17327,17 @@ 320611 => [ - [ - 'address' => '港闸区', - 'start_year' => 1991, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1990, ], + + [ + 'address' => '港闸区', + 'start_year' => 1991, + 'end_year' => '', + ], ], 320612 => [ @@ -17458,17 +17459,17 @@ 320702 => [ - [ - 'address' => '新海区', - 'start_year' => 1983, - 'end_year' => 1985, - ], - [ 'address' => '连云港区', 'start_year' => '', 'end_year' => 1982, ], + + [ + 'address' => '新海区', + 'start_year' => 1983, + 'end_year' => 1985, + ], ], 320703 => [ @@ -17488,32 +17489,32 @@ 320704 => [ + [ + 'address' => '新浦区', + 'start_year' => '', + 'end_year' => 1982, + ], + [ 'address' => '云台区', 'start_year' => 1983, 'end_year' => 2000, ], + ], + 320705 => + [ [ - 'address' => '新浦区', + 'address' => '海州区', 'start_year' => '', 'end_year' => 1982, ], - ], - 320705 => - [ [ 'address' => '新浦区', 'start_year' => 1986, 'end_year' => 2013, ], - - [ - 'address' => '海州区', - 'start_year' => '', - 'end_year' => 1982, - ], ], 320706 => [ @@ -17581,17 +17582,17 @@ 320800 => [ - [ - 'address' => '淮安市', - 'start_year' => 2000, - 'end_year' => '', - ], - [ 'address' => '淮阴市', 'start_year' => 1983, 'end_year' => 1999, ], + + [ + 'address' => '淮安市', + 'start_year' => 2000, + 'end_year' => '', + ], ], 320802 => [ @@ -17782,17 +17783,17 @@ 320902 => [ - [ - 'address' => '亭湖区', - 'start_year' => 2003, - 'end_year' => '', - ], - [ 'address' => '城区', 'start_year' => 1983, 'end_year' => 2002, ], + + [ + 'address' => '亭湖区', + 'start_year' => 2003, + 'end_year' => '', + ], ], 320903 => [ @@ -17941,17 +17942,17 @@ 321011 => [ - [ - 'address' => '维扬区', - 'start_year' => 2002, - 'end_year' => 2010, - ], - [ 'address' => '郊区', 'start_year' => 1984, 'end_year' => 2001, ], + + [ + 'address' => '维扬区', + 'start_year' => 2002, + 'end_year' => 2010, + ], ], 321012 => [ @@ -18127,32 +18128,32 @@ 321102 => [ - [ - 'address' => '京口区', - 'start_year' => 1984, - 'end_year' => '', - ], - [ 'address' => '城区', 'start_year' => 1983, 'end_year' => 1983, ], - ], - 321111 => - [ [ - 'address' => '润州区', + 'address' => '京口区', 'start_year' => 1984, 'end_year' => '', ], + ], + 321111 => + [ [ 'address' => '郊区', 'start_year' => 1983, 'end_year' => 1983, ], + + [ + 'address' => '润州区', + 'start_year' => 1984, + 'end_year' => '', + ], ], 321112 => [ @@ -19552,17 +19553,17 @@ 330206 => [ - [ - 'address' => '北仑区', - 'start_year' => 1987, - 'end_year' => '', - ], - [ 'address' => '滨海区', 'start_year' => 1985, 'end_year' => 1986, ], + + [ + 'address' => '北仑区', + 'start_year' => 1987, + 'end_year' => '', + ], ], 330211 => [ @@ -19795,17 +19796,17 @@ 330323 => [ - [ - 'address' => '乐清县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - [ 'address' => '瑞安县', 'start_year' => 1981, 'end_year' => 1981, ], + + [ + 'address' => '乐清县', + 'start_year' => 1982, + 'end_year' => 1992, + ], ], 330324 => [ @@ -19870,32 +19871,32 @@ 330328 => [ - [ - 'address' => '文成县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '瓯海县', 'start_year' => 1981, 'end_year' => 1981, ], - ], - 330329 => - [ [ - 'address' => '泰顺县', + 'address' => '文成县', 'start_year' => 1982, 'end_year' => '', ], + ], + 330329 => + [ [ 'address' => '苍南县', 'start_year' => 1981, 'end_year' => 1981, ], + + [ + 'address' => '泰顺县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 330381 => [ @@ -19927,12 +19928,6 @@ 330402 => [ - [ - 'address' => '南湖区', - 'start_year' => 2005, - 'end_year' => '', - ], - [ 'address' => '城区', 'start_year' => 1983, @@ -19944,21 +19939,27 @@ 'start_year' => 1993, 'end_year' => 2004, ], - ], - 330411 => - [ [ - 'address' => '秀洲区', - 'start_year' => 1999, + 'address' => '南湖区', + 'start_year' => 2005, 'end_year' => '', ], + ], + 330411 => + [ [ 'address' => '郊区', 'start_year' => 1983, 'end_year' => 1998, ], + + [ + 'address' => '秀洲区', + 'start_year' => 1999, + 'end_year' => '', + ], ], 330421 => [ @@ -20044,17 +20045,17 @@ 330502 => [ - [ - 'address' => '吴兴区', - 'start_year' => 2003, - 'end_year' => '', - ], - [ 'address' => '城区', 'start_year' => 1983, 'end_year' => 1987, ], + + [ + 'address' => '吴兴区', + 'start_year' => 2003, + 'end_year' => '', + ], ], 330503 => [ @@ -20749,32 +20750,32 @@ 332125 => [ - [ - 'address' => '桐乡县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '海盐县', 'start_year' => '', 'end_year' => 1981, ], - ], - 332126 => - [ [ - 'address' => '德清县', + 'address' => '桐乡县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 332126 => + [ [ 'address' => '桐乡县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '德清县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 332127 => [ @@ -20917,17 +20918,17 @@ 332321 => [ - [ - 'address' => '上虞县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '绍兴县', 'start_year' => '', 'end_year' => 1980, ], + + [ + 'address' => '上虞县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 332322 => [ @@ -21019,17 +21020,17 @@ 332421 => [ - [ - 'address' => '兰溪县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '洞头县', 'start_year' => '', 'end_year' => 1980, ], + + [ + 'address' => '兰溪县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 332422 => [ @@ -21049,47 +21050,47 @@ 332423 => [ - [ - 'address' => '武义县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '瑞安县', 'start_year' => '', 'end_year' => 1980, ], - ], - 332424 => - [ [ - 'address' => '东阳县', + 'address' => '武义县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 332424 => + [ [ 'address' => '文成县', 'start_year' => '', 'end_year' => 1980, ], - ], - 332425 => - [ [ - 'address' => '义乌县', + 'address' => '东阳县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 332425 => + [ [ 'address' => '平阳县', 'start_year' => '', 'end_year' => 1980, ], + + [ + 'address' => '义乌县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 332426 => [ @@ -21109,17 +21110,17 @@ 332427 => [ - [ - 'address' => '常山县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '泰顺县', 'start_year' => '', 'end_year' => 1980, ], + + [ + 'address' => '常山县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 332428 => [ @@ -21160,32 +21161,32 @@ 332500 => [ + [ + 'address' => '金华地区', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '丽水地区', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 332501 => + [ [ - 'address' => '金华地区', + 'address' => '金华市', 'start_year' => '', 'end_year' => 1981, ], - ], - 332501 => - [ [ 'address' => '丽水市', 'start_year' => 1986, 'end_year' => 1994, ], - - [ - 'address' => '金华市', - 'start_year' => '', - 'end_year' => 1981, - ], ], 332502 => [ @@ -21205,17 +21206,17 @@ 332521 => [ - [ - 'address' => '丽水县', - 'start_year' => 1982, - 'end_year' => 1985, - ], - [ 'address' => '金华县', 'start_year' => '', 'end_year' => 1980, ], + + [ + 'address' => '丽水县', + 'start_year' => 1982, + 'end_year' => 1985, + ], ], 332522 => [ @@ -21235,17 +21236,17 @@ 332523 => [ - [ - 'address' => '云和县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '永康县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '云和县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 332524 => [ @@ -21310,17 +21311,17 @@ 332528 => [ - [ - 'address' => '松阳县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '衢县', 'start_year' => '', 'end_year' => 1980, ], + + [ + 'address' => '松阳县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 332529 => [ @@ -21418,17 +21419,17 @@ 332621 => [ - [ - 'address' => '临海县', - 'start_year' => 1982, - 'end_year' => 1985, - ], - [ 'address' => '丽水县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '临海县', + 'start_year' => 1982, + 'end_year' => 1985, + ], ], 332622 => [ @@ -21463,62 +21464,62 @@ 332624 => [ - [ - 'address' => '仙居县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - [ 'address' => '龙泉县', 'start_year' => '', 'end_year' => 1981, ], - ], - 332625 => - [ [ - 'address' => '天台县', + 'address' => '仙居县', 'start_year' => 1982, 'end_year' => 1993, ], + ], + 332625 => + [ [ 'address' => '庆元县', 'start_year' => '', 'end_year' => 1981, ], - ], - 332626 => - [ [ - 'address' => '三门县', + 'address' => '天台县', 'start_year' => 1982, 'end_year' => 1993, ], + ], + 332626 => + [ [ 'address' => '缙云县', 'start_year' => '', 'end_year' => 1981, ], - ], - 332627 => - [ [ - 'address' => '玉环县', + 'address' => '三门县', 'start_year' => 1982, 'end_year' => 1993, ], + ], + 332627 => + [ [ 'address' => '遂昌县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '玉环县', + 'start_year' => 1982, + 'end_year' => 1993, + ], ], 332700 => [ @@ -21562,32 +21563,32 @@ 332722 => [ - [ - 'address' => '普陀县', - 'start_year' => 1982, - 'end_year' => 1986, - ], - [ 'address' => '黄岩县', 'start_year' => '', 'end_year' => 1981, ], - ], - 332723 => - [ [ - 'address' => '岱山县', + 'address' => '普陀县', 'start_year' => 1982, 'end_year' => 1986, ], + ], + 332723 => + [ [ 'address' => '温岭县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '岱山县', + 'start_year' => 1982, + 'end_year' => 1986, + ], ], 332724 => [ @@ -21733,32 +21734,32 @@ 339007 => [ - [ - 'address' => '义乌市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - [ 'address' => '安徽省', 'start_year' => 1987, 'end_year' => 1987, ], - ], - 339008 => - [ [ - 'address' => '东阳市', + 'address' => '义乌市', 'start_year' => 1988, 'end_year' => 1994, ], + ], + 339008 => + [ [ 'address' => '合肥市', 'start_year' => 1987, 'end_year' => 1987, ], + + [ + 'address' => '东阳市', + 'start_year' => 1988, + 'end_year' => 1994, + ], ], 339009 => [ @@ -21928,32 +21929,32 @@ 340104 => [ - [ - 'address' => '蜀山区', - 'start_year' => 2002, - 'end_year' => '', - ], - [ 'address' => '西市区', 'start_year' => '', 'end_year' => 2001, ], - ], - 340111 => - [ [ - 'address' => '包河区', + 'address' => '蜀山区', 'start_year' => 2002, 'end_year' => '', ], + ], + 340111 => + [ [ 'address' => '郊区', 'start_year' => '', 'end_year' => 2001, ], + + [ + 'address' => '包河区', + 'start_year' => 2002, + 'end_year' => '', + ], ], 340121 => [ @@ -22021,17 +22022,17 @@ 340203 => [ - [ - 'address' => '弋江区', - 'start_year' => 2005, - 'end_year' => '', - ], - [ 'address' => '马塘区', 'start_year' => '', 'end_year' => 2004, ], + + [ + 'address' => '弋江区', + 'start_year' => 2005, + 'end_year' => '', + ], ], 340204 => [ @@ -22180,32 +22181,32 @@ 340304 => [ - [ - 'address' => '禹会区', - 'start_year' => 2004, - 'end_year' => '', - ], - [ 'address' => '西市区', 'start_year' => '', 'end_year' => 2003, ], - ], - 340311 => - [ [ - 'address' => '淮上区', + 'address' => '禹会区', 'start_year' => 2004, 'end_year' => '', ], + ], + 340311 => + [ [ 'address' => '郊区', 'start_year' => '', 'end_year' => 2003, ], + + [ + 'address' => '淮上区', + 'start_year' => 2004, + 'end_year' => '', + ], ], 340321 => [ @@ -22561,17 +22562,17 @@ 340811 => [ - [ - 'address' => '宜秀区', - 'start_year' => 2005, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 2004, ], + + [ + 'address' => '宜秀区', + 'start_year' => 2005, + 'end_year' => '', + ], ], 340821 => [ @@ -24196,17 +24197,17 @@ 350111 => [ - [ - 'address' => '晋安区', - 'start_year' => 1995, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1994, ], + + [ + 'address' => '晋安区', + 'start_year' => 1995, + 'end_year' => '', + ], ], 350112 => [ @@ -25150,17 +25151,17 @@ 352100 => [ - [ - 'address' => '南平地区', - 'start_year' => 1988, - 'end_year' => 1993, - ], - [ 'address' => '建阳地区', 'start_year' => 1982, 'end_year' => 1987, ], + + [ + 'address' => '南平地区', + 'start_year' => 1988, + 'end_year' => 1993, + ], ], 352101 => [ @@ -25282,17 +25283,17 @@ 352200 => [ - [ - 'address' => '宁德地区', - 'start_year' => 1982, - 'end_year' => 1998, - ], - [ 'address' => '建阳地区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '宁德地区', + 'start_year' => 1982, + 'end_year' => 1998, + ], ], 352201 => [ @@ -25330,17 +25331,17 @@ 352221 => [ - [ - 'address' => '宁德县', - 'start_year' => 1982, - 'end_year' => 1987, - ], - [ 'address' => '顺昌县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '宁德县', + 'start_year' => 1982, + 'end_year' => 1987, + ], ], 352222 => [ @@ -25435,32 +25436,32 @@ 352228 => [ - [ - 'address' => '屏南县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - [ 'address' => '松溪县', 'start_year' => '', 'end_year' => 1981, ], - ], - 352229 => - [ [ - 'address' => '寿宁县', + 'address' => '屏南县', 'start_year' => 1982, 'end_year' => 1998, ], + ], + 352229 => + [ [ 'address' => '政和县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '寿宁县', + 'start_year' => 1982, + 'end_year' => 1998, + ], ], 352230 => [ @@ -25513,17 +25514,17 @@ 352322 => [ - [ - 'address' => '永泰县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '连江县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '永泰县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 352323 => [ @@ -25543,32 +25544,32 @@ 352324 => [ - [ - 'address' => '福清县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '福鼎县', 'start_year' => '', 'end_year' => 1981, ], - ], - 352325 => - [ [ - 'address' => '平潭县', + 'address' => '福清县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 352325 => + [ [ 'address' => '霞浦县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '平潭县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 352326 => [ @@ -25588,17 +25589,17 @@ 352327 => [ - [ - 'address' => '仙游县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '古田县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '仙游县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 352328 => [ @@ -25639,86 +25640,86 @@ 352400 => [ - [ - 'address' => '晋江地区', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '莆田地区', 'start_year' => '', 'end_year' => 1981, ], - ], - 352401 => - [ [ - 'address' => '泉州市', + 'address' => '晋江地区', 'start_year' => 1982, 'end_year' => 1984, ], ], - 352421 => + 352401 => [ [ - 'address' => '惠安县', + 'address' => '泉州市', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 352421 => + [ [ 'address' => '闽清县', 'start_year' => '', 'end_year' => 1981, ], - ], - 352422 => - [ [ - 'address' => '晋江县', + 'address' => '惠安县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 352422 => + [ [ 'address' => '永泰县', 'start_year' => '', 'end_year' => 1981, ], - ], - 352423 => - [ [ - 'address' => '南安县', + 'address' => '晋江县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 352423 => + [ [ 'address' => '长乐县', 'start_year' => '', 'end_year' => 1981, ], - ], - 352424 => - [ [ - 'address' => '安溪县', + 'address' => '南安县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 352424 => + [ [ 'address' => '福清县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '安溪县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 352425 => [ @@ -25738,17 +25739,17 @@ 352426 => [ - [ - 'address' => '德化县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '莆田县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '德化县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 352427 => [ @@ -25813,17 +25814,17 @@ 352522 => [ - [ - 'address' => '云霄县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '晋江县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '云霄县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 352523 => [ @@ -25873,32 +25874,32 @@ 352526 => [ - [ - 'address' => '东山县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '德化县', 'start_year' => '', 'end_year' => 1981, ], - ], - 352527 => - [ [ - 'address' => '南靖县', + 'address' => '东山县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 352527 => + [ [ 'address' => '金门县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '南靖县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 352528 => [ @@ -25921,17 +25922,17 @@ 352600 => [ - [ - 'address' => '龙岩地区', - 'start_year' => 1982, - 'end_year' => 1995, - ], - [ 'address' => '龙溪地区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '龙岩地区', + 'start_year' => 1982, + 'end_year' => 1995, + ], ], 352601 => [ @@ -25984,47 +25985,47 @@ 352623 => [ - [ - 'address' => '永定县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - [ 'address' => '漳浦县', 'start_year' => '', 'end_year' => 1981, ], - ], - 352624 => - [ [ - 'address' => '上杭县', + 'address' => '永定县', 'start_year' => 1982, 'end_year' => 1995, ], + ], + 352624 => + [ [ 'address' => '诏安县', 'start_year' => '', 'end_year' => 1981, ], - ], - 352625 => - [ [ - 'address' => '武平县', + 'address' => '上杭县', 'start_year' => 1982, 'end_year' => 1995, ], + ], + 352625 => + [ [ 'address' => '长泰县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '武平县', + 'start_year' => 1982, + 'end_year' => 1995, + ], ], 352626 => [ @@ -26077,62 +26078,62 @@ 352700 => [ - [ - 'address' => '三明地区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '龙岩地区', 'start_year' => '', 'end_year' => 1981, ], - ], - 352701 => - [ [ - 'address' => '三明市', + 'address' => '三明地区', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 352701 => + [ [ 'address' => '龙岩市', 'start_year' => 1981, 'end_year' => 1981, ], - ], - 352721 => - [ [ - 'address' => '明溪县', + 'address' => '三明市', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 352721 => + [ [ 'address' => '龙岩县', 'start_year' => '', 'end_year' => 1980, ], - ], - 352722 => - [ [ - 'address' => '永安县', + 'address' => '明溪县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 352722 => + [ [ 'address' => '长汀县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '永安县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 352723 => [ @@ -26167,47 +26168,47 @@ 352725 => [ - [ - 'address' => '大田县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '武平县', 'start_year' => '', 'end_year' => 1981, ], - ], - 352726 => - [ [ - 'address' => '尤溪县', + 'address' => '大田县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 352726 => + [ [ 'address' => '漳平县', 'start_year' => '', 'end_year' => 1981, ], - ], - 352727 => - [ [ - 'address' => '沙县', + 'address' => '尤溪县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 352727 => + [ [ 'address' => '连城县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '沙县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 352728 => [ @@ -26524,17 +26525,17 @@ 360121 => [ - [ - 'address' => '南昌县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '新建县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '南昌县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 360122 => [ @@ -27697,92 +27698,92 @@ 362122 => [ + [ + 'address' => '永修县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '南康县', 'start_year' => 1982, 'end_year' => 1994, ], + ], + 362123 => + [ [ - 'address' => '永修县', + 'address' => '彭泽县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362123 => - [ [ 'address' => '信丰县', 'start_year' => 1982, 'end_year' => 1997, ], + ], + 362124 => + [ [ - 'address' => '彭泽县', + 'address' => '德安县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362124 => - [ [ 'address' => '大余县', 'start_year' => 1982, 'end_year' => 1997, ], + ], + 362125 => + [ [ - 'address' => '德安县', + 'address' => '湖口县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362125 => - [ [ 'address' => '上犹县', 'start_year' => 1982, 'end_year' => 1997, ], + ], + 362126 => + [ [ - 'address' => '湖口县', + 'address' => '瑞昌县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362126 => - [ [ 'address' => '崇义县', 'start_year' => 1982, 'end_year' => 1997, ], + ], + 362127 => + [ [ - 'address' => '瑞昌县', + 'address' => '都昌县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362127 => - [ [ 'address' => '安远县', 'start_year' => 1982, 'end_year' => 1997, ], - - [ - 'address' => '都昌县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 362128 => [ @@ -27802,17 +27803,17 @@ 362129 => [ - [ - 'address' => '定南县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - [ 'address' => '星子县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '定南县', + 'start_year' => 1982, + 'end_year' => 1997, + ], ], 362130 => [ @@ -27934,17 +27935,17 @@ 362202 => [ - [ - 'address' => '丰城市', - 'start_year' => 1988, - 'end_year' => 1999, - ], - [ 'address' => '鹰潭市', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '丰城市', + 'start_year' => 1988, + 'end_year' => 1999, + ], ], 362203 => [ @@ -28027,17 +28028,17 @@ 362225 => [ - [ - 'address' => '宜春县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '德兴县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '宜春县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 362226 => [ @@ -28057,77 +28058,77 @@ 362227 => [ + [ + 'address' => '玉山县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '万载县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 362228 => + [ [ - 'address' => '玉山县', + 'address' => '乐平县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362228 => - [ [ 'address' => '上高县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 362229 => + [ [ - 'address' => '乐平县', + 'address' => '广丰县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362229 => - [ [ 'address' => '宜丰县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 362230 => + [ [ - 'address' => '广丰县', + 'address' => '波阳县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362230 => - [ [ 'address' => '分宜县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 362231 => + [ [ - 'address' => '波阳县', + 'address' => '铅山县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362231 => - [ [ 'address' => '安义县', 'start_year' => 1982, 'end_year' => 1982, ], - - [ - 'address' => '铅山县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 362232 => [ @@ -28171,77 +28172,77 @@ 362300 => [ - [ - 'address' => '上饶地区', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '宜春地区', 'start_year' => '', 'end_year' => 1981, ], - ], - 362301 => - [ [ - 'address' => '上饶市', + 'address' => '上饶地区', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 362301 => + [ [ 'address' => '宜春市', 'start_year' => '', 'end_year' => 1981, ], - ], - 362302 => - [ [ - 'address' => '德兴市', - 'start_year' => 1990, + 'address' => '上饶市', + 'start_year' => 1982, 'end_year' => 1999, ], + ], + 362302 => + [ [ 'address' => '鹰潭市', 'start_year' => 1982, 'end_year' => 1982, ], - ], - 362321 => - [ [ - 'address' => '上饶县', - 'start_year' => 1982, + 'address' => '德兴市', + 'start_year' => 1990, 'end_year' => 1999, ], + ], + 362321 => + [ [ 'address' => '宜春县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362322 => - [ [ - 'address' => '广丰县', + 'address' => '上饶县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 362322 => + [ [ 'address' => '高安县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '广丰县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 362323 => [ @@ -28276,32 +28277,32 @@ 362325 => [ - [ - 'address' => '横峰县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '铜鼓县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362326 => - [ [ - 'address' => '弋阳县', + 'address' => '横峰县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 362326 => + [ [ 'address' => '清江县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '弋阳县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 362327 => [ @@ -28321,17 +28322,17 @@ 362328 => [ - [ - 'address' => '余江县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '新余县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '余江县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 362329 => [ @@ -28366,32 +28367,32 @@ 362331 => [ + [ + 'address' => '安义县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '万年县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 362332 => + [ [ - 'address' => '安义县', + 'address' => '靖安县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362332 => - [ [ 'address' => '乐平县', 'start_year' => 1982, 'end_year' => 1982, ], - - [ - 'address' => '靖安县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 362333 => [ @@ -28420,32 +28421,32 @@ 362400 => [ - [ - 'address' => '吉安地区', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '抚州地区', 'start_year' => '', 'end_year' => 1981, ], - ], - 362401 => - [ [ - 'address' => '吉安市', + 'address' => '吉安地区', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 362401 => + [ [ 'address' => '抚州市', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '吉安市', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 362402 => [ @@ -28474,32 +28475,32 @@ 362422 => [ - [ - 'address' => '吉水县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '宜黄县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362423 => - [ [ - 'address' => '峡江县', + 'address' => '吉水县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 362423 => + [ [ 'address' => '金溪县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '峡江县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 362424 => [ @@ -28519,17 +28520,17 @@ 362425 => [ - [ - 'address' => '永丰县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '资溪县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '永丰县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 362426 => [ @@ -28549,32 +28550,32 @@ 362427 => [ - [ - 'address' => '遂川县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '黎川县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362428 => - [ [ - 'address' => '万安县', + 'address' => '遂川县', 'start_year' => 1982, 'end_year' => 1999, ], + ], + 362428 => + [ [ 'address' => '东乡县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '万安县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 362429 => [ @@ -28594,17 +28595,17 @@ 362430 => [ - [ - 'address' => '永新县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '进贤县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '永新县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 362431 => [ @@ -28657,12 +28658,6 @@ 362501 => [ - [ - 'address' => '临川市', - 'start_year' => 1987, - 'end_year' => 1999, - ], - [ 'address' => '吉安市', 'start_year' => '', @@ -28674,21 +28669,27 @@ 'start_year' => 1982, 'end_year' => 1986, ], - ], - 362521 => - [ [ - 'address' => '临川县', - 'start_year' => 1982, - 'end_year' => 1986, + 'address' => '临川市', + 'start_year' => 1987, + 'end_year' => 1999, ], + ], + 362521 => + [ [ 'address' => '吉安县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '临川县', + 'start_year' => 1982, + 'end_year' => 1986, + ], ], 362522 => [ @@ -28723,17 +28724,17 @@ 362524 => [ - [ - 'address' => '南丰县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '遂川县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '南丰县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 362525 => [ @@ -28753,17 +28754,17 @@ 362526 => [ - [ - 'address' => '乐安县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '宁冈县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '乐安县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 362527 => [ @@ -28828,17 +28829,17 @@ 362531 => [ - [ - 'address' => '东乡县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '泰和县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '东乡县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 362532 => [ @@ -28867,17 +28868,17 @@ 362600 => [ - [ - 'address' => '九江地区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '赣州地区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '九江地区', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 362601 => [ @@ -28891,17 +28892,17 @@ 362621 => [ - [ - 'address' => '九江县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '广昌县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '九江县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 362622 => [ @@ -28921,32 +28922,32 @@ 362623 => [ - [ - 'address' => '武宁县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '石城县', 'start_year' => '', 'end_year' => 1981, ], - ], - 362624 => - [ [ - 'address' => '修水县', + 'address' => '武宁县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 362624 => + [ [ 'address' => '龙南县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '修水县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 362625 => [ @@ -29026,17 +29027,17 @@ 362630 => [ - [ - 'address' => '彭泽县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '赣县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '彭泽县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 362631 => [ @@ -29608,17 +29609,17 @@ 370406 => [ - [ - 'address' => '山亭区', - 'start_year' => 1983, - 'end_year' => '', - ], - [ 'address' => '齐村区', 'start_year' => '', 'end_year' => 1982, ], + + [ + 'address' => '山亭区', + 'start_year' => 1983, + 'end_year' => '', + ], ], 370421 => [ @@ -30136,17 +30137,17 @@ 370811 => [ - [ - 'address' => '任城区', - 'start_year' => 1993, - 'end_year' => '', - ], - [ 'address' => '市郊区', 'start_year' => 1983, 'end_year' => 1992, ], + + [ + 'address' => '任城区', + 'start_year' => 1993, + 'end_year' => '', + ], ], 370812 => [ @@ -30304,17 +30305,17 @@ 370911 => [ - [ - 'address' => '岱岳区', - 'start_year' => 2000, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => 1985, 'end_year' => 1999, ], + + [ + 'address' => '岱岳区', + 'start_year' => 2000, + 'end_year' => '', + ], ], 370921 => [ @@ -30589,17 +30590,17 @@ 371324 => [ - [ - 'address' => '兰陵县', - 'start_year' => 2014, - 'end_year' => '', - ], - [ 'address' => '苍山县', 'start_year' => 1994, 'end_year' => 2013, ], + + [ + 'address' => '兰陵县', + 'start_year' => 2014, + 'end_year' => '', + ], ], 371325 => [ @@ -31606,17 +31607,17 @@ 372521 => [ - [ - 'address' => '聊城县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '阳谷县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '聊城县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 372522 => [ @@ -31666,32 +31667,32 @@ 372525 => [ - [ - 'address' => '东阿县', - 'start_year' => 1982, - 'end_year' => 1996, - ], - [ 'address' => '冠县', 'start_year' => '', 'end_year' => 1981, ], - ], - 372526 => - [ [ - 'address' => '冠县', + 'address' => '东阿县', 'start_year' => 1982, 'end_year' => 1996, ], + ], + 372526 => + [ [ 'address' => '高唐县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '冠县', + 'start_year' => 1982, + 'end_year' => 1996, + ], ], 372527 => [ @@ -31711,17 +31712,17 @@ 372528 => [ - [ - 'address' => '临清县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '聊城县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '临清县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 372600 => [ @@ -31783,17 +31784,17 @@ 372622 => [ - [ - 'address' => '新泰县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '莱芜县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '新泰县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 372623 => [ @@ -32566,17 +32567,17 @@ 410108 => [ - [ - 'address' => '惠济区', - 'start_year' => 2003, - 'end_year' => '', - ], - [ 'address' => '邙山区', 'start_year' => 1987, 'end_year' => 2002, ], + + [ + 'address' => '惠济区', + 'start_year' => 2003, + 'end_year' => '', + ], ], 410111 => [ @@ -32884,17 +32885,17 @@ 410311 => [ - [ - 'address' => '洛龙区', - 'start_year' => 2000, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1999, ], + + [ + 'address' => '洛龙区', + 'start_year' => 2000, + 'end_year' => '', + ], ], 410321 => [ @@ -33025,17 +33026,17 @@ 410411 => [ - [ - 'address' => '湛河区', - 'start_year' => 1994, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1993, ], + + [ + 'address' => '湛河区', + 'start_year' => 1994, + 'end_year' => '', + ], ], 410412 => [ @@ -33121,47 +33122,47 @@ 410500 => [ - [ - 'address' => '安阳市', - 'start_year' => 1984, - 'end_year' => '', - ], - [ 'address' => '鹤壁市', 'start_year' => '', 'end_year' => 1981, ], - ], - 410502 => - [ [ - 'address' => '文峰区', + 'address' => '安阳市', 'start_year' => 1984, 'end_year' => '', ], + ], + 410502 => + [ [ 'address' => '鹤山区', 'start_year' => '', 'end_year' => 1981, ], - ], - 410503 => - [ [ - 'address' => '北关区', + 'address' => '文峰区', 'start_year' => 1984, 'end_year' => '', ], + ], + 410503 => + [ [ 'address' => '山城区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '北关区', + 'start_year' => 1984, + 'end_year' => '', + ], ], 410504 => [ @@ -33328,17 +33329,17 @@ 410611 => [ - [ - 'address' => '淇滨区', - 'start_year' => 2001, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 2000, ], + + [ + 'address' => '淇滨区', + 'start_year' => 2001, + 'end_year' => '', + ], ], 410621 => [ @@ -33379,47 +33380,47 @@ 410703 => [ - [ - 'address' => '卫滨区', - 'start_year' => 2003, - 'end_year' => '', - ], - [ 'address' => '新华区', 'start_year' => 1983, 'end_year' => 2002, ], - ], - 410704 => - [ [ - 'address' => '凤泉区', + 'address' => '卫滨区', 'start_year' => 2003, 'end_year' => '', ], + ], + 410704 => + [ [ 'address' => '北站区', 'start_year' => 1983, 'end_year' => 2002, ], - ], - 410711 => - [ [ - 'address' => '牧野区', + 'address' => '凤泉区', 'start_year' => 2003, 'end_year' => '', ], + ], + 410711 => + [ [ 'address' => '郊区', 'start_year' => 1983, 'end_year' => 2002, ], + + [ + 'address' => '牧野区', + 'start_year' => 2003, + 'end_year' => '', + ], ], 410721 => [ @@ -33550,17 +33551,17 @@ 410811 => [ - [ - 'address' => '山阳区', - 'start_year' => 1990, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => 1982, 'end_year' => 1989, ], + + [ + 'address' => '山阳区', + 'start_year' => 1990, + 'end_year' => '', + ], ], 410821 => [ @@ -33664,17 +33665,17 @@ 410902 => [ - [ - 'address' => '华龙区', - 'start_year' => 2002, - 'end_year' => '', - ], - [ 'address' => '市区', 'start_year' => 1985, 'end_year' => 2001, ], + + [ + 'address' => '华龙区', + 'start_year' => 2002, + 'end_year' => '', + ], ], 410911 => [ @@ -35011,17 +35012,17 @@ 412426 => [ - [ - 'address' => '巩县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '新郑县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '巩县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 412427 => [ @@ -35041,17 +35042,17 @@ 412428 => [ - [ - 'address' => '新郑县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '登封县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '新郑县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 412429 => [ @@ -36445,17 +36446,17 @@ 420581 => [ - [ - 'address' => '宜都市', - 'start_year' => 1998, - 'end_year' => '', - ], - [ 'address' => '枝城市', 'start_year' => 1996, 'end_year' => 1997, ], + + [ + 'address' => '宜都市', + 'start_year' => 1998, + 'end_year' => '', + ], ], 420582 => [ @@ -36535,17 +36536,17 @@ 420607 => [ - [ - 'address' => '襄州区', - 'start_year' => 2010, - 'end_year' => '', - ], - [ 'address' => '襄阳区', 'start_year' => 2001, 'end_year' => 2009, ], + + [ + 'address' => '襄州区', + 'start_year' => 2010, + 'end_year' => '', + ], ], 420611 => [ @@ -36658,17 +36659,17 @@ 420703 => [ - [ - 'address' => '华容区', - 'start_year' => 1987, - 'end_year' => '', - ], - [ 'address' => '黄州区', 'start_year' => 1984, 'end_year' => 1986, ], + + [ + 'address' => '华容区', + 'start_year' => 1987, + 'end_year' => '', + ], ], 420704 => [ @@ -36853,17 +36854,17 @@ 421000 => [ - [ - 'address' => '荆州市', - 'start_year' => 1996, - 'end_year' => '', - ], - [ 'address' => '荆沙市', 'start_year' => 1994, 'end_year' => 1995, ], + + [ + 'address' => '荆州市', + 'start_year' => 1996, + 'end_year' => '', + ], ], 421001 => [ @@ -37537,17 +37538,17 @@ 422401 => [ - [ - 'address' => '仙桃市', - 'start_year' => 1986, - 'end_year' => 1993, - ], - [ 'address' => '荆门市', 'start_year' => '', 'end_year' => 1982, ], + + [ + 'address' => '仙桃市', + 'start_year' => 1986, + 'end_year' => 1993, + ], ], 422402 => [ @@ -38005,12 +38006,6 @@ 422800 => [ - [ - 'address' => '恩施土家族苗族自治州', - 'start_year' => 1993, - 'end_year' => '', - ], - [ 'address' => '恩施地区', 'start_year' => '', @@ -38022,6 +38017,12 @@ 'start_year' => 1983, 'end_year' => 1992, ], + + [ + 'address' => '恩施土家族苗族自治州', + 'start_year' => 1993, + 'end_year' => '', + ], ], 422801 => [ @@ -38098,32 +38099,32 @@ 422827 => [ - [ - 'address' => '来凤县', - 'start_year' => 1983, - 'end_year' => '', - ], - [ 'address' => '来凤土家族自治县', 'start_year' => '', 'end_year' => 1982, ], - ], - 422828 => - [ [ - 'address' => '鹤峰县', + 'address' => '来凤县', 'start_year' => 1983, 'end_year' => '', ], + ], + 422828 => + [ [ 'address' => '鹤峰土家族自治县', 'start_year' => '', 'end_year' => 1982, ], + + [ + 'address' => '鹤峰县', + 'start_year' => 1983, + 'end_year' => '', + ], ], 422921 => [ @@ -38317,18 +38318,18 @@ 430102 => [ - [ - 'address' => '东区', - 'start_year' => 1983, - 'end_year' => 1995, - ], - [ 'address' => '城东区', 'start_year' => '', 'end_year' => 1982, ], + [ + 'address' => '东区', + 'start_year' => 1983, + 'end_year' => 1995, + ], + [ 'address' => '芙蓉区', 'start_year' => 1996, @@ -38338,18 +38339,18 @@ 430103 => [ - [ - 'address' => '南区', - 'start_year' => 1983, - 'end_year' => 1995, - ], - [ 'address' => '城南区', 'start_year' => '', 'end_year' => 1982, ], + [ + 'address' => '南区', + 'start_year' => 1983, + 'end_year' => 1995, + ], + [ 'address' => '天心区', 'start_year' => 1996, @@ -38365,26 +38366,20 @@ 'end_year' => 1982, ], - [ - 'address' => '岳麓区', - 'start_year' => 1996, - 'end_year' => '', - ], - [ 'address' => '西区', 'start_year' => 1983, 'end_year' => 1995, ], - ], - 430105 => - [ [ - 'address' => '北区', - 'start_year' => 1983, - 'end_year' => 1995, + 'address' => '岳麓区', + 'start_year' => 1996, + 'end_year' => '', ], + ], + 430105 => + [ [ 'address' => '城北区', @@ -38392,6 +38387,12 @@ 'end_year' => 1982, ], + [ + 'address' => '北区', + 'start_year' => 1983, + 'end_year' => 1995, + ], + [ 'address' => '开福区', 'start_year' => 1996, @@ -38533,17 +38534,17 @@ 430211 => [ - [ - 'address' => '天元区', - 'start_year' => 1997, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1996, ], + + [ + 'address' => '天元区', + 'start_year' => 1997, + 'end_year' => '', + ], ], 430219 => [ @@ -38593,17 +38594,17 @@ 430225 => [ - [ - 'address' => '炎陵县', - 'start_year' => 1994, - 'end_year' => '', - ], - [ 'address' => '酃县', 'start_year' => 1983, 'end_year' => 1993, ], + + [ + 'address' => '炎陵县', + 'start_year' => 1994, + 'end_year' => '', + ], ], 430281 => [ @@ -38632,17 +38633,17 @@ 430302 => [ - [ - 'address' => '东区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - [ 'address' => '雨湖区', 'start_year' => '', 'end_year' => '', ], + + [ + 'address' => '东区', + 'start_year' => 1982, + 'end_year' => 1983, + ], ], 430303 => [ @@ -38704,17 +38705,17 @@ 430321 => [ - [ - 'address' => '湘潭县', - 'start_year' => 1984, - 'end_year' => '', - ], - [ 'address' => '邵东县', 'start_year' => 1983, 'end_year' => 1983, ], + + [ + 'address' => '湘潭县', + 'start_year' => 1984, + 'end_year' => '', + ], ], 430322 => [ @@ -38752,17 +38753,17 @@ 430400 => [ - [ - 'address' => '湘潭市', - 'start_year' => 1982, - 'end_year' => 1983, - ], - [ 'address' => '衡阳市', 'start_year' => '', 'end_year' => '', ], + + [ + 'address' => '湘潭市', + 'start_year' => 1982, + 'end_year' => 1983, + ], ], 430402 => [ @@ -38965,17 +38966,17 @@ 430500 => [ - [ - 'address' => '衡阳市', - 'start_year' => 1982, - 'end_year' => 1983, - ], - [ 'address' => '邵阳市', 'start_year' => '', 'end_year' => '', ], + + [ + 'address' => '衡阳市', + 'start_year' => 1982, + 'end_year' => 1983, + ], ], 430502 => [ @@ -38986,21 +38987,27 @@ 'end_year' => 1996, ], - [ - 'address' => '双清区', - 'start_year' => 1997, - 'end_year' => '', - ], - [ 'address' => '江东区', 'start_year' => 1982, 'end_year' => 1983, ], + + [ + 'address' => '双清区', + 'start_year' => 1997, + 'end_year' => '', + ], ], 430503 => [ + [ + 'address' => '西区', + 'start_year' => '', + 'end_year' => 1996, + ], + [ 'address' => '城南区', 'start_year' => 1982, @@ -39012,42 +39019,36 @@ 'start_year' => 1997, 'end_year' => '', ], + ], + 430504 => + [ [ - 'address' => '西区', + 'address' => '桥头区', 'start_year' => '', - 'end_year' => 1996, + 'end_year' => 1986, ], - ], - 430504 => - [ [ 'address' => '城北区', 'start_year' => 1982, 'end_year' => 1983, ], + ], + 430511 => + [ [ - 'address' => '桥头区', + 'address' => '郊区', 'start_year' => '', - 'end_year' => 1986, + 'end_year' => 1996, ], - ], - 430511 => - [ [ 'address' => '北塔区', 'start_year' => 1997, 'end_year' => '', ], - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1996, - ], ], 430521 => [ @@ -39067,17 +39068,17 @@ 430522 => [ - [ - 'address' => '新邵县', - 'start_year' => 1984, - 'end_year' => '', - ], - [ 'address' => '衡南县', 'start_year' => 1983, 'end_year' => 1983, ], + + [ + 'address' => '新邵县', + 'start_year' => 1984, + 'end_year' => '', + ], ], 430523 => [ @@ -39127,32 +39128,32 @@ 430526 => [ + [ + 'address' => '祁东县', + 'start_year' => 1983, + 'end_year' => 1983, + ], + [ 'address' => '武冈县', 'start_year' => 1986, 'end_year' => 1993, ], + ], + 430527 => + [ [ - 'address' => '祁东县', + 'address' => '耒阳县', 'start_year' => 1983, 'end_year' => 1983, ], - ], - 430527 => - [ [ 'address' => '绥宁县', 'start_year' => 1986, 'end_year' => '', ], - - [ - 'address' => '耒阳县', - 'start_year' => 1983, - 'end_year' => 1983, - ], ], 430528 => [ @@ -39208,32 +39209,32 @@ 430603 => [ - [ - 'address' => '云溪区', - 'start_year' => 1996, - 'end_year' => '', - ], - [ 'address' => '北区', 'start_year' => 1984, 'end_year' => 1995, ], - ], - 430611 => - [ [ - 'address' => '君山区', + 'address' => '云溪区', 'start_year' => 1996, 'end_year' => '', ], + ], + 430611 => + [ [ 'address' => '郊区', 'start_year' => 1984, 'end_year' => 1995, ], + + [ + 'address' => '君山区', + 'start_year' => 1996, + 'end_year' => '', + ], ], 430621 => [ @@ -40231,17 +40232,17 @@ 432500 => [ - [ - 'address' => '娄底地区', - 'start_year' => 1982, - 'end_year' => 1998, - ], - [ 'address' => '涟源地区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '娄底地区', + 'start_year' => 1982, + 'end_year' => 1998, + ], ], 432501 => [ @@ -40705,32 +40706,32 @@ 433000 => [ - [ - 'address' => '怀化地区', - 'start_year' => 1981, - 'end_year' => 1996, - ], - [ 'address' => '黔阳地区', 'start_year' => '', 'end_year' => 1980, ], - ], - 433001 => - [ [ - 'address' => '怀化市', - 'start_year' => 1982, + 'address' => '怀化地区', + 'start_year' => 1981, 'end_year' => 1996, ], + ], + 433001 => + [ [ 'address' => '洪江市', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '怀化市', + 'start_year' => 1982, + 'end_year' => 1996, + ], ], 433002 => [ @@ -40810,17 +40811,17 @@ 433027 => [ - [ - 'address' => '芷江侗族自治县', - 'start_year' => 1986, - 'end_year' => 1996, - ], - [ 'address' => '芷江县', 'start_year' => '', 'end_year' => 1985, ], + + [ + 'address' => '芷江侗族自治县', + 'start_year' => 1986, + 'end_year' => 1996, + ], ], 433028 => [ @@ -41137,17 +41138,17 @@ 440106 => [ - [ - 'address' => '天河区', - 'start_year' => 1988, - 'end_year' => '', - ], - [ 'address' => '芳村区', 'start_year' => 1985, 'end_year' => 1987, ], + + [ + 'address' => '天河区', + 'start_year' => 1988, + 'end_year' => '', + ], ], 440107 => [ @@ -41167,17 +41168,17 @@ 440111 => [ - [ - 'address' => '白云区', - 'start_year' => 1987, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1986, ], + + [ + 'address' => '白云区', + 'start_year' => 1987, + 'end_year' => '', + ], ], 440112 => [ @@ -41371,17 +41372,17 @@ 440203 => [ - [ - 'address' => '武江区', - 'start_year' => 2003, - 'end_year' => '', - ], - [ 'address' => '浈江区', 'start_year' => 1984, 'end_year' => 2002, ], + + [ + 'address' => '武江区', + 'start_year' => 2003, + 'end_year' => '', + ], ], 440204 => [ @@ -41947,17 +41948,17 @@ 440602 => [ - [ - 'address' => '城区', - 'start_year' => 1987, - 'end_year' => 2001, - ], - [ 'address' => '汾江区', 'start_year' => 1984, 'end_year' => 1986, ], + + [ + 'address' => '城区', + 'start_year' => 1987, + 'end_year' => 2001, + ], ], 440603 => [ @@ -43597,17 +43598,17 @@ 442401 => [ - [ - 'address' => '梅县市', - 'start_year' => 1983, - 'end_year' => 1987, - ], - [ 'address' => '梅州市', 'start_year' => '', 'end_year' => 1982, ], + + [ + 'address' => '梅县市', + 'start_year' => 1983, + 'end_year' => 1987, + ], ], 442421 => [ @@ -43802,14 +43803,14 @@ [ [ - 'address' => '佛山地区', - 'start_year' => 1982, + 'address' => '韶关地区', + 'start_year' => '', 'end_year' => 1982, ], [ - 'address' => '韶关地区', - 'start_year' => '', + 'address' => '佛山地区', + 'start_year' => 1982, 'end_year' => 1982, ], ], @@ -43817,14 +43818,14 @@ [ [ - 'address' => '三水县', - 'start_year' => 1982, + 'address' => '始兴县', + 'start_year' => '', 'end_year' => 1982, ], [ - 'address' => '始兴县', - 'start_year' => '', + 'address' => '三水县', + 'start_year' => 1982, 'end_year' => 1982, ], ], @@ -43832,14 +43833,14 @@ [ [ - 'address' => '南海县', - 'start_year' => 1982, + 'address' => '南雄县', + 'start_year' => '', 'end_year' => 1982, ], [ - 'address' => '南雄县', - 'start_year' => '', + 'address' => '南海县', + 'start_year' => 1982, 'end_year' => 1982, ], ], @@ -43862,14 +43863,14 @@ [ [ - 'address' => '中山县', - 'start_year' => 1982, + 'address' => '乐昌县', + 'start_year' => '', 'end_year' => 1982, ], [ - 'address' => '乐昌县', - 'start_year' => '', + 'address' => '中山县', + 'start_year' => 1982, 'end_year' => 1982, ], ], @@ -43877,14 +43878,14 @@ [ [ - 'address' => '斗门县', - 'start_year' => 1982, + 'address' => '连县', + 'start_year' => '', 'end_year' => 1982, ], [ - 'address' => '连县', - 'start_year' => '', + 'address' => '斗门县', + 'start_year' => 1982, 'end_year' => 1982, ], ], @@ -43892,14 +43893,14 @@ [ [ - 'address' => '新会县', - 'start_year' => 1982, + 'address' => '阳山县', + 'start_year' => '', 'end_year' => 1982, ], [ - 'address' => '阳山县', - 'start_year' => '', + 'address' => '新会县', + 'start_year' => 1982, 'end_year' => 1982, ], ], @@ -43907,14 +43908,14 @@ [ [ - 'address' => '台山县', - 'start_year' => 1982, + 'address' => '英德县', + 'start_year' => '', 'end_year' => 1982, ], [ - 'address' => '英德县', - 'start_year' => '', + 'address' => '台山县', + 'start_year' => 1982, 'end_year' => 1982, ], ], @@ -43922,14 +43923,14 @@ [ [ - 'address' => '恩平县', - 'start_year' => 1982, + 'address' => '清远县', + 'start_year' => '', 'end_year' => 1982, ], [ - 'address' => '清远县', - 'start_year' => '', + 'address' => '恩平县', + 'start_year' => 1982, 'end_year' => 1982, ], ], @@ -45313,6 +45314,12 @@ 450405 => [ + [ + 'address' => '鸳江区', + 'start_year' => '', + 'end_year' => 1983, + ], + [ 'address' => '市郊区', 'start_year' => 1984, @@ -45324,12 +45331,6 @@ 'start_year' => 2003, 'end_year' => '', ], - - [ - 'address' => '鸳江区', - 'start_year' => '', - 'end_year' => 1983, - ], ], 450406 => [ @@ -46852,17 +46853,17 @@ 452723 => [ - [ - 'address' => '罗城仫佬族自治县', - 'start_year' => 1983, - 'end_year' => 2001, - ], - [ 'address' => '罗城县', 'start_year' => '', 'end_year' => 1982, ], + + [ + 'address' => '罗城仫佬族自治县', + 'start_year' => 1983, + 'end_year' => 2001, + ], ], 452724 => [ @@ -47035,17 +47036,17 @@ 460001 => [ - [ - 'address' => '五指山市', - 'start_year' => 2001, - 'end_year' => 2002, - ], - [ 'address' => '通什市', 'start_year' => 1988, 'end_year' => 2000, ], + + [ + 'address' => '五指山市', + 'start_year' => 2001, + 'end_year' => 2002, + ], ], 460002 => [ @@ -48406,17 +48407,17 @@ 510216 => [ - [ - 'address' => '万盛区', - 'start_year' => 1993, - 'end_year' => 1996, - ], - [ 'address' => '南桐矿区', 'start_year' => '', 'end_year' => 1992, ], + + [ + 'address' => '万盛区', + 'start_year' => 1993, + 'end_year' => 1996, + ], ], 510217 => [ @@ -48646,17 +48647,17 @@ 510400 => [ - [ - 'address' => '攀枝花市', - 'start_year' => 1987, - 'end_year' => '', - ], - [ 'address' => '渡口市', 'start_year' => '', 'end_year' => 1986, ], + + [ + 'address' => '攀枝花市', + 'start_year' => 1987, + 'end_year' => '', + ], ], 510402 => [ @@ -48679,17 +48680,17 @@ 510411 => [ - [ - 'address' => '仁和区', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '仁和区', + 'start_year' => 1982, + 'end_year' => '', + ], ], 510421 => [ @@ -49048,17 +49049,17 @@ 510802 => [ - [ - 'address' => '利州区', - 'start_year' => 2007, - 'end_year' => '', - ], - [ 'address' => '市中区', 'start_year' => 1985, 'end_year' => 2006, ], + + [ + 'address' => '利州区', + 'start_year' => 2007, + 'end_year' => '', + ], ], 510811 => [ @@ -50194,62 +50195,62 @@ 512100 => [ - [ - 'address' => '永川地区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '温江地区', 'start_year' => '', 'end_year' => 1981, ], - ], - 512121 => - [ [ - 'address' => '江津县', + 'address' => '永川地区', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 512121 => + [ [ 'address' => '温江县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512122 => - [ [ - 'address' => '合川县', + 'address' => '江津县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 512122 => + [ [ 'address' => '郫县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512123 => - [ [ - 'address' => '潼南县', + 'address' => '合川县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 512123 => + [ [ 'address' => '灌县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '潼南县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 512124 => [ @@ -50284,17 +50285,17 @@ 512126 => [ - [ - 'address' => '大足县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '广汉县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '大足县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 512127 => [ @@ -50365,32 +50366,32 @@ 512200 => [ - [ - 'address' => '万县地区', - 'start_year' => 1982, - 'end_year' => 1991, - ], - [ 'address' => '绵阳地区', 'start_year' => '', 'end_year' => 1981, ], - ], - 512201 => - [ [ - 'address' => '万县市', + 'address' => '万县地区', 'start_year' => 1982, 'end_year' => 1991, ], + ], + 512201 => + [ [ 'address' => '绵阳市', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '万县市', + 'start_year' => 1982, + 'end_year' => 1991, + ], ], 512202 => [ @@ -50404,32 +50405,32 @@ 512221 => [ - [ - 'address' => '万县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - [ 'address' => '江油县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512222 => - [ [ - 'address' => '开县', + 'address' => '万县', 'start_year' => 1982, 'end_year' => 1991, ], + ], + 512222 => + [ [ 'address' => '青川县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '开县', + 'start_year' => 1982, + 'end_year' => 1991, + ], ], 512223 => [ @@ -50464,17 +50465,17 @@ 512225 => [ - [ - 'address' => '云阳县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - [ 'address' => '旺苍县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '云阳县', + 'start_year' => 1982, + 'end_year' => 1991, + ], ], 512226 => [ @@ -50494,17 +50495,17 @@ 512227 => [ - [ - 'address' => '巫山县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - [ 'address' => '梓潼县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '巫山县', + 'start_year' => 1982, + 'end_year' => 1991, + ], ], 512228 => [ @@ -50524,17 +50525,17 @@ 512229 => [ - [ - 'address' => '城口县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - [ 'address' => '盐亭县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '城口县', + 'start_year' => 1982, + 'end_year' => 1991, + ], ], 512230 => [ @@ -50680,35 +50681,41 @@ 512323 => [ + [ + 'address' => '安岳县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '南川县', 'start_year' => 1982, 'end_year' => 1993, ], + ], + 512324 => + [ [ - 'address' => '安岳县', + 'address' => '威远县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512324 => - [ [ 'address' => '丰都县', 'start_year' => 1982, 'end_year' => 1994, ], + ], + 512325 => + [ [ - 'address' => '威远县', + 'address' => '资中县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512325 => - [ [ 'address' => '石柱县', @@ -50721,30 +50728,30 @@ 'start_year' => 1983, 'end_year' => 1987, ], + ], + 512326 => + [ [ - 'address' => '资中县', + 'address' => '资阳县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512326 => - [ [ 'address' => '武隆县', 'start_year' => 1982, 'end_year' => 1994, ], + ], + 512327 => + [ [ - 'address' => '资阳县', + 'address' => '简阳县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512327 => - [ [ 'address' => '彭水县', @@ -50757,12 +50764,6 @@ 'start_year' => 1983, 'end_year' => 1987, ], - - [ - 'address' => '简阳县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 512328 => [ @@ -50812,32 +50813,32 @@ 512400 => [ - [ - 'address' => '内江地区', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '宜宾地区', 'start_year' => '', 'end_year' => 1981, ], - ], - 512401 => - [ [ - 'address' => '内江市', + 'address' => '内江地区', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 512401 => + [ [ 'address' => '宜宾市', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '内江市', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 512402 => [ @@ -50851,17 +50852,17 @@ 512421 => [ - [ - 'address' => '内江县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '宜宾县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '内江县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 512422 => [ @@ -50881,17 +50882,17 @@ 512423 => [ - [ - 'address' => '资阳县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '隆昌县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '资阳县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 512424 => [ @@ -50911,17 +50912,17 @@ 512425 => [ - [ - 'address' => '威远县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '江安县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '威远县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 512426 => [ @@ -50941,32 +50942,32 @@ 512427 => [ - [ - 'address' => '安岳县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '泸县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512428 => - [ [ - 'address' => '乐至县', + 'address' => '安岳县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 512428 => + [ [ 'address' => '合江县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '乐至县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 512429 => [ @@ -51097,17 +51098,17 @@ 512522 => [ - [ - 'address' => '富顺县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '洪雅县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '富顺县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 512523 => [ @@ -51127,47 +51128,47 @@ 512524 => [ + [ + 'address' => '青神县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '纳溪县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 512525 => + [ [ - 'address' => '青神县', + 'address' => '眉山县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512525 => - [ [ 'address' => '叙永县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 512526 => + [ [ - 'address' => '眉山县', + 'address' => '彭山县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512526 => - [ [ 'address' => '古蔺县', 'start_year' => 1982, 'end_year' => 1984, ], - - [ - 'address' => '彭山县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 512527 => [ @@ -51202,17 +51203,17 @@ 512529 => [ - [ - 'address' => '江安县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - [ 'address' => '犍为县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '江安县', + 'start_year' => 1982, + 'end_year' => 1995, + ], ], 512530 => [ @@ -51247,17 +51248,17 @@ 512532 => [ - [ - 'address' => '筠连县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - [ 'address' => '金口河工农区', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '筠连县', + 'start_year' => 1982, + 'end_year' => 1995, + ], ], 512533 => [ @@ -51277,17 +51278,17 @@ 512534 => [ - [ - 'address' => '兴文县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - [ 'address' => '马边县', 'start_year' => 1981, 'end_year' => 1981, ], + + [ + 'address' => '兴文县', + 'start_year' => 1982, + 'end_year' => 1995, + ], ], 512535 => [ @@ -51302,9 +51303,9 @@ [ [ - 'address' => '乐山地区', - 'start_year' => 1982, - 'end_year' => 1984, + 'address' => '江津地区', + 'start_year' => '', + 'end_year' => 1980, ], [ @@ -51314,9 +51315,9 @@ ], [ - 'address' => '江津地区', - 'start_year' => '', - 'end_year' => 1980, + 'address' => '乐山地区', + 'start_year' => 1982, + 'end_year' => 1984, ], ], 512601 => @@ -51331,17 +51332,17 @@ 512621 => [ - [ - 'address' => '仁寿县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '永川县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '仁寿县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 512622 => [ @@ -51361,62 +51362,62 @@ 512623 => [ - [ - 'address' => '犍为县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '铜梁县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512624 => - [ [ - 'address' => '井研县', + 'address' => '犍为县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 512624 => + [ [ 'address' => '合川县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512625 => - [ [ - 'address' => '峨眉县', + 'address' => '井研县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 512625 => + [ [ 'address' => '潼南县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512626 => - [ [ - 'address' => '夹江县', + 'address' => '峨眉县', 'start_year' => 1982, 'end_year' => 1984, ], + ], + 512626 => + [ [ 'address' => '璧山县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '夹江县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 512627 => [ @@ -51436,17 +51437,17 @@ 512628 => [ - [ - 'address' => '彭山县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '荣昌县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '彭山县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 512629 => [ @@ -51577,92 +51578,92 @@ 512724 => [ - [ - 'address' => '广汉县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - [ 'address' => '石柱县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512725 => - [ [ - 'address' => '什邡县', + 'address' => '广汉县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 512725 => + [ [ 'address' => '秀山县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512726 => - [ [ - 'address' => '彭县', + 'address' => '什邡县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 512726 => + [ [ 'address' => '酉阳县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512727 => - [ [ - 'address' => '灌县', + 'address' => '彭县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 512727 => + [ [ 'address' => '黔江县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512728 => - [ [ - 'address' => '崇庆县', + 'address' => '灌县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 512728 => + [ [ 'address' => '彭水县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512729 => - [ [ - 'address' => '大邑县', + 'address' => '崇庆县', 'start_year' => 1982, 'end_year' => 1982, ], + ], + 512729 => + [ [ 'address' => '武隆县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '大邑县', + 'start_year' => 1982, + 'end_year' => 1982, + ], ], 512730 => [ @@ -51814,17 +51815,17 @@ 512826 => [ - [ - 'address' => '剑阁县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - [ 'address' => '奉节县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '剑阁县', + 'start_year' => 1982, + 'end_year' => 1984, + ], ], 512827 => [ @@ -51991,32 +51992,32 @@ 512922 => [ - [ - 'address' => '南部县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - [ 'address' => '苍溪县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512923 => - [ [ - 'address' => '岳池县', + 'address' => '南部县', 'start_year' => 1982, 'end_year' => 1992, ], + ], + 512923 => + [ [ 'address' => '阆中县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '岳池县', + 'start_year' => 1982, + 'end_year' => 1992, + ], ], 512924 => [ @@ -52051,47 +52052,47 @@ 512926 => [ - [ - 'address' => '蓬安县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - [ 'address' => '西充县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512927 => - [ [ - 'address' => '仪陇县', + 'address' => '蓬安县', 'start_year' => 1982, 'end_year' => 1992, ], + ], + 512927 => + [ [ 'address' => '营山县', 'start_year' => '', 'end_year' => 1981, ], - ], - 512928 => - [ [ - 'address' => '武胜县', + 'address' => '仪陇县', 'start_year' => 1982, 'end_year' => 1992, ], + ], + 512928 => + [ [ 'address' => '蓬安县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '武胜县', + 'start_year' => 1982, + 'end_year' => 1992, + ], ], 512929 => [ @@ -52228,62 +52229,62 @@ 513024 => [ - [ - 'address' => '万源县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - [ 'address' => '开江县', 'start_year' => '', 'end_year' => 1981, ], - ], - 513025 => - [ [ - 'address' => '通江县', + 'address' => '万源县', 'start_year' => 1982, 'end_year' => 1992, ], + ], + 513025 => + [ [ 'address' => '邻水县', 'start_year' => '', 'end_year' => 1981, ], - ], - 513026 => - [ [ - 'address' => '南江县', + 'address' => '通江县', 'start_year' => 1982, 'end_year' => 1992, ], + ], + 513026 => + [ [ 'address' => '大竹县', 'start_year' => '', 'end_year' => 1981, ], - ], - 513027 => - [ [ - 'address' => '巴中县', + 'address' => '南江县', 'start_year' => 1982, 'end_year' => 1992, ], + ], + 513027 => + [ [ 'address' => '渠县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '巴中县', + 'start_year' => 1982, + 'end_year' => 1992, + ], ], 513028 => [ @@ -52303,17 +52304,17 @@ 513029 => [ - [ - 'address' => '大竹县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - [ 'address' => '巴中县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '大竹县', + 'start_year' => 1982, + 'end_year' => 1998, + ], ], 513030 => [ @@ -52384,17 +52385,17 @@ 513122 => [ - [ - 'address' => '名山县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '芦山县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '名山县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 513123 => [ @@ -52414,17 +52415,17 @@ 513124 => [ - [ - 'address' => '汉源县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '荥经县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '汉源县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 513125 => [ @@ -52444,17 +52445,17 @@ 513126 => [ - [ - 'address' => '天全县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - [ 'address' => '石棉县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '天全县', + 'start_year' => 1982, + 'end_year' => 1999, + ], ], 513127 => [ @@ -52483,17 +52484,17 @@ 513200 => [ - [ - 'address' => '阿坝藏族羌族自治州', - 'start_year' => 1987, - 'end_year' => '', - ], - [ 'address' => '阿坝藏族自治州', 'start_year' => '', 'end_year' => 1986, ], + + [ + 'address' => '阿坝藏族羌族自治州', + 'start_year' => 1987, + 'end_year' => '', + ], ], 513201 => [ @@ -52513,40 +52514,40 @@ 513221 => [ - [ - 'address' => '汶川县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '马尔康县', 'start_year' => '', 'end_year' => 1981, ], - ], - 513222 => - [ [ - 'address' => '理县', + 'address' => '汶川县', 'start_year' => 1982, 'end_year' => '', ], + ], + 513222 => + [ [ 'address' => '红原县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '理县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 513223 => [ [ - 'address' => '茂县', - 'start_year' => 1987, - 'end_year' => '', + 'address' => '阿坝县', + 'start_year' => '', + 'end_year' => 1981, ], [ @@ -52556,33 +52557,33 @@ ], [ - 'address' => '阿坝县', - 'start_year' => '', - 'end_year' => 1981, + 'address' => '茂县', + 'start_year' => 1987, + 'end_year' => '', ], ], 513224 => [ - [ - 'address' => '松潘县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '若尔盖县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '松潘县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 513225 => [ [ - 'address' => '九寨沟县', - 'start_year' => 1997, - 'end_year' => '', + 'address' => '黑水县', + 'start_year' => '', + 'end_year' => 1981, ], [ @@ -52592,9 +52593,9 @@ ], [ - 'address' => '黑水县', - 'start_year' => '', - 'end_year' => 1981, + 'address' => '九寨沟县', + 'start_year' => 1997, + 'end_year' => '', ], ], 513226 => @@ -52660,17 +52661,17 @@ 513230 => [ - [ - 'address' => '壤塘县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '理县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '壤塘县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 513231 => [ @@ -52690,17 +52691,17 @@ 513232 => [ - [ - 'address' => '若尔盖县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '金川县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '若尔盖县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 513233 => [ @@ -52747,47 +52748,47 @@ 513322 => [ - [ - 'address' => '泸定县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '炉霍县', 'start_year' => '', 'end_year' => 1981, ], - ], - 513323 => - [ [ - 'address' => '丹巴县', + 'address' => '泸定县', 'start_year' => 1982, 'end_year' => '', ], + ], + 513323 => + [ [ 'address' => '甘孜县', 'start_year' => '', 'end_year' => 1981, ], - ], - 513324 => - [ [ - 'address' => '九龙县', + 'address' => '丹巴县', 'start_year' => 1982, 'end_year' => '', ], + ], + 513324 => + [ [ 'address' => '新龙县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '九龙县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 513325 => [ @@ -52822,47 +52823,47 @@ 513327 => [ - [ - 'address' => '炉霍县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '石渠县', 'start_year' => '', 'end_year' => 1981, ], - ], - 513328 => - [ [ - 'address' => '甘孜县', + 'address' => '炉霍县', 'start_year' => 1982, 'end_year' => '', ], + ], + 513328 => + [ [ 'address' => '色达县', 'start_year' => '', 'end_year' => 1981, ], - ], - 513329 => - [ [ - 'address' => '新龙县', + 'address' => '甘孜县', 'start_year' => 1982, 'end_year' => '', ], + ], + 513329 => + [ [ 'address' => '泸定县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '新龙县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 513330 => [ @@ -52897,32 +52898,32 @@ 513332 => [ - [ - 'address' => '石渠县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '雅江县', 'start_year' => '', 'end_year' => 1981, ], - ], - 513333 => - [ [ - 'address' => '色达县', + 'address' => '石渠县', 'start_year' => 1982, 'end_year' => '', ], + ], + 513333 => + [ [ 'address' => '道孚县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '色达县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 513334 => [ @@ -52951,17 +52952,17 @@ 513336 => [ - [ - 'address' => '乡城县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '稻城县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '乡城县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 513337 => [ @@ -53062,32 +53063,32 @@ 513425 => [ - [ - 'address' => '会理县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '马边县', 'start_year' => '', 'end_year' => 1980, ], - ], - 513426 => - [ [ - 'address' => '会东县', + 'address' => '会理县', 'start_year' => 1982, 'end_year' => '', ], + ], + 513426 => + [ [ 'address' => '雷波县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '会东县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 513427 => [ @@ -53146,47 +53147,47 @@ 513431 => [ - [ - 'address' => '昭觉县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '美姑县', 'start_year' => '', 'end_year' => 1981, ], - ], - 513432 => - [ [ - 'address' => '喜德县', + 'address' => '昭觉县', 'start_year' => 1982, 'end_year' => '', ], + ], + 513432 => + [ [ 'address' => '金阳县', 'start_year' => '', 'end_year' => 1981, ], - ], - 513433 => - [ [ - 'address' => '冕宁县', + 'address' => '喜德县', 'start_year' => 1982, 'end_year' => '', ], + ], + 513433 => + [ [ 'address' => '布拖县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '冕宁县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 513434 => [ @@ -53221,17 +53222,17 @@ 513436 => [ - [ - 'address' => '美姑县', - 'start_year' => 1982, - 'end_year' => '', - ], - [ 'address' => '越西县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '美姑县', + 'start_year' => 1982, + 'end_year' => '', + ], ], 513437 => [ @@ -54364,32 +54365,32 @@ 522125 => [ - [ - 'address' => '道真仡佬族苗族自治县', - 'start_year' => 1986, - 'end_year' => 1996, - ], - [ 'address' => '道真县', 'start_year' => '', 'end_year' => 1985, ], - ], - 522126 => - [ [ - 'address' => '务川仡佬族苗族自治县', + 'address' => '道真仡佬族苗族自治县', 'start_year' => 1986, 'end_year' => 1996, ], + ], + 522126 => + [ [ 'address' => '务川县', 'start_year' => '', 'end_year' => 1985, ], + + [ + 'address' => '务川仡佬族苗族自治县', + 'start_year' => 1986, + 'end_year' => 1996, + ], ], 522127 => [ @@ -54484,17 +54485,17 @@ 522223 => [ - [ - 'address' => '玉屏侗族自治县', - 'start_year' => 1983, - 'end_year' => 2010, - ], - [ 'address' => '玉屏县', 'start_year' => '', 'end_year' => 1982, ], + + [ + 'address' => '玉屏侗族自治县', + 'start_year' => 1983, + 'end_year' => 2010, + ], ], 522224 => [ @@ -54634,62 +54635,62 @@ 522325 => [ - [ - 'address' => '贞丰县', - 'start_year' => 1981, - 'end_year' => '', - ], - [ 'address' => '贞丰布依族苗族自治县', 'start_year' => '', 'end_year' => 1980, ], - ], - 522326 => - [ [ - 'address' => '望谟县', + 'address' => '贞丰县', 'start_year' => 1981, 'end_year' => '', ], + ], + 522326 => + [ [ 'address' => '望谟布依族苗族自治县', 'start_year' => '', 'end_year' => 1980, ], - ], - 522327 => - [ [ - 'address' => '册亨县', + 'address' => '望谟县', 'start_year' => 1981, 'end_year' => '', ], + ], + 522327 => + [ [ 'address' => '册亨布依族自治县', 'start_year' => '', 'end_year' => 1980, ], - ], - 522328 => - [ [ - 'address' => '安龙县', + 'address' => '册亨县', 'start_year' => 1981, 'end_year' => '', ], + ], + 522328 => + [ [ 'address' => '安龙布依族苗族自治县', 'start_year' => '', 'end_year' => 1980, ], + + [ + 'address' => '安龙县', + 'start_year' => 1981, + 'end_year' => '', + ], ], 522400 => [ @@ -55285,17 +55286,17 @@ 530121 => [ - [ - 'address' => '呈贡县', - 'start_year' => 1982, - 'end_year' => 2010, - ], - [ 'address' => '安宁县', 'start_year' => '', 'end_year' => 1981, ], + + [ + 'address' => '呈贡县', + 'start_year' => 1982, + 'end_year' => 2010, + ], ], 530122 => [ @@ -55315,32 +55316,32 @@ 530123 => [ + [ + 'address' => '富民县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '安宁县', 'start_year' => 1982, 'end_year' => 1994, ], + ], + 530124 => + [ [ - 'address' => '富民县', + 'address' => '晋宁县', 'start_year' => '', 'end_year' => 1981, ], - ], - 530124 => - [ [ 'address' => '富民县', 'start_year' => 1982, 'end_year' => '', ], - - [ - 'address' => '晋宁县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 530125 => [ @@ -55354,17 +55355,17 @@ 530126 => [ - [ - 'address' => '石林彝族自治县', - 'start_year' => 1998, - 'end_year' => '', - ], - [ 'address' => '路南彝族自治县', 'start_year' => 1983, 'end_year' => 1997, ], + + [ + 'address' => '石林彝族自治县', + 'start_year' => 1998, + 'end_year' => '', + ], ], 530127 => [ @@ -55876,32 +55877,32 @@ 530802 => [ - [ - 'address' => '思茅区', - 'start_year' => 2007, - 'end_year' => '', - ], - [ 'address' => '翠云区', 'start_year' => 2003, 'end_year' => 2006, ], - ], - 530821 => - [ [ - 'address' => '宁洱哈尼族彝族自治县', + 'address' => '思茅区', 'start_year' => 2007, 'end_year' => '', ], + ], + 530821 => + [ [ 'address' => '普洱哈尼族彝族自治县', 'start_year' => 2003, 'end_year' => 2006, ], + + [ + 'address' => '宁洱哈尼族彝族自治县', + 'start_year' => 2007, + 'end_year' => '', + ], ], 530822 => [ @@ -56851,17 +56852,17 @@ 532725 => [ - [ - 'address' => '景谷傣族彝族自治县', - 'start_year' => 1985, - 'end_year' => 2002, - ], - [ 'address' => '景谷县', 'start_year' => '', 'end_year' => 1984, ], + + [ + 'address' => '景谷傣族彝族自治县', + 'start_year' => 1985, + 'end_year' => 2002, + ], ], 532726 => [ @@ -57322,47 +57323,47 @@ 533321 => [ + [ + 'address' => '碧江县', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '泸水县', 'start_year' => 1982, 'end_year' => 2015, ], + ], + 533322 => + [ [ - 'address' => '碧江县', + 'address' => '福贡县', 'start_year' => '', 'end_year' => 1981, ], - ], - 533322 => - [ [ 'address' => '碧江县', 'start_year' => 1982, 'end_year' => 1985, ], + ], + 533323 => + [ [ - 'address' => '福贡县', + 'address' => '贡山独龙族怒族自治县', 'start_year' => '', 'end_year' => 1981, ], - ], - 533323 => - [ [ 'address' => '福贡县', 'start_year' => 1982, 'end_year' => '', ], - - [ - 'address' => '贡山独龙族怒族自治县', - 'start_year' => '', - 'end_year' => 1981, - ], ], 533324 => [ @@ -57439,17 +57440,17 @@ 533423 => [ - [ - 'address' => '维西傈僳族自治县', - 'start_year' => 1985, - 'end_year' => '', - ], - [ 'address' => '维西县', 'start_year' => '', 'end_year' => 1984, ], + + [ + 'address' => '维西傈僳族自治县', + 'start_year' => 1985, + 'end_year' => '', + ], ], 533500 => [ @@ -58468,17 +58469,17 @@ 542225 => [ - [ - 'address' => '琼结县', - 'start_year' => 1986, - 'end_year' => 2015, - ], - [ 'address' => '穷结县', 'start_year' => '', 'end_year' => 1985, ], + + [ + 'address' => '琼结县', + 'start_year' => 1986, + 'end_year' => 2015, + ], ], 542226 => [ @@ -59263,17 +59264,17 @@ 610203 => [ - [ - 'address' => '印台区', - 'start_year' => 2000, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 1999, ], + + [ + 'address' => '印台区', + 'start_year' => 2000, + 'end_year' => '', + ], ], 610204 => [ @@ -63442,17 +63443,17 @@ 640104 => [ - [ - 'address' => '兴庆区', - 'start_year' => 2002, - 'end_year' => '', - ], - [ 'address' => '郊区', 'start_year' => '', 'end_year' => 2001, ], + + [ + 'address' => '兴庆区', + 'start_year' => 2002, + 'end_year' => '', + ], ], 640105 => [ @@ -63535,12 +63536,6 @@ 640205 => [ - [ - 'address' => '惠农区', - 'start_year' => 2003, - 'end_year' => '', - ], - [ 'address' => '石咀山区', 'start_year' => '', @@ -63552,6 +63547,12 @@ 'start_year' => 1987, 'end_year' => 2002, ], + + [ + 'address' => '惠农区', + 'start_year' => 2003, + 'end_year' => '', + ], ], 640211 => [ @@ -64384,32 +64385,32 @@ 652401 => [ + [ + 'address' => '奎屯市', + 'start_year' => '', + 'end_year' => 1981, + ], + [ 'address' => '伊宁市', 'start_year' => 1982, 'end_year' => 1983, ], + ], + 652402 => + [ [ - 'address' => '奎屯市', + 'address' => '伊宁市', 'start_year' => '', 'end_year' => 1981, ], - ], - 652402 => - [ [ 'address' => '一区', 'start_year' => 1982, 'end_year' => 1982, ], - - [ - 'address' => '伊宁市', - 'start_year' => '', - 'end_year' => 1981, - ], ], 652403 => [ From 19fefaa7019bd1f9ba2255228864444a4d64d894 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 24 Oct 2018 20:17:11 +0800 Subject: [PATCH 077/128] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9fc2d95..9b8aa2e 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ [![Build Status](https://travis-ci.org/jxlwqq/id-validator.svg?branch=master)](https://travis-ci.org/jxlwqq/id-validator) [![StyleCI](https://github.styleci.io/repos/147758862/shield?branch=master)](https://github.styleci.io/repos/147758862) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/jxlwqq/id-validator/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/jxlwqq/id-validator/?branch=master) +[![Maintainability](https://api.codeclimate.com/v1/badges/98880a5cb713e2652450/maintainability)](https://codeclimate.com/github/jxlwqq/id-validator/maintainability) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fjxlwqq%2Fid-validator.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fjxlwqq%2Fid-validator?ref=badge_shield) ## 安装 From 1791114e1b661d63bac02a5d61b6ebdb66e6ef9f Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 25 Oct 2018 14:57:00 +0800 Subject: [PATCH 078/128] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E7=94=A8=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/IdValidatorTest.php | 84 ++++++++++++++++++++++++++++++--------- 1 file changed, 66 insertions(+), 18 deletions(-) diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 7a74402..71ca0b9 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -31,6 +31,7 @@ public function testIsValid() $this->assertFalse($this->idValidator->isValid('440308199901101513')); // 验证码不合法 $this->assertFalse($this->idValidator->isValid('610104620932690')); // 验证码不合法 $this->assertTrue($this->idValidator->isValid('440308199901101512')); + $this->assertTrue($this->idValidator->isValid('500154199301135886')); $this->assertTrue($this->idValidator->isValid('610104620927690')); } @@ -52,30 +53,77 @@ public function testGetInfo() { $this->assertEquals( [ - 'addressCode' => '440308', - 'abandoned' => 0, - 'address' => '广东省深圳市盐田区', - 'birthdayCode' => '1999-01-10', - 'constellation' => '摩羯座', - 'chineseZodiac' => '卯兔', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '2', ], + 'addressCode' => '440308', + 'abandoned' => 0, + 'address' => '广东省深圳市盐田区', + 'birthdayCode' => '1999-01-10', + 'constellation' => '摩羯座', + 'chineseZodiac' => '卯兔', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '2',], $this->idValidator->getInfo('440308199901101512') ); + + $this->assertEquals( + [ + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省宜春地区丰城县', + 'birthdayCode' => '1980-01-01', + 'constellation' => '摩羯座', + 'chineseZodiac' => '申猴', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '4', + ], + $this->idValidator->getInfo('362324198001010014') + ); + + $this->assertEquals( + [ + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省宜春地区丰城县', + 'birthdayCode' => '1981-01-01', + 'constellation' => '摩羯座', + 'chineseZodiac' => '酉鸡', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '1',], + $this->idValidator->getInfo('362324198101010011') + ); + + + $this->assertEquals( + [ + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省上饶地区铅山县', + 'birthdayCode' => '1982-01-01', + 'constellation' => '摩羯座', + 'chineseZodiac' => '戌狗', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '9', + ], + $this->idValidator->getInfo('362324198201010019') + ); + + $this->assertFalse($this->idValidator->isValid('440308199901101513')); $this->assertEquals( [ - 'addressCode' => '610104', - 'abandoned' => 0, - 'address' => '陕西省西安市莲湖区', - 'birthdayCode' => '1962-09-27', - 'constellation' => '天秤座', - 'chineseZodiac' => '寅虎', - 'sex' => 0, - 'length' => 15, - 'checkBit' => '', ], + 'addressCode' => '610104', + 'abandoned' => 0, + 'address' => '陕西省西安市莲湖区', + 'birthdayCode' => '1962-09-27', + 'constellation' => '天秤座', + 'chineseZodiac' => '寅虎', + 'sex' => 0, + 'length' => 15, + 'checkBit' => '',], $this->idValidator->getInfo('610104620927690') ); $this->assertFalse($this->idValidator->isValid('610104620932690')); From c5126888dc455899424b8b81c9b713822da31559 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 25 Oct 2018 14:57:38 +0800 Subject: [PATCH 079/128] [Refactor] _getAddress function --- src/Helper.php | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index efd2793..4379dd0 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -57,15 +57,12 @@ private function _getAddress($addressCode, $birthdayCode) $address = ''; if (isset($this->_addressCodeTimeline[$addressCode])) { $timeline = $this->_addressCodeTimeline[$addressCode]; - $firstStartYear = $timeline[0]['start_year']; $year = substr($birthdayCode, 0, 4); - if ($year < $firstStartYear) { - $address = $timeline[0]['address']; - } else { - foreach ($timeline as $val) { - if ($year >= $val['start_year']) { - $address = $val['address']; - } + foreach ($timeline as $key => $val) { + if (($key == 0 && $year < $val['start_year']) || $year >= $val['start_year']) { + $address = $val['address']; + } else { + break; } } } From 7172b4e658a83e42b68d70e1c43632cb0cd57c21 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 25 Oct 2018 15:10:25 +0800 Subject: [PATCH 080/128] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/IdValidatorTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 71ca0b9..7a86e4c 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -27,9 +27,9 @@ public function testIsValid() { $this->assertFalse($this->idValidator->isValid('44030819990110')); // 号码位数不合法 $this->assertFalse($this->idValidator->isValid('111111199901101512')); // 地址码不合法 - $this->assertFalse($this->idValidator->isValid('440308199902301512')); // 出生日期码错不合法 + $this->assertFalse($this->idValidator->isValid('440308199902301512')); // 出生日期码不合法 $this->assertFalse($this->idValidator->isValid('440308199901101513')); // 验证码不合法 - $this->assertFalse($this->idValidator->isValid('610104620932690')); // 验证码不合法 + $this->assertFalse($this->idValidator->isValid('610104620932690')); // 出生日期码不合法 $this->assertTrue($this->idValidator->isValid('440308199901101512')); $this->assertTrue($this->idValidator->isValid('500154199301135886')); $this->assertTrue($this->idValidator->isValid('610104620927690')); From 0e16f52fa292118adfac3478d872b5430c0b8b46 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 25 Oct 2018 07:13:41 +0000 Subject: [PATCH 081/128] Apply fixes from StyleCI --- tests/IdValidatorTest.php | 72 +++++++++++++++++++-------------------- 1 file changed, 35 insertions(+), 37 deletions(-) diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 7a86e4c..5bad3b8 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -53,77 +53,75 @@ public function testGetInfo() { $this->assertEquals( [ - 'addressCode' => '440308', - 'abandoned' => 0, - 'address' => '广东省深圳市盐田区', - 'birthdayCode' => '1999-01-10', + 'addressCode' => '440308', + 'abandoned' => 0, + 'address' => '广东省深圳市盐田区', + 'birthdayCode' => '1999-01-10', 'constellation' => '摩羯座', 'chineseZodiac' => '卯兔', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '2',], + 'sex' => 1, + 'length' => 18, + 'checkBit' => '2', ], $this->idValidator->getInfo('440308199901101512') ); $this->assertEquals( [ - 'addressCode' => '362324', - 'abandoned' => 1, - 'address' => '江西省宜春地区丰城县', - 'birthdayCode' => '1980-01-01', + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省宜春地区丰城县', + 'birthdayCode' => '1980-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '申猴', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '4', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '4', ], $this->idValidator->getInfo('362324198001010014') ); $this->assertEquals( [ - 'addressCode' => '362324', - 'abandoned' => 1, - 'address' => '江西省宜春地区丰城县', - 'birthdayCode' => '1981-01-01', + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省宜春地区丰城县', + 'birthdayCode' => '1981-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '酉鸡', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '1',], + 'sex' => 1, + 'length' => 18, + 'checkBit' => '1', ], $this->idValidator->getInfo('362324198101010011') ); - $this->assertEquals( [ - 'addressCode' => '362324', - 'abandoned' => 1, - 'address' => '江西省上饶地区铅山县', - 'birthdayCode' => '1982-01-01', + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省上饶地区铅山县', + 'birthdayCode' => '1982-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '戌狗', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '9', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '9', ], $this->idValidator->getInfo('362324198201010019') ); - $this->assertFalse($this->idValidator->isValid('440308199901101513')); $this->assertEquals( [ - 'addressCode' => '610104', - 'abandoned' => 0, - 'address' => '陕西省西安市莲湖区', - 'birthdayCode' => '1962-09-27', + 'addressCode' => '610104', + 'abandoned' => 0, + 'address' => '陕西省西安市莲湖区', + 'birthdayCode' => '1962-09-27', 'constellation' => '天秤座', 'chineseZodiac' => '寅虎', - 'sex' => 0, - 'length' => 15, - 'checkBit' => '',], + 'sex' => 0, + 'length' => 15, + 'checkBit' => '', ], $this->idValidator->getInfo('610104620927690') ); $this->assertFalse($this->idValidator->isValid('610104620932690')); From 56ca9e86dc1a2c5503c0a20275b953134fce16ec Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 27 Oct 2018 20:04:37 +0800 Subject: [PATCH 082/128] Fix --- src/Helper.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 4379dd0..60ddfac 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -61,8 +61,6 @@ private function _getAddress($addressCode, $birthdayCode) foreach ($timeline as $key => $val) { if (($key == 0 && $year < $val['start_year']) || $year >= $val['start_year']) { $address = $val['address']; - } else { - break; } } } From 9fca83504cd5469139d1e497604fa8842fc5ca5d Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 29 Oct 2018 14:04:20 +0800 Subject: [PATCH 083/128] =?UTF-8?q?getInfo=20=E8=BF=94=E5=9B=9E=E5=80=BC?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=9C=81=E5=B8=82=E5=8C=BA=E4=B8=89=E7=BA=A7?= =?UTF-8?q?=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 21 ++++++++++++--------- src/IdValidator.php | 1 + tests/IdValidatorTest.php | 5 +++++ 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 9b8aa2e..98f9bb2 100644 --- a/README.md +++ b/README.md @@ -54,15 +54,16 @@ $idValidator->getInfo('610104620927690'); // 15 位 ```php [ -'addressCode' => '440308', // 地址码 -'abandoned' => 0, // 地址码是否废弃,1 为废弃的,0 为正在使用的 -'address' => '广东省深圳市盐田区', // 地址 -'birthdayCode' => '1999-01-10', // 出生日期 -'constellation' => '水瓶座', // 星座 -'chineseZodiac' => '卯兔', // 生肖 -'sex' => 1, // 性别,1 为男性,0 为女性 -'length' => 18, // 号码长度 -'checkBit' => '2', // 校验码 +'addressCode' => '440308', // 地址码 +'abandoned' => 0, // 地址码是否废弃,1 为废弃的,0 为正在使用的 +'address' => '广东省深圳市盐田区', // 地址 +'address_tree' => ['广东省', '深圳市', '盐田区'] // 省市区三级列表 +'birthdayCode' => '1999-01-10', // 出生日期 +'constellation' => '水瓶座', // 星座 +'chineseZodiac' => '卯兔', // 生肖 +'sex' => 1, // 性别,1 为男性,0 为女性 +'length' => 18, // 号码长度 +'checkBit' => '2', // 校验码 ] ``` @@ -125,6 +126,8 @@ $idValidator->upgradeId('610104620927690'); // 15 位号码升级为 18 位 * 1.4.11 支持 15 位身份证号码升级为 18 位; +* 1.4.18 `getInfo()` 返回值新增省市区三级列表 + ## License MIT diff --git a/src/IdValidator.php b/src/IdValidator.php index b5d0110..3bf67e0 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -73,6 +73,7 @@ public function getInfo($id) 'addressCode' => $code['addressCode'], 'abandoned' => isset($this->_addressCodeList[$code['addressCode']]) ? 0 : 1, 'address' => is_array($addressInfo) ? implode($addressInfo) : '', + 'address_tree' => array_values($addressInfo), 'birthdayCode' => date('Y-m-d', strtotime($code['birthdayCode'])), 'constellation' => $this->_getConstellation($code['birthdayCode']), 'chineseZodiac' => $this->_getChineseZodiac($code['birthdayCode']), diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 5bad3b8..f8742f0 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -56,6 +56,7 @@ public function testGetInfo() 'addressCode' => '440308', 'abandoned' => 0, 'address' => '广东省深圳市盐田区', + 'address_tree' => ['广东省', '深圳市', '盐田区'], 'birthdayCode' => '1999-01-10', 'constellation' => '摩羯座', 'chineseZodiac' => '卯兔', @@ -70,6 +71,7 @@ public function testGetInfo() 'addressCode' => '362324', 'abandoned' => 1, 'address' => '江西省宜春地区丰城县', + 'address_tree' => ['江西省', '宜春地区', '丰城县'], 'birthdayCode' => '1980-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '申猴', @@ -85,6 +87,7 @@ public function testGetInfo() 'addressCode' => '362324', 'abandoned' => 1, 'address' => '江西省宜春地区丰城县', + 'address_tree' => ['江西省', '宜春地区', '丰城县'], 'birthdayCode' => '1981-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '酉鸡', @@ -99,6 +102,7 @@ public function testGetInfo() 'addressCode' => '362324', 'abandoned' => 1, 'address' => '江西省上饶地区铅山县', + 'address_tree' => ['江西省', '上饶地区', '铅山县'], 'birthdayCode' => '1982-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '戌狗', @@ -116,6 +120,7 @@ public function testGetInfo() 'addressCode' => '610104', 'abandoned' => 0, 'address' => '陕西省西安市莲湖区', + 'address_tree' => ['陕西省', '西安市', '莲湖区'], 'birthdayCode' => '1962-09-27', 'constellation' => '天秤座', 'chineseZodiac' => '寅虎', From a0d449aff00c8ca0cf6d5be5608477cd630191f9 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 12 Nov 2018 11:42:30 +0800 Subject: [PATCH 084/128] Refactor --- README.md | 2 +- src/IdValidator.php | 2 +- tests/IdValidatorTest.php | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 98f9bb2..73e929a 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ $idValidator->getInfo('610104620927690'); // 15 位 'addressCode' => '440308', // 地址码 'abandoned' => 0, // 地址码是否废弃,1 为废弃的,0 为正在使用的 'address' => '广东省深圳市盐田区', // 地址 -'address_tree' => ['广东省', '深圳市', '盐田区'] // 省市区三级列表 +'addressTree' => ['广东省', '深圳市', '盐田区'] // 省市区三级列表 'birthdayCode' => '1999-01-10', // 出生日期 'constellation' => '水瓶座', // 星座 'chineseZodiac' => '卯兔', // 生肖 diff --git a/src/IdValidator.php b/src/IdValidator.php index 3bf67e0..f64d458 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -73,7 +73,7 @@ public function getInfo($id) 'addressCode' => $code['addressCode'], 'abandoned' => isset($this->_addressCodeList[$code['addressCode']]) ? 0 : 1, 'address' => is_array($addressInfo) ? implode($addressInfo) : '', - 'address_tree' => array_values($addressInfo), + 'addressTree' => array_values($addressInfo), 'birthdayCode' => date('Y-m-d', strtotime($code['birthdayCode'])), 'constellation' => $this->_getConstellation($code['birthdayCode']), 'chineseZodiac' => $this->_getChineseZodiac($code['birthdayCode']), diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index f8742f0..fff64d8 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -56,7 +56,7 @@ public function testGetInfo() 'addressCode' => '440308', 'abandoned' => 0, 'address' => '广东省深圳市盐田区', - 'address_tree' => ['广东省', '深圳市', '盐田区'], + 'addressTree' => ['广东省', '深圳市', '盐田区'], 'birthdayCode' => '1999-01-10', 'constellation' => '摩羯座', 'chineseZodiac' => '卯兔', @@ -71,7 +71,7 @@ public function testGetInfo() 'addressCode' => '362324', 'abandoned' => 1, 'address' => '江西省宜春地区丰城县', - 'address_tree' => ['江西省', '宜春地区', '丰城县'], + 'addressTree' => ['江西省', '宜春地区', '丰城县'], 'birthdayCode' => '1980-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '申猴', @@ -87,7 +87,7 @@ public function testGetInfo() 'addressCode' => '362324', 'abandoned' => 1, 'address' => '江西省宜春地区丰城县', - 'address_tree' => ['江西省', '宜春地区', '丰城县'], + 'addressTree' => ['江西省', '宜春地区', '丰城县'], 'birthdayCode' => '1981-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '酉鸡', @@ -102,7 +102,7 @@ public function testGetInfo() 'addressCode' => '362324', 'abandoned' => 1, 'address' => '江西省上饶地区铅山县', - 'address_tree' => ['江西省', '上饶地区', '铅山县'], + 'addressTree' => ['江西省', '上饶地区', '铅山县'], 'birthdayCode' => '1982-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '戌狗', @@ -120,7 +120,7 @@ public function testGetInfo() 'addressCode' => '610104', 'abandoned' => 0, 'address' => '陕西省西安市莲湖区', - 'address_tree' => ['陕西省', '西安市', '莲湖区'], + 'addressTree' => ['陕西省', '西安市', '莲湖区'], 'birthdayCode' => '1962-09-27', 'constellation' => '天秤座', 'chineseZodiac' => '寅虎', From 70a61b3da20ae0900d39955b1ac2ccf7b192d77b Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 12 Nov 2018 03:43:43 +0000 Subject: [PATCH 085/128] Apply fixes from StyleCI --- src/IdValidator.php | 2 +- tests/IdValidatorTest.php | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/IdValidator.php b/src/IdValidator.php index f64d458..3ff821d 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -73,7 +73,7 @@ public function getInfo($id) 'addressCode' => $code['addressCode'], 'abandoned' => isset($this->_addressCodeList[$code['addressCode']]) ? 0 : 1, 'address' => is_array($addressInfo) ? implode($addressInfo) : '', - 'addressTree' => array_values($addressInfo), + 'addressTree' => array_values($addressInfo), 'birthdayCode' => date('Y-m-d', strtotime($code['birthdayCode'])), 'constellation' => $this->_getConstellation($code['birthdayCode']), 'chineseZodiac' => $this->_getChineseZodiac($code['birthdayCode']), diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index fff64d8..8363c7f 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -56,7 +56,7 @@ public function testGetInfo() 'addressCode' => '440308', 'abandoned' => 0, 'address' => '广东省深圳市盐田区', - 'addressTree' => ['广东省', '深圳市', '盐田区'], + 'addressTree' => ['广东省', '深圳市', '盐田区'], 'birthdayCode' => '1999-01-10', 'constellation' => '摩羯座', 'chineseZodiac' => '卯兔', @@ -71,7 +71,7 @@ public function testGetInfo() 'addressCode' => '362324', 'abandoned' => 1, 'address' => '江西省宜春地区丰城县', - 'addressTree' => ['江西省', '宜春地区', '丰城县'], + 'addressTree' => ['江西省', '宜春地区', '丰城县'], 'birthdayCode' => '1980-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '申猴', @@ -87,7 +87,7 @@ public function testGetInfo() 'addressCode' => '362324', 'abandoned' => 1, 'address' => '江西省宜春地区丰城县', - 'addressTree' => ['江西省', '宜春地区', '丰城县'], + 'addressTree' => ['江西省', '宜春地区', '丰城县'], 'birthdayCode' => '1981-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '酉鸡', @@ -102,7 +102,7 @@ public function testGetInfo() 'addressCode' => '362324', 'abandoned' => 1, 'address' => '江西省上饶地区铅山县', - 'addressTree' => ['江西省', '上饶地区', '铅山县'], + 'addressTree' => ['江西省', '上饶地区', '铅山县'], 'birthdayCode' => '1982-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '戌狗', @@ -120,7 +120,7 @@ public function testGetInfo() 'addressCode' => '610104', 'abandoned' => 0, 'address' => '陕西省西安市莲湖区', - 'addressTree' => ['陕西省', '西安市', '莲湖区'], + 'addressTree' => ['陕西省', '西安市', '莲湖区'], 'birthdayCode' => '1962-09-27', 'constellation' => '天秤座', 'chineseZodiac' => '寅虎', From 8252cb8b5a5bb44755e6cc2f0246789f90a8130b Mon Sep 17 00:00:00 2001 From: SAMUEL NELA Date: Mon, 17 Dec 2018 11:51:08 +0100 Subject: [PATCH 086/128] Tests on php 7.3 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index ebbf2d6..1cbca83 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ php: - '7.0' - '7.1' - '7.2' + - '7.3' matrix: fast_finish: true From 66b7bfde39e865b7e833f4c3db8a7d2c5605acfa Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 1 Apr 2019 21:56:06 +0800 Subject: [PATCH 087/128] add 996.icu link --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 73e929a..784a501 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/jxlwqq/id-validator/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/jxlwqq/id-validator/?branch=master) [![Maintainability](https://api.codeclimate.com/v1/badges/98880a5cb713e2652450/maintainability)](https://codeclimate.com/github/jxlwqq/id-validator/maintainability) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fjxlwqq%2Fid-validator.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fjxlwqq%2Fid-validator?ref=badge_shield) +[![996.icu](https://img.shields.io/badge/link-996.icu-red.svg)](https://996.icu) ## 安装 From f4796b47d4b2b1c1448a851a3f4211a44d6d3395 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 1 May 2019 20:46:51 +0800 Subject: [PATCH 088/128] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=9C=B0=E5=9D=80?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/addressCode.php | 30 +++--- data/addressCodeTimeline.php | 171 ++++++++++++++++++++++++++++++----- 2 files changed, 165 insertions(+), 36 deletions(-) diff --git a/data/addressCode.php b/data/addressCode.php index 92851bb..fe76ab4 100644 --- a/data/addressCode.php +++ b/data/addressCode.php @@ -80,13 +80,13 @@ 130207 => '丰南区', 130208 => '丰润区', 130209 => '曹妃甸区', - 130223 => '滦县', 130224 => '滦南县', 130225 => '乐亭县', 130227 => '迁西县', 130229 => '玉田县', 130281 => '遵化市', 130283 => '迁安市', + 130284 => '滦州市', 130300 => '秦皇岛市', 130302 => '海港区', 130303 => '山海关区', @@ -258,11 +258,11 @@ 140321 => '平定县', 140322 => '盂县', 140400 => '长治市', - 140402 => '城区', - 140411 => '郊区', - 140421 => '长治县', + 140403 => '潞州区', + 140404 => '上党区', + 140405 => '屯留区', + 140406 => '潞城区', 140423 => '襄垣县', - 140424 => '屯留县', 140425 => '平顺县', 140426 => '黎城县', 140427 => '壶关县', @@ -270,7 +270,6 @@ 140429 => '武乡县', 140430 => '沁县', 140431 => '沁源县', - 140481 => '潞城市', 140500 => '晋城市', 140502 => '城区', 140521 => '沁水县', @@ -1087,12 +1086,12 @@ 340803 => '大观区', 340811 => '宜秀区', 340822 => '怀宁县', - 340824 => '潜山县', 340825 => '太湖县', 340826 => '宿松县', 340827 => '望江县', 340828 => '岳西县', 340881 => '桐城市', + 340882 => '潜山市', 341000 => '黄山市', 341002 => '屯溪区', 341003 => '黄山区', @@ -1367,8 +1366,8 @@ 370112 => '历城区', 370113 => '长清区', 370114 => '章丘区', + 370115 => '济阳区', 370124 => '平阴县', - 370125 => '济阳县', 370126 => '商河县', 370200 => '青岛市', 370202 => '市南区', @@ -1502,7 +1501,7 @@ 371622 => '阳信县', 371623 => '无棣县', 371625 => '博兴县', - 371626 => '邹平县', + 371681 => '邹平市', 371700 => '菏泽市', 371702 => '牡丹区', 371703 => '定陶区', @@ -1822,7 +1821,7 @@ 430203 => '芦淞区', 430204 => '石峰区', 430211 => '天元区', - 430221 => '株洲县', + 430212 => '渌口区', 430223 => '攸县', 430224 => '茶陵县', 430225 => '炎陵县', @@ -2128,8 +2127,8 @@ 450328 => '龙胜各族自治县', 450329 => '资源县', 450330 => '平乐县', - 450331 => '荔浦县', 450332 => '恭城瑶族自治县', + 450381 => '荔浦市', 450400 => '梧州市', 450403 => '万秀区', 450405 => '长洲区', @@ -2392,7 +2391,7 @@ 511500 => '宜宾市', 511502 => '翠屏区', 511503 => '南溪区', - 511521 => '宜宾县', + 511504 => '叙州区', 511523 => '江安县', 511524 => '长宁县', 511525 => '高县', @@ -2546,7 +2545,7 @@ 520628 => '松桃苗族自治县', 522300 => '黔西南布依族苗族自治州', 522301 => '兴义市', - 522322 => '兴仁县', + 522302 => '兴仁市', 522323 => '普安县', 522324 => '晴隆县', 522325 => '贞丰县', @@ -2636,7 +2635,7 @@ 530627 => '镇雄县', 530628 => '彝良县', 530629 => '威信县', - 530630 => '水富县', + 530681 => '水富市', 530700 => '丽江市', 530702 => '古城区', 530721 => '玉龙纳西族自治县', @@ -2974,9 +2973,9 @@ 620821 => '泾川县', 620822 => '灵台县', 620823 => '崇信县', - 620824 => '华亭县', 620825 => '庄浪县', 620826 => '静宁县', + 620881 => '华亭市', 620900 => '酒泉市', 620902 => '肃州区', 620921 => '金塔县', @@ -3079,6 +3078,7 @@ 632800 => '海西蒙古族藏族自治州', 632801 => '格尔木市', 632802 => '德令哈市', + 632803 => '茫崖市', 632821 => '乌兰县', 632822 => '都兰县', 632823 => '天峻县', diff --git a/data/addressCodeTimeline.php b/data/addressCodeTimeline.php index dc94d04..57fdb50 100644 --- a/data/addressCodeTimeline.php +++ b/data/addressCodeTimeline.php @@ -1043,7 +1043,7 @@ [ 'address' => '滦县', 'start_year' => 1983, - 'end_year' => '', + 'end_year' => 2017, ], ], 130224 => @@ -1166,6 +1166,15 @@ 'end_year' => '', ], ], + 130284 => + [ + + [ + 'address' => '滦州市', + 'start_year' => 2018, + 'end_year' => '', + ], + ], 130300 => [ @@ -5051,6 +5060,42 @@ [ 'address' => '城区', 'start_year' => '', + 'end_year' => 2017, + ], + ], + 140403 => + [ + + [ + 'address' => '潞州区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 140404 => + [ + + [ + 'address' => '上党区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 140405 => + [ + + [ + 'address' => '屯留区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], + 140406 => + [ + + [ + 'address' => '潞城区', + 'start_year' => 2018, 'end_year' => '', ], ], @@ -5060,7 +5105,7 @@ [ 'address' => '郊区', 'start_year' => '', - 'end_year' => '', + 'end_year' => 2017, ], ], 140421 => @@ -5069,7 +5114,7 @@ [ 'address' => '长治县', 'start_year' => 1983, - 'end_year' => '', + 'end_year' => 2017, ], ], 140422 => @@ -5096,7 +5141,7 @@ [ 'address' => '屯留县', 'start_year' => 1985, - 'end_year' => '', + 'end_year' => 2017, ], ], 140425 => @@ -5168,7 +5213,7 @@ [ 'address' => '潞城市', 'start_year' => 1995, - 'end_year' => '', + 'end_year' => 2017, ], ], 140500 => @@ -7425,7 +7470,7 @@ [ [ - 'address' => '河津市', + 'address' => '永济市', 'start_year' => 1994, 'end_year' => 1999, ], @@ -7434,7 +7479,7 @@ [ [ - 'address' => '永济市', + 'address' => '河津市', 'start_year' => 1994, 'end_year' => 1999, ], @@ -22607,7 +22652,7 @@ [ 'address' => '潜山县', 'start_year' => 1988, - 'end_year' => '', + 'end_year' => 2018, ], ], 340825 => @@ -22655,6 +22700,15 @@ 'end_year' => '', ], ], + 340882 => + [ + + [ + 'address' => '潜山市', + 'start_year' => 2019, + 'end_year' => '', + ], + ], 340901 => [ @@ -29219,6 +29273,15 @@ 'end_year' => '', ], ], + 370115 => + [ + + [ + 'address' => '济阳区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], 370121 => [ @@ -29261,7 +29324,7 @@ [ 'address' => '济阳县', 'start_year' => 1989, - 'end_year' => '', + 'end_year' => 2017, ], ], 370126 => @@ -30923,6 +30986,15 @@ [ 'address' => '邹平县', 'start_year' => 2000, + 'end_year' => 2017, + ], + ], + 371681 => + [ + + [ + 'address' => '邹平市', + 'start_year' => 2018, 'end_year' => '', ], ], @@ -38546,6 +38618,15 @@ 'end_year' => '', ], ], + 430212 => + [ + + [ + 'address' => '渌口区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], 430219 => [ @@ -38561,7 +38642,7 @@ [ 'address' => '株洲县', 'start_year' => '', - 'end_year' => '', + 'end_year' => 2017, ], ], 430222 => @@ -43807,12 +43888,6 @@ 'start_year' => '', 'end_year' => 1982, ], - - [ - 'address' => '佛山地区', - 'start_year' => 1982, - 'end_year' => 1982, - ], ], 442621 => [ @@ -44003,7 +44078,7 @@ [ 'address' => '佛山地区', 'start_year' => '', - 'end_year' => 1981, + 'end_year' => 1982, ], ], 442721 => @@ -45263,7 +45338,7 @@ [ 'address' => '荔浦县', 'start_year' => 1998, - 'end_year' => '', + 'end_year' => 2017, ], ], 450332 => @@ -45275,6 +45350,15 @@ 'end_year' => '', ], ], + 450381 => + [ + + [ + 'address' => '荔浦市', + 'start_year' => 2018, + 'end_year' => '', + ], + ], 450400 => [ @@ -49778,13 +49862,22 @@ 'end_year' => '', ], ], + 511504 => + [ + + [ + 'address' => '叙州区', + 'start_year' => 2018, + 'end_year' => '', + ], + ], 511521 => [ [ 'address' => '宜宾县', 'start_year' => 1996, - 'end_year' => '', + 'end_year' => 2017, ], ], 511522 => @@ -54596,6 +54689,15 @@ 'end_year' => '', ], ], + 522302 => + [ + + [ + 'address' => '兴仁市', + 'start_year' => 2018, + 'end_year' => '', + ], + ], 522321 => [ @@ -54611,7 +54713,7 @@ [ 'address' => '兴仁县', 'start_year' => '', - 'end_year' => '', + 'end_year' => 2017, ], ], 522323 => @@ -55802,6 +55904,15 @@ [ 'address' => '水富县', 'start_year' => 2001, + 'end_year' => 2017, + ], + ], + 530681 => + [ + + [ + 'address' => '水富市', + 'start_year' => 2018, 'end_year' => '', ], ], @@ -61592,7 +61703,7 @@ [ 'address' => '华亭县', 'start_year' => 2002, - 'end_year' => '', + 'end_year' => 2017, ], ], 620825 => @@ -61613,6 +61724,15 @@ 'end_year' => '', ], ], + 620881 => + [ + + [ + 'address' => '华亭市', + 'start_year' => 2018, + 'end_year' => '', + ], + ], 620900 => [ @@ -63377,6 +63497,15 @@ 'end_year' => '', ], ], + 632803 => + [ + + [ + 'address' => '茫崖市', + 'start_year' => 2018, + 'end_year' => '', + ], + ], 632821 => [ From 9f327294d40a11439f0a4051224b90d81b90aaa7 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 4 Nov 2019 19:12:37 +0800 Subject: [PATCH 089/128] =?UTF-8?q?=E5=9C=B0=E5=9D=80=E7=A0=81=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E8=87=B32019=E5=B9=B408=E6=9C=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/addressCode.php | 6439 +- data/addressCodeTimeline.php | 116937 ++++++++++++++------------------ 2 files changed, 54543 insertions(+), 68833 deletions(-) diff --git a/data/addressCode.php b/data/addressCode.php index fe76ab4..4b70442 100644 --- a/data/addressCode.php +++ b/data/addressCode.php @@ -14,3223 +14,3222 @@ return [ - 110000 => '北京市', - 110101 => '东城区', - 110102 => '西城区', - 110105 => '朝阳区', - 110106 => '丰台区', - 110107 => '石景山区', - 110108 => '海淀区', - 110109 => '门头沟区', - 110111 => '房山区', - 110112 => '通州区', - 110113 => '顺义区', - 110114 => '昌平区', - 110115 => '大兴区', - 110116 => '怀柔区', - 110117 => '平谷区', - 110118 => '密云区', - 110119 => '延庆区', - 120000 => '天津市', - 120101 => '和平区', - 120102 => '河东区', - 120103 => '河西区', - 120104 => '南开区', - 120105 => '河北区', - 120106 => '红桥区', - 120110 => '东丽区', - 120111 => '西青区', - 120112 => '津南区', - 120113 => '北辰区', - 120114 => '武清区', - 120115 => '宝坻区', - 120116 => '滨海新区', - 120117 => '宁河区', - 120118 => '静海区', - 120119 => '蓟州区', - 130000 => '河北省', - 130100 => '石家庄市', - 130102 => '长安区', - 130104 => '桥西区', - 130105 => '新华区', - 130107 => '井陉矿区', - 130108 => '裕华区', - 130109 => '藁城区', - 130110 => '鹿泉区', - 130111 => '栾城区', - 130121 => '井陉县', - 130123 => '正定县', - 130125 => '行唐县', - 130126 => '灵寿县', - 130127 => '高邑县', - 130128 => '深泽县', - 130129 => '赞皇县', - 130130 => '无极县', - 130131 => '平山县', - 130132 => '元氏县', - 130133 => '赵县', - 130181 => '辛集市', - 130183 => '晋州市', - 130184 => '新乐市', - 130200 => '唐山市', - 130202 => '路南区', - 130203 => '路北区', - 130204 => '古冶区', - 130205 => '开平区', - 130207 => '丰南区', - 130208 => '丰润区', - 130209 => '曹妃甸区', - 130224 => '滦南县', - 130225 => '乐亭县', - 130227 => '迁西县', - 130229 => '玉田县', - 130281 => '遵化市', - 130283 => '迁安市', - 130284 => '滦州市', - 130300 => '秦皇岛市', - 130302 => '海港区', - 130303 => '山海关区', - 130304 => '北戴河区', - 130306 => '抚宁区', - 130321 => '青龙满族自治县', - 130322 => '昌黎县', - 130324 => '卢龙县', - 130400 => '邯郸市', - 130402 => '邯山区', - 130403 => '丛台区', - 130404 => '复兴区', - 130406 => '峰峰矿区', - 130407 => '肥乡区', - 130408 => '永年区', - 130423 => '临漳县', - 130424 => '成安县', - 130425 => '大名县', - 130426 => '涉县', - 130427 => '磁县', - 130430 => '邱县', - 130431 => '鸡泽县', - 130432 => '广平县', - 130433 => '馆陶县', - 130434 => '魏县', - 130435 => '曲周县', - 130481 => '武安市', - 130500 => '邢台市', - 130502 => '桥东区', - 130503 => '桥西区', - 130521 => '邢台县', - 130522 => '临城县', - 130523 => '内丘县', - 130524 => '柏乡县', - 130525 => '隆尧县', - 130526 => '任县', - 130527 => '南和县', - 130528 => '宁晋县', - 130529 => '巨鹿县', - 130530 => '新河县', - 130531 => '广宗县', - 130532 => '平乡县', - 130533 => '威县', - 130534 => '清河县', - 130535 => '临西县', - 130581 => '南宫市', - 130582 => '沙河市', - 130600 => '保定市', - 130602 => '竞秀区', - 130606 => '莲池区', - 130607 => '满城区', - 130608 => '清苑区', - 130609 => '徐水区', - 130623 => '涞水县', - 130624 => '阜平县', - 130626 => '定兴县', - 130627 => '唐县', - 130628 => '高阳县', - 130629 => '容城县', - 130630 => '涞源县', - 130631 => '望都县', - 130632 => '安新县', - 130633 => '易县', - 130634 => '曲阳县', - 130635 => '蠡县', - 130636 => '顺平县', - 130637 => '博野县', - 130638 => '雄县', - 130681 => '涿州市', - 130682 => '定州市', - 130683 => '安国市', - 130684 => '高碑店市', - 130700 => '张家口市', - 130702 => '桥东区', - 130703 => '桥西区', - 130705 => '宣化区', - 130706 => '下花园区', - 130708 => '万全区', - 130709 => '崇礼区', - 130722 => '张北县', - 130723 => '康保县', - 130724 => '沽源县', - 130725 => '尚义县', - 130726 => '蔚县', - 130727 => '阳原县', - 130728 => '怀安县', - 130730 => '怀来县', - 130731 => '涿鹿县', - 130732 => '赤城县', - 130800 => '承德市', - 130802 => '双桥区', - 130803 => '双滦区', - 130804 => '鹰手营子矿区', - 130821 => '承德县', - 130822 => '兴隆县', - 130824 => '滦平县', - 130825 => '隆化县', - 130826 => '丰宁满族自治县', - 130827 => '宽城满族自治县', - 130828 => '围场满族蒙古族自治县', - 130881 => '平泉市', - 130900 => '沧州市', - 130902 => '新华区', - 130903 => '运河区', - 130921 => '沧县', - 130922 => '青县', - 130923 => '东光县', - 130924 => '海兴县', - 130925 => '盐山县', - 130926 => '肃宁县', - 130927 => '南皮县', - 130928 => '吴桥县', - 130929 => '献县', - 130930 => '孟村回族自治县', - 130981 => '泊头市', - 130982 => '任丘市', - 130983 => '黄骅市', - 130984 => '河间市', - 131000 => '廊坊市', - 131002 => '安次区', - 131003 => '广阳区', - 131022 => '固安县', - 131023 => '永清县', - 131024 => '香河县', - 131025 => '大城县', - 131026 => '文安县', - 131028 => '大厂回族自治县', - 131081 => '霸州市', - 131082 => '三河市', - 131100 => '衡水市', - 131102 => '桃城区', - 131103 => '冀州区', - 131121 => '枣强县', - 131122 => '武邑县', - 131123 => '武强县', - 131124 => '饶阳县', - 131125 => '安平县', - 131126 => '故城县', - 131127 => '景县', - 131128 => '阜城县', - 131182 => '深州市', - 140000 => '山西省', - 140100 => '太原市', - 140105 => '小店区', - 140106 => '迎泽区', - 140107 => '杏花岭区', - 140108 => '尖草坪区', - 140109 => '万柏林区', - 140110 => '晋源区', - 140121 => '清徐县', - 140122 => '阳曲县', - 140123 => '娄烦县', - 140181 => '古交市', - 140200 => '大同市', - 140212 => '新荣区', - 140213 => '平城区', - 140214 => '云冈区', - 140215 => '云州区', - 140221 => '阳高县', - 140222 => '天镇县', - 140223 => '广灵县', - 140224 => '灵丘县', - 140225 => '浑源县', - 140226 => '左云县', - 140300 => '阳泉市', - 140302 => '城区', - 140303 => '矿区', - 140311 => '郊区', - 140321 => '平定县', - 140322 => '盂县', - 140400 => '长治市', - 140403 => '潞州区', - 140404 => '上党区', - 140405 => '屯留区', - 140406 => '潞城区', - 140423 => '襄垣县', - 140425 => '平顺县', - 140426 => '黎城县', - 140427 => '壶关县', - 140428 => '长子县', - 140429 => '武乡县', - 140430 => '沁县', - 140431 => '沁源县', - 140500 => '晋城市', - 140502 => '城区', - 140521 => '沁水县', - 140522 => '阳城县', - 140524 => '陵川县', - 140525 => '泽州县', - 140581 => '高平市', - 140600 => '朔州市', - 140602 => '朔城区', - 140603 => '平鲁区', - 140621 => '山阴县', - 140622 => '应县', - 140623 => '右玉县', - 140681 => '怀仁市', - 140700 => '晋中市', - 140702 => '榆次区', - 140721 => '榆社县', - 140722 => '左权县', - 140723 => '和顺县', - 140724 => '昔阳县', - 140725 => '寿阳县', - 140726 => '太谷县', - 140727 => '祁县', - 140728 => '平遥县', - 140729 => '灵石县', - 140781 => '介休市', - 140800 => '运城市', - 140802 => '盐湖区', - 140821 => '临猗县', - 140822 => '万荣县', - 140823 => '闻喜县', - 140824 => '稷山县', - 140825 => '新绛县', - 140826 => '绛县', - 140827 => '垣曲县', - 140828 => '夏县', - 140829 => '平陆县', - 140830 => '芮城县', - 140881 => '永济市', - 140882 => '河津市', - 140900 => '忻州市', - 140902 => '忻府区', - 140921 => '定襄县', - 140922 => '五台县', - 140923 => '代县', - 140924 => '繁峙县', - 140925 => '宁武县', - 140926 => '静乐县', - 140927 => '神池县', - 140928 => '五寨县', - 140929 => '岢岚县', - 140930 => '河曲县', - 140931 => '保德县', - 140932 => '偏关县', - 140981 => '原平市', - 141000 => '临汾市', - 141002 => '尧都区', - 141021 => '曲沃县', - 141022 => '翼城县', - 141023 => '襄汾县', - 141024 => '洪洞县', - 141025 => '古县', - 141026 => '安泽县', - 141027 => '浮山县', - 141028 => '吉县', - 141029 => '乡宁县', - 141030 => '大宁县', - 141031 => '隰县', - 141032 => '永和县', - 141033 => '蒲县', - 141034 => '汾西县', - 141081 => '侯马市', - 141082 => '霍州市', - 141100 => '吕梁市', - 141102 => '离石区', - 141121 => '文水县', - 141122 => '交城县', - 141123 => '兴县', - 141124 => '临县', - 141125 => '柳林县', - 141126 => '石楼县', - 141127 => '岚县', - 141128 => '方山县', - 141129 => '中阳县', - 141130 => '交口县', - 141181 => '孝义市', - 141182 => '汾阳市', - 150000 => '内蒙古自治区', - 150100 => '呼和浩特市', - 150102 => '新城区', - 150103 => '回民区', - 150104 => '玉泉区', - 150105 => '赛罕区', - 150121 => '土默特左旗', - 150122 => '托克托县', - 150123 => '和林格尔县', - 150124 => '清水河县', - 150125 => '武川县', - 150200 => '包头市', - 150202 => '东河区', - 150203 => '昆都仑区', - 150204 => '青山区', - 150205 => '石拐区', - 150206 => '白云鄂博矿区', - 150207 => '九原区', - 150221 => '土默特右旗', - 150222 => '固阳县', - 150223 => '达尔罕茂明安联合旗', - 150300 => '乌海市', - 150302 => '海勃湾区', - 150303 => '海南区', - 150304 => '乌达区', - 150400 => '赤峰市', - 150402 => '红山区', - 150403 => '元宝山区', - 150404 => '松山区', - 150421 => '阿鲁科尔沁旗', - 150422 => '巴林左旗', - 150423 => '巴林右旗', - 150424 => '林西县', - 150425 => '克什克腾旗', - 150426 => '翁牛特旗', - 150428 => '喀喇沁旗', - 150429 => '宁城县', - 150430 => '敖汉旗', - 150500 => '通辽市', - 150502 => '科尔沁区', - 150521 => '科尔沁左翼中旗', - 150522 => '科尔沁左翼后旗', - 150523 => '开鲁县', - 150524 => '库伦旗', - 150525 => '奈曼旗', - 150526 => '扎鲁特旗', - 150581 => '霍林郭勒市', - 150600 => '鄂尔多斯市', - 150602 => '东胜区', - 150603 => '康巴什区', - 150621 => '达拉特旗', - 150622 => '准格尔旗', - 150623 => '鄂托克前旗', - 150624 => '鄂托克旗', - 150625 => '杭锦旗', - 150626 => '乌审旗', - 150627 => '伊金霍洛旗', - 150700 => '呼伦贝尔市', - 150702 => '海拉尔区', - 150703 => '扎赉诺尔区', - 150721 => '阿荣旗', - 150722 => '莫力达瓦达斡尔族自治旗', - 150723 => '鄂伦春自治旗', - 150724 => '鄂温克族自治旗', - 150725 => '陈巴尔虎旗', - 150726 => '新巴尔虎左旗', - 150727 => '新巴尔虎右旗', - 150781 => '满洲里市', - 150782 => '牙克石市', - 150783 => '扎兰屯市', - 150784 => '额尔古纳市', - 150785 => '根河市', - 150800 => '巴彦淖尔市', - 150802 => '临河区', - 150821 => '五原县', - 150822 => '磴口县', - 150823 => '乌拉特前旗', - 150824 => '乌拉特中旗', - 150825 => '乌拉特后旗', - 150826 => '杭锦后旗', - 150900 => '乌兰察布市', - 150902 => '集宁区', - 150921 => '卓资县', - 150922 => '化德县', - 150923 => '商都县', - 150924 => '兴和县', - 150925 => '凉城县', - 150926 => '察哈尔右翼前旗', - 150927 => '察哈尔右翼中旗', - 150928 => '察哈尔右翼后旗', - 150929 => '四子王旗', - 150981 => '丰镇市', - 152200 => '兴安盟', - 152201 => '乌兰浩特市', - 152202 => '阿尔山市', - 152221 => '科尔沁右翼前旗', - 152222 => '科尔沁右翼中旗', - 152223 => '扎赉特旗', - 152224 => '突泉县', - 152500 => '锡林郭勒盟', - 152501 => '二连浩特市', - 152502 => '锡林浩特市', - 152522 => '阿巴嘎旗', - 152523 => '苏尼特左旗', - 152524 => '苏尼特右旗', - 152525 => '东乌珠穆沁旗', - 152526 => '西乌珠穆沁旗', - 152527 => '太仆寺旗', - 152528 => '镶黄旗', - 152529 => '正镶白旗', - 152530 => '正蓝旗', - 152531 => '多伦县', - 152900 => '阿拉善盟', - 152921 => '阿拉善左旗', - 152922 => '阿拉善右旗', - 152923 => '额济纳旗', - 210000 => '辽宁省', - 210100 => '沈阳市', - 210102 => '和平区', - 210103 => '沈河区', - 210104 => '大东区', - 210105 => '皇姑区', - 210106 => '铁西区', - 210111 => '苏家屯区', - 210112 => '浑南区', - 210113 => '沈北新区', - 210114 => '于洪区', - 210115 => '辽中区', - 210123 => '康平县', - 210124 => '法库县', - 210181 => '新民市', - 210200 => '大连市', - 210202 => '中山区', - 210203 => '西岗区', - 210204 => '沙河口区', - 210211 => '甘井子区', - 210212 => '旅顺口区', - 210213 => '金州区', - 210214 => '普兰店区', - 210224 => '长海县', - 210281 => '瓦房店市', - 210283 => '庄河市', - 210300 => '鞍山市', - 210302 => '铁东区', - 210303 => '铁西区', - 210304 => '立山区', - 210311 => '千山区', - 210321 => '台安县', - 210323 => '岫岩满族自治县', - 210381 => '海城市', - 210400 => '抚顺市', - 210402 => '新抚区', - 210403 => '东洲区', - 210404 => '望花区', - 210411 => '顺城区', - 210421 => '抚顺县', - 210422 => '新宾满族自治县', - 210423 => '清原满族自治县', - 210500 => '本溪市', - 210502 => '平山区', - 210503 => '溪湖区', - 210504 => '明山区', - 210505 => '南芬区', - 210521 => '本溪满族自治县', - 210522 => '桓仁满族自治县', - 210600 => '丹东市', - 210602 => '元宝区', - 210603 => '振兴区', - 210604 => '振安区', - 210624 => '宽甸满族自治县', - 210681 => '东港市', - 210682 => '凤城市', - 210700 => '锦州市', - 210702 => '古塔区', - 210703 => '凌河区', - 210711 => '太和区', - 210726 => '黑山县', - 210727 => '义县', - 210781 => '凌海市', - 210782 => '北镇市', - 210800 => '营口市', - 210802 => '站前区', - 210803 => '西市区', - 210804 => '鲅鱼圈区', - 210811 => '老边区', - 210881 => '盖州市', - 210882 => '大石桥市', - 210900 => '阜新市', - 210902 => '海州区', - 210903 => '新邱区', - 210904 => '太平区', - 210905 => '清河门区', - 210911 => '细河区', - 210921 => '阜新蒙古族自治县', - 210922 => '彰武县', - 211000 => '辽阳市', - 211002 => '白塔区', - 211003 => '文圣区', - 211004 => '宏伟区', - 211005 => '弓长岭区', - 211011 => '太子河区', - 211021 => '辽阳县', - 211081 => '灯塔市', - 211100 => '盘锦市', - 211102 => '双台子区', - 211103 => '兴隆台区', - 211104 => '大洼区', - 211122 => '盘山县', - 211200 => '铁岭市', - 211202 => '银州区', - 211204 => '清河区', - 211221 => '铁岭县', - 211223 => '西丰县', - 211224 => '昌图县', - 211281 => '调兵山市', - 211282 => '开原市', - 211300 => '朝阳市', - 211302 => '双塔区', - 211303 => '龙城区', - 211321 => '朝阳县', - 211322 => '建平县', - 211324 => '喀喇沁左翼蒙古族自治县', - 211381 => '北票市', - 211382 => '凌源市', - 211400 => '葫芦岛市', - 211402 => '连山区', - 211403 => '龙港区', - 211404 => '南票区', - 211421 => '绥中县', - 211422 => '建昌县', - 211481 => '兴城市', - 220000 => '吉林省', - 220100 => '长春市', - 220102 => '南关区', - 220103 => '宽城区', - 220104 => '朝阳区', - 220105 => '二道区', - 220106 => '绿园区', - 220112 => '双阳区', - 220113 => '九台区', - 220122 => '农安县', - 220182 => '榆树市', - 220183 => '德惠市', - 220200 => '吉林市', - 220202 => '昌邑区', - 220203 => '龙潭区', - 220204 => '船营区', - 220211 => '丰满区', - 220221 => '永吉县', - 220281 => '蛟河市', - 220282 => '桦甸市', - 220283 => '舒兰市', - 220284 => '磐石市', - 220300 => '四平市', - 220302 => '铁西区', - 220303 => '铁东区', - 220322 => '梨树县', - 220323 => '伊通满族自治县', - 220381 => '公主岭市', - 220382 => '双辽市', - 220400 => '辽源市', - 220402 => '龙山区', - 220403 => '西安区', - 220421 => '东丰县', - 220422 => '东辽县', - 220500 => '通化市', - 220502 => '东昌区', - 220503 => '二道江区', - 220521 => '通化县', - 220523 => '辉南县', - 220524 => '柳河县', - 220581 => '梅河口市', - 220582 => '集安市', - 220600 => '白山市', - 220602 => '浑江区', - 220605 => '江源区', - 220621 => '抚松县', - 220622 => '靖宇县', - 220623 => '长白朝鲜族自治县', - 220681 => '临江市', - 220700 => '松原市', - 220702 => '宁江区', - 220721 => '前郭尔罗斯蒙古族自治县', - 220722 => '长岭县', - 220723 => '乾安县', - 220781 => '扶余市', - 220800 => '白城市', - 220802 => '洮北区', - 220821 => '镇赉县', - 220822 => '通榆县', - 220881 => '洮南市', - 220882 => '大安市', - 222400 => '延边朝鲜族自治州', - 222401 => '延吉市', - 222402 => '图们市', - 222403 => '敦化市', - 222404 => '珲春市', - 222405 => '龙井市', - 222406 => '和龙市', - 222424 => '汪清县', - 222426 => '安图县', - 230000 => '黑龙江省', - 230100 => '哈尔滨市', - 230102 => '道里区', - 230103 => '南岗区', - 230104 => '道外区', - 230108 => '平房区', - 230109 => '松北区', - 230110 => '香坊区', - 230111 => '呼兰区', - 230112 => '阿城区', - 230113 => '双城区', - 230123 => '依兰县', - 230124 => '方正县', - 230125 => '宾县', - 230126 => '巴彦县', - 230127 => '木兰县', - 230128 => '通河县', - 230129 => '延寿县', - 230183 => '尚志市', - 230184 => '五常市', - 230200 => '齐齐哈尔市', - 230202 => '龙沙区', - 230203 => '建华区', - 230204 => '铁锋区', - 230205 => '昂昂溪区', - 230206 => '富拉尔基区', - 230207 => '碾子山区', - 230208 => '梅里斯达斡尔族区', - 230221 => '龙江县', - 230223 => '依安县', - 230224 => '泰来县', - 230225 => '甘南县', - 230227 => '富裕县', - 230229 => '克山县', - 230230 => '克东县', - 230231 => '拜泉县', - 230281 => '讷河市', - 230300 => '鸡西市', - 230302 => '鸡冠区', - 230303 => '恒山区', - 230304 => '滴道区', - 230305 => '梨树区', - 230306 => '城子河区', - 230307 => '麻山区', - 230321 => '鸡东县', - 230381 => '虎林市', - 230382 => '密山市', - 230400 => '鹤岗市', - 230402 => '向阳区', - 230403 => '工农区', - 230404 => '南山区', - 230405 => '兴安区', - 230406 => '东山区', - 230407 => '兴山区', - 230421 => '萝北县', - 230422 => '绥滨县', - 230500 => '双鸭山市', - 230502 => '尖山区', - 230503 => '岭东区', - 230505 => '四方台区', - 230506 => '宝山区', - 230521 => '集贤县', - 230522 => '友谊县', - 230523 => '宝清县', - 230524 => '饶河县', - 230600 => '大庆市', - 230602 => '萨尔图区', - 230603 => '龙凤区', - 230604 => '让胡路区', - 230605 => '红岗区', - 230606 => '大同区', - 230621 => '肇州县', - 230622 => '肇源县', - 230623 => '林甸县', - 230624 => '杜尔伯特蒙古族自治县', - 230700 => '伊春市', - 230702 => '伊春区', - 230703 => '南岔区', - 230704 => '友好区', - 230705 => '西林区', - 230706 => '翠峦区', - 230707 => '新青区', - 230708 => '美溪区', - 230709 => '金山屯区', - 230710 => '五营区', - 230711 => '乌马河区', - 230712 => '汤旺河区', - 230713 => '带岭区', - 230714 => '乌伊岭区', - 230715 => '红星区', - 230716 => '上甘岭区', - 230722 => '嘉荫县', - 230781 => '铁力市', - 230800 => '佳木斯市', - 230803 => '向阳区', - 230804 => '前进区', - 230805 => '东风区', - 230811 => '郊区', - 230822 => '桦南县', - 230826 => '桦川县', - 230828 => '汤原县', - 230881 => '同江市', - 230882 => '富锦市', - 230883 => '抚远市', - 230900 => '七台河市', - 230902 => '新兴区', - 230903 => '桃山区', - 230904 => '茄子河区', - 230921 => '勃利县', - 231000 => '牡丹江市', - 231002 => '东安区', - 231003 => '阳明区', - 231004 => '爱民区', - 231005 => '西安区', - 231025 => '林口县', - 231081 => '绥芬河市', - 231083 => '海林市', - 231084 => '宁安市', - 231085 => '穆棱市', - 231086 => '东宁市', - 231100 => '黑河市', - 231102 => '爱辉区', - 231121 => '嫩江县', - 231123 => '逊克县', - 231124 => '孙吴县', - 231181 => '北安市', - 231182 => '五大连池市', - 231200 => '绥化市', - 231202 => '北林区', - 231221 => '望奎县', - 231222 => '兰西县', - 231223 => '青冈县', - 231224 => '庆安县', - 231225 => '明水县', - 231226 => '绥棱县', - 231281 => '安达市', - 231282 => '肇东市', - 231283 => '海伦市', - 232700 => '大兴安岭地区', - 232701 => '漠河市', - 232721 => '呼玛县', - 232722 => '塔河县', - 310000 => '上海市', - 310101 => '黄浦区', - 310104 => '徐汇区', - 310105 => '长宁区', - 310106 => '静安区', - 310107 => '普陀区', - 310109 => '虹口区', - 310110 => '杨浦区', - 310112 => '闵行区', - 310113 => '宝山区', - 310114 => '嘉定区', - 310115 => '浦东新区', - 310116 => '金山区', - 310117 => '松江区', - 310118 => '青浦区', - 310120 => '奉贤区', - 310151 => '崇明区', - 320000 => '江苏省', - 320100 => '南京市', - 320102 => '玄武区', - 320104 => '秦淮区', - 320105 => '建邺区', - 320106 => '鼓楼区', - 320111 => '浦口区', - 320113 => '栖霞区', - 320114 => '雨花台区', - 320115 => '江宁区', - 320116 => '六合区', - 320117 => '溧水区', - 320118 => '高淳区', - 320200 => '无锡市', - 320205 => '锡山区', - 320206 => '惠山区', - 320211 => '滨湖区', - 320213 => '梁溪区', - 320214 => '新吴区', - 320281 => '江阴市', - 320282 => '宜兴市', - 320300 => '徐州市', - 320302 => '鼓楼区', - 320303 => '云龙区', - 320305 => '贾汪区', - 320311 => '泉山区', - 320312 => '铜山区', - 320321 => '丰县', - 320322 => '沛县', - 320324 => '睢宁县', - 320381 => '新沂市', - 320382 => '邳州市', - 320400 => '常州市', - 320402 => '天宁区', - 320404 => '钟楼区', - 320411 => '新北区', - 320412 => '武进区', - 320413 => '金坛区', - 320481 => '溧阳市', - 320500 => '苏州市', - 320505 => '虎丘区', - 320506 => '吴中区', - 320507 => '相城区', - 320508 => '姑苏区', - 320509 => '吴江区', - 320581 => '常熟市', - 320582 => '张家港市', - 320583 => '昆山市', - 320585 => '太仓市', - 320600 => '南通市', - 320602 => '崇川区', - 320611 => '港闸区', - 320612 => '通州区', - 320623 => '如东县', - 320681 => '启东市', - 320682 => '如皋市', - 320684 => '海门市', - 320685 => '海安市', - 320700 => '连云港市', - 320703 => '连云区', - 320706 => '海州区', - 320707 => '赣榆区', - 320722 => '东海县', - 320723 => '灌云县', - 320724 => '灌南县', - 320800 => '淮安市', - 320803 => '淮安区', - 320804 => '淮阴区', - 320812 => '清江浦区', - 320813 => '洪泽区', - 320826 => '涟水县', - 320830 => '盱眙县', - 320831 => '金湖县', - 320900 => '盐城市', - 320902 => '亭湖区', - 320903 => '盐都区', - 320904 => '大丰区', - 320921 => '响水县', - 320922 => '滨海县', - 320923 => '阜宁县', - 320924 => '射阳县', - 320925 => '建湖县', - 320981 => '东台市', - 321000 => '扬州市', - 321002 => '广陵区', - 321003 => '邗江区', - 321012 => '江都区', - 321023 => '宝应县', - 321081 => '仪征市', - 321084 => '高邮市', - 321100 => '镇江市', - 321102 => '京口区', - 321111 => '润州区', - 321112 => '丹徒区', - 321181 => '丹阳市', - 321182 => '扬中市', - 321183 => '句容市', - 321200 => '泰州市', - 321202 => '海陵区', - 321203 => '高港区', - 321204 => '姜堰区', - 321281 => '兴化市', - 321282 => '靖江市', - 321283 => '泰兴市', - 321300 => '宿迁市', - 321302 => '宿城区', - 321311 => '宿豫区', - 321322 => '沭阳县', - 321323 => '泗阳县', - 321324 => '泗洪县', - 330000 => '浙江省', - 330100 => '杭州市', - 330102 => '上城区', - 330103 => '下城区', - 330104 => '江干区', - 330105 => '拱墅区', - 330106 => '西湖区', - 330108 => '滨江区', - 330109 => '萧山区', - 330110 => '余杭区', - 330111 => '富阳区', - 330112 => '临安区', - 330122 => '桐庐县', - 330127 => '淳安县', - 330182 => '建德市', - 330200 => '宁波市', - 330203 => '海曙区', - 330205 => '江北区', - 330206 => '北仑区', - 330211 => '镇海区', - 330212 => '鄞州区', - 330213 => '奉化区', - 330225 => '象山县', - 330226 => '宁海县', - 330281 => '余姚市', - 330282 => '慈溪市', - 330300 => '温州市', - 330302 => '鹿城区', - 330303 => '龙湾区', - 330304 => '瓯海区', - 330305 => '洞头区', - 330324 => '永嘉县', - 330326 => '平阳县', - 330327 => '苍南县', - 330328 => '文成县', - 330329 => '泰顺县', - 330381 => '瑞安市', - 330382 => '乐清市', - 330400 => '嘉兴市', - 330402 => '南湖区', - 330411 => '秀洲区', - 330421 => '嘉善县', - 330424 => '海盐县', - 330481 => '海宁市', - 330482 => '平湖市', - 330483 => '桐乡市', - 330500 => '湖州市', - 330502 => '吴兴区', - 330503 => '南浔区', - 330521 => '德清县', - 330522 => '长兴县', - 330523 => '安吉县', - 330600 => '绍兴市', - 330602 => '越城区', - 330603 => '柯桥区', - 330604 => '上虞区', - 330624 => '新昌县', - 330681 => '诸暨市', - 330683 => '嵊州市', - 330700 => '金华市', - 330702 => '婺城区', - 330703 => '金东区', - 330723 => '武义县', - 330726 => '浦江县', - 330727 => '磐安县', - 330781 => '兰溪市', - 330782 => '义乌市', - 330783 => '东阳市', - 330784 => '永康市', - 330800 => '衢州市', - 330802 => '柯城区', - 330803 => '衢江区', - 330822 => '常山县', - 330824 => '开化县', - 330825 => '龙游县', - 330881 => '江山市', - 330900 => '舟山市', - 330902 => '定海区', - 330903 => '普陀区', - 330921 => '岱山县', - 330922 => '嵊泗县', - 331000 => '台州市', - 331002 => '椒江区', - 331003 => '黄岩区', - 331004 => '路桥区', - 331022 => '三门县', - 331023 => '天台县', - 331024 => '仙居县', - 331081 => '温岭市', - 331082 => '临海市', - 331083 => '玉环市', - 331100 => '丽水市', - 331102 => '莲都区', - 331121 => '青田县', - 331122 => '缙云县', - 331123 => '遂昌县', - 331124 => '松阳县', - 331125 => '云和县', - 331126 => '庆元县', - 331127 => '景宁畲族自治县', - 331181 => '龙泉市', - 340000 => '安徽省', - 340100 => '合肥市', - 340102 => '瑶海区', - 340103 => '庐阳区', - 340104 => '蜀山区', - 340111 => '包河区', - 340121 => '长丰县', - 340122 => '肥东县', - 340123 => '肥西县', - 340124 => '庐江县', - 340181 => '巢湖市', - 340200 => '芜湖市', - 340202 => '镜湖区', - 340203 => '弋江区', - 340207 => '鸠江区', - 340208 => '三山区', - 340221 => '芜湖县', - 340222 => '繁昌县', - 340223 => '南陵县', - 340225 => '无为县', - 340300 => '蚌埠市', - 340302 => '龙子湖区', - 340303 => '蚌山区', - 340304 => '禹会区', - 340311 => '淮上区', - 340321 => '怀远县', - 340322 => '五河县', - 340323 => '固镇县', - 340400 => '淮南市', - 340402 => '大通区', - 340403 => '田家庵区', - 340404 => '谢家集区', - 340405 => '八公山区', - 340406 => '潘集区', - 340421 => '凤台县', - 340422 => '寿县', - 340500 => '马鞍山市', - 340503 => '花山区', - 340504 => '雨山区', - 340506 => '博望区', - 340521 => '当涂县', - 340522 => '含山县', - 340523 => '和县', - 340600 => '淮北市', - 340602 => '杜集区', - 340603 => '相山区', - 340604 => '烈山区', - 340621 => '濉溪县', - 340700 => '铜陵市', - 340705 => '铜官区', - 340706 => '义安区', - 340711 => '郊区', - 340722 => '枞阳县', - 340800 => '安庆市', - 340802 => '迎江区', - 340803 => '大观区', - 340811 => '宜秀区', - 340822 => '怀宁县', - 340825 => '太湖县', - 340826 => '宿松县', - 340827 => '望江县', - 340828 => '岳西县', - 340881 => '桐城市', - 340882 => '潜山市', - 341000 => '黄山市', - 341002 => '屯溪区', - 341003 => '黄山区', - 341004 => '徽州区', - 341021 => '歙县', - 341022 => '休宁县', - 341023 => '黟县', - 341024 => '祁门县', - 341100 => '滁州市', - 341102 => '琅琊区', - 341103 => '南谯区', - 341122 => '来安县', - 341124 => '全椒县', - 341125 => '定远县', - 341126 => '凤阳县', - 341181 => '天长市', - 341182 => '明光市', - 341200 => '阜阳市', - 341202 => '颍州区', - 341203 => '颍东区', - 341204 => '颍泉区', - 341221 => '临泉县', - 341222 => '太和县', - 341225 => '阜南县', - 341226 => '颍上县', - 341282 => '界首市', - 341300 => '宿州市', - 341302 => '埇桥区', - 341321 => '砀山县', - 341322 => '萧县', - 341323 => '灵璧县', - 341324 => '泗县', - 341500 => '六安市', - 341502 => '金安区', - 341503 => '裕安区', - 341504 => '叶集区', - 341522 => '霍邱县', - 341523 => '舒城县', - 341524 => '金寨县', - 341525 => '霍山县', - 341600 => '亳州市', - 341602 => '谯城区', - 341621 => '涡阳县', - 341622 => '蒙城县', - 341623 => '利辛县', - 341700 => '池州市', - 341702 => '贵池区', - 341721 => '东至县', - 341722 => '石台县', - 341723 => '青阳县', - 341800 => '宣城市', - 341802 => '宣州区', - 341821 => '郎溪县', - 341822 => '广德县', - 341823 => '泾县', - 341824 => '绩溪县', - 341825 => '旌德县', - 341881 => '宁国市', - 350000 => '福建省', - 350100 => '福州市', - 350102 => '鼓楼区', - 350103 => '台江区', - 350104 => '仓山区', - 350105 => '马尾区', - 350111 => '晋安区', - 350112 => '长乐区', - 350121 => '闽侯县', - 350122 => '连江县', - 350123 => '罗源县', - 350124 => '闽清县', - 350125 => '永泰县', - 350128 => '平潭县', - 350181 => '福清市', - 350200 => '厦门市', - 350203 => '思明区', - 350205 => '海沧区', - 350206 => '湖里区', - 350211 => '集美区', - 350212 => '同安区', - 350213 => '翔安区', - 350300 => '莆田市', - 350302 => '城厢区', - 350303 => '涵江区', - 350304 => '荔城区', - 350305 => '秀屿区', - 350322 => '仙游县', - 350400 => '三明市', - 350402 => '梅列区', - 350403 => '三元区', - 350421 => '明溪县', - 350423 => '清流县', - 350424 => '宁化县', - 350425 => '大田县', - 350426 => '尤溪县', - 350427 => '沙县', - 350428 => '将乐县', - 350429 => '泰宁县', - 350430 => '建宁县', - 350481 => '永安市', - 350500 => '泉州市', - 350502 => '鲤城区', - 350503 => '丰泽区', - 350504 => '洛江区', - 350505 => '泉港区', - 350521 => '惠安县', - 350524 => '安溪县', - 350525 => '永春县', - 350526 => '德化县', - 350527 => '金门县', - 350581 => '石狮市', - 350582 => '晋江市', - 350583 => '南安市', - 350600 => '漳州市', - 350602 => '芗城区', - 350603 => '龙文区', - 350622 => '云霄县', - 350623 => '漳浦县', - 350624 => '诏安县', - 350625 => '长泰县', - 350626 => '东山县', - 350627 => '南靖县', - 350628 => '平和县', - 350629 => '华安县', - 350681 => '龙海市', - 350700 => '南平市', - 350702 => '延平区', - 350703 => '建阳区', - 350721 => '顺昌县', - 350722 => '浦城县', - 350723 => '光泽县', - 350724 => '松溪县', - 350725 => '政和县', - 350781 => '邵武市', - 350782 => '武夷山市', - 350783 => '建瓯市', - 350800 => '龙岩市', - 350802 => '新罗区', - 350803 => '永定区', - 350821 => '长汀县', - 350823 => '上杭县', - 350824 => '武平县', - 350825 => '连城县', - 350881 => '漳平市', - 350900 => '宁德市', - 350902 => '蕉城区', - 350921 => '霞浦县', - 350922 => '古田县', - 350923 => '屏南县', - 350924 => '寿宁县', - 350925 => '周宁县', - 350926 => '柘荣县', - 350981 => '福安市', - 350982 => '福鼎市', - 360000 => '江西省', - 360100 => '南昌市', - 360102 => '东湖区', - 360103 => '西湖区', - 360104 => '青云谱区', - 360105 => '湾里区', - 360111 => '青山湖区', - 360112 => '新建区', - 360121 => '南昌县', - 360123 => '安义县', - 360124 => '进贤县', - 360200 => '景德镇市', - 360202 => '昌江区', - 360203 => '珠山区', - 360222 => '浮梁县', - 360281 => '乐平市', - 360300 => '萍乡市', - 360302 => '安源区', - 360313 => '湘东区', - 360321 => '莲花县', - 360322 => '上栗县', - 360323 => '芦溪县', - 360400 => '九江市', - 360402 => '濂溪区', - 360403 => '浔阳区', - 360404 => '柴桑区', - 360423 => '武宁县', - 360424 => '修水县', - 360425 => '永修县', - 360426 => '德安县', - 360428 => '都昌县', - 360429 => '湖口县', - 360430 => '彭泽县', - 360481 => '瑞昌市', - 360482 => '共青城市', - 360483 => '庐山市', - 360500 => '新余市', - 360502 => '渝水区', - 360521 => '分宜县', - 360600 => '鹰潭市', - 360602 => '月湖区', - 360603 => '余江区', - 360681 => '贵溪市', - 360700 => '赣州市', - 360702 => '章贡区', - 360703 => '南康区', - 360704 => '赣县区', - 360722 => '信丰县', - 360723 => '大余县', - 360724 => '上犹县', - 360725 => '崇义县', - 360726 => '安远县', - 360727 => '龙南县', - 360728 => '定南县', - 360729 => '全南县', - 360730 => '宁都县', - 360731 => '于都县', - 360732 => '兴国县', - 360733 => '会昌县', - 360734 => '寻乌县', - 360735 => '石城县', - 360781 => '瑞金市', - 360800 => '吉安市', - 360802 => '吉州区', - 360803 => '青原区', - 360821 => '吉安县', - 360822 => '吉水县', - 360823 => '峡江县', - 360824 => '新干县', - 360825 => '永丰县', - 360826 => '泰和县', - 360827 => '遂川县', - 360828 => '万安县', - 360829 => '安福县', - 360830 => '永新县', - 360881 => '井冈山市', - 360900 => '宜春市', - 360902 => '袁州区', - 360921 => '奉新县', - 360922 => '万载县', - 360923 => '上高县', - 360924 => '宜丰县', - 360925 => '靖安县', - 360926 => '铜鼓县', - 360981 => '丰城市', - 360982 => '樟树市', - 360983 => '高安市', - 361000 => '抚州市', - 361002 => '临川区', - 361003 => '东乡区', - 361021 => '南城县', - 361022 => '黎川县', - 361023 => '南丰县', - 361024 => '崇仁县', - 361025 => '乐安县', - 361026 => '宜黄县', - 361027 => '金溪县', - 361028 => '资溪县', - 361030 => '广昌县', - 361100 => '上饶市', - 361102 => '信州区', - 361103 => '广丰区', - 361121 => '上饶县', - 361123 => '玉山县', - 361124 => '铅山县', - 361125 => '横峰县', - 361126 => '弋阳县', - 361127 => '余干县', - 361128 => '鄱阳县', - 361129 => '万年县', - 361130 => '婺源县', - 361181 => '德兴市', - 370000 => '山东省', - 370100 => '济南市', - 370102 => '历下区', - 370103 => '市中区', - 370104 => '槐荫区', - 370105 => '天桥区', - 370112 => '历城区', - 370113 => '长清区', - 370114 => '章丘区', - 370115 => '济阳区', - 370124 => '平阴县', - 370126 => '商河县', - 370200 => '青岛市', - 370202 => '市南区', - 370203 => '市北区', - 370211 => '黄岛区', - 370212 => '崂山区', - 370213 => '李沧区', - 370214 => '城阳区', - 370215 => '即墨区', - 370281 => '胶州市', - 370283 => '平度市', - 370285 => '莱西市', - 370300 => '淄博市', - 370302 => '淄川区', - 370303 => '张店区', - 370304 => '博山区', - 370305 => '临淄区', - 370306 => '周村区', - 370321 => '桓台县', - 370322 => '高青县', - 370323 => '沂源县', - 370400 => '枣庄市', - 370402 => '市中区', - 370403 => '薛城区', - 370404 => '峄城区', - 370405 => '台儿庄区', - 370406 => '山亭区', - 370481 => '滕州市', - 370500 => '东营市', - 370502 => '东营区', - 370503 => '河口区', - 370505 => '垦利区', - 370522 => '利津县', - 370523 => '广饶县', - 370600 => '烟台市', - 370602 => '芝罘区', - 370611 => '福山区', - 370612 => '牟平区', - 370613 => '莱山区', - 370634 => '长岛县', - 370681 => '龙口市', - 370682 => '莱阳市', - 370683 => '莱州市', - 370684 => '蓬莱市', - 370685 => '招远市', - 370686 => '栖霞市', - 370687 => '海阳市', - 370700 => '潍坊市', - 370702 => '潍城区', - 370703 => '寒亭区', - 370704 => '坊子区', - 370705 => '奎文区', - 370724 => '临朐县', - 370725 => '昌乐县', - 370781 => '青州市', - 370782 => '诸城市', - 370783 => '寿光市', - 370784 => '安丘市', - 370785 => '高密市', - 370786 => '昌邑市', - 370800 => '济宁市', - 370811 => '任城区', - 370812 => '兖州区', - 370826 => '微山县', - 370827 => '鱼台县', - 370828 => '金乡县', - 370829 => '嘉祥县', - 370830 => '汶上县', - 370831 => '泗水县', - 370832 => '梁山县', - 370881 => '曲阜市', - 370883 => '邹城市', - 370900 => '泰安市', - 370902 => '泰山区', - 370911 => '岱岳区', - 370921 => '宁阳县', - 370923 => '东平县', - 370982 => '新泰市', - 370983 => '肥城市', - 371000 => '威海市', - 371002 => '环翠区', - 371003 => '文登区', - 371082 => '荣成市', - 371083 => '乳山市', - 371100 => '日照市', - 371102 => '东港区', - 371103 => '岚山区', - 371121 => '五莲县', - 371122 => '莒县', - 371200 => '莱芜市', - 371202 => '莱城区', - 371203 => '钢城区', - 371300 => '临沂市', - 371302 => '兰山区', - 371311 => '罗庄区', - 371312 => '河东区', - 371321 => '沂南县', - 371322 => '郯城县', - 371323 => '沂水县', - 371324 => '兰陵县', - 371325 => '费县', - 371326 => '平邑县', - 371327 => '莒南县', - 371328 => '蒙阴县', - 371329 => '临沭县', - 371400 => '德州市', - 371402 => '德城区', - 371403 => '陵城区', - 371422 => '宁津县', - 371423 => '庆云县', - 371424 => '临邑县', - 371425 => '齐河县', - 371426 => '平原县', - 371427 => '夏津县', - 371428 => '武城县', - 371481 => '乐陵市', - 371482 => '禹城市', - 371500 => '聊城市', - 371502 => '东昌府区', - 371521 => '阳谷县', - 371522 => '莘县', - 371523 => '茌平县', - 371524 => '东阿县', - 371525 => '冠县', - 371526 => '高唐县', - 371581 => '临清市', - 371600 => '滨州市', - 371602 => '滨城区', - 371603 => '沾化区', - 371621 => '惠民县', - 371622 => '阳信县', - 371623 => '无棣县', - 371625 => '博兴县', - 371681 => '邹平市', - 371700 => '菏泽市', - 371702 => '牡丹区', - 371703 => '定陶区', - 371721 => '曹县', - 371722 => '单县', - 371723 => '成武县', - 371724 => '巨野县', - 371725 => '郓城县', - 371726 => '鄄城县', - 371728 => '东明县', - 410000 => '河南省', - 410100 => '郑州市', - 410102 => '中原区', - 410103 => '二七区', - 410104 => '管城回族区', - 410105 => '金水区', - 410106 => '上街区', - 410108 => '惠济区', - 410122 => '中牟县', - 410181 => '巩义市', - 410182 => '荥阳市', - 410183 => '新密市', - 410184 => '新郑市', - 410185 => '登封市', - 410200 => '开封市', - 410202 => '龙亭区', - 410203 => '顺河回族区', - 410204 => '鼓楼区', - 410205 => '禹王台区', - 410212 => '祥符区', - 410221 => '杞县', - 410222 => '通许县', - 410223 => '尉氏县', - 410225 => '兰考县', - 410300 => '洛阳市', - 410302 => '老城区', - 410303 => '西工区', - 410304 => '瀍河回族区', - 410305 => '涧西区', - 410306 => '吉利区', - 410311 => '洛龙区', - 410322 => '孟津县', - 410323 => '新安县', - 410324 => '栾川县', - 410325 => '嵩县', - 410326 => '汝阳县', - 410327 => '宜阳县', - 410328 => '洛宁县', - 410329 => '伊川县', - 410381 => '偃师市', - 410400 => '平顶山市', - 410402 => '新华区', - 410403 => '卫东区', - 410404 => '石龙区', - 410411 => '湛河区', - 410421 => '宝丰县', - 410422 => '叶县', - 410423 => '鲁山县', - 410425 => '郏县', - 410481 => '舞钢市', - 410482 => '汝州市', - 410500 => '安阳市', - 410502 => '文峰区', - 410503 => '北关区', - 410505 => '殷都区', - 410506 => '龙安区', - 410522 => '安阳县', - 410523 => '汤阴县', - 410526 => '滑县', - 410527 => '内黄县', - 410581 => '林州市', - 410600 => '鹤壁市', - 410602 => '鹤山区', - 410603 => '山城区', - 410611 => '淇滨区', - 410621 => '浚县', - 410622 => '淇县', - 410700 => '新乡市', - 410702 => '红旗区', - 410703 => '卫滨区', - 410704 => '凤泉区', - 410711 => '牧野区', - 410721 => '新乡县', - 410724 => '获嘉县', - 410725 => '原阳县', - 410726 => '延津县', - 410727 => '封丘县', - 410728 => '长垣县', - 410781 => '卫辉市', - 410782 => '辉县市', - 410800 => '焦作市', - 410802 => '解放区', - 410803 => '中站区', - 410804 => '马村区', - 410811 => '山阳区', - 410821 => '修武县', - 410822 => '博爱县', - 410823 => '武陟县', - 410825 => '温县', - 410882 => '沁阳市', - 410883 => '孟州市', - 410900 => '濮阳市', - 410902 => '华龙区', - 410922 => '清丰县', - 410923 => '南乐县', - 410926 => '范县', - 410927 => '台前县', - 410928 => '濮阳县', - 411000 => '许昌市', - 411002 => '魏都区', - 411003 => '建安区', - 411024 => '鄢陵县', - 411025 => '襄城县', - 411081 => '禹州市', - 411082 => '长葛市', - 411100 => '漯河市', - 411102 => '源汇区', - 411103 => '郾城区', - 411104 => '召陵区', - 411121 => '舞阳县', - 411122 => '临颍县', - 411200 => '三门峡市', - 411202 => '湖滨区', - 411203 => '陕州区', - 411221 => '渑池县', - 411224 => '卢氏县', - 411281 => '义马市', - 411282 => '灵宝市', - 411300 => '南阳市', - 411302 => '宛城区', - 411303 => '卧龙区', - 411321 => '南召县', - 411322 => '方城县', - 411323 => '西峡县', - 411324 => '镇平县', - 411325 => '内乡县', - 411326 => '淅川县', - 411327 => '社旗县', - 411328 => '唐河县', - 411329 => '新野县', - 411330 => '桐柏县', - 411381 => '邓州市', - 411400 => '商丘市', - 411402 => '梁园区', - 411403 => '睢阳区', - 411421 => '民权县', - 411422 => '睢县', - 411423 => '宁陵县', - 411424 => '柘城县', - 411425 => '虞城县', - 411426 => '夏邑县', - 411481 => '永城市', - 411500 => '信阳市', - 411502 => '浉河区', - 411503 => '平桥区', - 411521 => '罗山县', - 411522 => '光山县', - 411523 => '新县', - 411524 => '商城县', - 411525 => '固始县', - 411526 => '潢川县', - 411527 => '淮滨县', - 411528 => '息县', - 411600 => '周口市', - 411602 => '川汇区', - 411621 => '扶沟县', - 411622 => '西华县', - 411623 => '商水县', - 411624 => '沈丘县', - 411625 => '郸城县', - 411626 => '淮阳县', - 411627 => '太康县', - 411628 => '鹿邑县', - 411681 => '项城市', - 411700 => '驻马店市', - 411702 => '驿城区', - 411721 => '西平县', - 411722 => '上蔡县', - 411723 => '平舆县', - 411724 => '正阳县', - 411725 => '确山县', - 411726 => '泌阳县', - 411727 => '汝南县', - 411728 => '遂平县', - 411729 => '新蔡县', - 419001 => '济源市', - 420000 => '湖北省', - 420100 => '武汉市', - 420102 => '江岸区', - 420103 => '江汉区', - 420104 => '硚口区', - 420105 => '汉阳区', - 420106 => '武昌区', - 420107 => '青山区', - 420111 => '洪山区', - 420112 => '东西湖区', - 420113 => '汉南区', - 420114 => '蔡甸区', - 420115 => '江夏区', - 420116 => '黄陂区', - 420117 => '新洲区', - 420200 => '黄石市', - 420202 => '黄石港区', - 420203 => '西塞山区', - 420204 => '下陆区', - 420205 => '铁山区', - 420222 => '阳新县', - 420281 => '大冶市', - 420300 => '十堰市', - 420302 => '茅箭区', - 420303 => '张湾区', - 420304 => '郧阳区', - 420322 => '郧西县', - 420323 => '竹山县', - 420324 => '竹溪县', - 420325 => '房县', - 420381 => '丹江口市', - 420500 => '宜昌市', - 420502 => '西陵区', - 420503 => '伍家岗区', - 420504 => '点军区', - 420505 => '猇亭区', - 420506 => '夷陵区', - 420525 => '远安县', - 420526 => '兴山县', - 420527 => '秭归县', - 420528 => '长阳土家族自治县', - 420529 => '五峰土家族自治县', - 420581 => '宜都市', - 420582 => '当阳市', - 420583 => '枝江市', - 420600 => '襄阳市', - 420602 => '襄城区', - 420606 => '樊城区', - 420607 => '襄州区', - 420624 => '南漳县', - 420625 => '谷城县', - 420626 => '保康县', - 420682 => '老河口市', - 420683 => '枣阳市', - 420684 => '宜城市', - 420700 => '鄂州市', - 420702 => '梁子湖区', - 420703 => '华容区', - 420704 => '鄂城区', - 420800 => '荆门市', - 420802 => '东宝区', - 420804 => '掇刀区', - 420822 => '沙洋县', - 420881 => '钟祥市', - 420882 => '京山市', - 420900 => '孝感市', - 420902 => '孝南区', - 420921 => '孝昌县', - 420922 => '大悟县', - 420923 => '云梦县', - 420981 => '应城市', - 420982 => '安陆市', - 420984 => '汉川市', - 421000 => '荆州市', - 421002 => '沙市区', - 421003 => '荆州区', - 421022 => '公安县', - 421023 => '监利县', - 421024 => '江陵县', - 421081 => '石首市', - 421083 => '洪湖市', - 421087 => '松滋市', - 421100 => '黄冈市', - 421102 => '黄州区', - 421121 => '团风县', - 421122 => '红安县', - 421123 => '罗田县', - 421124 => '英山县', - 421125 => '浠水县', - 421126 => '蕲春县', - 421127 => '黄梅县', - 421181 => '麻城市', - 421182 => '武穴市', - 421200 => '咸宁市', - 421202 => '咸安区', - 421221 => '嘉鱼县', - 421222 => '通城县', - 421223 => '崇阳县', - 421224 => '通山县', - 421281 => '赤壁市', - 421300 => '随州市', - 421303 => '曾都区', - 421321 => '随县', - 421381 => '广水市', - 422800 => '恩施土家族苗族自治州', - 422801 => '恩施市', - 422802 => '利川市', - 422822 => '建始县', - 422823 => '巴东县', - 422825 => '宣恩县', - 422826 => '咸丰县', - 422827 => '来凤县', - 422828 => '鹤峰县', - 429004 => '仙桃市', - 429005 => '潜江市', - 429006 => '天门市', - 429021 => '神农架林区', - 430000 => '湖南省', - 430100 => '长沙市', - 430102 => '芙蓉区', - 430103 => '天心区', - 430104 => '岳麓区', - 430105 => '开福区', - 430111 => '雨花区', - 430112 => '望城区', - 430121 => '长沙县', - 430181 => '浏阳市', - 430182 => '宁乡市', - 430200 => '株洲市', - 430202 => '荷塘区', - 430203 => '芦淞区', - 430204 => '石峰区', - 430211 => '天元区', - 430212 => '渌口区', - 430223 => '攸县', - 430224 => '茶陵县', - 430225 => '炎陵县', - 430281 => '醴陵市', - 430300 => '湘潭市', - 430302 => '雨湖区', - 430304 => '岳塘区', - 430321 => '湘潭县', - 430381 => '湘乡市', - 430382 => '韶山市', - 430400 => '衡阳市', - 430405 => '珠晖区', - 430406 => '雁峰区', - 430407 => '石鼓区', - 430408 => '蒸湘区', - 430412 => '南岳区', - 430421 => '衡阳县', - 430422 => '衡南县', - 430423 => '衡山县', - 430424 => '衡东县', - 430426 => '祁东县', - 430481 => '耒阳市', - 430482 => '常宁市', - 430500 => '邵阳市', - 430502 => '双清区', - 430503 => '大祥区', - 430511 => '北塔区', - 430521 => '邵东县', - 430522 => '新邵县', - 430523 => '邵阳县', - 430524 => '隆回县', - 430525 => '洞口县', - 430527 => '绥宁县', - 430528 => '新宁县', - 430529 => '城步苗族自治县', - 430581 => '武冈市', - 430600 => '岳阳市', - 430602 => '岳阳楼区', - 430603 => '云溪区', - 430611 => '君山区', - 430621 => '岳阳县', - 430623 => '华容县', - 430624 => '湘阴县', - 430626 => '平江县', - 430681 => '汨罗市', - 430682 => '临湘市', - 430700 => '常德市', - 430702 => '武陵区', - 430703 => '鼎城区', - 430721 => '安乡县', - 430722 => '汉寿县', - 430723 => '澧县', - 430724 => '临澧县', - 430725 => '桃源县', - 430726 => '石门县', - 430781 => '津市市', - 430800 => '张家界市', - 430802 => '永定区', - 430811 => '武陵源区', - 430821 => '慈利县', - 430822 => '桑植县', - 430900 => '益阳市', - 430902 => '资阳区', - 430903 => '赫山区', - 430921 => '南县', - 430922 => '桃江县', - 430923 => '安化县', - 430981 => '沅江市', - 431000 => '郴州市', - 431002 => '北湖区', - 431003 => '苏仙区', - 431021 => '桂阳县', - 431022 => '宜章县', - 431023 => '永兴县', - 431024 => '嘉禾县', - 431025 => '临武县', - 431026 => '汝城县', - 431027 => '桂东县', - 431028 => '安仁县', - 431081 => '资兴市', - 431100 => '永州市', - 431102 => '零陵区', - 431103 => '冷水滩区', - 431121 => '祁阳县', - 431122 => '东安县', - 431123 => '双牌县', - 431124 => '道县', - 431125 => '江永县', - 431126 => '宁远县', - 431127 => '蓝山县', - 431128 => '新田县', - 431129 => '江华瑶族自治县', - 431200 => '怀化市', - 431202 => '鹤城区', - 431221 => '中方县', - 431222 => '沅陵县', - 431223 => '辰溪县', - 431224 => '溆浦县', - 431225 => '会同县', - 431226 => '麻阳苗族自治县', - 431227 => '新晃侗族自治县', - 431228 => '芷江侗族自治县', - 431229 => '靖州苗族侗族自治县', - 431230 => '通道侗族自治县', - 431281 => '洪江市', - 431300 => '娄底市', - 431302 => '娄星区', - 431321 => '双峰县', - 431322 => '新化县', - 431381 => '冷水江市', - 431382 => '涟源市', - 433100 => '湘西土家族苗族自治州', - 433101 => '吉首市', - 433122 => '泸溪县', - 433123 => '凤凰县', - 433124 => '花垣县', - 433125 => '保靖县', - 433126 => '古丈县', - 433127 => '永顺县', - 433130 => '龙山县', - 440000 => '广东省', - 440100 => '广州市', - 440103 => '荔湾区', - 440104 => '越秀区', - 440105 => '海珠区', - 440106 => '天河区', - 440111 => '白云区', - 440112 => '黄埔区', - 440113 => '番禺区', - 440114 => '花都区', - 440115 => '南沙区', - 440117 => '从化区', - 440118 => '增城区', - 440200 => '韶关市', - 440203 => '武江区', - 440204 => '浈江区', - 440205 => '曲江区', - 440222 => '始兴县', - 440224 => '仁化县', - 440229 => '翁源县', - 440232 => '乳源瑶族自治县', - 440233 => '新丰县', - 440281 => '乐昌市', - 440282 => '南雄市', - 440300 => '深圳市', - 440303 => '罗湖区', - 440304 => '福田区', - 440305 => '南山区', - 440306 => '宝安区', - 440307 => '龙岗区', - 440308 => '盐田区', - 440309 => '龙华区', - 440310 => '坪山区', - 440311 => '光明区', - 440400 => '珠海市', - 440402 => '香洲区', - 440403 => '斗门区', - 440404 => '金湾区', - 440500 => '汕头市', - 440507 => '龙湖区', - 440511 => '金平区', - 440512 => '濠江区', - 440513 => '潮阳区', - 440514 => '潮南区', - 440515 => '澄海区', - 440523 => '南澳县', - 440600 => '佛山市', - 440604 => '禅城区', - 440605 => '南海区', - 440606 => '顺德区', - 440607 => '三水区', - 440608 => '高明区', - 440700 => '江门市', - 440703 => '蓬江区', - 440704 => '江海区', - 440705 => '新会区', - 440781 => '台山市', - 440783 => '开平市', - 440784 => '鹤山市', - 440785 => '恩平市', - 440800 => '湛江市', - 440802 => '赤坎区', - 440803 => '霞山区', - 440804 => '坡头区', - 440811 => '麻章区', - 440823 => '遂溪县', - 440825 => '徐闻县', - 440881 => '廉江市', - 440882 => '雷州市', - 440883 => '吴川市', - 440900 => '茂名市', - 440902 => '茂南区', - 440904 => '电白区', - 440981 => '高州市', - 440982 => '化州市', - 440983 => '信宜市', - 441200 => '肇庆市', - 441202 => '端州区', - 441203 => '鼎湖区', - 441204 => '高要区', - 441223 => '广宁县', - 441224 => '怀集县', - 441225 => '封开县', - 441226 => '德庆县', - 441284 => '四会市', - 441300 => '惠州市', - 441302 => '惠城区', - 441303 => '惠阳区', - 441322 => '博罗县', - 441323 => '惠东县', - 441324 => '龙门县', - 441400 => '梅州市', - 441402 => '梅江区', - 441403 => '梅县区', - 441422 => '大埔县', - 441423 => '丰顺县', - 441424 => '五华县', - 441426 => '平远县', - 441427 => '蕉岭县', - 441481 => '兴宁市', - 441500 => '汕尾市', - 441502 => '城区', - 441521 => '海丰县', - 441523 => '陆河县', - 441581 => '陆丰市', - 441600 => '河源市', - 441602 => '源城区', - 441621 => '紫金县', - 441622 => '龙川县', - 441623 => '连平县', - 441624 => '和平县', - 441625 => '东源县', - 441700 => '阳江市', - 441702 => '江城区', - 441704 => '阳东区', - 441721 => '阳西县', - 441781 => '阳春市', - 441800 => '清远市', - 441802 => '清城区', - 441803 => '清新区', - 441821 => '佛冈县', - 441823 => '阳山县', - 441825 => '连山壮族瑶族自治县', - 441826 => '连南瑶族自治县', - 441881 => '英德市', - 441882 => '连州市', - 441900 => '东莞市', - 442000 => '中山市', - 445100 => '潮州市', - 445102 => '湘桥区', - 445103 => '潮安区', - 445122 => '饶平县', - 445200 => '揭阳市', - 445202 => '榕城区', - 445203 => '揭东区', - 445222 => '揭西县', - 445224 => '惠来县', - 445281 => '普宁市', - 445300 => '云浮市', - 445302 => '云城区', - 445303 => '云安区', - 445321 => '新兴县', - 445322 => '郁南县', - 445381 => '罗定市', - 450000 => '广西壮族自治区', - 450100 => '南宁市', - 450102 => '兴宁区', - 450103 => '青秀区', - 450105 => '江南区', - 450107 => '西乡塘区', - 450108 => '良庆区', - 450109 => '邕宁区', - 450110 => '武鸣区', - 450123 => '隆安县', - 450124 => '马山县', - 450125 => '上林县', - 450126 => '宾阳县', - 450127 => '横县', - 450200 => '柳州市', - 450202 => '城中区', - 450203 => '鱼峰区', - 450204 => '柳南区', - 450205 => '柳北区', - 450206 => '柳江区', - 450222 => '柳城县', - 450223 => '鹿寨县', - 450224 => '融安县', - 450225 => '融水苗族自治县', - 450226 => '三江侗族自治县', - 450300 => '桂林市', - 450302 => '秀峰区', - 450303 => '叠彩区', - 450304 => '象山区', - 450305 => '七星区', - 450311 => '雁山区', - 450312 => '临桂区', - 450321 => '阳朔县', - 450323 => '灵川县', - 450324 => '全州县', - 450325 => '兴安县', - 450326 => '永福县', - 450327 => '灌阳县', - 450328 => '龙胜各族自治县', - 450329 => '资源县', - 450330 => '平乐县', - 450332 => '恭城瑶族自治县', - 450381 => '荔浦市', - 450400 => '梧州市', - 450403 => '万秀区', - 450405 => '长洲区', - 450406 => '龙圩区', - 450421 => '苍梧县', - 450422 => '藤县', - 450423 => '蒙山县', - 450481 => '岑溪市', - 450500 => '北海市', - 450502 => '海城区', - 450503 => '银海区', - 450512 => '铁山港区', - 450521 => '合浦县', - 450600 => '防城港市', - 450602 => '港口区', - 450603 => '防城区', - 450621 => '上思县', - 450681 => '东兴市', - 450700 => '钦州市', - 450702 => '钦南区', - 450703 => '钦北区', - 450721 => '灵山县', - 450722 => '浦北县', - 450800 => '贵港市', - 450802 => '港北区', - 450803 => '港南区', - 450804 => '覃塘区', - 450821 => '平南县', - 450881 => '桂平市', - 450900 => '玉林市', - 450902 => '玉州区', - 450903 => '福绵区', - 450921 => '容县', - 450922 => '陆川县', - 450923 => '博白县', - 450924 => '兴业县', - 450981 => '北流市', - 451000 => '百色市', - 451002 => '右江区', - 451021 => '田阳县', - 451022 => '田东县', - 451023 => '平果县', - 451024 => '德保县', - 451026 => '那坡县', - 451027 => '凌云县', - 451028 => '乐业县', - 451029 => '田林县', - 451030 => '西林县', - 451031 => '隆林各族自治县', - 451081 => '靖西市', - 451100 => '贺州市', - 451102 => '八步区', - 451103 => '平桂区', - 451121 => '昭平县', - 451122 => '钟山县', - 451123 => '富川瑶族自治县', - 451200 => '河池市', - 451202 => '金城江区', - 451203 => '宜州区', - 451221 => '南丹县', - 451222 => '天峨县', - 451223 => '凤山县', - 451224 => '东兰县', - 451225 => '罗城仫佬族自治县', - 451226 => '环江毛南族自治县', - 451227 => '巴马瑶族自治县', - 451228 => '都安瑶族自治县', - 451229 => '大化瑶族自治县', - 451300 => '来宾市', - 451302 => '兴宾区', - 451321 => '忻城县', - 451322 => '象州县', - 451323 => '武宣县', - 451324 => '金秀瑶族自治县', - 451381 => '合山市', - 451400 => '崇左市', - 451402 => '江州区', - 451421 => '扶绥县', - 451422 => '宁明县', - 451423 => '龙州县', - 451424 => '大新县', - 451425 => '天等县', - 451481 => '凭祥市', - 460000 => '海南省', - 460100 => '海口市', - 460105 => '秀英区', - 460106 => '龙华区', - 460107 => '琼山区', - 460108 => '美兰区', - 460200 => '三亚市', - 460202 => '海棠区', - 460203 => '吉阳区', - 460204 => '天涯区', - 460205 => '崖州区', - 460300 => '三沙市', - 460400 => '儋州市', - 469001 => '五指山市', - 469002 => '琼海市', - 469005 => '文昌市', - 469006 => '万宁市', - 469007 => '东方市', - 469021 => '定安县', - 469022 => '屯昌县', - 469023 => '澄迈县', - 469024 => '临高县', - 469025 => '白沙黎族自治县', - 469026 => '昌江黎族自治县', - 469027 => '乐东黎族自治县', - 469028 => '陵水黎族自治县', - 469029 => '保亭黎族苗族自治县', - 469030 => '琼中黎族苗族自治县', - 500000 => '重庆市', - 500101 => '万州区', - 500102 => '涪陵区', - 500103 => '渝中区', - 500104 => '大渡口区', - 500105 => '江北区', - 500106 => '沙坪坝区', - 500107 => '九龙坡区', - 500108 => '南岸区', - 500109 => '北碚区', - 500110 => '綦江区', - 500111 => '大足区', - 500112 => '渝北区', - 500113 => '巴南区', - 500114 => '黔江区', - 500115 => '长寿区', - 500116 => '江津区', - 500117 => '合川区', - 500118 => '永川区', - 500119 => '南川区', - 500120 => '璧山区', - 500151 => '铜梁区', - 500152 => '潼南区', - 500153 => '荣昌区', - 500154 => '开州区', - 500155 => '梁平区', - 500156 => '武隆区', - 500229 => '城口县', - 500230 => '丰都县', - 500231 => '垫江县', - 500233 => '忠县', - 500235 => '云阳县', - 500236 => '奉节县', - 500237 => '巫山县', - 500238 => '巫溪县', - 500240 => '石柱土家族自治县', - 500241 => '秀山土家族苗族自治县', - 500242 => '酉阳土家族苗族自治县', - 500243 => '彭水苗族土家族自治县', - 510000 => '四川省', - 510100 => '成都市', - 510104 => '锦江区', - 510105 => '青羊区', - 510106 => '金牛区', - 510107 => '武侯区', - 510108 => '成华区', - 510112 => '龙泉驿区', - 510113 => '青白江区', - 510114 => '新都区', - 510115 => '温江区', - 510116 => '双流区', - 510117 => '郫都区', - 510121 => '金堂县', - 510129 => '大邑县', - 510131 => '蒲江县', - 510132 => '新津县', - 510181 => '都江堰市', - 510182 => '彭州市', - 510183 => '邛崃市', - 510184 => '崇州市', - 510185 => '简阳市', - 510300 => '自贡市', - 510302 => '自流井区', - 510303 => '贡井区', - 510304 => '大安区', - 510311 => '沿滩区', - 510321 => '荣县', - 510322 => '富顺县', - 510400 => '攀枝花市', - 510402 => '东区', - 510403 => '西区', - 510411 => '仁和区', - 510421 => '米易县', - 510422 => '盐边县', - 510500 => '泸州市', - 510502 => '江阳区', - 510503 => '纳溪区', - 510504 => '龙马潭区', - 510521 => '泸县', - 510522 => '合江县', - 510524 => '叙永县', - 510525 => '古蔺县', - 510600 => '德阳市', - 510603 => '旌阳区', - 510604 => '罗江区', - 510623 => '中江县', - 510681 => '广汉市', - 510682 => '什邡市', - 510683 => '绵竹市', - 510700 => '绵阳市', - 510703 => '涪城区', - 510704 => '游仙区', - 510705 => '安州区', - 510722 => '三台县', - 510723 => '盐亭县', - 510725 => '梓潼县', - 510726 => '北川羌族自治县', - 510727 => '平武县', - 510781 => '江油市', - 510800 => '广元市', - 510802 => '利州区', - 510811 => '昭化区', - 510812 => '朝天区', - 510821 => '旺苍县', - 510822 => '青川县', - 510823 => '剑阁县', - 510824 => '苍溪县', - 510900 => '遂宁市', - 510903 => '船山区', - 510904 => '安居区', - 510921 => '蓬溪县', - 510922 => '射洪县', - 510923 => '大英县', - 511000 => '内江市', - 511002 => '市中区', - 511011 => '东兴区', - 511024 => '威远县', - 511025 => '资中县', - 511083 => '隆昌市', - 511100 => '乐山市', - 511102 => '市中区', - 511111 => '沙湾区', - 511112 => '五通桥区', - 511113 => '金口河区', - 511123 => '犍为县', - 511124 => '井研县', - 511126 => '夹江县', - 511129 => '沐川县', - 511132 => '峨边彝族自治县', - 511133 => '马边彝族自治县', - 511181 => '峨眉山市', - 511300 => '南充市', - 511302 => '顺庆区', - 511303 => '高坪区', - 511304 => '嘉陵区', - 511321 => '南部县', - 511322 => '营山县', - 511323 => '蓬安县', - 511324 => '仪陇县', - 511325 => '西充县', - 511381 => '阆中市', - 511400 => '眉山市', - 511402 => '东坡区', - 511403 => '彭山区', - 511421 => '仁寿县', - 511423 => '洪雅县', - 511424 => '丹棱县', - 511425 => '青神县', - 511500 => '宜宾市', - 511502 => '翠屏区', - 511503 => '南溪区', - 511504 => '叙州区', - 511523 => '江安县', - 511524 => '长宁县', - 511525 => '高县', - 511526 => '珙县', - 511527 => '筠连县', - 511528 => '兴文县', - 511529 => '屏山县', - 511600 => '广安市', - 511602 => '广安区', - 511603 => '前锋区', - 511621 => '岳池县', - 511622 => '武胜县', - 511623 => '邻水县', - 511681 => '华蓥市', - 511700 => '达州市', - 511702 => '通川区', - 511703 => '达川区', - 511722 => '宣汉县', - 511723 => '开江县', - 511724 => '大竹县', - 511725 => '渠县', - 511781 => '万源市', - 511800 => '雅安市', - 511802 => '雨城区', - 511803 => '名山区', - 511822 => '荥经县', - 511823 => '汉源县', - 511824 => '石棉县', - 511825 => '天全县', - 511826 => '芦山县', - 511827 => '宝兴县', - 511900 => '巴中市', - 511902 => '巴州区', - 511903 => '恩阳区', - 511921 => '通江县', - 511922 => '南江县', - 511923 => '平昌县', - 512000 => '资阳市', - 512002 => '雁江区', - 512021 => '安岳县', - 512022 => '乐至县', - 513200 => '阿坝藏族羌族自治州', - 513201 => '马尔康市', - 513221 => '汶川县', - 513222 => '理县', - 513223 => '茂县', - 513224 => '松潘县', - 513225 => '九寨沟县', - 513226 => '金川县', - 513227 => '小金县', - 513228 => '黑水县', - 513230 => '壤塘县', - 513231 => '阿坝县', - 513232 => '若尔盖县', - 513233 => '红原县', - 513300 => '甘孜藏族自治州', - 513301 => '康定市', - 513322 => '泸定县', - 513323 => '丹巴县', - 513324 => '九龙县', - 513325 => '雅江县', - 513326 => '道孚县', - 513327 => '炉霍县', - 513328 => '甘孜县', - 513329 => '新龙县', - 513330 => '德格县', - 513331 => '白玉县', - 513332 => '石渠县', - 513333 => '色达县', - 513334 => '理塘县', - 513335 => '巴塘县', - 513336 => '乡城县', - 513337 => '稻城县', - 513338 => '得荣县', - 513400 => '凉山彝族自治州', - 513401 => '西昌市', - 513422 => '木里藏族自治县', - 513423 => '盐源县', - 513424 => '德昌县', - 513425 => '会理县', - 513426 => '会东县', - 513427 => '宁南县', - 513428 => '普格县', - 513429 => '布拖县', - 513430 => '金阳县', - 513431 => '昭觉县', - 513432 => '喜德县', - 513433 => '冕宁县', - 513434 => '越西县', - 513435 => '甘洛县', - 513436 => '美姑县', - 513437 => '雷波县', - 520000 => '贵州省', - 520100 => '贵阳市', - 520102 => '南明区', - 520103 => '云岩区', - 520111 => '花溪区', - 520112 => '乌当区', - 520113 => '白云区', - 520115 => '观山湖区', - 520121 => '开阳县', - 520122 => '息烽县', - 520123 => '修文县', - 520181 => '清镇市', - 520200 => '六盘水市', - 520201 => '钟山区', - 520203 => '六枝特区', - 520221 => '水城县', - 520281 => '盘州市', - 520300 => '遵义市', - 520302 => '红花岗区', - 520303 => '汇川区', - 520304 => '播州区', - 520322 => '桐梓县', - 520323 => '绥阳县', - 520324 => '正安县', - 520325 => '道真仡佬族苗族自治县', - 520326 => '务川仡佬族苗族自治县', - 520327 => '凤冈县', - 520328 => '湄潭县', - 520329 => '余庆县', - 520330 => '习水县', - 520381 => '赤水市', - 520382 => '仁怀市', - 520400 => '安顺市', - 520402 => '西秀区', - 520403 => '平坝区', - 520422 => '普定县', - 520423 => '镇宁布依族苗族自治县', - 520424 => '关岭布依族苗族自治县', - 520425 => '紫云苗族布依族自治县', - 520500 => '毕节市', - 520502 => '七星关区', - 520521 => '大方县', - 520522 => '黔西县', - 520523 => '金沙县', - 520524 => '织金县', - 520525 => '纳雍县', - 520526 => '威宁彝族回族苗族自治县', - 520527 => '赫章县', - 520600 => '铜仁市', - 520602 => '碧江区', - 520603 => '万山区', - 520621 => '江口县', - 520622 => '玉屏侗族自治县', - 520623 => '石阡县', - 520624 => '思南县', - 520625 => '印江土家族苗族自治县', - 520626 => '德江县', - 520627 => '沿河土家族自治县', - 520628 => '松桃苗族自治县', - 522300 => '黔西南布依族苗族自治州', - 522301 => '兴义市', - 522302 => '兴仁市', - 522323 => '普安县', - 522324 => '晴隆县', - 522325 => '贞丰县', - 522326 => '望谟县', - 522327 => '册亨县', - 522328 => '安龙县', - 522600 => '黔东南苗族侗族自治州', - 522601 => '凯里市', - 522622 => '黄平县', - 522623 => '施秉县', - 522624 => '三穗县', - 522625 => '镇远县', - 522626 => '岑巩县', - 522627 => '天柱县', - 522628 => '锦屏县', - 522629 => '剑河县', - 522630 => '台江县', - 522631 => '黎平县', - 522632 => '榕江县', - 522633 => '从江县', - 522634 => '雷山县', - 522635 => '麻江县', - 522636 => '丹寨县', - 522700 => '黔南布依族苗族自治州', - 522701 => '都匀市', - 522702 => '福泉市', - 522722 => '荔波县', - 522723 => '贵定县', - 522725 => '瓮安县', - 522726 => '独山县', - 522727 => '平塘县', - 522728 => '罗甸县', - 522729 => '长顺县', - 522730 => '龙里县', - 522731 => '惠水县', - 522732 => '三都水族自治县', - 530000 => '云南省', - 530100 => '昆明市', - 530102 => '五华区', - 530103 => '盘龙区', - 530111 => '官渡区', - 530112 => '西山区', - 530113 => '东川区', - 530114 => '呈贡区', - 530115 => '晋宁区', - 530124 => '富民县', - 530125 => '宜良县', - 530126 => '石林彝族自治县', - 530127 => '嵩明县', - 530128 => '禄劝彝族苗族自治县', - 530129 => '寻甸回族彝族自治县', - 530181 => '安宁市', - 530300 => '曲靖市', - 530302 => '麒麟区', - 530303 => '沾益区', - 530304 => '马龙区', - 530322 => '陆良县', - 530323 => '师宗县', - 530324 => '罗平县', - 530325 => '富源县', - 530326 => '会泽县', - 530381 => '宣威市', - 530400 => '玉溪市', - 530402 => '红塔区', - 530403 => '江川区', - 530422 => '澄江县', - 530423 => '通海县', - 530424 => '华宁县', - 530425 => '易门县', - 530426 => '峨山彝族自治县', - 530427 => '新平彝族傣族自治县', - 530428 => '元江哈尼族彝族傣族自治县', - 530500 => '保山市', - 530502 => '隆阳区', - 530521 => '施甸县', - 530523 => '龙陵县', - 530524 => '昌宁县', - 530581 => '腾冲市', - 530600 => '昭通市', - 530602 => '昭阳区', - 530621 => '鲁甸县', - 530622 => '巧家县', - 530623 => '盐津县', - 530624 => '大关县', - 530625 => '永善县', - 530626 => '绥江县', - 530627 => '镇雄县', - 530628 => '彝良县', - 530629 => '威信县', - 530681 => '水富市', - 530700 => '丽江市', - 530702 => '古城区', - 530721 => '玉龙纳西族自治县', - 530722 => '永胜县', - 530723 => '华坪县', - 530724 => '宁蒗彝族自治县', - 530800 => '普洱市', - 530802 => '思茅区', - 530821 => '宁洱哈尼族彝族自治县', - 530822 => '墨江哈尼族自治县', - 530823 => '景东彝族自治县', - 530824 => '景谷傣族彝族自治县', - 530825 => '镇沅彝族哈尼族拉祜族自治县', - 530826 => '江城哈尼族彝族自治县', - 530827 => '孟连傣族拉祜族佤族自治县', - 530828 => '澜沧拉祜族自治县', - 530829 => '西盟佤族自治县', - 530900 => '临沧市', - 530902 => '临翔区', - 530921 => '凤庆县', - 530922 => '云县', - 530923 => '永德县', - 530924 => '镇康县', - 530925 => '双江拉祜族佤族布朗族傣族自治县', - 530926 => '耿马傣族佤族自治县', - 530927 => '沧源佤族自治县', - 532300 => '楚雄彝族自治州', - 532301 => '楚雄市', - 532322 => '双柏县', - 532323 => '牟定县', - 532324 => '南华县', - 532325 => '姚安县', - 532326 => '大姚县', - 532327 => '永仁县', - 532328 => '元谋县', - 532329 => '武定县', - 532331 => '禄丰县', - 532500 => '红河哈尼族彝族自治州', - 532501 => '个旧市', - 532502 => '开远市', - 532503 => '蒙自市', - 532504 => '弥勒市', - 532523 => '屏边苗族自治县', - 532524 => '建水县', - 532525 => '石屏县', - 532527 => '泸西县', - 532528 => '元阳县', - 532529 => '红河县', - 532530 => '金平苗族瑶族傣族自治县', - 532531 => '绿春县', - 532532 => '河口瑶族自治县', - 532600 => '文山壮族苗族自治州', - 532601 => '文山市', - 532622 => '砚山县', - 532623 => '西畴县', - 532624 => '麻栗坡县', - 532625 => '马关县', - 532626 => '丘北县', - 532627 => '广南县', - 532628 => '富宁县', - 532800 => '西双版纳傣族自治州', - 532801 => '景洪市', - 532822 => '勐海县', - 532823 => '勐腊县', - 532900 => '大理白族自治州', - 532901 => '大理市', - 532922 => '漾濞彝族自治县', - 532923 => '祥云县', - 532924 => '宾川县', - 532925 => '弥渡县', - 532926 => '南涧彝族自治县', - 532927 => '巍山彝族回族自治县', - 532928 => '永平县', - 532929 => '云龙县', - 532930 => '洱源县', - 532931 => '剑川县', - 532932 => '鹤庆县', - 533100 => '德宏傣族景颇族自治州', - 533102 => '瑞丽市', - 533103 => '芒市', - 533122 => '梁河县', - 533123 => '盈江县', - 533124 => '陇川县', - 533300 => '怒江傈僳族自治州', - 533301 => '泸水市', - 533323 => '福贡县', - 533324 => '贡山独龙族怒族自治县', - 533325 => '兰坪白族普米族自治县', - 533400 => '迪庆藏族自治州', - 533401 => '香格里拉市', - 533422 => '德钦县', - 533423 => '维西傈僳族自治县', - 540000 => '西藏自治区', - 540100 => '拉萨市', - 540102 => '城关区', - 540103 => '堆龙德庆区', - 540104 => '达孜区', - 540121 => '林周县', - 540122 => '当雄县', - 540123 => '尼木县', - 540124 => '曲水县', - 540127 => '墨竹工卡县', - 540200 => '日喀则市', - 540202 => '桑珠孜区', - 540221 => '南木林县', - 540222 => '江孜县', - 540223 => '定日县', - 540224 => '萨迦县', - 540225 => '拉孜县', - 540226 => '昂仁县', - 540227 => '谢通门县', - 540228 => '白朗县', - 540229 => '仁布县', - 540230 => '康马县', - 540231 => '定结县', - 540232 => '仲巴县', - 540233 => '亚东县', - 540234 => '吉隆县', - 540235 => '聂拉木县', - 540236 => '萨嘎县', - 540237 => '岗巴县', - 540300 => '昌都市', - 540302 => '卡若区', - 540321 => '江达县', - 540322 => '贡觉县', - 540323 => '类乌齐县', - 540324 => '丁青县', - 540325 => '察雅县', - 540326 => '八宿县', - 540327 => '左贡县', - 540328 => '芒康县', - 540329 => '洛隆县', - 540330 => '边坝县', - 540400 => '林芝市', - 540402 => '巴宜区', - 540421 => '工布江达县', - 540422 => '米林县', - 540423 => '墨脱县', - 540424 => '波密县', - 540425 => '察隅县', - 540426 => '朗县', - 540500 => '山南市', - 540502 => '乃东区', - 540521 => '扎囊县', - 540522 => '贡嘎县', - 540523 => '桑日县', - 540524 => '琼结县', - 540525 => '曲松县', - 540526 => '措美县', - 540527 => '洛扎县', - 540528 => '加查县', - 540529 => '隆子县', - 540530 => '错那县', - 540531 => '浪卡子县', - 540600 => '那曲市', - 540602 => '色尼区', - 540621 => '嘉黎县', - 540622 => '比如县', - 540623 => '聂荣县', - 540624 => '安多县', - 540625 => '申扎县', - 540626 => '索县', - 540627 => '班戈县', - 540628 => '巴青县', - 540629 => '尼玛县', - 540630 => '双湖县', - 542500 => '阿里地区', - 542521 => '普兰县', - 542522 => '札达县', - 542523 => '噶尔县', - 542524 => '日土县', - 542525 => '革吉县', - 542526 => '改则县', - 542527 => '措勤县', - 610000 => '陕西省', - 610100 => '西安市', - 610102 => '新城区', - 610103 => '碑林区', - 610104 => '莲湖区', - 610111 => '灞桥区', - 610112 => '未央区', - 610113 => '雁塔区', - 610114 => '阎良区', - 610115 => '临潼区', - 610116 => '长安区', - 610117 => '高陵区', - 610118 => '鄠邑区', - 610122 => '蓝田县', - 610124 => '周至县', - 610200 => '铜川市', - 610202 => '王益区', - 610203 => '印台区', - 610204 => '耀州区', - 610222 => '宜君县', - 610300 => '宝鸡市', - 610302 => '渭滨区', - 610303 => '金台区', - 610304 => '陈仓区', - 610322 => '凤翔县', - 610323 => '岐山县', - 610324 => '扶风县', - 610326 => '眉县', - 610327 => '陇县', - 610328 => '千阳县', - 610329 => '麟游县', - 610330 => '凤县', - 610331 => '太白县', - 610400 => '咸阳市', - 610402 => '秦都区', - 610403 => '杨陵区', - 610404 => '渭城区', - 610422 => '三原县', - 610423 => '泾阳县', - 610424 => '乾县', - 610425 => '礼泉县', - 610426 => '永寿县', - 610428 => '长武县', - 610429 => '旬邑县', - 610430 => '淳化县', - 610431 => '武功县', - 610481 => '兴平市', - 610482 => '彬州市', - 610500 => '渭南市', - 610502 => '临渭区', - 610503 => '华州区', - 610522 => '潼关县', - 610523 => '大荔县', - 610524 => '合阳县', - 610525 => '澄城县', - 610526 => '蒲城县', - 610527 => '白水县', - 610528 => '富平县', - 610581 => '韩城市', - 610582 => '华阴市', - 610600 => '延安市', - 610602 => '宝塔区', - 610603 => '安塞区', - 610621 => '延长县', - 610622 => '延川县', - 610623 => '子长县', - 610625 => '志丹县', - 610626 => '吴起县', - 610627 => '甘泉县', - 610628 => '富县', - 610629 => '洛川县', - 610630 => '宜川县', - 610631 => '黄龙县', - 610632 => '黄陵县', - 610700 => '汉中市', - 610702 => '汉台区', - 610703 => '南郑区', - 610722 => '城固县', - 610723 => '洋县', - 610724 => '西乡县', - 610725 => '勉县', - 610726 => '宁强县', - 610727 => '略阳县', - 610728 => '镇巴县', - 610729 => '留坝县', - 610730 => '佛坪县', - 610800 => '榆林市', - 610802 => '榆阳区', - 610803 => '横山区', - 610822 => '府谷县', - 610824 => '靖边县', - 610825 => '定边县', - 610826 => '绥德县', - 610827 => '米脂县', - 610828 => '佳县', - 610829 => '吴堡县', - 610830 => '清涧县', - 610831 => '子洲县', - 610881 => '神木市', - 610900 => '安康市', - 610902 => '汉滨区', - 610921 => '汉阴县', - 610922 => '石泉县', - 610923 => '宁陕县', - 610924 => '紫阳县', - 610925 => '岚皋县', - 610926 => '平利县', - 610927 => '镇坪县', - 610928 => '旬阳县', - 610929 => '白河县', - 611000 => '商洛市', - 611002 => '商州区', - 611021 => '洛南县', - 611022 => '丹凤县', - 611023 => '商南县', - 611024 => '山阳县', - 611025 => '镇安县', - 611026 => '柞水县', - 620000 => '甘肃省', - 620100 => '兰州市', - 620102 => '城关区', - 620103 => '七里河区', - 620104 => '西固区', - 620105 => '安宁区', - 620111 => '红古区', - 620121 => '永登县', - 620122 => '皋兰县', - 620123 => '榆中县', - 620200 => '嘉峪关市', - 620300 => '金昌市', - 620302 => '金川区', - 620321 => '永昌县', - 620400 => '白银市', - 620402 => '白银区', - 620403 => '平川区', - 620421 => '靖远县', - 620422 => '会宁县', - 620423 => '景泰县', - 620500 => '天水市', - 620502 => '秦州区', - 620503 => '麦积区', - 620521 => '清水县', - 620522 => '秦安县', - 620523 => '甘谷县', - 620524 => '武山县', - 620525 => '张家川回族自治县', - 620600 => '武威市', - 620602 => '凉州区', - 620621 => '民勤县', - 620622 => '古浪县', - 620623 => '天祝藏族自治县', - 620700 => '张掖市', - 620702 => '甘州区', - 620721 => '肃南裕固族自治县', - 620722 => '民乐县', - 620723 => '临泽县', - 620724 => '高台县', - 620725 => '山丹县', - 620800 => '平凉市', - 620802 => '崆峒区', - 620821 => '泾川县', - 620822 => '灵台县', - 620823 => '崇信县', - 620825 => '庄浪县', - 620826 => '静宁县', - 620881 => '华亭市', - 620900 => '酒泉市', - 620902 => '肃州区', - 620921 => '金塔县', - 620922 => '瓜州县', - 620923 => '肃北蒙古族自治县', - 620924 => '阿克塞哈萨克族自治县', - 620981 => '玉门市', - 620982 => '敦煌市', - 621000 => '庆阳市', - 621002 => '西峰区', - 621021 => '庆城县', - 621022 => '环县', - 621023 => '华池县', - 621024 => '合水县', - 621025 => '正宁县', - 621026 => '宁县', - 621027 => '镇原县', - 621100 => '定西市', - 621102 => '安定区', - 621121 => '通渭县', - 621122 => '陇西县', - 621123 => '渭源县', - 621124 => '临洮县', - 621125 => '漳县', - 621126 => '岷县', - 621200 => '陇南市', - 621202 => '武都区', - 621221 => '成县', - 621222 => '文县', - 621223 => '宕昌县', - 621224 => '康县', - 621225 => '西和县', - 621226 => '礼县', - 621227 => '徽县', - 621228 => '两当县', - 622900 => '临夏回族自治州', - 622901 => '临夏市', - 622921 => '临夏县', - 622922 => '康乐县', - 622923 => '永靖县', - 622924 => '广河县', - 622925 => '和政县', - 622926 => '东乡族自治县', - 622927 => '积石山保安族东乡族撒拉族自治县', - 623000 => '甘南藏族自治州', - 623001 => '合作市', - 623021 => '临潭县', - 623022 => '卓尼县', - 623023 => '舟曲县', - 623024 => '迭部县', - 623025 => '玛曲县', - 623026 => '碌曲县', - 623027 => '夏河县', - 630000 => '青海省', - 630100 => '西宁市', - 630102 => '城东区', - 630103 => '城中区', - 630104 => '城西区', - 630105 => '城北区', - 630121 => '大通回族土族自治县', - 630122 => '湟中县', - 630123 => '湟源县', - 630200 => '海东市', - 630202 => '乐都区', - 630203 => '平安区', - 630222 => '民和回族土族自治县', - 630223 => '互助土族自治县', - 630224 => '化隆回族自治县', - 630225 => '循化撒拉族自治县', - 632200 => '海北藏族自治州', - 632221 => '门源回族自治县', - 632222 => '祁连县', - 632223 => '海晏县', - 632224 => '刚察县', - 632300 => '黄南藏族自治州', - 632321 => '同仁县', - 632322 => '尖扎县', - 632323 => '泽库县', - 632324 => '河南蒙古族自治县', - 632500 => '海南藏族自治州', - 632521 => '共和县', - 632522 => '同德县', - 632523 => '贵德县', - 632524 => '兴海县', - 632525 => '贵南县', - 632600 => '果洛藏族自治州', - 632621 => '玛沁县', - 632622 => '班玛县', - 632623 => '甘德县', - 632624 => '达日县', - 632625 => '久治县', - 632626 => '玛多县', - 632700 => '玉树藏族自治州', - 632701 => '玉树市', - 632722 => '杂多县', - 632723 => '称多县', - 632724 => '治多县', - 632725 => '囊谦县', - 632726 => '曲麻莱县', - 632800 => '海西蒙古族藏族自治州', - 632801 => '格尔木市', - 632802 => '德令哈市', - 632803 => '茫崖市', - 632821 => '乌兰县', - 632822 => '都兰县', - 632823 => '天峻县', - 640000 => '宁夏回族自治区', - 640100 => '银川市', - 640104 => '兴庆区', - 640105 => '西夏区', - 640106 => '金凤区', - 640121 => '永宁县', - 640122 => '贺兰县', - 640181 => '灵武市', - 640200 => '石嘴山市', - 640202 => '大武口区', - 640205 => '惠农区', - 640221 => '平罗县', - 640300 => '吴忠市', - 640302 => '利通区', - 640303 => '红寺堡区', - 640323 => '盐池县', - 640324 => '同心县', - 640381 => '青铜峡市', - 640400 => '固原市', - 640402 => '原州区', - 640422 => '西吉县', - 640423 => '隆德县', - 640424 => '泾源县', - 640425 => '彭阳县', - 640500 => '中卫市', - 640502 => '沙坡头区', - 640521 => '中宁县', - 640522 => '海原县', - 650000 => '新疆维吾尔自治区', - 650100 => '乌鲁木齐市', - 650102 => '天山区', - 650103 => '沙依巴克区', - 650104 => '新市区', - 650105 => '水磨沟区', - 650106 => '头屯河区', - 650107 => '达坂城区', - 650109 => '米东区', - 650121 => '乌鲁木齐县', - 650200 => '克拉玛依市', - 650202 => '独山子区', - 650203 => '克拉玛依区', - 650204 => '白碱滩区', - 650205 => '乌尔禾区', - 650400 => '吐鲁番市', - 650402 => '高昌区', - 650421 => '鄯善县', - 650422 => '托克逊县', - 650500 => '哈密市', - 650502 => '伊州区', - 650521 => '巴里坤哈萨克自治县', - 650522 => '伊吾县', - 652300 => '昌吉回族自治州', - 652301 => '昌吉市', - 652302 => '阜康市', - 652323 => '呼图壁县', - 652324 => '玛纳斯县', - 652325 => '奇台县', - 652327 => '吉木萨尔县', - 652328 => '木垒哈萨克自治县', - 652700 => '博尔塔拉蒙古自治州', - 652701 => '博乐市', - 652702 => '阿拉山口市', - 652722 => '精河县', - 652723 => '温泉县', - 652800 => '巴音郭楞蒙古自治州', - 652801 => '库尔勒市', - 652822 => '轮台县', - 652823 => '尉犁县', - 652824 => '若羌县', - 652825 => '且末县', - 652826 => '焉耆回族自治县', - 652827 => '和静县', - 652828 => '和硕县', - 652829 => '博湖县', - 652900 => '阿克苏地区', - 652901 => '阿克苏市', - 652922 => '温宿县', - 652923 => '库车县', - 652924 => '沙雅县', - 652925 => '新和县', - 652926 => '拜城县', - 652927 => '乌什县', - 652928 => '阿瓦提县', - 652929 => '柯坪县', - 653000 => '克孜勒苏柯尔克孜自治州', - 653001 => '阿图什市', - 653022 => '阿克陶县', - 653023 => '阿合奇县', - 653024 => '乌恰县', - 653100 => '喀什地区', - 653101 => '喀什市', - 653121 => '疏附县', - 653122 => '疏勒县', - 653123 => '英吉沙县', - 653124 => '泽普县', - 653125 => '莎车县', - 653126 => '叶城县', - 653127 => '麦盖提县', - 653128 => '岳普湖县', - 653129 => '伽师县', - 653130 => '巴楚县', - 653131 => '塔什库尔干塔吉克自治县', - 653200 => '和田地区', - 653201 => '和田市', - 653221 => '和田县', - 653222 => '墨玉县', - 653223 => '皮山县', - 653224 => '洛浦县', - 653225 => '策勒县', - 653226 => '于田县', - 653227 => '民丰县', - 654000 => '伊犁哈萨克自治州', - 654002 => '伊宁市', - 654003 => '奎屯市', - 654004 => '霍尔果斯市', - 654021 => '伊宁县', - 654022 => '察布查尔锡伯自治县', - 654023 => '霍城县', - 654024 => '巩留县', - 654025 => '新源县', - 654026 => '昭苏县', - 654027 => '特克斯县', - 654028 => '尼勒克县', - 654200 => '塔城地区', - 654201 => '塔城市', - 654202 => '乌苏市', - 654221 => '额敏县', - 654223 => '沙湾县', - 654224 => '托里县', - 654225 => '裕民县', - 654226 => '和布克赛尔蒙古自治县', - 654300 => '阿勒泰地区', - 654301 => '阿勒泰市', - 654321 => '布尔津县', - 654322 => '富蕴县', - 654323 => '福海县', - 654324 => '哈巴河县', - 654325 => '青河县', - 654326 => '吉木乃县', - 659001 => '石河子市', - 659002 => '阿拉尔市', - 659003 => '图木舒克市', - 659004 => '五家渠市', - 659005 => '北屯市', - 659006 => '铁门关市', - 659007 => '双河市', - 659008 => '可克达拉市', - 659009 => '昆玉市', - 810000 => '香港特别行政区', - 820000 => '澳门特别行政区', - 830000 => '台湾省', -]; + 110000 => "北京市", + 110101 => "东城区", + 110102 => "西城区", + 110105 => "朝阳区", + 110106 => "丰台区", + 110107 => "石景山区", + 110108 => "海淀区", + 110109 => "门头沟区", + 110111 => "房山区", + 110112 => "通州区", + 110113 => "顺义区", + 110114 => "昌平区", + 110115 => "大兴区", + 110116 => "怀柔区", + 110117 => "平谷区", + 110118 => "密云区", + 110119 => "延庆区", + 120000 => "天津市", + 120101 => "和平区", + 120102 => "河东区", + 120103 => "河西区", + 120104 => "南开区", + 120105 => "河北区", + 120106 => "红桥区", + 120110 => "东丽区", + 120111 => "西青区", + 120112 => "津南区", + 120113 => "北辰区", + 120114 => "武清区", + 120115 => "宝坻区", + 120116 => "滨海新区", + 120117 => "宁河区", + 120118 => "静海区", + 120119 => "蓟州区", + 130000 => "河北省", + 130100 => "石家庄市", + 130102 => "长安区", + 130104 => "桥西区", + 130105 => "新华区", + 130107 => "井陉矿区", + 130108 => "裕华区", + 130109 => "藁城区", + 130110 => "鹿泉区", + 130111 => "栾城区", + 130121 => "井陉县", + 130123 => "正定县", + 130125 => "行唐县", + 130126 => "灵寿县", + 130127 => "高邑县", + 130128 => "深泽县", + 130129 => "赞皇县", + 130130 => "无极县", + 130131 => "平山县", + 130132 => "元氏县", + 130133 => "赵县", + 130181 => "辛集市", + 130183 => "晋州市", + 130184 => "新乐市", + 130200 => "唐山市", + 130202 => "路南区", + 130203 => "路北区", + 130204 => "古冶区", + 130205 => "开平区", + 130207 => "丰南区", + 130208 => "丰润区", + 130209 => "曹妃甸区", + 130224 => "滦南县", + 130225 => "乐亭县", + 130227 => "迁西县", + 130229 => "玉田县", + 130281 => "遵化市", + 130283 => "迁安市", + 130284 => "滦州市", + 130300 => "秦皇岛市", + 130302 => "海港区", + 130303 => "山海关区", + 130304 => "北戴河区", + 130306 => "抚宁区", + 130321 => "青龙满族自治县", + 130322 => "昌黎县", + 130324 => "卢龙县", + 130400 => "邯郸市", + 130402 => "邯山区", + 130403 => "丛台区", + 130404 => "复兴区", + 130406 => "峰峰矿区", + 130407 => "肥乡区", + 130408 => "永年区", + 130423 => "临漳县", + 130424 => "成安县", + 130425 => "大名县", + 130426 => "涉县", + 130427 => "磁县", + 130430 => "邱县", + 130431 => "鸡泽县", + 130432 => "广平县", + 130433 => "馆陶县", + 130434 => "魏县", + 130435 => "曲周县", + 130481 => "武安市", + 130500 => "邢台市", + 130502 => "桥东区", + 130503 => "桥西区", + 130521 => "邢台县", + 130522 => "临城县", + 130523 => "内丘县", + 130524 => "柏乡县", + 130525 => "隆尧县", + 130526 => "任县", + 130527 => "南和县", + 130528 => "宁晋县", + 130529 => "巨鹿县", + 130530 => "新河县", + 130531 => "广宗县", + 130532 => "平乡县", + 130533 => "威县", + 130534 => "清河县", + 130535 => "临西县", + 130581 => "南宫市", + 130582 => "沙河市", + 130600 => "保定市", + 130602 => "竞秀区", + 130606 => "莲池区", + 130607 => "满城区", + 130608 => "清苑区", + 130609 => "徐水区", + 130623 => "涞水县", + 130624 => "阜平县", + 130626 => "定兴县", + 130627 => "唐县", + 130628 => "高阳县", + 130629 => "容城县", + 130630 => "涞源县", + 130631 => "望都县", + 130632 => "安新县", + 130633 => "易县", + 130634 => "曲阳县", + 130635 => "蠡县", + 130636 => "顺平县", + 130637 => "博野县", + 130638 => "雄县", + 130681 => "涿州市", + 130682 => "定州市", + 130683 => "安国市", + 130684 => "高碑店市", + 130700 => "张家口市", + 130702 => "桥东区", + 130703 => "桥西区", + 130705 => "宣化区", + 130706 => "下花园区", + 130708 => "万全区", + 130709 => "崇礼区", + 130722 => "张北县", + 130723 => "康保县", + 130724 => "沽源县", + 130725 => "尚义县", + 130726 => "蔚县", + 130727 => "阳原县", + 130728 => "怀安县", + 130730 => "怀来县", + 130731 => "涿鹿县", + 130732 => "赤城县", + 130800 => "承德市", + 130802 => "双桥区", + 130803 => "双滦区", + 130804 => "鹰手营子矿区", + 130821 => "承德县", + 130822 => "兴隆县", + 130824 => "滦平县", + 130825 => "隆化县", + 130826 => "丰宁满族自治县", + 130827 => "宽城满族自治县", + 130828 => "围场满族蒙古族自治县", + 130881 => "平泉市", + 130900 => "沧州市", + 130902 => "新华区", + 130903 => "运河区", + 130921 => "沧县", + 130922 => "青县", + 130923 => "东光县", + 130924 => "海兴县", + 130925 => "盐山县", + 130926 => "肃宁县", + 130927 => "南皮县", + 130928 => "吴桥县", + 130929 => "献县", + 130930 => "孟村回族自治县", + 130981 => "泊头市", + 130982 => "任丘市", + 130983 => "黄骅市", + 130984 => "河间市", + 131000 => "廊坊市", + 131002 => "安次区", + 131003 => "广阳区", + 131022 => "固安县", + 131023 => "永清县", + 131024 => "香河县", + 131025 => "大城县", + 131026 => "文安县", + 131028 => "大厂回族自治县", + 131081 => "霸州市", + 131082 => "三河市", + 131100 => "衡水市", + 131102 => "桃城区", + 131103 => "冀州区", + 131121 => "枣强县", + 131122 => "武邑县", + 131123 => "武强县", + 131124 => "饶阳县", + 131125 => "安平县", + 131126 => "故城县", + 131127 => "景县", + 131128 => "阜城县", + 131182 => "深州市", + 140000 => "山西省", + 140100 => "太原市", + 140105 => "小店区", + 140106 => "迎泽区", + 140107 => "杏花岭区", + 140108 => "尖草坪区", + 140109 => "万柏林区", + 140110 => "晋源区", + 140121 => "清徐县", + 140122 => "阳曲县", + 140123 => "娄烦县", + 140181 => "古交市", + 140200 => "大同市", + 140212 => "新荣区", + 140213 => "平城区", + 140214 => "云冈区", + 140215 => "云州区", + 140221 => "阳高县", + 140222 => "天镇县", + 140223 => "广灵县", + 140224 => "灵丘县", + 140225 => "浑源县", + 140226 => "左云县", + 140300 => "阳泉市", + 140302 => "城区", + 140303 => "矿区", + 140311 => "郊区", + 140321 => "平定县", + 140322 => "盂县", + 140400 => "长治市", + 140403 => "潞州区", + 140404 => "上党区", + 140405 => "屯留区", + 140406 => "潞城区", + 140423 => "襄垣县", + 140425 => "平顺县", + 140426 => "黎城县", + 140427 => "壶关县", + 140428 => "长子县", + 140429 => "武乡县", + 140430 => "沁县", + 140431 => "沁源县", + 140500 => "晋城市", + 140502 => "城区", + 140521 => "沁水县", + 140522 => "阳城县", + 140524 => "陵川县", + 140525 => "泽州县", + 140581 => "高平市", + 140600 => "朔州市", + 140602 => "朔城区", + 140603 => "平鲁区", + 140621 => "山阴县", + 140622 => "应县", + 140623 => "右玉县", + 140681 => "怀仁市", + 140700 => "晋中市", + 140702 => "榆次区", + 140721 => "榆社县", + 140722 => "左权县", + 140723 => "和顺县", + 140724 => "昔阳县", + 140725 => "寿阳县", + 140726 => "太谷县", + 140727 => "祁县", + 140728 => "平遥县", + 140729 => "灵石县", + 140781 => "介休市", + 140800 => "运城市", + 140802 => "盐湖区", + 140821 => "临猗县", + 140822 => "万荣县", + 140823 => "闻喜县", + 140824 => "稷山县", + 140825 => "新绛县", + 140826 => "绛县", + 140827 => "垣曲县", + 140828 => "夏县", + 140829 => "平陆县", + 140830 => "芮城县", + 140881 => "永济市", + 140882 => "河津市", + 140900 => "忻州市", + 140902 => "忻府区", + 140921 => "定襄县", + 140922 => "五台县", + 140923 => "代县", + 140924 => "繁峙县", + 140925 => "宁武县", + 140926 => "静乐县", + 140927 => "神池县", + 140928 => "五寨县", + 140929 => "岢岚县", + 140930 => "河曲县", + 140931 => "保德县", + 140932 => "偏关县", + 140981 => "原平市", + 141000 => "临汾市", + 141002 => "尧都区", + 141021 => "曲沃县", + 141022 => "翼城县", + 141023 => "襄汾县", + 141024 => "洪洞县", + 141025 => "古县", + 141026 => "安泽县", + 141027 => "浮山县", + 141028 => "吉县", + 141029 => "乡宁县", + 141030 => "大宁县", + 141031 => "隰县", + 141032 => "永和县", + 141033 => "蒲县", + 141034 => "汾西县", + 141081 => "侯马市", + 141082 => "霍州市", + 141100 => "吕梁市", + 141102 => "离石区", + 141121 => "文水县", + 141122 => "交城县", + 141123 => "兴县", + 141124 => "临县", + 141125 => "柳林县", + 141126 => "石楼县", + 141127 => "岚县", + 141128 => "方山县", + 141129 => "中阳县", + 141130 => "交口县", + 141181 => "孝义市", + 141182 => "汾阳市", + 150000 => "内蒙古自治区", + 150100 => "呼和浩特市", + 150102 => "新城区", + 150103 => "回民区", + 150104 => "玉泉区", + 150105 => "赛罕区", + 150121 => "土默特左旗", + 150122 => "托克托县", + 150123 => "和林格尔县", + 150124 => "清水河县", + 150125 => "武川县", + 150200 => "包头市", + 150202 => "东河区", + 150203 => "昆都仑区", + 150204 => "青山区", + 150205 => "石拐区", + 150206 => "白云鄂博矿区", + 150207 => "九原区", + 150221 => "土默特右旗", + 150222 => "固阳县", + 150223 => "达尔罕茂明安联合旗", + 150300 => "乌海市", + 150302 => "海勃湾区", + 150303 => "海南区", + 150304 => "乌达区", + 150400 => "赤峰市", + 150402 => "红山区", + 150403 => "元宝山区", + 150404 => "松山区", + 150421 => "阿鲁科尔沁旗", + 150422 => "巴林左旗", + 150423 => "巴林右旗", + 150424 => "林西县", + 150425 => "克什克腾旗", + 150426 => "翁牛特旗", + 150428 => "喀喇沁旗", + 150429 => "宁城县", + 150430 => "敖汉旗", + 150500 => "通辽市", + 150502 => "科尔沁区", + 150521 => "科尔沁左翼中旗", + 150522 => "科尔沁左翼后旗", + 150523 => "开鲁县", + 150524 => "库伦旗", + 150525 => "奈曼旗", + 150526 => "扎鲁特旗", + 150581 => "霍林郭勒市", + 150600 => "鄂尔多斯市", + 150602 => "东胜区", + 150603 => "康巴什区", + 150621 => "达拉特旗", + 150622 => "准格尔旗", + 150623 => "鄂托克前旗", + 150624 => "鄂托克旗", + 150625 => "杭锦旗", + 150626 => "乌审旗", + 150627 => "伊金霍洛旗", + 150700 => "呼伦贝尔市", + 150702 => "海拉尔区", + 150703 => "扎赉诺尔区", + 150721 => "阿荣旗", + 150722 => "莫力达瓦达斡尔族自治旗", + 150723 => "鄂伦春自治旗", + 150724 => "鄂温克族自治旗", + 150725 => "陈巴尔虎旗", + 150726 => "新巴尔虎左旗", + 150727 => "新巴尔虎右旗", + 150781 => "满洲里市", + 150782 => "牙克石市", + 150783 => "扎兰屯市", + 150784 => "额尔古纳市", + 150785 => "根河市", + 150800 => "巴彦淖尔市", + 150802 => "临河区", + 150821 => "五原县", + 150822 => "磴口县", + 150823 => "乌拉特前旗", + 150824 => "乌拉特中旗", + 150825 => "乌拉特后旗", + 150826 => "杭锦后旗", + 150900 => "乌兰察布市", + 150902 => "集宁区", + 150921 => "卓资县", + 150922 => "化德县", + 150923 => "商都县", + 150924 => "兴和县", + 150925 => "凉城县", + 150926 => "察哈尔右翼前旗", + 150927 => "察哈尔右翼中旗", + 150928 => "察哈尔右翼后旗", + 150929 => "四子王旗", + 150981 => "丰镇市", + 152200 => "兴安盟", + 152201 => "乌兰浩特市", + 152202 => "阿尔山市", + 152221 => "科尔沁右翼前旗", + 152222 => "科尔沁右翼中旗", + 152223 => "扎赉特旗", + 152224 => "突泉县", + 152500 => "锡林郭勒盟", + 152501 => "二连浩特市", + 152502 => "锡林浩特市", + 152522 => "阿巴嘎旗", + 152523 => "苏尼特左旗", + 152524 => "苏尼特右旗", + 152525 => "东乌珠穆沁旗", + 152526 => "西乌珠穆沁旗", + 152527 => "太仆寺旗", + 152528 => "镶黄旗", + 152529 => "正镶白旗", + 152530 => "正蓝旗", + 152531 => "多伦县", + 152900 => "阿拉善盟", + 152921 => "阿拉善左旗", + 152922 => "阿拉善右旗", + 152923 => "额济纳旗", + 210000 => "辽宁省", + 210100 => "沈阳市", + 210102 => "和平区", + 210103 => "沈河区", + 210104 => "大东区", + 210105 => "皇姑区", + 210106 => "铁西区", + 210111 => "苏家屯区", + 210112 => "浑南区", + 210113 => "沈北新区", + 210114 => "于洪区", + 210115 => "辽中区", + 210123 => "康平县", + 210124 => "法库县", + 210181 => "新民市", + 210200 => "大连市", + 210202 => "中山区", + 210203 => "西岗区", + 210204 => "沙河口区", + 210211 => "甘井子区", + 210212 => "旅顺口区", + 210213 => "金州区", + 210214 => "普兰店区", + 210224 => "长海县", + 210281 => "瓦房店市", + 210283 => "庄河市", + 210300 => "鞍山市", + 210302 => "铁东区", + 210303 => "铁西区", + 210304 => "立山区", + 210311 => "千山区", + 210321 => "台安县", + 210323 => "岫岩满族自治县", + 210381 => "海城市", + 210400 => "抚顺市", + 210402 => "新抚区", + 210403 => "东洲区", + 210404 => "望花区", + 210411 => "顺城区", + 210421 => "抚顺县", + 210422 => "新宾满族自治县", + 210423 => "清原满族自治县", + 210500 => "本溪市", + 210502 => "平山区", + 210503 => "溪湖区", + 210504 => "明山区", + 210505 => "南芬区", + 210521 => "本溪满族自治县", + 210522 => "桓仁满族自治县", + 210600 => "丹东市", + 210602 => "元宝区", + 210603 => "振兴区", + 210604 => "振安区", + 210624 => "宽甸满族自治县", + 210681 => "东港市", + 210682 => "凤城市", + 210700 => "锦州市", + 210702 => "古塔区", + 210703 => "凌河区", + 210711 => "太和区", + 210726 => "黑山县", + 210727 => "义县", + 210781 => "凌海市", + 210782 => "北镇市", + 210800 => "营口市", + 210802 => "站前区", + 210803 => "西市区", + 210804 => "鲅鱼圈区", + 210811 => "老边区", + 210881 => "盖州市", + 210882 => "大石桥市", + 210900 => "阜新市", + 210902 => "海州区", + 210903 => "新邱区", + 210904 => "太平区", + 210905 => "清河门区", + 210911 => "细河区", + 210921 => "阜新蒙古族自治县", + 210922 => "彰武县", + 211000 => "辽阳市", + 211002 => "白塔区", + 211003 => "文圣区", + 211004 => "宏伟区", + 211005 => "弓长岭区", + 211011 => "太子河区", + 211021 => "辽阳县", + 211081 => "灯塔市", + 211100 => "盘锦市", + 211102 => "双台子区", + 211103 => "兴隆台区", + 211104 => "大洼区", + 211122 => "盘山县", + 211200 => "铁岭市", + 211202 => "银州区", + 211204 => "清河区", + 211221 => "铁岭县", + 211223 => "西丰县", + 211224 => "昌图县", + 211281 => "调兵山市", + 211282 => "开原市", + 211300 => "朝阳市", + 211302 => "双塔区", + 211303 => "龙城区", + 211321 => "朝阳县", + 211322 => "建平县", + 211324 => "喀喇沁左翼蒙古族自治县", + 211381 => "北票市", + 211382 => "凌源市", + 211400 => "葫芦岛市", + 211402 => "连山区", + 211403 => "龙港区", + 211404 => "南票区", + 211421 => "绥中县", + 211422 => "建昌县", + 211481 => "兴城市", + 220000 => "吉林省", + 220100 => "长春市", + 220102 => "南关区", + 220103 => "宽城区", + 220104 => "朝阳区", + 220105 => "二道区", + 220106 => "绿园区", + 220112 => "双阳区", + 220113 => "九台区", + 220122 => "农安县", + 220182 => "榆树市", + 220183 => "德惠市", + 220200 => "吉林市", + 220202 => "昌邑区", + 220203 => "龙潭区", + 220204 => "船营区", + 220211 => "丰满区", + 220221 => "永吉县", + 220281 => "蛟河市", + 220282 => "桦甸市", + 220283 => "舒兰市", + 220284 => "磐石市", + 220300 => "四平市", + 220302 => "铁西区", + 220303 => "铁东区", + 220322 => "梨树县", + 220323 => "伊通满族自治县", + 220381 => "公主岭市", + 220382 => "双辽市", + 220400 => "辽源市", + 220402 => "龙山区", + 220403 => "西安区", + 220421 => "东丰县", + 220422 => "东辽县", + 220500 => "通化市", + 220502 => "东昌区", + 220503 => "二道江区", + 220521 => "通化县", + 220523 => "辉南县", + 220524 => "柳河县", + 220581 => "梅河口市", + 220582 => "集安市", + 220600 => "白山市", + 220602 => "浑江区", + 220605 => "江源区", + 220621 => "抚松县", + 220622 => "靖宇县", + 220623 => "长白朝鲜族自治县", + 220681 => "临江市", + 220700 => "松原市", + 220702 => "宁江区", + 220721 => "前郭尔罗斯蒙古族自治县", + 220722 => "长岭县", + 220723 => "乾安县", + 220781 => "扶余市", + 220800 => "白城市", + 220802 => "洮北区", + 220821 => "镇赉县", + 220822 => "通榆县", + 220881 => "洮南市", + 220882 => "大安市", + 222400 => "延边朝鲜族自治州", + 222401 => "延吉市", + 222402 => "图们市", + 222403 => "敦化市", + 222404 => "珲春市", + 222405 => "龙井市", + 222406 => "和龙市", + 222424 => "汪清县", + 222426 => "安图县", + 230000 => "黑龙江省", + 230100 => "哈尔滨市", + 230102 => "道里区", + 230103 => "南岗区", + 230104 => "道外区", + 230108 => "平房区", + 230109 => "松北区", + 230110 => "香坊区", + 230111 => "呼兰区", + 230112 => "阿城区", + 230113 => "双城区", + 230123 => "依兰县", + 230124 => "方正县", + 230125 => "宾县", + 230126 => "巴彦县", + 230127 => "木兰县", + 230128 => "通河县", + 230129 => "延寿县", + 230183 => "尚志市", + 230184 => "五常市", + 230200 => "齐齐哈尔市", + 230202 => "龙沙区", + 230203 => "建华区", + 230204 => "铁锋区", + 230205 => "昂昂溪区", + 230206 => "富拉尔基区", + 230207 => "碾子山区", + 230208 => "梅里斯达斡尔族区", + 230221 => "龙江县", + 230223 => "依安县", + 230224 => "泰来县", + 230225 => "甘南县", + 230227 => "富裕县", + 230229 => "克山县", + 230230 => "克东县", + 230231 => "拜泉县", + 230281 => "讷河市", + 230300 => "鸡西市", + 230302 => "鸡冠区", + 230303 => "恒山区", + 230304 => "滴道区", + 230305 => "梨树区", + 230306 => "城子河区", + 230307 => "麻山区", + 230321 => "鸡东县", + 230381 => "虎林市", + 230382 => "密山市", + 230400 => "鹤岗市", + 230402 => "向阳区", + 230403 => "工农区", + 230404 => "南山区", + 230405 => "兴安区", + 230406 => "东山区", + 230407 => "兴山区", + 230421 => "萝北县", + 230422 => "绥滨县", + 230500 => "双鸭山市", + 230502 => "尖山区", + 230503 => "岭东区", + 230505 => "四方台区", + 230506 => "宝山区", + 230521 => "集贤县", + 230522 => "友谊县", + 230523 => "宝清县", + 230524 => "饶河县", + 230600 => "大庆市", + 230602 => "萨尔图区", + 230603 => "龙凤区", + 230604 => "让胡路区", + 230605 => "红岗区", + 230606 => "大同区", + 230621 => "肇州县", + 230622 => "肇源县", + 230623 => "林甸县", + 230624 => "杜尔伯特蒙古族自治县", + 230700 => "伊春市", + 230702 => "伊春区", + 230703 => "南岔区", + 230704 => "友好区", + 230705 => "西林区", + 230706 => "翠峦区", + 230707 => "新青区", + 230708 => "美溪区", + 230709 => "金山屯区", + 230710 => "五营区", + 230711 => "乌马河区", + 230712 => "汤旺河区", + 230713 => "带岭区", + 230714 => "乌伊岭区", + 230715 => "红星区", + 230716 => "上甘岭区", + 230722 => "嘉荫县", + 230781 => "铁力市", + 230800 => "佳木斯市", + 230803 => "向阳区", + 230804 => "前进区", + 230805 => "东风区", + 230811 => "郊区", + 230822 => "桦南县", + 230826 => "桦川县", + 230828 => "汤原县", + 230881 => "同江市", + 230882 => "富锦市", + 230883 => "抚远市", + 230900 => "七台河市", + 230902 => "新兴区", + 230903 => "桃山区", + 230904 => "茄子河区", + 230921 => "勃利县", + 231000 => "牡丹江市", + 231002 => "东安区", + 231003 => "阳明区", + 231004 => "爱民区", + 231005 => "西安区", + 231025 => "林口县", + 231081 => "绥芬河市", + 231083 => "海林市", + 231084 => "宁安市", + 231085 => "穆棱市", + 231086 => "东宁市", + 231100 => "黑河市", + 231102 => "爱辉区", + 231121 => "嫩江县", + 231123 => "逊克县", + 231124 => "孙吴县", + 231181 => "北安市", + 231182 => "五大连池市", + 231200 => "绥化市", + 231202 => "北林区", + 231221 => "望奎县", + 231222 => "兰西县", + 231223 => "青冈县", + 231224 => "庆安县", + 231225 => "明水县", + 231226 => "绥棱县", + 231281 => "安达市", + 231282 => "肇东市", + 231283 => "海伦市", + 232700 => "大兴安岭地区", + 232701 => "漠河市", + 232721 => "呼玛县", + 232722 => "塔河县", + 310000 => "上海市", + 310101 => "黄浦区", + 310104 => "徐汇区", + 310105 => "长宁区", + 310106 => "静安区", + 310107 => "普陀区", + 310109 => "虹口区", + 310110 => "杨浦区", + 310112 => "闵行区", + 310113 => "宝山区", + 310114 => "嘉定区", + 310115 => "浦东新区", + 310116 => "金山区", + 310117 => "松江区", + 310118 => "青浦区", + 310120 => "奉贤区", + 310151 => "崇明区", + 320000 => "江苏省", + 320100 => "南京市", + 320102 => "玄武区", + 320104 => "秦淮区", + 320105 => "建邺区", + 320106 => "鼓楼区", + 320111 => "浦口区", + 320113 => "栖霞区", + 320114 => "雨花台区", + 320115 => "江宁区", + 320116 => "六合区", + 320117 => "溧水区", + 320118 => "高淳区", + 320200 => "无锡市", + 320205 => "锡山区", + 320206 => "惠山区", + 320211 => "滨湖区", + 320213 => "梁溪区", + 320214 => "新吴区", + 320281 => "江阴市", + 320282 => "宜兴市", + 320300 => "徐州市", + 320302 => "鼓楼区", + 320303 => "云龙区", + 320305 => "贾汪区", + 320311 => "泉山区", + 320312 => "铜山区", + 320321 => "丰县", + 320322 => "沛县", + 320324 => "睢宁县", + 320381 => "新沂市", + 320382 => "邳州市", + 320400 => "常州市", + 320402 => "天宁区", + 320404 => "钟楼区", + 320411 => "新北区", + 320412 => "武进区", + 320413 => "金坛区", + 320481 => "溧阳市", + 320500 => "苏州市", + 320505 => "虎丘区", + 320506 => "吴中区", + 320507 => "相城区", + 320508 => "姑苏区", + 320509 => "吴江区", + 320581 => "常熟市", + 320582 => "张家港市", + 320583 => "昆山市", + 320585 => "太仓市", + 320600 => "南通市", + 320602 => "崇川区", + 320611 => "港闸区", + 320612 => "通州区", + 320623 => "如东县", + 320681 => "启东市", + 320682 => "如皋市", + 320684 => "海门市", + 320685 => "海安市", + 320700 => "连云港市", + 320703 => "连云区", + 320706 => "海州区", + 320707 => "赣榆区", + 320722 => "东海县", + 320723 => "灌云县", + 320724 => "灌南县", + 320800 => "淮安市", + 320803 => "淮安区", + 320804 => "淮阴区", + 320812 => "清江浦区", + 320813 => "洪泽区", + 320826 => "涟水县", + 320830 => "盱眙县", + 320831 => "金湖县", + 320900 => "盐城市", + 320902 => "亭湖区", + 320903 => "盐都区", + 320904 => "大丰区", + 320921 => "响水县", + 320922 => "滨海县", + 320923 => "阜宁县", + 320924 => "射阳县", + 320925 => "建湖县", + 320981 => "东台市", + 321000 => "扬州市", + 321002 => "广陵区", + 321003 => "邗江区", + 321012 => "江都区", + 321023 => "宝应县", + 321081 => "仪征市", + 321084 => "高邮市", + 321100 => "镇江市", + 321102 => "京口区", + 321111 => "润州区", + 321112 => "丹徒区", + 321181 => "丹阳市", + 321182 => "扬中市", + 321183 => "句容市", + 321200 => "泰州市", + 321202 => "海陵区", + 321203 => "高港区", + 321204 => "姜堰区", + 321281 => "兴化市", + 321282 => "靖江市", + 321283 => "泰兴市", + 321300 => "宿迁市", + 321302 => "宿城区", + 321311 => "宿豫区", + 321322 => "沭阳县", + 321323 => "泗阳县", + 321324 => "泗洪县", + 330000 => "浙江省", + 330100 => "杭州市", + 330102 => "上城区", + 330103 => "下城区", + 330104 => "江干区", + 330105 => "拱墅区", + 330106 => "西湖区", + 330108 => "滨江区", + 330109 => "萧山区", + 330110 => "余杭区", + 330111 => "富阳区", + 330112 => "临安区", + 330122 => "桐庐县", + 330127 => "淳安县", + 330182 => "建德市", + 330200 => "宁波市", + 330203 => "海曙区", + 330205 => "江北区", + 330206 => "北仑区", + 330211 => "镇海区", + 330212 => "鄞州区", + 330213 => "奉化区", + 330225 => "象山县", + 330226 => "宁海县", + 330281 => "余姚市", + 330282 => "慈溪市", + 330300 => "温州市", + 330302 => "鹿城区", + 330303 => "龙湾区", + 330304 => "瓯海区", + 330305 => "洞头区", + 330324 => "永嘉县", + 330326 => "平阳县", + 330327 => "苍南县", + 330328 => "文成县", + 330329 => "泰顺县", + 330381 => "瑞安市", + 330382 => "乐清市", + 330400 => "嘉兴市", + 330402 => "南湖区", + 330411 => "秀洲区", + 330421 => "嘉善县", + 330424 => "海盐县", + 330481 => "海宁市", + 330482 => "平湖市", + 330483 => "桐乡市", + 330500 => "湖州市", + 330502 => "吴兴区", + 330503 => "南浔区", + 330521 => "德清县", + 330522 => "长兴县", + 330523 => "安吉县", + 330600 => "绍兴市", + 330602 => "越城区", + 330603 => "柯桥区", + 330604 => "上虞区", + 330624 => "新昌县", + 330681 => "诸暨市", + 330683 => "嵊州市", + 330700 => "金华市", + 330702 => "婺城区", + 330703 => "金东区", + 330723 => "武义县", + 330726 => "浦江县", + 330727 => "磐安县", + 330781 => "兰溪市", + 330782 => "义乌市", + 330783 => "东阳市", + 330784 => "永康市", + 330800 => "衢州市", + 330802 => "柯城区", + 330803 => "衢江区", + 330822 => "常山县", + 330824 => "开化县", + 330825 => "龙游县", + 330881 => "江山市", + 330900 => "舟山市", + 330902 => "定海区", + 330903 => "普陀区", + 330921 => "岱山县", + 330922 => "嵊泗县", + 331000 => "台州市", + 331002 => "椒江区", + 331003 => "黄岩区", + 331004 => "路桥区", + 331022 => "三门县", + 331023 => "天台县", + 331024 => "仙居县", + 331081 => "温岭市", + 331082 => "临海市", + 331083 => "玉环市", + 331100 => "丽水市", + 331102 => "莲都区", + 331121 => "青田县", + 331122 => "缙云县", + 331123 => "遂昌县", + 331124 => "松阳县", + 331125 => "云和县", + 331126 => "庆元县", + 331127 => "景宁畲族自治县", + 331181 => "龙泉市", + 340000 => "安徽省", + 340100 => "合肥市", + 340102 => "瑶海区", + 340103 => "庐阳区", + 340104 => "蜀山区", + 340111 => "包河区", + 340121 => "长丰县", + 340122 => "肥东县", + 340123 => "肥西县", + 340124 => "庐江县", + 340181 => "巢湖市", + 340200 => "芜湖市", + 340202 => "镜湖区", + 340203 => "弋江区", + 340207 => "鸠江区", + 340208 => "三山区", + 340221 => "芜湖县", + 340222 => "繁昌县", + 340223 => "南陵县", + 340225 => "无为县", + 340300 => "蚌埠市", + 340302 => "龙子湖区", + 340303 => "蚌山区", + 340304 => "禹会区", + 340311 => "淮上区", + 340321 => "怀远县", + 340322 => "五河县", + 340323 => "固镇县", + 340400 => "淮南市", + 340402 => "大通区", + 340403 => "田家庵区", + 340404 => "谢家集区", + 340405 => "八公山区", + 340406 => "潘集区", + 340421 => "凤台县", + 340422 => "寿县", + 340500 => "马鞍山市", + 340503 => "花山区", + 340504 => "雨山区", + 340506 => "博望区", + 340521 => "当涂县", + 340522 => "含山县", + 340523 => "和县", + 340600 => "淮北市", + 340602 => "杜集区", + 340603 => "相山区", + 340604 => "烈山区", + 340621 => "濉溪县", + 340700 => "铜陵市", + 340705 => "铜官区", + 340706 => "义安区", + 340711 => "郊区", + 340722 => "枞阳县", + 340800 => "安庆市", + 340802 => "迎江区", + 340803 => "大观区", + 340811 => "宜秀区", + 340822 => "怀宁县", + 340825 => "太湖县", + 340826 => "宿松县", + 340827 => "望江县", + 340828 => "岳西县", + 340881 => "桐城市", + 340882 => "潜山市", + 341000 => "黄山市", + 341002 => "屯溪区", + 341003 => "黄山区", + 341004 => "徽州区", + 341021 => "歙县", + 341022 => "休宁县", + 341023 => "黟县", + 341024 => "祁门县", + 341100 => "滁州市", + 341102 => "琅琊区", + 341103 => "南谯区", + 341122 => "来安县", + 341124 => "全椒县", + 341125 => "定远县", + 341126 => "凤阳县", + 341181 => "天长市", + 341182 => "明光市", + 341200 => "阜阳市", + 341202 => "颍州区", + 341203 => "颍东区", + 341204 => "颍泉区", + 341221 => "临泉县", + 341222 => "太和县", + 341225 => "阜南县", + 341226 => "颍上县", + 341282 => "界首市", + 341300 => "宿州市", + 341302 => "埇桥区", + 341321 => "砀山县", + 341322 => "萧县", + 341323 => "灵璧县", + 341324 => "泗县", + 341500 => "六安市", + 341502 => "金安区", + 341503 => "裕安区", + 341504 => "叶集区", + 341522 => "霍邱县", + 341523 => "舒城县", + 341524 => "金寨县", + 341525 => "霍山县", + 341600 => "亳州市", + 341602 => "谯城区", + 341621 => "涡阳县", + 341622 => "蒙城县", + 341623 => "利辛县", + 341700 => "池州市", + 341702 => "贵池区", + 341721 => "东至县", + 341722 => "石台县", + 341723 => "青阳县", + 341800 => "宣城市", + 341802 => "宣州区", + 341821 => "郎溪县", + 341822 => "广德县", + 341823 => "泾县", + 341824 => "绩溪县", + 341825 => "旌德县", + 341881 => "宁国市", + 350000 => "福建省", + 350100 => "福州市", + 350102 => "鼓楼区", + 350103 => "台江区", + 350104 => "仓山区", + 350105 => "马尾区", + 350111 => "晋安区", + 350112 => "长乐区", + 350121 => "闽侯县", + 350122 => "连江县", + 350123 => "罗源县", + 350124 => "闽清县", + 350125 => "永泰县", + 350128 => "平潭县", + 350181 => "福清市", + 350200 => "厦门市", + 350203 => "思明区", + 350205 => "海沧区", + 350206 => "湖里区", + 350211 => "集美区", + 350212 => "同安区", + 350213 => "翔安区", + 350300 => "莆田市", + 350302 => "城厢区", + 350303 => "涵江区", + 350304 => "荔城区", + 350305 => "秀屿区", + 350322 => "仙游县", + 350400 => "三明市", + 350402 => "梅列区", + 350403 => "三元区", + 350421 => "明溪县", + 350423 => "清流县", + 350424 => "宁化县", + 350425 => "大田县", + 350426 => "尤溪县", + 350427 => "沙县", + 350428 => "将乐县", + 350429 => "泰宁县", + 350430 => "建宁县", + 350481 => "永安市", + 350500 => "泉州市", + 350502 => "鲤城区", + 350503 => "丰泽区", + 350504 => "洛江区", + 350505 => "泉港区", + 350521 => "惠安县", + 350524 => "安溪县", + 350525 => "永春县", + 350526 => "德化县", + 350527 => "金门县", + 350581 => "石狮市", + 350582 => "晋江市", + 350583 => "南安市", + 350600 => "漳州市", + 350602 => "芗城区", + 350603 => "龙文区", + 350622 => "云霄县", + 350623 => "漳浦县", + 350624 => "诏安县", + 350625 => "长泰县", + 350626 => "东山县", + 350627 => "南靖县", + 350628 => "平和县", + 350629 => "华安县", + 350681 => "龙海市", + 350700 => "南平市", + 350702 => "延平区", + 350703 => "建阳区", + 350721 => "顺昌县", + 350722 => "浦城县", + 350723 => "光泽县", + 350724 => "松溪县", + 350725 => "政和县", + 350781 => "邵武市", + 350782 => "武夷山市", + 350783 => "建瓯市", + 350800 => "龙岩市", + 350802 => "新罗区", + 350803 => "永定区", + 350821 => "长汀县", + 350823 => "上杭县", + 350824 => "武平县", + 350825 => "连城县", + 350881 => "漳平市", + 350900 => "宁德市", + 350902 => "蕉城区", + 350921 => "霞浦县", + 350922 => "古田县", + 350923 => "屏南县", + 350924 => "寿宁县", + 350925 => "周宁县", + 350926 => "柘荣县", + 350981 => "福安市", + 350982 => "福鼎市", + 360000 => "江西省", + 360100 => "南昌市", + 360102 => "东湖区", + 360103 => "西湖区", + 360104 => "青云谱区", + 360105 => "湾里区", + 360111 => "青山湖区", + 360112 => "新建区", + 360121 => "南昌县", + 360123 => "安义县", + 360124 => "进贤县", + 360200 => "景德镇市", + 360202 => "昌江区", + 360203 => "珠山区", + 360222 => "浮梁县", + 360281 => "乐平市", + 360300 => "萍乡市", + 360302 => "安源区", + 360313 => "湘东区", + 360321 => "莲花县", + 360322 => "上栗县", + 360323 => "芦溪县", + 360400 => "九江市", + 360402 => "濂溪区", + 360403 => "浔阳区", + 360404 => "柴桑区", + 360423 => "武宁县", + 360424 => "修水县", + 360425 => "永修县", + 360426 => "德安县", + 360428 => "都昌县", + 360429 => "湖口县", + 360430 => "彭泽县", + 360481 => "瑞昌市", + 360482 => "共青城市", + 360483 => "庐山市", + 360500 => "新余市", + 360502 => "渝水区", + 360521 => "分宜县", + 360600 => "鹰潭市", + 360602 => "月湖区", + 360603 => "余江区", + 360681 => "贵溪市", + 360700 => "赣州市", + 360702 => "章贡区", + 360703 => "南康区", + 360704 => "赣县区", + 360722 => "信丰县", + 360723 => "大余县", + 360724 => "上犹县", + 360725 => "崇义县", + 360726 => "安远县", + 360727 => "龙南县", + 360728 => "定南县", + 360729 => "全南县", + 360730 => "宁都县", + 360731 => "于都县", + 360732 => "兴国县", + 360733 => "会昌县", + 360734 => "寻乌县", + 360735 => "石城县", + 360781 => "瑞金市", + 360800 => "吉安市", + 360802 => "吉州区", + 360803 => "青原区", + 360821 => "吉安县", + 360822 => "吉水县", + 360823 => "峡江县", + 360824 => "新干县", + 360825 => "永丰县", + 360826 => "泰和县", + 360827 => "遂川县", + 360828 => "万安县", + 360829 => "安福县", + 360830 => "永新县", + 360881 => "井冈山市", + 360900 => "宜春市", + 360902 => "袁州区", + 360921 => "奉新县", + 360922 => "万载县", + 360923 => "上高县", + 360924 => "宜丰县", + 360925 => "靖安县", + 360926 => "铜鼓县", + 360981 => "丰城市", + 360982 => "樟树市", + 360983 => "高安市", + 361000 => "抚州市", + 361002 => "临川区", + 361003 => "东乡区", + 361021 => "南城县", + 361022 => "黎川县", + 361023 => "南丰县", + 361024 => "崇仁县", + 361025 => "乐安县", + 361026 => "宜黄县", + 361027 => "金溪县", + 361028 => "资溪县", + 361030 => "广昌县", + 361100 => "上饶市", + 361102 => "信州区", + 361103 => "广丰区", + 361121 => "上饶县", + 361123 => "玉山县", + 361124 => "铅山县", + 361125 => "横峰县", + 361126 => "弋阳县", + 361127 => "余干县", + 361128 => "鄱阳县", + 361129 => "万年县", + 361130 => "婺源县", + 361181 => "德兴市", + 370000 => "山东省", + 370100 => "济南市", + 370102 => "历下区", + 370103 => "市中区", + 370104 => "槐荫区", + 370105 => "天桥区", + 370112 => "历城区", + 370113 => "长清区", + 370114 => "章丘区", + 370115 => "济阳区", + 370116 => "莱芜区", + 370117 => "钢城区", + 370124 => "平阴县", + 370126 => "商河县", + 370200 => "青岛市", + 370202 => "市南区", + 370203 => "市北区", + 370211 => "黄岛区", + 370212 => "崂山区", + 370213 => "李沧区", + 370214 => "城阳区", + 370215 => "即墨区", + 370281 => "胶州市", + 370283 => "平度市", + 370285 => "莱西市", + 370300 => "淄博市", + 370302 => "淄川区", + 370303 => "张店区", + 370304 => "博山区", + 370305 => "临淄区", + 370306 => "周村区", + 370321 => "桓台县", + 370322 => "高青县", + 370323 => "沂源县", + 370400 => "枣庄市", + 370402 => "市中区", + 370403 => "薛城区", + 370404 => "峄城区", + 370405 => "台儿庄区", + 370406 => "山亭区", + 370481 => "滕州市", + 370500 => "东营市", + 370502 => "东营区", + 370503 => "河口区", + 370505 => "垦利区", + 370522 => "利津县", + 370523 => "广饶县", + 370600 => "烟台市", + 370602 => "芝罘区", + 370611 => "福山区", + 370612 => "牟平区", + 370613 => "莱山区", + 370634 => "长岛县", + 370681 => "龙口市", + 370682 => "莱阳市", + 370683 => "莱州市", + 370684 => "蓬莱市", + 370685 => "招远市", + 370686 => "栖霞市", + 370687 => "海阳市", + 370700 => "潍坊市", + 370702 => "潍城区", + 370703 => "寒亭区", + 370704 => "坊子区", + 370705 => "奎文区", + 370724 => "临朐县", + 370725 => "昌乐县", + 370781 => "青州市", + 370782 => "诸城市", + 370783 => "寿光市", + 370784 => "安丘市", + 370785 => "高密市", + 370786 => "昌邑市", + 370800 => "济宁市", + 370811 => "任城区", + 370812 => "兖州区", + 370826 => "微山县", + 370827 => "鱼台县", + 370828 => "金乡县", + 370829 => "嘉祥县", + 370830 => "汶上县", + 370831 => "泗水县", + 370832 => "梁山县", + 370881 => "曲阜市", + 370883 => "邹城市", + 370900 => "泰安市", + 370902 => "泰山区", + 370911 => "岱岳区", + 370921 => "宁阳县", + 370923 => "东平县", + 370982 => "新泰市", + 370983 => "肥城市", + 371000 => "威海市", + 371002 => "环翠区", + 371003 => "文登区", + 371082 => "荣成市", + 371083 => "乳山市", + 371100 => "日照市", + 371102 => "东港区", + 371103 => "岚山区", + 371121 => "五莲县", + 371122 => "莒县", + 371300 => "临沂市", + 371302 => "兰山区", + 371311 => "罗庄区", + 371312 => "河东区", + 371321 => "沂南县", + 371322 => "郯城县", + 371323 => "沂水县", + 371324 => "兰陵县", + 371325 => "费县", + 371326 => "平邑县", + 371327 => "莒南县", + 371328 => "蒙阴县", + 371329 => "临沭县", + 371400 => "德州市", + 371402 => "德城区", + 371403 => "陵城区", + 371422 => "宁津县", + 371423 => "庆云县", + 371424 => "临邑县", + 371425 => "齐河县", + 371426 => "平原县", + 371427 => "夏津县", + 371428 => "武城县", + 371481 => "乐陵市", + 371482 => "禹城市", + 371500 => "聊城市", + 371502 => "东昌府区", + 371521 => "阳谷县", + 371522 => "莘县", + 371523 => "茌平县", + 371524 => "东阿县", + 371525 => "冠县", + 371526 => "高唐县", + 371581 => "临清市", + 371600 => "滨州市", + 371602 => "滨城区", + 371603 => "沾化区", + 371621 => "惠民县", + 371622 => "阳信县", + 371623 => "无棣县", + 371625 => "博兴县", + 371681 => "邹平市", + 371700 => "菏泽市", + 371702 => "牡丹区", + 371703 => "定陶区", + 371721 => "曹县", + 371722 => "单县", + 371723 => "成武县", + 371724 => "巨野县", + 371725 => "郓城县", + 371726 => "鄄城县", + 371728 => "东明县", + 410000 => "河南省", + 410100 => "郑州市", + 410102 => "中原区", + 410103 => "二七区", + 410104 => "管城回族区", + 410105 => "金水区", + 410106 => "上街区", + 410108 => "惠济区", + 410122 => "中牟县", + 410181 => "巩义市", + 410182 => "荥阳市", + 410183 => "新密市", + 410184 => "新郑市", + 410185 => "登封市", + 410200 => "开封市", + 410202 => "龙亭区", + 410203 => "顺河回族区", + 410204 => "鼓楼区", + 410205 => "禹王台区", + 410212 => "祥符区", + 410221 => "杞县", + 410222 => "通许县", + 410223 => "尉氏县", + 410225 => "兰考县", + 410300 => "洛阳市", + 410302 => "老城区", + 410303 => "西工区", + 410304 => "瀍河回族区", + 410305 => "涧西区", + 410306 => "吉利区", + 410311 => "洛龙区", + 410322 => "孟津县", + 410323 => "新安县", + 410324 => "栾川县", + 410325 => "嵩县", + 410326 => "汝阳县", + 410327 => "宜阳县", + 410328 => "洛宁县", + 410329 => "伊川县", + 410381 => "偃师市", + 410400 => "平顶山市", + 410402 => "新华区", + 410403 => "卫东区", + 410404 => "石龙区", + 410411 => "湛河区", + 410421 => "宝丰县", + 410422 => "叶县", + 410423 => "鲁山县", + 410425 => "郏县", + 410481 => "舞钢市", + 410482 => "汝州市", + 410500 => "安阳市", + 410502 => "文峰区", + 410503 => "北关区", + 410505 => "殷都区", + 410506 => "龙安区", + 410522 => "安阳县", + 410523 => "汤阴县", + 410526 => "滑县", + 410527 => "内黄县", + 410581 => "林州市", + 410600 => "鹤壁市", + 410602 => "鹤山区", + 410603 => "山城区", + 410611 => "淇滨区", + 410621 => "浚县", + 410622 => "淇县", + 410700 => "新乡市", + 410702 => "红旗区", + 410703 => "卫滨区", + 410704 => "凤泉区", + 410711 => "牧野区", + 410721 => "新乡县", + 410724 => "获嘉县", + 410725 => "原阳县", + 410726 => "延津县", + 410727 => "封丘县", + 410728 => "长垣县", + 410781 => "卫辉市", + 410782 => "辉县市", + 410800 => "焦作市", + 410802 => "解放区", + 410803 => "中站区", + 410804 => "马村区", + 410811 => "山阳区", + 410821 => "修武县", + 410822 => "博爱县", + 410823 => "武陟县", + 410825 => "温县", + 410882 => "沁阳市", + 410883 => "孟州市", + 410900 => "濮阳市", + 410902 => "华龙区", + 410922 => "清丰县", + 410923 => "南乐县", + 410926 => "范县", + 410927 => "台前县", + 410928 => "濮阳县", + 411000 => "许昌市", + 411002 => "魏都区", + 411003 => "建安区", + 411024 => "鄢陵县", + 411025 => "襄城县", + 411081 => "禹州市", + 411082 => "长葛市", + 411100 => "漯河市", + 411102 => "源汇区", + 411103 => "郾城区", + 411104 => "召陵区", + 411121 => "舞阳县", + 411122 => "临颍县", + 411200 => "三门峡市", + 411202 => "湖滨区", + 411203 => "陕州区", + 411221 => "渑池县", + 411224 => "卢氏县", + 411281 => "义马市", + 411282 => "灵宝市", + 411300 => "南阳市", + 411302 => "宛城区", + 411303 => "卧龙区", + 411321 => "南召县", + 411322 => "方城县", + 411323 => "西峡县", + 411324 => "镇平县", + 411325 => "内乡县", + 411326 => "淅川县", + 411327 => "社旗县", + 411328 => "唐河县", + 411329 => "新野县", + 411330 => "桐柏县", + 411381 => "邓州市", + 411400 => "商丘市", + 411402 => "梁园区", + 411403 => "睢阳区", + 411421 => "民权县", + 411422 => "睢县", + 411423 => "宁陵县", + 411424 => "柘城县", + 411425 => "虞城县", + 411426 => "夏邑县", + 411481 => "永城市", + 411500 => "信阳市", + 411502 => "浉河区", + 411503 => "平桥区", + 411521 => "罗山县", + 411522 => "光山县", + 411523 => "新县", + 411524 => "商城县", + 411525 => "固始县", + 411526 => "潢川县", + 411527 => "淮滨县", + 411528 => "息县", + 411600 => "周口市", + 411602 => "川汇区", + 411621 => "扶沟县", + 411622 => "西华县", + 411623 => "商水县", + 411624 => "沈丘县", + 411625 => "郸城县", + 411626 => "淮阳县", + 411627 => "太康县", + 411628 => "鹿邑县", + 411681 => "项城市", + 411700 => "驻马店市", + 411702 => "驿城区", + 411721 => "西平县", + 411722 => "上蔡县", + 411723 => "平舆县", + 411724 => "正阳县", + 411725 => "确山县", + 411726 => "泌阳县", + 411727 => "汝南县", + 411728 => "遂平县", + 411729 => "新蔡县", + 419001 => "济源市", + 420000 => "湖北省", + 420100 => "武汉市", + 420102 => "江岸区", + 420103 => "江汉区", + 420104 => "硚口区", + 420105 => "汉阳区", + 420106 => "武昌区", + 420107 => "青山区", + 420111 => "洪山区", + 420112 => "东西湖区", + 420113 => "汉南区", + 420114 => "蔡甸区", + 420115 => "江夏区", + 420116 => "黄陂区", + 420117 => "新洲区", + 420200 => "黄石市", + 420202 => "黄石港区", + 420203 => "西塞山区", + 420204 => "下陆区", + 420205 => "铁山区", + 420222 => "阳新县", + 420281 => "大冶市", + 420300 => "十堰市", + 420302 => "茅箭区", + 420303 => "张湾区", + 420304 => "郧阳区", + 420322 => "郧西县", + 420323 => "竹山县", + 420324 => "竹溪县", + 420325 => "房县", + 420381 => "丹江口市", + 420500 => "宜昌市", + 420502 => "西陵区", + 420503 => "伍家岗区", + 420504 => "点军区", + 420505 => "猇亭区", + 420506 => "夷陵区", + 420525 => "远安县", + 420526 => "兴山县", + 420527 => "秭归县", + 420528 => "长阳土家族自治县", + 420529 => "五峰土家族自治县", + 420581 => "宜都市", + 420582 => "当阳市", + 420583 => "枝江市", + 420600 => "襄阳市", + 420602 => "襄城区", + 420606 => "樊城区", + 420607 => "襄州区", + 420624 => "南漳县", + 420625 => "谷城县", + 420626 => "保康县", + 420682 => "老河口市", + 420683 => "枣阳市", + 420684 => "宜城市", + 420700 => "鄂州市", + 420702 => "梁子湖区", + 420703 => "华容区", + 420704 => "鄂城区", + 420800 => "荆门市", + 420802 => "东宝区", + 420804 => "掇刀区", + 420822 => "沙洋县", + 420881 => "钟祥市", + 420882 => "京山市", + 420900 => "孝感市", + 420902 => "孝南区", + 420921 => "孝昌县", + 420922 => "大悟县", + 420923 => "云梦县", + 420981 => "应城市", + 420982 => "安陆市", + 420984 => "汉川市", + 421000 => "荆州市", + 421002 => "沙市区", + 421003 => "荆州区", + 421022 => "公安县", + 421023 => "监利县", + 421024 => "江陵县", + 421081 => "石首市", + 421083 => "洪湖市", + 421087 => "松滋市", + 421100 => "黄冈市", + 421102 => "黄州区", + 421121 => "团风县", + 421122 => "红安县", + 421123 => "罗田县", + 421124 => "英山县", + 421125 => "浠水县", + 421126 => "蕲春县", + 421127 => "黄梅县", + 421181 => "麻城市", + 421182 => "武穴市", + 421200 => "咸宁市", + 421202 => "咸安区", + 421221 => "嘉鱼县", + 421222 => "通城县", + 421223 => "崇阳县", + 421224 => "通山县", + 421281 => "赤壁市", + 421300 => "随州市", + 421303 => "曾都区", + 421321 => "随县", + 421381 => "广水市", + 422800 => "恩施土家族苗族自治州", + 422801 => "恩施市", + 422802 => "利川市", + 422822 => "建始县", + 422823 => "巴东县", + 422825 => "宣恩县", + 422826 => "咸丰县", + 422827 => "来凤县", + 422828 => "鹤峰县", + 429004 => "仙桃市", + 429005 => "潜江市", + 429006 => "天门市", + 429021 => "神农架林区", + 430000 => "湖南省", + 430100 => "长沙市", + 430102 => "芙蓉区", + 430103 => "天心区", + 430104 => "岳麓区", + 430105 => "开福区", + 430111 => "雨花区", + 430112 => "望城区", + 430121 => "长沙县", + 430181 => "浏阳市", + 430182 => "宁乡市", + 430200 => "株洲市", + 430202 => "荷塘区", + 430203 => "芦淞区", + 430204 => "石峰区", + 430211 => "天元区", + 430212 => "渌口区", + 430223 => "攸县", + 430224 => "茶陵县", + 430225 => "炎陵县", + 430281 => "醴陵市", + 430300 => "湘潭市", + 430302 => "雨湖区", + 430304 => "岳塘区", + 430321 => "湘潭县", + 430381 => "湘乡市", + 430382 => "韶山市", + 430400 => "衡阳市", + 430405 => "珠晖区", + 430406 => "雁峰区", + 430407 => "石鼓区", + 430408 => "蒸湘区", + 430412 => "南岳区", + 430421 => "衡阳县", + 430422 => "衡南县", + 430423 => "衡山县", + 430424 => "衡东县", + 430426 => "祁东县", + 430481 => "耒阳市", + 430482 => "常宁市", + 430500 => "邵阳市", + 430502 => "双清区", + 430503 => "大祥区", + 430511 => "北塔区", + 430521 => "邵东县", + 430522 => "新邵县", + 430523 => "邵阳县", + 430524 => "隆回县", + 430525 => "洞口县", + 430527 => "绥宁县", + 430528 => "新宁县", + 430529 => "城步苗族自治县", + 430581 => "武冈市", + 430600 => "岳阳市", + 430602 => "岳阳楼区", + 430603 => "云溪区", + 430611 => "君山区", + 430621 => "岳阳县", + 430623 => "华容县", + 430624 => "湘阴县", + 430626 => "平江县", + 430681 => "汨罗市", + 430682 => "临湘市", + 430700 => "常德市", + 430702 => "武陵区", + 430703 => "鼎城区", + 430721 => "安乡县", + 430722 => "汉寿县", + 430723 => "澧县", + 430724 => "临澧县", + 430725 => "桃源县", + 430726 => "石门县", + 430781 => "津市市", + 430800 => "张家界市", + 430802 => "永定区", + 430811 => "武陵源区", + 430821 => "慈利县", + 430822 => "桑植县", + 430900 => "益阳市", + 430902 => "资阳区", + 430903 => "赫山区", + 430921 => "南县", + 430922 => "桃江县", + 430923 => "安化县", + 430981 => "沅江市", + 431000 => "郴州市", + 431002 => "北湖区", + 431003 => "苏仙区", + 431021 => "桂阳县", + 431022 => "宜章县", + 431023 => "永兴县", + 431024 => "嘉禾县", + 431025 => "临武县", + 431026 => "汝城县", + 431027 => "桂东县", + 431028 => "安仁县", + 431081 => "资兴市", + 431100 => "永州市", + 431102 => "零陵区", + 431103 => "冷水滩区", + 431121 => "祁阳县", + 431122 => "东安县", + 431123 => "双牌县", + 431124 => "道县", + 431125 => "江永县", + 431126 => "宁远县", + 431127 => "蓝山县", + 431128 => "新田县", + 431129 => "江华瑶族自治县", + 431200 => "怀化市", + 431202 => "鹤城区", + 431221 => "中方县", + 431222 => "沅陵县", + 431223 => "辰溪县", + 431224 => "溆浦县", + 431225 => "会同县", + 431226 => "麻阳苗族自治县", + 431227 => "新晃侗族自治县", + 431228 => "芷江侗族自治县", + 431229 => "靖州苗族侗族自治县", + 431230 => "通道侗族自治县", + 431281 => "洪江市", + 431300 => "娄底市", + 431302 => "娄星区", + 431321 => "双峰县", + 431322 => "新化县", + 431381 => "冷水江市", + 431382 => "涟源市", + 433100 => "湘西土家族苗族自治州", + 433101 => "吉首市", + 433122 => "泸溪县", + 433123 => "凤凰县", + 433124 => "花垣县", + 433125 => "保靖县", + 433126 => "古丈县", + 433127 => "永顺县", + 433130 => "龙山县", + 440000 => "广东省", + 440100 => "广州市", + 440103 => "荔湾区", + 440104 => "越秀区", + 440105 => "海珠区", + 440106 => "天河区", + 440111 => "白云区", + 440112 => "黄埔区", + 440113 => "番禺区", + 440114 => "花都区", + 440115 => "南沙区", + 440117 => "从化区", + 440118 => "增城区", + 440200 => "韶关市", + 440203 => "武江区", + 440204 => "浈江区", + 440205 => "曲江区", + 440222 => "始兴县", + 440224 => "仁化县", + 440229 => "翁源县", + 440232 => "乳源瑶族自治县", + 440233 => "新丰县", + 440281 => "乐昌市", + 440282 => "南雄市", + 440300 => "深圳市", + 440303 => "罗湖区", + 440304 => "福田区", + 440305 => "南山区", + 440306 => "宝安区", + 440307 => "龙岗区", + 440308 => "盐田区", + 440309 => "龙华区", + 440310 => "坪山区", + 440311 => "光明区", + 440400 => "珠海市", + 440402 => "香洲区", + 440403 => "斗门区", + 440404 => "金湾区", + 440500 => "汕头市", + 440507 => "龙湖区", + 440511 => "金平区", + 440512 => "濠江区", + 440513 => "潮阳区", + 440514 => "潮南区", + 440515 => "澄海区", + 440523 => "南澳县", + 440600 => "佛山市", + 440604 => "禅城区", + 440605 => "南海区", + 440606 => "顺德区", + 440607 => "三水区", + 440608 => "高明区", + 440700 => "江门市", + 440703 => "蓬江区", + 440704 => "江海区", + 440705 => "新会区", + 440781 => "台山市", + 440783 => "开平市", + 440784 => "鹤山市", + 440785 => "恩平市", + 440800 => "湛江市", + 440802 => "赤坎区", + 440803 => "霞山区", + 440804 => "坡头区", + 440811 => "麻章区", + 440823 => "遂溪县", + 440825 => "徐闻县", + 440881 => "廉江市", + 440882 => "雷州市", + 440883 => "吴川市", + 440900 => "茂名市", + 440902 => "茂南区", + 440904 => "电白区", + 440981 => "高州市", + 440982 => "化州市", + 440983 => "信宜市", + 441200 => "肇庆市", + 441202 => "端州区", + 441203 => "鼎湖区", + 441204 => "高要区", + 441223 => "广宁县", + 441224 => "怀集县", + 441225 => "封开县", + 441226 => "德庆县", + 441284 => "四会市", + 441300 => "惠州市", + 441302 => "惠城区", + 441303 => "惠阳区", + 441322 => "博罗县", + 441323 => "惠东县", + 441324 => "龙门县", + 441400 => "梅州市", + 441402 => "梅江区", + 441403 => "梅县区", + 441422 => "大埔县", + 441423 => "丰顺县", + 441424 => "五华县", + 441426 => "平远县", + 441427 => "蕉岭县", + 441481 => "兴宁市", + 441500 => "汕尾市", + 441502 => "城区", + 441521 => "海丰县", + 441523 => "陆河县", + 441581 => "陆丰市", + 441600 => "河源市", + 441602 => "源城区", + 441621 => "紫金县", + 441622 => "龙川县", + 441623 => "连平县", + 441624 => "和平县", + 441625 => "东源县", + 441700 => "阳江市", + 441702 => "江城区", + 441704 => "阳东区", + 441721 => "阳西县", + 441781 => "阳春市", + 441800 => "清远市", + 441802 => "清城区", + 441803 => "清新区", + 441821 => "佛冈县", + 441823 => "阳山县", + 441825 => "连山壮族瑶族自治县", + 441826 => "连南瑶族自治县", + 441881 => "英德市", + 441882 => "连州市", + 441900 => "东莞市", + 442000 => "中山市", + 445100 => "潮州市", + 445102 => "湘桥区", + 445103 => "潮安区", + 445122 => "饶平县", + 445200 => "揭阳市", + 445202 => "榕城区", + 445203 => "揭东区", + 445222 => "揭西县", + 445224 => "惠来县", + 445281 => "普宁市", + 445300 => "云浮市", + 445302 => "云城区", + 445303 => "云安区", + 445321 => "新兴县", + 445322 => "郁南县", + 445381 => "罗定市", + 450000 => "广西壮族自治区", + 450100 => "南宁市", + 450102 => "兴宁区", + 450103 => "青秀区", + 450105 => "江南区", + 450107 => "西乡塘区", + 450108 => "良庆区", + 450109 => "邕宁区", + 450110 => "武鸣区", + 450123 => "隆安县", + 450124 => "马山县", + 450125 => "上林县", + 450126 => "宾阳县", + 450127 => "横县", + 450200 => "柳州市", + 450202 => "城中区", + 450203 => "鱼峰区", + 450204 => "柳南区", + 450205 => "柳北区", + 450206 => "柳江区", + 450222 => "柳城县", + 450223 => "鹿寨县", + 450224 => "融安县", + 450225 => "融水苗族自治县", + 450226 => "三江侗族自治县", + 450300 => "桂林市", + 450302 => "秀峰区", + 450303 => "叠彩区", + 450304 => "象山区", + 450305 => "七星区", + 450311 => "雁山区", + 450312 => "临桂区", + 450321 => "阳朔县", + 450323 => "灵川县", + 450324 => "全州县", + 450325 => "兴安县", + 450326 => "永福县", + 450327 => "灌阳县", + 450328 => "龙胜各族自治县", + 450329 => "资源县", + 450330 => "平乐县", + 450332 => "恭城瑶族自治县", + 450381 => "荔浦市", + 450400 => "梧州市", + 450403 => "万秀区", + 450405 => "长洲区", + 450406 => "龙圩区", + 450421 => "苍梧县", + 450422 => "藤县", + 450423 => "蒙山县", + 450481 => "岑溪市", + 450500 => "北海市", + 450502 => "海城区", + 450503 => "银海区", + 450512 => "铁山港区", + 450521 => "合浦县", + 450600 => "防城港市", + 450602 => "港口区", + 450603 => "防城区", + 450621 => "上思县", + 450681 => "东兴市", + 450700 => "钦州市", + 450702 => "钦南区", + 450703 => "钦北区", + 450721 => "灵山县", + 450722 => "浦北县", + 450800 => "贵港市", + 450802 => "港北区", + 450803 => "港南区", + 450804 => "覃塘区", + 450821 => "平南县", + 450881 => "桂平市", + 450900 => "玉林市", + 450902 => "玉州区", + 450903 => "福绵区", + 450921 => "容县", + 450922 => "陆川县", + 450923 => "博白县", + 450924 => "兴业县", + 450981 => "北流市", + 451000 => "百色市", + 451002 => "右江区", + 451021 => "田阳县", + 451022 => "田东县", + 451023 => "平果县", + 451024 => "德保县", + 451026 => "那坡县", + 451027 => "凌云县", + 451028 => "乐业县", + 451029 => "田林县", + 451030 => "西林县", + 451031 => "隆林各族自治县", + 451081 => "靖西市", + 451100 => "贺州市", + 451102 => "八步区", + 451103 => "平桂区", + 451121 => "昭平县", + 451122 => "钟山县", + 451123 => "富川瑶族自治县", + 451200 => "河池市", + 451202 => "金城江区", + 451203 => "宜州区", + 451221 => "南丹县", + 451222 => "天峨县", + 451223 => "凤山县", + 451224 => "东兰县", + 451225 => "罗城仫佬族自治县", + 451226 => "环江毛南族自治县", + 451227 => "巴马瑶族自治县", + 451228 => "都安瑶族自治县", + 451229 => "大化瑶族自治县", + 451300 => "来宾市", + 451302 => "兴宾区", + 451321 => "忻城县", + 451322 => "象州县", + 451323 => "武宣县", + 451324 => "金秀瑶族自治县", + 451381 => "合山市", + 451400 => "崇左市", + 451402 => "江州区", + 451421 => "扶绥县", + 451422 => "宁明县", + 451423 => "龙州县", + 451424 => "大新县", + 451425 => "天等县", + 451481 => "凭祥市", + 460000 => "海南省", + 460100 => "海口市", + 460105 => "秀英区", + 460106 => "龙华区", + 460107 => "琼山区", + 460108 => "美兰区", + 460200 => "三亚市", + 460202 => "海棠区", + 460203 => "吉阳区", + 460204 => "天涯区", + 460205 => "崖州区", + 460300 => "三沙市", + 460400 => "儋州市", + 469001 => "五指山市", + 469002 => "琼海市", + 469005 => "文昌市", + 469006 => "万宁市", + 469007 => "东方市", + 469021 => "定安县", + 469022 => "屯昌县", + 469023 => "澄迈县", + 469024 => "临高县", + 469025 => "白沙黎族自治县", + 469026 => "昌江黎族自治县", + 469027 => "乐东黎族自治县", + 469028 => "陵水黎族自治县", + 469029 => "保亭黎族苗族自治县", + 469030 => "琼中黎族苗族自治县", + 500000 => "重庆市", + 500101 => "万州区", + 500102 => "涪陵区", + 500103 => "渝中区", + 500104 => "大渡口区", + 500105 => "江北区", + 500106 => "沙坪坝区", + 500107 => "九龙坡区", + 500108 => "南岸区", + 500109 => "北碚区", + 500110 => "綦江区", + 500111 => "大足区", + 500112 => "渝北区", + 500113 => "巴南区", + 500114 => "黔江区", + 500115 => "长寿区", + 500116 => "江津区", + 500117 => "合川区", + 500118 => "永川区", + 500119 => "南川区", + 500120 => "璧山区", + 500151 => "铜梁区", + 500152 => "潼南区", + 500153 => "荣昌区", + 500154 => "开州区", + 500155 => "梁平区", + 500156 => "武隆区", + 500229 => "城口县", + 500230 => "丰都县", + 500231 => "垫江县", + 500233 => "忠县", + 500235 => "云阳县", + 500236 => "奉节县", + 500237 => "巫山县", + 500238 => "巫溪县", + 500240 => "石柱土家族自治县", + 500241 => "秀山土家族苗族自治县", + 500242 => "酉阳土家族苗族自治县", + 500243 => "彭水苗族土家族自治县", + 510000 => "四川省", + 510100 => "成都市", + 510104 => "锦江区", + 510105 => "青羊区", + 510106 => "金牛区", + 510107 => "武侯区", + 510108 => "成华区", + 510112 => "龙泉驿区", + 510113 => "青白江区", + 510114 => "新都区", + 510115 => "温江区", + 510116 => "双流区", + 510117 => "郫都区", + 510121 => "金堂县", + 510129 => "大邑县", + 510131 => "蒲江县", + 510132 => "新津县", + 510181 => "都江堰市", + 510182 => "彭州市", + 510183 => "邛崃市", + 510184 => "崇州市", + 510185 => "简阳市", + 510300 => "自贡市", + 510302 => "自流井区", + 510303 => "贡井区", + 510304 => "大安区", + 510311 => "沿滩区", + 510321 => "荣县", + 510322 => "富顺县", + 510400 => "攀枝花市", + 510402 => "东区", + 510403 => "西区", + 510411 => "仁和区", + 510421 => "米易县", + 510422 => "盐边县", + 510500 => "泸州市", + 510502 => "江阳区", + 510503 => "纳溪区", + 510504 => "龙马潭区", + 510521 => "泸县", + 510522 => "合江县", + 510524 => "叙永县", + 510525 => "古蔺县", + 510600 => "德阳市", + 510603 => "旌阳区", + 510604 => "罗江区", + 510623 => "中江县", + 510681 => "广汉市", + 510682 => "什邡市", + 510683 => "绵竹市", + 510700 => "绵阳市", + 510703 => "涪城区", + 510704 => "游仙区", + 510705 => "安州区", + 510722 => "三台县", + 510723 => "盐亭县", + 510725 => "梓潼县", + 510726 => "北川羌族自治县", + 510727 => "平武县", + 510781 => "江油市", + 510800 => "广元市", + 510802 => "利州区", + 510811 => "昭化区", + 510812 => "朝天区", + 510821 => "旺苍县", + 510822 => "青川县", + 510823 => "剑阁县", + 510824 => "苍溪县", + 510900 => "遂宁市", + 510903 => "船山区", + 510904 => "安居区", + 510921 => "蓬溪县", + 510922 => "射洪县", + 510923 => "大英县", + 511000 => "内江市", + 511002 => "市中区", + 511011 => "东兴区", + 511024 => "威远县", + 511025 => "资中县", + 511083 => "隆昌市", + 511100 => "乐山市", + 511102 => "市中区", + 511111 => "沙湾区", + 511112 => "五通桥区", + 511113 => "金口河区", + 511123 => "犍为县", + 511124 => "井研县", + 511126 => "夹江县", + 511129 => "沐川县", + 511132 => "峨边彝族自治县", + 511133 => "马边彝族自治县", + 511181 => "峨眉山市", + 511300 => "南充市", + 511302 => "顺庆区", + 511303 => "高坪区", + 511304 => "嘉陵区", + 511321 => "南部县", + 511322 => "营山县", + 511323 => "蓬安县", + 511324 => "仪陇县", + 511325 => "西充县", + 511381 => "阆中市", + 511400 => "眉山市", + 511402 => "东坡区", + 511403 => "彭山区", + 511421 => "仁寿县", + 511423 => "洪雅县", + 511424 => "丹棱县", + 511425 => "青神县", + 511500 => "宜宾市", + 511502 => "翠屏区", + 511503 => "南溪区", + 511504 => "叙州区", + 511523 => "江安县", + 511524 => "长宁县", + 511525 => "高县", + 511526 => "珙县", + 511527 => "筠连县", + 511528 => "兴文县", + 511529 => "屏山县", + 511600 => "广安市", + 511602 => "广安区", + 511603 => "前锋区", + 511621 => "岳池县", + 511622 => "武胜县", + 511623 => "邻水县", + 511681 => "华蓥市", + 511700 => "达州市", + 511702 => "通川区", + 511703 => "达川区", + 511722 => "宣汉县", + 511723 => "开江县", + 511724 => "大竹县", + 511725 => "渠县", + 511781 => "万源市", + 511800 => "雅安市", + 511802 => "雨城区", + 511803 => "名山区", + 511822 => "荥经县", + 511823 => "汉源县", + 511824 => "石棉县", + 511825 => "天全县", + 511826 => "芦山县", + 511827 => "宝兴县", + 511900 => "巴中市", + 511902 => "巴州区", + 511903 => "恩阳区", + 511921 => "通江县", + 511922 => "南江县", + 511923 => "平昌县", + 512000 => "资阳市", + 512002 => "雁江区", + 512021 => "安岳县", + 512022 => "乐至县", + 513200 => "阿坝藏族羌族自治州", + 513201 => "马尔康市", + 513221 => "汶川县", + 513222 => "理县", + 513223 => "茂县", + 513224 => "松潘县", + 513225 => "九寨沟县", + 513226 => "金川县", + 513227 => "小金县", + 513228 => "黑水县", + 513230 => "壤塘县", + 513231 => "阿坝县", + 513232 => "若尔盖县", + 513233 => "红原县", + 513300 => "甘孜藏族自治州", + 513301 => "康定市", + 513322 => "泸定县", + 513323 => "丹巴县", + 513324 => "九龙县", + 513325 => "雅江县", + 513326 => "道孚县", + 513327 => "炉霍县", + 513328 => "甘孜县", + 513329 => "新龙县", + 513330 => "德格县", + 513331 => "白玉县", + 513332 => "石渠县", + 513333 => "色达县", + 513334 => "理塘县", + 513335 => "巴塘县", + 513336 => "乡城县", + 513337 => "稻城县", + 513338 => "得荣县", + 513400 => "凉山彝族自治州", + 513401 => "西昌市", + 513422 => "木里藏族自治县", + 513423 => "盐源县", + 513424 => "德昌县", + 513425 => "会理县", + 513426 => "会东县", + 513427 => "宁南县", + 513428 => "普格县", + 513429 => "布拖县", + 513430 => "金阳县", + 513431 => "昭觉县", + 513432 => "喜德县", + 513433 => "冕宁县", + 513434 => "越西县", + 513435 => "甘洛县", + 513436 => "美姑县", + 513437 => "雷波县", + 520000 => "贵州省", + 520100 => "贵阳市", + 520102 => "南明区", + 520103 => "云岩区", + 520111 => "花溪区", + 520112 => "乌当区", + 520113 => "白云区", + 520115 => "观山湖区", + 520121 => "开阳县", + 520122 => "息烽县", + 520123 => "修文县", + 520181 => "清镇市", + 520200 => "六盘水市", + 520201 => "钟山区", + 520203 => "六枝特区", + 520221 => "水城县", + 520281 => "盘州市", + 520300 => "遵义市", + 520302 => "红花岗区", + 520303 => "汇川区", + 520304 => "播州区", + 520322 => "桐梓县", + 520323 => "绥阳县", + 520324 => "正安县", + 520325 => "道真仡佬族苗族自治县", + 520326 => "务川仡佬族苗族自治县", + 520327 => "凤冈县", + 520328 => "湄潭县", + 520329 => "余庆县", + 520330 => "习水县", + 520381 => "赤水市", + 520382 => "仁怀市", + 520400 => "安顺市", + 520402 => "西秀区", + 520403 => "平坝区", + 520422 => "普定县", + 520423 => "镇宁布依族苗族自治县", + 520424 => "关岭布依族苗族自治县", + 520425 => "紫云苗族布依族自治县", + 520500 => "毕节市", + 520502 => "七星关区", + 520521 => "大方县", + 520522 => "黔西县", + 520523 => "金沙县", + 520524 => "织金县", + 520525 => "纳雍县", + 520526 => "威宁彝族回族苗族自治县", + 520527 => "赫章县", + 520600 => "铜仁市", + 520602 => "碧江区", + 520603 => "万山区", + 520621 => "江口县", + 520622 => "玉屏侗族自治县", + 520623 => "石阡县", + 520624 => "思南县", + 520625 => "印江土家族苗族自治县", + 520626 => "德江县", + 520627 => "沿河土家族自治县", + 520628 => "松桃苗族自治县", + 522300 => "黔西南布依族苗族自治州", + 522301 => "兴义市", + 522302 => "兴仁市", + 522323 => "普安县", + 522324 => "晴隆县", + 522325 => "贞丰县", + 522326 => "望谟县", + 522327 => "册亨县", + 522328 => "安龙县", + 522600 => "黔东南苗族侗族自治州", + 522601 => "凯里市", + 522622 => "黄平县", + 522623 => "施秉县", + 522624 => "三穗县", + 522625 => "镇远县", + 522626 => "岑巩县", + 522627 => "天柱县", + 522628 => "锦屏县", + 522629 => "剑河县", + 522630 => "台江县", + 522631 => "黎平县", + 522632 => "榕江县", + 522633 => "从江县", + 522634 => "雷山县", + 522635 => "麻江县", + 522636 => "丹寨县", + 522700 => "黔南布依族苗族自治州", + 522701 => "都匀市", + 522702 => "福泉市", + 522722 => "荔波县", + 522723 => "贵定县", + 522725 => "瓮安县", + 522726 => "独山县", + 522727 => "平塘县", + 522728 => "罗甸县", + 522729 => "长顺县", + 522730 => "龙里县", + 522731 => "惠水县", + 522732 => "三都水族自治县", + 530000 => "云南省", + 530100 => "昆明市", + 530102 => "五华区", + 530103 => "盘龙区", + 530111 => "官渡区", + 530112 => "西山区", + 530113 => "东川区", + 530114 => "呈贡区", + 530115 => "晋宁区", + 530124 => "富民县", + 530125 => "宜良县", + 530126 => "石林彝族自治县", + 530127 => "嵩明县", + 530128 => "禄劝彝族苗族自治县", + 530129 => "寻甸回族彝族自治县", + 530181 => "安宁市", + 530300 => "曲靖市", + 530302 => "麒麟区", + 530303 => "沾益区", + 530304 => "马龙区", + 530322 => "陆良县", + 530323 => "师宗县", + 530324 => "罗平县", + 530325 => "富源县", + 530326 => "会泽县", + 530381 => "宣威市", + 530400 => "玉溪市", + 530402 => "红塔区", + 530403 => "江川区", + 530422 => "澄江县", + 530423 => "通海县", + 530424 => "华宁县", + 530425 => "易门县", + 530426 => "峨山彝族自治县", + 530427 => "新平彝族傣族自治县", + 530428 => "元江哈尼族彝族傣族自治县", + 530500 => "保山市", + 530502 => "隆阳区", + 530521 => "施甸县", + 530523 => "龙陵县", + 530524 => "昌宁县", + 530581 => "腾冲市", + 530600 => "昭通市", + 530602 => "昭阳区", + 530621 => "鲁甸县", + 530622 => "巧家县", + 530623 => "盐津县", + 530624 => "大关县", + 530625 => "永善县", + 530626 => "绥江县", + 530627 => "镇雄县", + 530628 => "彝良县", + 530629 => "威信县", + 530681 => "水富市", + 530700 => "丽江市", + 530702 => "古城区", + 530721 => "玉龙纳西族自治县", + 530722 => "永胜县", + 530723 => "华坪县", + 530724 => "宁蒗彝族自治县", + 530800 => "普洱市", + 530802 => "思茅区", + 530821 => "宁洱哈尼族彝族自治县", + 530822 => "墨江哈尼族自治县", + 530823 => "景东彝族自治县", + 530824 => "景谷傣族彝族自治县", + 530825 => "镇沅彝族哈尼族拉祜族自治县", + 530826 => "江城哈尼族彝族自治县", + 530827 => "孟连傣族拉祜族佤族自治县", + 530828 => "澜沧拉祜族自治县", + 530829 => "西盟佤族自治县", + 530900 => "临沧市", + 530902 => "临翔区", + 530921 => "凤庆县", + 530922 => "云县", + 530923 => "永德县", + 530924 => "镇康县", + 530925 => "双江拉祜族佤族布朗族傣族自治县", + 530926 => "耿马傣族佤族自治县", + 530927 => "沧源佤族自治县", + 532300 => "楚雄彝族自治州", + 532301 => "楚雄市", + 532322 => "双柏县", + 532323 => "牟定县", + 532324 => "南华县", + 532325 => "姚安县", + 532326 => "大姚县", + 532327 => "永仁县", + 532328 => "元谋县", + 532329 => "武定县", + 532331 => "禄丰县", + 532500 => "红河哈尼族彝族自治州", + 532501 => "个旧市", + 532502 => "开远市", + 532503 => "蒙自市", + 532504 => "弥勒市", + 532523 => "屏边苗族自治县", + 532524 => "建水县", + 532525 => "石屏县", + 532527 => "泸西县", + 532528 => "元阳县", + 532529 => "红河县", + 532530 => "金平苗族瑶族傣族自治县", + 532531 => "绿春县", + 532532 => "河口瑶族自治县", + 532600 => "文山壮族苗族自治州", + 532601 => "文山市", + 532622 => "砚山县", + 532623 => "西畴县", + 532624 => "麻栗坡县", + 532625 => "马关县", + 532626 => "丘北县", + 532627 => "广南县", + 532628 => "富宁县", + 532800 => "西双版纳傣族自治州", + 532801 => "景洪市", + 532822 => "勐海县", + 532823 => "勐腊县", + 532900 => "大理白族自治州", + 532901 => "大理市", + 532922 => "漾濞彝族自治县", + 532923 => "祥云县", + 532924 => "宾川县", + 532925 => "弥渡县", + 532926 => "南涧彝族自治县", + 532927 => "巍山彝族回族自治县", + 532928 => "永平县", + 532929 => "云龙县", + 532930 => "洱源县", + 532931 => "剑川县", + 532932 => "鹤庆县", + 533100 => "德宏傣族景颇族自治州", + 533102 => "瑞丽市", + 533103 => "芒市", + 533122 => "梁河县", + 533123 => "盈江县", + 533124 => "陇川县", + 533300 => "怒江傈僳族自治州", + 533301 => "泸水市", + 533323 => "福贡县", + 533324 => "贡山独龙族怒族自治县", + 533325 => "兰坪白族普米族自治县", + 533400 => "迪庆藏族自治州", + 533401 => "香格里拉市", + 533422 => "德钦县", + 533423 => "维西傈僳族自治县", + 540000 => "西藏自治区", + 540100 => "拉萨市", + 540102 => "城关区", + 540103 => "堆龙德庆区", + 540104 => "达孜区", + 540121 => "林周县", + 540122 => "当雄县", + 540123 => "尼木县", + 540124 => "曲水县", + 540127 => "墨竹工卡县", + 540200 => "日喀则市", + 540202 => "桑珠孜区", + 540221 => "南木林县", + 540222 => "江孜县", + 540223 => "定日县", + 540224 => "萨迦县", + 540225 => "拉孜县", + 540226 => "昂仁县", + 540227 => "谢通门县", + 540228 => "白朗县", + 540229 => "仁布县", + 540230 => "康马县", + 540231 => "定结县", + 540232 => "仲巴县", + 540233 => "亚东县", + 540234 => "吉隆县", + 540235 => "聂拉木县", + 540236 => "萨嘎县", + 540237 => "岗巴县", + 540300 => "昌都市", + 540302 => "卡若区", + 540321 => "江达县", + 540322 => "贡觉县", + 540323 => "类乌齐县", + 540324 => "丁青县", + 540325 => "察雅县", + 540326 => "八宿县", + 540327 => "左贡县", + 540328 => "芒康县", + 540329 => "洛隆县", + 540330 => "边坝县", + 540400 => "林芝市", + 540402 => "巴宜区", + 540421 => "工布江达县", + 540422 => "米林县", + 540423 => "墨脱县", + 540424 => "波密县", + 540425 => "察隅县", + 540426 => "朗县", + 540500 => "山南市", + 540502 => "乃东区", + 540521 => "扎囊县", + 540522 => "贡嘎县", + 540523 => "桑日县", + 540524 => "琼结县", + 540525 => "曲松县", + 540526 => "措美县", + 540527 => "洛扎县", + 540528 => "加查县", + 540529 => "隆子县", + 540530 => "错那县", + 540531 => "浪卡子县", + 540600 => "那曲市", + 540602 => "色尼区", + 540621 => "嘉黎县", + 540622 => "比如县", + 540623 => "聂荣县", + 540624 => "安多县", + 540625 => "申扎县", + 540626 => "索县", + 540627 => "班戈县", + 540628 => "巴青县", + 540629 => "尼玛县", + 540630 => "双湖县", + 542500 => "阿里地区", + 542521 => "普兰县", + 542522 => "札达县", + 542523 => "噶尔县", + 542524 => "日土县", + 542525 => "革吉县", + 542526 => "改则县", + 542527 => "措勤县", + 610000 => "陕西省", + 610100 => "西安市", + 610102 => "新城区", + 610103 => "碑林区", + 610104 => "莲湖区", + 610111 => "灞桥区", + 610112 => "未央区", + 610113 => "雁塔区", + 610114 => "阎良区", + 610115 => "临潼区", + 610116 => "长安区", + 610117 => "高陵区", + 610118 => "鄠邑区", + 610122 => "蓝田县", + 610124 => "周至县", + 610200 => "铜川市", + 610202 => "王益区", + 610203 => "印台区", + 610204 => "耀州区", + 610222 => "宜君县", + 610300 => "宝鸡市", + 610302 => "渭滨区", + 610303 => "金台区", + 610304 => "陈仓区", + 610322 => "凤翔县", + 610323 => "岐山县", + 610324 => "扶风县", + 610326 => "眉县", + 610327 => "陇县", + 610328 => "千阳县", + 610329 => "麟游县", + 610330 => "凤县", + 610331 => "太白县", + 610400 => "咸阳市", + 610402 => "秦都区", + 610403 => "杨陵区", + 610404 => "渭城区", + 610422 => "三原县", + 610423 => "泾阳县", + 610424 => "乾县", + 610425 => "礼泉县", + 610426 => "永寿县", + 610428 => "长武县", + 610429 => "旬邑县", + 610430 => "淳化县", + 610431 => "武功县", + 610481 => "兴平市", + 610482 => "彬州市", + 610500 => "渭南市", + 610502 => "临渭区", + 610503 => "华州区", + 610522 => "潼关县", + 610523 => "大荔县", + 610524 => "合阳县", + 610525 => "澄城县", + 610526 => "蒲城县", + 610527 => "白水县", + 610528 => "富平县", + 610581 => "韩城市", + 610582 => "华阴市", + 610600 => "延安市", + 610602 => "宝塔区", + 610603 => "安塞区", + 610621 => "延长县", + 610622 => "延川县", + 610623 => "子长县", + 610625 => "志丹县", + 610626 => "吴起县", + 610627 => "甘泉县", + 610628 => "富县", + 610629 => "洛川县", + 610630 => "宜川县", + 610631 => "黄龙县", + 610632 => "黄陵县", + 610700 => "汉中市", + 610702 => "汉台区", + 610703 => "南郑区", + 610722 => "城固县", + 610723 => "洋县", + 610724 => "西乡县", + 610725 => "勉县", + 610726 => "宁强县", + 610727 => "略阳县", + 610728 => "镇巴县", + 610729 => "留坝县", + 610730 => "佛坪县", + 610800 => "榆林市", + 610802 => "榆阳区", + 610803 => "横山区", + 610822 => "府谷县", + 610824 => "靖边县", + 610825 => "定边县", + 610826 => "绥德县", + 610827 => "米脂县", + 610828 => "佳县", + 610829 => "吴堡县", + 610830 => "清涧县", + 610831 => "子洲县", + 610881 => "神木市", + 610900 => "安康市", + 610902 => "汉滨区", + 610921 => "汉阴县", + 610922 => "石泉县", + 610923 => "宁陕县", + 610924 => "紫阳县", + 610925 => "岚皋县", + 610926 => "平利县", + 610927 => "镇坪县", + 610928 => "旬阳县", + 610929 => "白河县", + 611000 => "商洛市", + 611002 => "商州区", + 611021 => "洛南县", + 611022 => "丹凤县", + 611023 => "商南县", + 611024 => "山阳县", + 611025 => "镇安县", + 611026 => "柞水县", + 620000 => "甘肃省", + 620100 => "兰州市", + 620102 => "城关区", + 620103 => "七里河区", + 620104 => "西固区", + 620105 => "安宁区", + 620111 => "红古区", + 620121 => "永登县", + 620122 => "皋兰县", + 620123 => "榆中县", + 620200 => "嘉峪关市", + 620300 => "金昌市", + 620302 => "金川区", + 620321 => "永昌县", + 620400 => "白银市", + 620402 => "白银区", + 620403 => "平川区", + 620421 => "靖远县", + 620422 => "会宁县", + 620423 => "景泰县", + 620500 => "天水市", + 620502 => "秦州区", + 620503 => "麦积区", + 620521 => "清水县", + 620522 => "秦安县", + 620523 => "甘谷县", + 620524 => "武山县", + 620525 => "张家川回族自治县", + 620600 => "武威市", + 620602 => "凉州区", + 620621 => "民勤县", + 620622 => "古浪县", + 620623 => "天祝藏族自治县", + 620700 => "张掖市", + 620702 => "甘州区", + 620721 => "肃南裕固族自治县", + 620722 => "民乐县", + 620723 => "临泽县", + 620724 => "高台县", + 620725 => "山丹县", + 620800 => "平凉市", + 620802 => "崆峒区", + 620821 => "泾川县", + 620822 => "灵台县", + 620823 => "崇信县", + 620825 => "庄浪县", + 620826 => "静宁县", + 620881 => "华亭市", + 620900 => "酒泉市", + 620902 => "肃州区", + 620921 => "金塔县", + 620922 => "瓜州县", + 620923 => "肃北蒙古族自治县", + 620924 => "阿克塞哈萨克族自治县", + 620981 => "玉门市", + 620982 => "敦煌市", + 621000 => "庆阳市", + 621002 => "西峰区", + 621021 => "庆城县", + 621022 => "环县", + 621023 => "华池县", + 621024 => "合水县", + 621025 => "正宁县", + 621026 => "宁县", + 621027 => "镇原县", + 621100 => "定西市", + 621102 => "安定区", + 621121 => "通渭县", + 621122 => "陇西县", + 621123 => "渭源县", + 621124 => "临洮县", + 621125 => "漳县", + 621126 => "岷县", + 621200 => "陇南市", + 621202 => "武都区", + 621221 => "成县", + 621222 => "文县", + 621223 => "宕昌县", + 621224 => "康县", + 621225 => "西和县", + 621226 => "礼县", + 621227 => "徽县", + 621228 => "两当县", + 622900 => "临夏回族自治州", + 622901 => "临夏市", + 622921 => "临夏县", + 622922 => "康乐县", + 622923 => "永靖县", + 622924 => "广河县", + 622925 => "和政县", + 622926 => "东乡族自治县", + 622927 => "积石山保安族东乡族撒拉族自治县", + 623000 => "甘南藏族自治州", + 623001 => "合作市", + 623021 => "临潭县", + 623022 => "卓尼县", + 623023 => "舟曲县", + 623024 => "迭部县", + 623025 => "玛曲县", + 623026 => "碌曲县", + 623027 => "夏河县", + 630000 => "青海省", + 630100 => "西宁市", + 630102 => "城东区", + 630103 => "城中区", + 630104 => "城西区", + 630105 => "城北区", + 630121 => "大通回族土族自治县", + 630122 => "湟中县", + 630123 => "湟源县", + 630200 => "海东市", + 630202 => "乐都区", + 630203 => "平安区", + 630222 => "民和回族土族自治县", + 630223 => "互助土族自治县", + 630224 => "化隆回族自治县", + 630225 => "循化撒拉族自治县", + 632200 => "海北藏族自治州", + 632221 => "门源回族自治县", + 632222 => "祁连县", + 632223 => "海晏县", + 632224 => "刚察县", + 632300 => "黄南藏族自治州", + 632321 => "同仁县", + 632322 => "尖扎县", + 632323 => "泽库县", + 632324 => "河南蒙古族自治县", + 632500 => "海南藏族自治州", + 632521 => "共和县", + 632522 => "同德县", + 632523 => "贵德县", + 632524 => "兴海县", + 632525 => "贵南县", + 632600 => "果洛藏族自治州", + 632621 => "玛沁县", + 632622 => "班玛县", + 632623 => "甘德县", + 632624 => "达日县", + 632625 => "久治县", + 632626 => "玛多县", + 632700 => "玉树藏族自治州", + 632701 => "玉树市", + 632722 => "杂多县", + 632723 => "称多县", + 632724 => "治多县", + 632725 => "囊谦县", + 632726 => "曲麻莱县", + 632800 => "海西蒙古族藏族自治州", + 632801 => "格尔木市", + 632802 => "德令哈市", + 632803 => "茫崖市", + 632821 => "乌兰县", + 632822 => "都兰县", + 632823 => "天峻县", + 640000 => "宁夏回族自治区", + 640100 => "银川市", + 640104 => "兴庆区", + 640105 => "西夏区", + 640106 => "金凤区", + 640121 => "永宁县", + 640122 => "贺兰县", + 640181 => "灵武市", + 640200 => "石嘴山市", + 640202 => "大武口区", + 640205 => "惠农区", + 640221 => "平罗县", + 640300 => "吴忠市", + 640302 => "利通区", + 640303 => "红寺堡区", + 640323 => "盐池县", + 640324 => "同心县", + 640381 => "青铜峡市", + 640400 => "固原市", + 640402 => "原州区", + 640422 => "西吉县", + 640423 => "隆德县", + 640424 => "泾源县", + 640425 => "彭阳县", + 640500 => "中卫市", + 640502 => "沙坡头区", + 640521 => "中宁县", + 640522 => "海原县", + 650000 => "新疆维吾尔自治区", + 650100 => "乌鲁木齐市", + 650102 => "天山区", + 650103 => "沙依巴克区", + 650104 => "新市区", + 650105 => "水磨沟区", + 650106 => "头屯河区", + 650107 => "达坂城区", + 650109 => "米东区", + 650121 => "乌鲁木齐县", + 650200 => "克拉玛依市", + 650202 => "独山子区", + 650203 => "克拉玛依区", + 650204 => "白碱滩区", + 650205 => "乌尔禾区", + 650400 => "吐鲁番市", + 650402 => "高昌区", + 650421 => "鄯善县", + 650422 => "托克逊县", + 650500 => "哈密市", + 650502 => "伊州区", + 650521 => "巴里坤哈萨克自治县", + 650522 => "伊吾县", + 652300 => "昌吉回族自治州", + 652301 => "昌吉市", + 652302 => "阜康市", + 652323 => "呼图壁县", + 652324 => "玛纳斯县", + 652325 => "奇台县", + 652327 => "吉木萨尔县", + 652328 => "木垒哈萨克自治县", + 652700 => "博尔塔拉蒙古自治州", + 652701 => "博乐市", + 652702 => "阿拉山口市", + 652722 => "精河县", + 652723 => "温泉县", + 652800 => "巴音郭楞蒙古自治州", + 652801 => "库尔勒市", + 652822 => "轮台县", + 652823 => "尉犁县", + 652824 => "若羌县", + 652825 => "且末县", + 652826 => "焉耆回族自治县", + 652827 => "和静县", + 652828 => "和硕县", + 652829 => "博湖县", + 652900 => "阿克苏地区", + 652901 => "阿克苏市", + 652922 => "温宿县", + 652923 => "库车县", + 652924 => "沙雅县", + 652925 => "新和县", + 652926 => "拜城县", + 652927 => "乌什县", + 652928 => "阿瓦提县", + 652929 => "柯坪县", + 653000 => "克孜勒苏柯尔克孜自治州", + 653001 => "阿图什市", + 653022 => "阿克陶县", + 653023 => "阿合奇县", + 653024 => "乌恰县", + 653100 => "喀什地区", + 653101 => "喀什市", + 653121 => "疏附县", + 653122 => "疏勒县", + 653123 => "英吉沙县", + 653124 => "泽普县", + 653125 => "莎车县", + 653126 => "叶城县", + 653127 => "麦盖提县", + 653128 => "岳普湖县", + 653129 => "伽师县", + 653130 => "巴楚县", + 653131 => "塔什库尔干塔吉克自治县", + 653200 => "和田地区", + 653201 => "和田市", + 653221 => "和田县", + 653222 => "墨玉县", + 653223 => "皮山县", + 653224 => "洛浦县", + 653225 => "策勒县", + 653226 => "于田县", + 653227 => "民丰县", + 654000 => "伊犁哈萨克自治州", + 654002 => "伊宁市", + 654003 => "奎屯市", + 654004 => "霍尔果斯市", + 654021 => "伊宁县", + 654022 => "察布查尔锡伯自治县", + 654023 => "霍城县", + 654024 => "巩留县", + 654025 => "新源县", + 654026 => "昭苏县", + 654027 => "特克斯县", + 654028 => "尼勒克县", + 654200 => "塔城地区", + 654201 => "塔城市", + 654202 => "乌苏市", + 654221 => "额敏县", + 654223 => "沙湾县", + 654224 => "托里县", + 654225 => "裕民县", + 654226 => "和布克赛尔蒙古自治县", + 654300 => "阿勒泰地区", + 654301 => "阿勒泰市", + 654321 => "布尔津县", + 654322 => "富蕴县", + 654323 => "福海县", + 654324 => "哈巴河县", + 654325 => "青河县", + 654326 => "吉木乃县", + 659001 => "石河子市", + 659002 => "阿拉尔市", + 659003 => "图木舒克市", + 659004 => "五家渠市", + 659005 => "北屯市", + 659006 => "铁门关市", + 659007 => "双河市", + 659008 => "可克达拉市", + 659009 => "昆玉市", + 810000 => "香港特别行政区", + 820000 => "澳门特别行政区", + 830000 => "台湾省" +]; \ No newline at end of file diff --git a/data/addressCodeTimeline.php b/data/addressCodeTimeline.php index 57fdb50..8c43fdb 100644 --- a/data/addressCodeTimeline.php +++ b/data/addressCodeTimeline.php @@ -14,65749 +14,51460 @@ return [ - 110000 => - [ - - [ - 'address' => '北京市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 110101 => - [ - - [ - 'address' => '东城区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 110102 => - [ - - [ - 'address' => '西城区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 110103 => - [ - - [ - 'address' => '崇文区', - 'start_year' => '', - 'end_year' => 2009, - ], - ], - 110104 => - [ - - [ - 'address' => '宣武区', - 'start_year' => '', - 'end_year' => 2009, - ], - ], - 110105 => - [ - - [ - 'address' => '朝阳区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 110106 => - [ - - [ - 'address' => '丰台区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 110107 => - [ - - [ - 'address' => '石景山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 110108 => - [ - - [ - 'address' => '海淀区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 110109 => - [ - - [ - 'address' => '门头沟区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 110110 => - [ - - [ - 'address' => '燕山区', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 110111 => - [ - - [ - 'address' => '房山区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 110112 => - [ - - [ - 'address' => '通州区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 110113 => - [ - - [ - 'address' => '顺义区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 110114 => - [ - - [ - 'address' => '昌平区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 110115 => - [ - - [ - 'address' => '大兴区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 110116 => - [ - - [ - 'address' => '怀柔区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 110117 => - [ - - [ - 'address' => '平谷区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 110118 => - [ - - [ - 'address' => '密云区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 110119 => - [ - - [ - 'address' => '延庆区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 110201 => - [ - - [ - 'address' => '昌平县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 110202 => - [ - - [ - 'address' => '顺义县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 110203 => - [ - - [ - 'address' => '通县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 110204 => - [ - - [ - 'address' => '大兴县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 110205 => - [ - - [ - 'address' => '房山县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 110206 => - [ - - [ - 'address' => '平谷县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 110207 => - [ - - [ - 'address' => '怀柔县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 110208 => - [ - - [ - 'address' => '密云县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 110209 => - [ - - [ - 'address' => '延庆县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 110221 => - [ - - [ - 'address' => '昌平县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 110222 => - [ - - [ - 'address' => '顺义县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 110223 => - [ - - [ - 'address' => '通县', - 'start_year' => 1982, - 'end_year' => 1996, - ], - ], - 110224 => - [ - - [ - 'address' => '大兴县', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 110225 => - [ - - [ - 'address' => '房山县', - 'start_year' => 1982, - 'end_year' => 1985, - ], - ], - 110226 => - [ - - [ - 'address' => '平谷县', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 110227 => - [ - - [ - 'address' => '怀柔县', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 110228 => - [ - - [ - 'address' => '密云县', - 'start_year' => 1982, - 'end_year' => 2014, - ], - ], - 110229 => - [ - - [ - 'address' => '延庆县', - 'start_year' => 1982, - 'end_year' => 2014, - ], - ], - 120000 => - [ - - [ - 'address' => '天津市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 120101 => - [ - - [ - 'address' => '和平区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 120102 => - [ - - [ - 'address' => '河东区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 120103 => - [ - - [ - 'address' => '河西区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 120104 => - [ - - [ - 'address' => '南开区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 120105 => - [ - - [ - 'address' => '河北区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 120106 => - [ - - [ - 'address' => '红桥区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 120107 => - [ - - [ - 'address' => '塘沽区', - 'start_year' => '', - 'end_year' => 2008, - ], - ], - 120108 => - [ - - [ - 'address' => '汉沽区', - 'start_year' => '', - 'end_year' => 2008, - ], - ], - 120109 => - [ - - [ - 'address' => '大港区', - 'start_year' => '', - 'end_year' => 2008, - ], - ], - 120110 => - [ - - [ - 'address' => '东郊区', - 'start_year' => '', - 'end_year' => 1991, - ], - - [ - 'address' => '东丽区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 120111 => - [ - - [ - 'address' => '西郊区', - 'start_year' => '', - 'end_year' => 1991, - ], - - [ - 'address' => '西青区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 120112 => - [ - - [ - 'address' => '南郊区', - 'start_year' => '', - 'end_year' => 1991, - ], - - [ - 'address' => '津南区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 120113 => - [ - - [ - 'address' => '北郊区', - 'start_year' => '', - 'end_year' => 1991, - ], - - [ - 'address' => '北辰区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 120114 => - [ - - [ - 'address' => '武清区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 120115 => - [ - - [ - 'address' => '宝坻区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 120116 => - [ - - [ - 'address' => '滨海新区', - 'start_year' => 2009, - 'end_year' => '', - ], - ], - 120117 => - [ - - [ - 'address' => '宁河区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 120118 => - [ - - [ - 'address' => '静海区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 120119 => - [ - - [ - 'address' => '蓟州区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 120201 => - [ - - [ - 'address' => '宁河县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 120202 => - [ - - [ - 'address' => '武清县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 120203 => - [ - - [ - 'address' => '静海县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 120204 => - [ - - [ - 'address' => '宝坻县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 120205 => - [ - - [ - 'address' => '蓟县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 120221 => - [ - - [ - 'address' => '宁河县', - 'start_year' => 1982, - 'end_year' => 2014, - ], - ], - 120222 => - [ - - [ - 'address' => '武清县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 120223 => - [ - - [ - 'address' => '静海县', - 'start_year' => 1982, - 'end_year' => 2014, - ], - ], - 120224 => - [ - - [ - 'address' => '宝坻县', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 120225 => - [ - - [ - 'address' => '蓟县', - 'start_year' => 1982, - 'end_year' => 2015, - ], - ], - 130000 => - [ - - [ - 'address' => '河北省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 130100 => - [ - - [ - 'address' => '石家庄市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 130102 => - [ - - [ - 'address' => '长安区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 130103 => - [ - - [ - 'address' => '桥东区', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 130104 => - [ - - [ - 'address' => '桥西区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 130105 => - [ - - [ - 'address' => '新华区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 130106 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 130107 => - [ - - [ - 'address' => '井陉矿区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 130108 => - [ - - [ - 'address' => '裕华区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 130109 => - [ - - [ - 'address' => '藁城区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 130110 => - [ - - [ - 'address' => '鹿泉区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 130111 => - [ - - [ - 'address' => '栾城区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 130121 => - [ - - [ - 'address' => '井陉县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130122 => - [ - - [ - 'address' => '获鹿县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 130123 => - [ - - [ - 'address' => '栾城县', - 'start_year' => 1986, - 'end_year' => 1992, - ], - - [ - 'address' => '正定县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130124 => - [ - - [ - 'address' => '正定县', - 'start_year' => 1986, - 'end_year' => 1992, - ], - - [ - 'address' => '栾城县', - 'start_year' => 1993, - 'end_year' => 2013, - ], - ], - 130125 => - [ - - [ - 'address' => '行唐县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130126 => - [ - - [ - 'address' => '灵寿县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130127 => - [ - - [ - 'address' => '高邑县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130128 => - [ - - [ - 'address' => '深泽县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130129 => - [ - - [ - 'address' => '赞皇县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130130 => - [ - - [ - 'address' => '无极县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130131 => - [ - - [ - 'address' => '平山县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130132 => - [ - - [ - 'address' => '元氏县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130133 => - [ - - [ - 'address' => '赵县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130181 => - [ - - [ - 'address' => '辛集市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130182 => - [ - - [ - 'address' => '藁城市', - 'start_year' => 1995, - 'end_year' => 2013, - ], - ], - 130183 => - [ - - [ - 'address' => '晋州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130184 => - [ - - [ - 'address' => '新乐市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130185 => - [ - - [ - 'address' => '鹿泉市', - 'start_year' => 1995, - 'end_year' => 2013, - ], - ], - 130200 => - [ - - [ - 'address' => '唐山市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 130202 => - [ - - [ - 'address' => '路南区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 130203 => - [ - - [ - 'address' => '路北区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 130204 => - [ - - [ - 'address' => '东矿区', - 'start_year' => '', - 'end_year' => 1994, - ], - - [ - 'address' => '古冶区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130205 => - [ - - [ - 'address' => '开平区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 130206 => - [ - - [ - 'address' => '新区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 130207 => - [ - - [ - 'address' => '丰南区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 130208 => - [ - - [ - 'address' => '丰润区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 130209 => - [ - - [ - 'address' => '曹妃甸区', - 'start_year' => 2012, - 'end_year' => '', - ], - ], - 130221 => - [ - - [ - 'address' => '丰润县', - 'start_year' => 1983, - 'end_year' => 2001, - ], - ], - 130222 => - [ - - [ - 'address' => '丰南县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 130223 => - [ - - [ - 'address' => '滦县', - 'start_year' => 1983, - 'end_year' => 2017, - ], - ], - 130224 => - [ - - [ - 'address' => '滦南县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130225 => - [ - - [ - 'address' => '乐亭县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130226 => - [ - - [ - 'address' => '玉田县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '迁安县', - 'start_year' => 1984, - 'end_year' => 1995, - ], - ], - 130227 => - [ - - [ - 'address' => '唐海县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '迁西县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 130228 => - [ - - [ - 'address' => '迁安县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '遵化县', - 'start_year' => 1984, - 'end_year' => 1991, - ], - ], - 130229 => - [ - - [ - 'address' => '迁西县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '玉田县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 130230 => - [ - - [ - 'address' => '遵化县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '唐海县', - 'start_year' => 1984, - 'end_year' => 2011, - ], - ], - 130281 => - [ - - [ - 'address' => '遵化市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130282 => - [ - - [ - 'address' => '丰南市', - 'start_year' => 1995, - 'end_year' => 2001, - ], - ], - 130283 => - [ - - [ - 'address' => '迁安市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 130284 => - [ - - [ - 'address' => '滦州市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 130300 => - [ - - [ - 'address' => '秦皇岛市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130302 => - [ - - [ - 'address' => '海港区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130303 => - [ - - [ - 'address' => '山海关区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130304 => - [ - - [ - 'address' => '北戴河区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130305 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 130306 => - [ - - [ - 'address' => '抚宁区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 130321 => - [ - - [ - 'address' => '青龙县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - - [ - 'address' => '青龙满族自治县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 130322 => - [ - - [ - 'address' => '昌黎县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130323 => - [ - - [ - 'address' => '抚宁县', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 130324 => - [ - - [ - 'address' => '卢龙县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130400 => - [ - - [ - 'address' => '邯郸市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130402 => - [ - - [ - 'address' => '邯山区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130403 => - [ - - [ - 'address' => '丛台区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130404 => - [ - - [ - 'address' => '复兴区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130405 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 130406 => - [ - - [ - 'address' => '峰峰矿区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130407 => - [ - - [ - 'address' => '肥乡区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 130408 => - [ - - [ - 'address' => '永年区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 130421 => - [ - - [ - 'address' => '邯郸县', - 'start_year' => 1983, - 'end_year' => 2015, - ], - ], - 130422 => - [ - - [ - 'address' => '武安县', - 'start_year' => 1986, - 'end_year' => 1987, - ], - ], - 130423 => - [ - - [ - 'address' => '临漳县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130424 => - [ - - [ - 'address' => '成安县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130425 => - [ - - [ - 'address' => '大名县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130426 => - [ - - [ - 'address' => '涉县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130427 => - [ - - [ - 'address' => '磁县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130428 => - [ - - [ - 'address' => '肥乡县', - 'start_year' => 1993, - 'end_year' => 2015, - ], - ], - 130429 => - [ - - [ - 'address' => '永年县', - 'start_year' => 1993, - 'end_year' => 2015, - ], - ], - 130430 => - [ - - [ - 'address' => '丘县', - 'start_year' => 1993, - 'end_year' => 1995, - ], - - [ - 'address' => '邱县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 130431 => - [ - - [ - 'address' => '鸡泽县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130432 => - [ - - [ - 'address' => '广平县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130433 => - [ - - [ - 'address' => '馆陶县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130434 => - [ - - [ - 'address' => '魏县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130435 => - [ - - [ - 'address' => '曲周县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130481 => - [ - - [ - 'address' => '武安市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130500 => - [ - - [ - 'address' => '邢台市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130502 => - [ - - [ - 'address' => '桥东区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130503 => - [ - - [ - 'address' => '桥西区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130504 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 130521 => - [ - - [ - 'address' => '邢台县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 130522 => - [ - - [ - 'address' => '临城县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130523 => - [ - - [ - 'address' => '内丘县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130524 => - [ - - [ - 'address' => '柏乡县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130525 => - [ - - [ - 'address' => '隆尧县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130526 => - [ - - [ - 'address' => '任县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130527 => - [ - - [ - 'address' => '南和县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130528 => - [ - - [ - 'address' => '宁晋县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130529 => - [ - - [ - 'address' => '巨鹿县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130530 => - [ - - [ - 'address' => '新河县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130531 => - [ - - [ - 'address' => '广宗县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130532 => - [ - - [ - 'address' => '平乡县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130533 => - [ - - [ - 'address' => '威县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130534 => - [ - - [ - 'address' => '清河县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130535 => - [ - - [ - 'address' => '临西县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130581 => - [ - - [ - 'address' => '南宫市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130582 => - [ - - [ - 'address' => '沙河市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130600 => - [ - - [ - 'address' => '保定市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130602 => - [ - - [ - 'address' => '新市区', - 'start_year' => 1983, - 'end_year' => 2014, - ], - - [ - 'address' => '竞秀区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 130603 => - [ - - [ - 'address' => '北市区', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 130604 => - [ - - [ - 'address' => '南市区', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 130605 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 130606 => - [ - - [ - 'address' => '莲池区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 130607 => - [ - - [ - 'address' => '满城区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 130608 => - [ - - [ - 'address' => '清苑区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 130609 => - [ - - [ - 'address' => '徐水区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 130621 => - [ - - [ - 'address' => '满城县', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 130622 => - [ - - [ - 'address' => '清苑县', - 'start_year' => 1986, - 'end_year' => 2014, - ], - ], - 130623 => - [ - - [ - 'address' => '涞水县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130624 => - [ - - [ - 'address' => '阜平县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130625 => - [ - - [ - 'address' => '徐水县', - 'start_year' => 1994, - 'end_year' => 2014, - ], - ], - 130626 => - [ - - [ - 'address' => '定兴县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130627 => - [ - - [ - 'address' => '唐县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130628 => - [ - - [ - 'address' => '高阳县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130629 => - [ - - [ - 'address' => '容城县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130630 => - [ - - [ - 'address' => '涞源县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130631 => - [ - - [ - 'address' => '望都县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130632 => - [ - - [ - 'address' => '安新县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130633 => - [ - - [ - 'address' => '易县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130634 => - [ - - [ - 'address' => '曲阳县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130635 => - [ - - [ - 'address' => '蠡县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130636 => - [ - - [ - 'address' => '顺平县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130637 => - [ - - [ - 'address' => '博野县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130638 => - [ - - [ - 'address' => '雄县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 130681 => - [ - - [ - 'address' => '涿州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130682 => - [ - - [ - 'address' => '定州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130683 => - [ - - [ - 'address' => '安国市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130684 => - [ - - [ - 'address' => '高碑店市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130700 => - [ - - [ - 'address' => '张家口市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130702 => - [ - - [ - 'address' => '桥东区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130703 => - [ - - [ - 'address' => '桥西区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130704 => - [ - - [ - 'address' => '茶坊区', - 'start_year' => 1983, - 'end_year' => 1988, - ], - ], - 130705 => - [ - - [ - 'address' => '宣化区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130706 => - [ - - [ - 'address' => '下花园区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130707 => - [ - - [ - 'address' => '庞家堡区', - 'start_year' => 1983, - 'end_year' => 1988, - ], - ], - 130708 => - [ - - [ - 'address' => '万全区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 130709 => - [ - - [ - 'address' => '崇礼区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 130721 => - [ - - [ - 'address' => '宣化县', - 'start_year' => 1983, - 'end_year' => 2015, - ], - ], - 130722 => - [ - - [ - 'address' => '张北县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130723 => - [ - - [ - 'address' => '康保县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130724 => - [ - - [ - 'address' => '沽源县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130725 => - [ - - [ - 'address' => '尚义县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130726 => - [ - - [ - 'address' => '蔚县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130727 => - [ - - [ - 'address' => '阳原县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130728 => - [ - - [ - 'address' => '怀安县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130729 => - [ - - [ - 'address' => '万全县', - 'start_year' => 1993, - 'end_year' => 2015, - ], - ], - 130730 => - [ - - [ - 'address' => '怀来县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130731 => - [ - - [ - 'address' => '涿鹿县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130732 => - [ - - [ - 'address' => '赤城县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130733 => - [ - - [ - 'address' => '崇礼县', - 'start_year' => 1993, - 'end_year' => 2015, - ], - ], - 130800 => - [ - - [ - 'address' => '承德市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130802 => - [ - - [ - 'address' => '双桥区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130803 => - [ - - [ - 'address' => '双滦区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130804 => - [ - - [ - 'address' => '鹰手营子矿区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130821 => - [ - - [ - 'address' => '承德县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130822 => - [ - - [ - 'address' => '兴隆县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130823 => - [ - - [ - 'address' => '平泉县', - 'start_year' => 1993, - 'end_year' => 2016, - ], - ], - 130824 => - [ - - [ - 'address' => '滦平县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130825 => - [ - - [ - 'address' => '隆化县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130826 => - [ - - [ - 'address' => '丰宁满族自治县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130827 => - [ - - [ - 'address' => '宽城满族自治县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130828 => - [ - - [ - 'address' => '围场满族蒙古族自治县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130881 => - [ - - [ - 'address' => '平泉市', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 130900 => - [ - - [ - 'address' => '沧州市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130902 => - [ - - [ - 'address' => '新华区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130903 => - [ - - [ - 'address' => '运河区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130904 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 130921 => - [ - - [ - 'address' => '沧县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 130922 => - [ - - [ - 'address' => '青县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 130923 => - [ - - [ - 'address' => '东光县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130924 => - [ - - [ - 'address' => '海兴县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130925 => - [ - - [ - 'address' => '盐山县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130926 => - [ - - [ - 'address' => '肃宁县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130927 => - [ - - [ - 'address' => '南皮县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130928 => - [ - - [ - 'address' => '吴桥县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130929 => - [ - - [ - 'address' => '献县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130930 => - [ - - [ - 'address' => '孟村回族自治县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 130981 => - [ - - [ - 'address' => '泊头市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130982 => - [ - - [ - 'address' => '任丘市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130983 => - [ - - [ - 'address' => '黄骅市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 130984 => - [ - - [ - 'address' => '河间市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 131000 => - [ - - [ - 'address' => '廊坊市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 131002 => - [ - - [ - 'address' => '安次区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 131003 => - [ - - [ - 'address' => '广阳区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 131021 => - [ - - [ - 'address' => '三河县', - 'start_year' => 1988, - 'end_year' => 1992, - ], - ], - 131022 => - [ - - [ - 'address' => '固安县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 131023 => - [ - - [ - 'address' => '永清县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 131024 => - [ - - [ - 'address' => '香河县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 131025 => - [ - - [ - 'address' => '大城县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 131026 => - [ - - [ - 'address' => '文安县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 131027 => - [ - - [ - 'address' => '霸县', - 'start_year' => 1988, - 'end_year' => 1989, - ], - ], - 131028 => - [ - - [ - 'address' => '大厂回族自治县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 131081 => - [ - - [ - 'address' => '霸州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 131082 => - [ - - [ - 'address' => '三河市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 131100 => - [ - - [ - 'address' => '衡水市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 131102 => - [ - - [ - 'address' => '桃城区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 131103 => - [ - - [ - 'address' => '冀州区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 131121 => - [ - - [ - 'address' => '枣强县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 131122 => - [ - - [ - 'address' => '武邑县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 131123 => - [ - - [ - 'address' => '武强县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 131124 => - [ - - [ - 'address' => '饶阳县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 131125 => - [ - - [ - 'address' => '安平县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 131126 => - [ - - [ - 'address' => '故城县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 131127 => - [ - - [ - 'address' => '景县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 131128 => - [ - - [ - 'address' => '阜城县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 131181 => - [ - - [ - 'address' => '冀州市', - 'start_year' => 1996, - 'end_year' => 2015, - ], - ], - 131182 => - [ - - [ - 'address' => '深州市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 132100 => - [ - - [ - 'address' => '邯郸地区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132101 => - [ - - [ - 'address' => '邯郸市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132102 => - [ - - [ - 'address' => '邯山区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132103 => - [ - - [ - 'address' => '丛台区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132104 => - [ - - [ - 'address' => '复兴区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132105 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132106 => - [ - - [ - 'address' => '峰峰矿区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132121 => - [ - - [ - 'address' => '大名县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132122 => - [ - - [ - 'address' => '魏县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132123 => - [ - - [ - 'address' => '曲周县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132124 => - [ - - [ - 'address' => '丘县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132125 => - [ - - [ - 'address' => '鸡泽县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132126 => - [ - - [ - 'address' => '肥乡县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132127 => - [ - - [ - 'address' => '广平县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132128 => - [ - - [ - 'address' => '成安县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132129 => - [ - - [ - 'address' => '临漳县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132130 => - [ - - [ - 'address' => '磁县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132131 => - [ - - [ - 'address' => '武安县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 132132 => - [ - - [ - 'address' => '涉县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132133 => - [ - - [ - 'address' => '永年县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132134 => - [ - - [ - 'address' => '邯郸县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132135 => - [ - - [ - 'address' => '馆陶县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132200 => - [ - - [ - 'address' => '邢台地区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132201 => - [ - - [ - 'address' => '邢台市', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '南宫市', - 'start_year' => 1986, - 'end_year' => 1992, - ], - ], - 132202 => - [ - - [ - 'address' => '桥东区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '沙河市', - 'start_year' => 1987, - 'end_year' => 1992, - ], - ], - 132203 => - [ - - [ - 'address' => '桥西区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132204 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132221 => - [ - - [ - 'address' => '邢台县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 132222 => - [ - - [ - 'address' => '沙河县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 132223 => - [ - - [ - 'address' => '临城县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132224 => - [ - - [ - 'address' => '内丘县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132225 => - [ - - [ - 'address' => '柏乡县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132226 => - [ - - [ - 'address' => '隆尧县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132227 => - [ - - [ - 'address' => '任县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132228 => - [ - - [ - 'address' => '南和县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132229 => - [ - - [ - 'address' => '宁晋县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132230 => - [ - - [ - 'address' => '南宫县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 132231 => - [ - - [ - 'address' => '巨鹿县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132232 => - [ - - [ - 'address' => '新河县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132233 => - [ - - [ - 'address' => '广宗县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132234 => - [ - - [ - 'address' => '平乡县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132235 => - [ - - [ - 'address' => '威县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132236 => - [ - - [ - 'address' => '清河县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132237 => - [ - - [ - 'address' => '临西县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132300 => - [ - - [ - 'address' => '石家庄地区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132301 => - [ - - [ - 'address' => '辛集市', - 'start_year' => 1986, - 'end_year' => 1992, - ], - ], - 132302 => - [ - - [ - 'address' => '藁城市', - 'start_year' => 1989, - 'end_year' => 1992, - ], - ], - 132303 => - [ - - [ - 'address' => '晋州市', - 'start_year' => 1991, - 'end_year' => 1992, - ], - ], - 132304 => - [ - - [ - 'address' => '新乐市', - 'start_year' => 1992, - 'end_year' => 1992, - ], - ], - 132321 => - [ - - [ - 'address' => '束鹿县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 132322 => - [ - - [ - 'address' => '晋县', - 'start_year' => '', - 'end_year' => 1990, - ], - ], - 132323 => - [ - - [ - 'address' => '深泽县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132324 => - [ - - [ - 'address' => '无极县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132325 => - [ - - [ - 'address' => '藁城县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 132326 => - [ - - [ - 'address' => '赵县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132327 => - [ - - [ - 'address' => '栾城县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 132328 => - [ - - [ - 'address' => '正定县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 132329 => - [ - - [ - 'address' => '新乐县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 132330 => - [ - - [ - 'address' => '高邑县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132331 => - [ - - [ - 'address' => '元氏县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132332 => - [ - - [ - 'address' => '赞皇县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132333 => - [ - - [ - 'address' => '井陉县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132334 => - [ - - [ - 'address' => '获鹿县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132335 => - [ - - [ - 'address' => '平山县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132336 => - [ - - [ - 'address' => '灵寿县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132337 => - [ - - [ - 'address' => '行唐县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132400 => - [ - - [ - 'address' => '保定地区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132401 => - [ - - [ - 'address' => '保定市', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '定州市', - 'start_year' => 1986, - 'end_year' => 1993, - ], - ], - 132402 => - [ - - [ - 'address' => '新市区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '涿州市', - 'start_year' => 1986, - 'end_year' => 1993, - ], - ], - 132403 => - [ - - [ - 'address' => '北市区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '安国市', - 'start_year' => 1991, - 'end_year' => 1993, - ], - ], - 132404 => - [ - - [ - 'address' => '南市区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '高碑店市', - 'start_year' => 1993, - 'end_year' => 1993, - ], - ], - 132405 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132421 => - [ - - [ - 'address' => '易县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132422 => - [ - - [ - 'address' => '满城县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132423 => - [ - - [ - 'address' => '徐水县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132424 => - [ - - [ - 'address' => '涞源县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132425 => - [ - - [ - 'address' => '定兴县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132426 => - [ - - [ - 'address' => '完县', - 'start_year' => '', - 'end_year' => 1992, - ], - - [ - 'address' => '顺平县', - 'start_year' => 1993, - 'end_year' => 1993, - ], - ], - 132427 => - [ - - [ - 'address' => '唐县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132428 => - [ - - [ - 'address' => '望都县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132429 => - [ - - [ - 'address' => '涞水县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132430 => - [ - - [ - 'address' => '涿县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 132431 => - [ - - [ - 'address' => '清苑县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 132432 => - [ - - [ - 'address' => '高阳县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132433 => - [ - - [ - 'address' => '安新县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132434 => - [ - - [ - 'address' => '雄县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132435 => - [ - - [ - 'address' => '容城县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132436 => - [ - - [ - 'address' => '新城县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132437 => - [ - - [ - 'address' => '曲阳县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132438 => - [ - - [ - 'address' => '阜平县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132439 => - [ - - [ - 'address' => '定县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 132440 => - [ - - [ - 'address' => '安国县', - 'start_year' => '', - 'end_year' => 1990, - ], - ], - 132441 => - [ - - [ - 'address' => '博野县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132442 => - [ - - [ - 'address' => '蠡县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 132500 => - [ - - [ - 'address' => '张家口地区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132501 => - [ - - [ - 'address' => '张家口市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132502 => - [ - - [ - 'address' => '桥东区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132503 => - [ - - [ - 'address' => '桥西区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132504 => - [ - - [ - 'address' => '茶坊区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132505 => - [ - - [ - 'address' => '宣化区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132506 => - [ - - [ - 'address' => '下花园区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132507 => - [ - - [ - 'address' => '庞家堡区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132521 => - [ - - [ - 'address' => '张北县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132522 => - [ - - [ - 'address' => '康保县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132523 => - [ - - [ - 'address' => '沽源县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132524 => - [ - - [ - 'address' => '尚义县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132525 => - [ - - [ - 'address' => '蔚县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132526 => - [ - - [ - 'address' => '阳原县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132527 => - [ - - [ - 'address' => '怀安县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132528 => - [ - - [ - 'address' => '万全县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132529 => - [ - - [ - 'address' => '怀来县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132530 => - [ - - [ - 'address' => '涿鹿县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132531 => - [ - - [ - 'address' => '宣化县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132532 => - [ - - [ - 'address' => '赤城县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132533 => - [ - - [ - 'address' => '崇礼县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132600 => - [ - - [ - 'address' => '承德地区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132601 => - [ - - [ - 'address' => '承德市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132602 => - [ - - [ - 'address' => '双桥区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132603 => - [ - - [ - 'address' => '双滦区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132604 => - [ - - [ - 'address' => '鹰手营子矿区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132621 => - [ - - [ - 'address' => '青龙县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132622 => - [ - - [ - 'address' => '宽城县', - 'start_year' => '', - 'end_year' => 1988, - ], - - [ - 'address' => '宽城满族自治县', - 'start_year' => 1989, - 'end_year' => 1992, - ], - ], - 132623 => - [ - - [ - 'address' => '兴隆县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132624 => - [ - - [ - 'address' => '平泉县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132625 => - [ - - [ - 'address' => '承德县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132626 => - [ - - [ - 'address' => '滦平县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132627 => - [ - - [ - 'address' => '丰宁县', - 'start_year' => '', - 'end_year' => 1985, - ], - - [ - 'address' => '丰宁满族自治县', - 'start_year' => 1986, - 'end_year' => 1992, - ], - ], - 132628 => - [ - - [ - 'address' => '隆化县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132629 => - [ - - [ - 'address' => '围场县', - 'start_year' => '', - 'end_year' => 1988, - ], - - [ - 'address' => '围场满族蒙古族自治县', - 'start_year' => 1989, - 'end_year' => 1992, - ], - ], - 132700 => - [ - - [ - 'address' => '唐山地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132701 => - [ - - [ - 'address' => '秦皇岛市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132702 => - [ - - [ - 'address' => '海港区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132703 => - [ - - [ - 'address' => '山海关区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132704 => - [ - - [ - 'address' => '北戴河区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132705 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132721 => - [ - - [ - 'address' => '丰润县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132722 => - [ - - [ - 'address' => '丰南县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132723 => - [ - - [ - 'address' => '滦县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132724 => - [ - - [ - 'address' => '滦南县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132725 => - [ - - [ - 'address' => '乐亭县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132726 => - [ - - [ - 'address' => '昌黎县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132727 => - [ - - [ - 'address' => '抚宁县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132728 => - [ - - [ - 'address' => '卢龙县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132729 => - [ - - [ - 'address' => '迁安县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132730 => - [ - - [ - 'address' => '迁西县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132731 => - [ - - [ - 'address' => '遵化县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132732 => - [ - - [ - 'address' => '玉田县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132733 => - [ - - [ - 'address' => '唐海县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 132800 => - [ - - [ - 'address' => '廊坊地区', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 132801 => - [ - - [ - 'address' => '廊坊市', - 'start_year' => 1981, - 'end_year' => 1987, - ], - ], - 132821 => - [ - - [ - 'address' => '三河县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 132822 => - [ - - [ - 'address' => '大厂回族自治县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 132823 => - [ - - [ - 'address' => '香河县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 132824 => - [ - - [ - 'address' => '安次县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132825 => - [ - - [ - 'address' => '永清县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 132826 => - [ - - [ - 'address' => '固安县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 132827 => - [ - - [ - 'address' => '霸县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 132828 => - [ - - [ - 'address' => '文安县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 132829 => - [ - - [ - 'address' => '大城县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 132900 => - [ - - [ - 'address' => '沧州地区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132901 => - [ - - [ - 'address' => '沧州市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132902 => - [ - - [ - 'address' => '新华区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '泊头市', - 'start_year' => 1984, - 'end_year' => 1992, - ], - ], - 132903 => - [ - - [ - 'address' => '运河区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '任丘市', - 'start_year' => 1986, - 'end_year' => 1992, - ], - ], - 132904 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '黄骅市', - 'start_year' => 1989, - 'end_year' => 1992, - ], - ], - 132905 => - [ - - [ - 'address' => '泊头市', - 'start_year' => 1982, - 'end_year' => 1983, - ], - - [ - 'address' => '河间市', - 'start_year' => 1990, - 'end_year' => 1992, - ], - ], - 132921 => - [ - - [ - 'address' => '沧县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132922 => - [ - - [ - 'address' => '河间县', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 132923 => - [ - - [ - 'address' => '肃宁县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132924 => - [ - - [ - 'address' => '献县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132925 => - [ - - [ - 'address' => '交河县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 132926 => - [ - - [ - 'address' => '吴桥县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132927 => - [ - - [ - 'address' => '东光县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132928 => - [ - - [ - 'address' => '南皮县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132929 => - [ - - [ - 'address' => '盐山县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132930 => - [ - - [ - 'address' => '黄骅县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 132931 => - [ - - [ - 'address' => '孟村回族自治县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 132932 => - [ - - [ - 'address' => '青县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 132933 => - [ - - [ - 'address' => '任丘县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 132934 => - [ - - [ - 'address' => '海兴县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 133000 => - [ - - [ - 'address' => '衡水地区', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 133001 => - [ - - [ - 'address' => '衡水市', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 133002 => - [ - - [ - 'address' => '冀州市', - 'start_year' => 1993, - 'end_year' => 1995, - ], - ], - 133003 => - [ - - [ - 'address' => '深州市', - 'start_year' => 1994, - 'end_year' => 1995, - ], - ], - 133021 => - [ - - [ - 'address' => '衡水县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 133022 => - [ - - [ - 'address' => '冀县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 133023 => - [ - - [ - 'address' => '枣强县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 133024 => - [ - - [ - 'address' => '武邑县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 133025 => - [ - - [ - 'address' => '深县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 133026 => - [ - - [ - 'address' => '武强县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 133027 => - [ - - [ - 'address' => '饶阳县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 133028 => - [ - - [ - 'address' => '安平县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 133029 => - [ - - [ - 'address' => '故城县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 133030 => - [ - - [ - 'address' => '景县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 133031 => - [ - - [ - 'address' => '阜城县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 139001 => - [ - - [ - 'address' => '武安市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 139002 => - [ - - [ - 'address' => '霸州市', - 'start_year' => 1990, - 'end_year' => 1994, - ], - ], - 139003 => - [ - - [ - 'address' => '遵化市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 139004 => - [ - - [ - 'address' => '辛集市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 139005 => - [ - - [ - 'address' => '藁城市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 139006 => - [ - - [ - 'address' => '晋州市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 139007 => - [ - - [ - 'address' => '新乐市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 139008 => - [ - - [ - 'address' => '泊头市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 139009 => - [ - - [ - 'address' => '任丘市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 139010 => - [ - - [ - 'address' => '黄骅市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 139011 => - [ - - [ - 'address' => '河间市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 139012 => - [ - - [ - 'address' => '三河县', - 'start_year' => 1993, - 'end_year' => 1993, - ], - - [ - 'address' => '三河市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 139013 => - [ - - [ - 'address' => '南宫市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 139014 => - [ - - [ - 'address' => '沙河市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 139015 => - [ - - [ - 'address' => '定州市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 139016 => - [ - - [ - 'address' => '涿州市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 139017 => - [ - - [ - 'address' => '安国市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 139018 => - [ - - [ - 'address' => '高碑店市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 139019 => - [ - - [ - 'address' => '鹿泉市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 139020 => - [ - - [ - 'address' => '丰南市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 140000 => - [ - - [ - 'address' => '山西省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140100 => - [ - - [ - 'address' => '太原市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140102 => - [ - - [ - 'address' => '南城区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 140103 => - [ - - [ - 'address' => '北城区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 140104 => - [ - - [ - 'address' => '河西区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 140105 => - [ - - [ - 'address' => '小店区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 140106 => - [ - - [ - 'address' => '迎泽区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 140107 => - [ - - [ - 'address' => '杏花岭区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 140108 => - [ - - [ - 'address' => '尖草坪区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 140109 => - [ - - [ - 'address' => '万柏林区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 140110 => - [ - - [ - 'address' => '晋源区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 140111 => - [ - - [ - 'address' => '古交工矿区', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 140112 => - [ - - [ - 'address' => '南郊区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 140113 => - [ - - [ - 'address' => '北郊区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 140121 => - [ - - [ - 'address' => '清徐县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140122 => - [ - - [ - 'address' => '阳曲县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140123 => - [ - - [ - 'address' => '娄烦县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140181 => - [ - - [ - 'address' => '古交市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 140200 => - [ - - [ - 'address' => '大同市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140202 => - [ - - [ - 'address' => '城区', - 'start_year' => '', - 'end_year' => 2017, - ], - ], - 140203 => - [ - - [ - 'address' => '矿区', - 'start_year' => '', - 'end_year' => 2017, - ], - ], - 140211 => - [ - - [ - 'address' => '南郊区', - 'start_year' => '', - 'end_year' => 2017, - ], - ], - 140212 => - [ - - [ - 'address' => '新荣区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140213 => - [ - - [ - 'address' => '平城区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 140214 => - [ - - [ - 'address' => '云冈区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 140215 => - [ - - [ - 'address' => '云州区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 140221 => - [ - - [ - 'address' => '阳高县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 140222 => - [ - - [ - 'address' => '天镇县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 140223 => - [ - - [ - 'address' => '广灵县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 140224 => - [ - - [ - 'address' => '灵丘县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 140225 => - [ - - [ - 'address' => '浑源县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 140226 => - [ - - [ - 'address' => '左云县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 140227 => - [ - - [ - 'address' => '大同县', - 'start_year' => 1993, - 'end_year' => 2017, - ], - ], - 140300 => - [ - - [ - 'address' => '阳泉市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140302 => - [ - - [ - 'address' => '城区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140303 => - [ - - [ - 'address' => '矿区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140311 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140321 => - [ - - [ - 'address' => '平定县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 140322 => - [ - - [ - 'address' => '盂县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 140400 => - [ - - [ - 'address' => '长治市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 140402 => - [ - - [ - 'address' => '城区', - 'start_year' => '', - 'end_year' => 2017, - ], - ], - 140403 => - [ - - [ - 'address' => '潞州区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 140404 => - [ - - [ - 'address' => '上党区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 140405 => - [ - - [ - 'address' => '屯留区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 140406 => - [ - - [ - 'address' => '潞城区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 140411 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 2017, - ], - ], - 140421 => - [ - - [ - 'address' => '长治县', - 'start_year' => 1983, - 'end_year' => 2017, - ], - ], - 140422 => - [ - - [ - 'address' => '潞城县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 140423 => - [ - - [ - 'address' => '襄垣县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140424 => - [ - - [ - 'address' => '屯留县', - 'start_year' => 1985, - 'end_year' => 2017, - ], - ], - 140425 => - [ - - [ - 'address' => '平顺县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140426 => - [ - - [ - 'address' => '黎城县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140427 => - [ - - [ - 'address' => '壶关县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140428 => - [ - - [ - 'address' => '长子县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140429 => - [ - - [ - 'address' => '武乡县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140430 => - [ - - [ - 'address' => '沁县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140431 => - [ - - [ - 'address' => '沁源县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140481 => - [ - - [ - 'address' => '潞城市', - 'start_year' => 1995, - 'end_year' => 2017, - ], - ], - 140500 => - [ - - [ - 'address' => '晋城市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140502 => - [ - - [ - 'address' => '城区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140503 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1985, - 'end_year' => 1995, - ], - ], - 140521 => - [ - - [ - 'address' => '沁水县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140522 => - [ - - [ - 'address' => '阳城县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140523 => - [ - - [ - 'address' => '高平县', - 'start_year' => 1985, - 'end_year' => 1992, - ], - ], - 140524 => - [ - - [ - 'address' => '陵川县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 140525 => - [ - - [ - 'address' => '泽州县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 140581 => - [ - - [ - 'address' => '高平市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 140600 => - [ - - [ - 'address' => '朔州市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 140602 => - [ - - [ - 'address' => '朔城区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 140603 => - [ - - [ - 'address' => '平鲁区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 140621 => - [ - - [ - 'address' => '山阴县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 140622 => - [ - - [ - 'address' => '应县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 140623 => - [ - - [ - 'address' => '右玉县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 140624 => - [ - - [ - 'address' => '怀仁县', - 'start_year' => 1993, - 'end_year' => 2017, - ], - ], - 140681 => - [ - - [ - 'address' => '怀仁市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 140700 => - [ - - [ - 'address' => '晋中市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140702 => - [ - - [ - 'address' => '榆次区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140721 => - [ - - [ - 'address' => '榆社县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140722 => - [ - - [ - 'address' => '左权县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140723 => - [ - - [ - 'address' => '和顺县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140724 => - [ - - [ - 'address' => '昔阳县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140725 => - [ - - [ - 'address' => '寿阳县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140726 => - [ - - [ - 'address' => '太谷县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140727 => - [ - - [ - 'address' => '祁县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140728 => - [ - - [ - 'address' => '平遥县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140729 => - [ - - [ - 'address' => '灵石县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140781 => - [ - - [ - 'address' => '介休市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 140800 => - [ - - [ - 'address' => '运城市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140802 => - [ - - [ - 'address' => '盐湖区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140821 => - [ - - [ - 'address' => '临猗县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140822 => - [ - - [ - 'address' => '万荣县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140823 => - [ - - [ - 'address' => '闻喜县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140824 => - [ - - [ - 'address' => '稷山县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140825 => - [ - - [ - 'address' => '新绛县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140826 => - [ - - [ - 'address' => '绛县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140827 => - [ - - [ - 'address' => '垣曲县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140828 => - [ - - [ - 'address' => '夏县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140829 => - [ - - [ - 'address' => '平陆县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140830 => - [ - - [ - 'address' => '芮城县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140881 => - [ - - [ - 'address' => '永济市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140882 => - [ - - [ - 'address' => '河津市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140900 => - [ - - [ - 'address' => '忻州市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140902 => - [ - - [ - 'address' => '忻府区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140921 => - [ - - [ - 'address' => '定襄县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140922 => - [ - - [ - 'address' => '五台县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140923 => - [ - - [ - 'address' => '代县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140924 => - [ - - [ - 'address' => '繁峙县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140925 => - [ - - [ - 'address' => '宁武县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140926 => - [ - - [ - 'address' => '静乐县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140927 => - [ - - [ - 'address' => '神池县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140928 => - [ - - [ - 'address' => '五寨县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140929 => - [ - - [ - 'address' => '岢岚县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140930 => - [ - - [ - 'address' => '河曲县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140931 => - [ - - [ - 'address' => '保德县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140932 => - [ - - [ - 'address' => '偏关县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 140981 => - [ - - [ - 'address' => '原平市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141000 => - [ - - [ - 'address' => '临汾市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141002 => - [ - - [ - 'address' => '尧都区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141021 => - [ - - [ - 'address' => '曲沃县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141022 => - [ - - [ - 'address' => '翼城县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141023 => - [ - - [ - 'address' => '襄汾县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141024 => - [ - - [ - 'address' => '洪洞县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141025 => - [ - - [ - 'address' => '古县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141026 => - [ - - [ - 'address' => '安泽县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141027 => - [ - - [ - 'address' => '浮山县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141028 => - [ - - [ - 'address' => '吉县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141029 => - [ - - [ - 'address' => '乡宁县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141030 => - [ - - [ - 'address' => '大宁县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141031 => - [ - - [ - 'address' => '隰县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141032 => - [ - - [ - 'address' => '永和县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141033 => - [ - - [ - 'address' => '蒲县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141034 => - [ - - [ - 'address' => '汾西县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141081 => - [ - - [ - 'address' => '侯马市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141082 => - [ - - [ - 'address' => '霍州市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 141100 => - [ - - [ - 'address' => '吕梁市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141102 => - [ - - [ - 'address' => '离石区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141121 => - [ - - [ - 'address' => '文水县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141122 => - [ - - [ - 'address' => '交城县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141123 => - [ - - [ - 'address' => '兴县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141124 => - [ - - [ - 'address' => '临县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141125 => - [ - - [ - 'address' => '柳林县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141126 => - [ - - [ - 'address' => '石楼县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141127 => - [ - - [ - 'address' => '岚县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141128 => - [ - - [ - 'address' => '方山县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141129 => - [ - - [ - 'address' => '中阳县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141130 => - [ - - [ - 'address' => '交口县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141181 => - [ - - [ - 'address' => '孝义市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 141182 => - [ - - [ - 'address' => '汾阳市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 142100 => - [ - - [ - 'address' => '雁北地区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 142121 => - [ - - [ - 'address' => '大同县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '阳高县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 142122 => - [ - - [ - 'address' => '阳高县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '天镇县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 142123 => - [ - - [ - 'address' => '天镇县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '广灵县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 142124 => - [ - - [ - 'address' => '广灵县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '灵丘县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 142125 => - [ - - [ - 'address' => '灵丘县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '浑源县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 142126 => - [ - - [ - 'address' => '浑源县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '应县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 142127 => - [ - - [ - 'address' => '怀仁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '山阴县', - 'start_year' => 1982, - 'end_year' => 1987, - ], - ], - 142128 => - [ - - [ - 'address' => '应县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '朔县', - 'start_year' => 1982, - 'end_year' => 1987, - ], - ], - 142129 => - [ - - [ - 'address' => '山阴县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '平鲁县', - 'start_year' => 1982, - 'end_year' => 1987, - ], - ], - 142130 => - [ - - [ - 'address' => '朔县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '左云县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 142131 => - [ - - [ - 'address' => '平鲁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '右玉县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 142132 => - [ - - [ - 'address' => '左云县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '大同县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 142133 => - [ - - [ - 'address' => '右玉县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '怀仁县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 142200 => - [ - - [ - 'address' => '忻县地区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '忻州地区', - 'start_year' => 1983, - 'end_year' => 1999, - ], - ], - 142201 => - [ - - [ - 'address' => '忻州市', - 'start_year' => 1983, - 'end_year' => 1999, - ], - ], - 142202 => - [ - - [ - 'address' => '原平市', - 'start_year' => 1993, - 'end_year' => 1999, - ], - ], - 142221 => - [ - - [ - 'address' => '忻县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 142222 => - [ - - [ - 'address' => '原平县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '定襄县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142223 => - [ - - [ - 'address' => '代县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '五台县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142224 => - [ - - [ - 'address' => '繁峙县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '原平县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 142225 => - [ - - [ - 'address' => '五台县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '代县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142226 => - [ - - [ - 'address' => '定襄县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '繁峙县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142227 => - [ - - [ - 'address' => '静乐县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宁武县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142228 => - [ - - [ - 'address' => '岢岚县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '静乐县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142229 => - [ - - [ - 'address' => '保德县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '神池县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142230 => - [ - - [ - 'address' => '五寨县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 142231 => - [ - - [ - 'address' => '河曲县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '岢岚县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142232 => - [ - - [ - 'address' => '偏关县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '河曲县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142233 => - [ - - [ - 'address' => '神池县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '保德县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142234 => - [ - - [ - 'address' => '宁武县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '偏关县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142300 => - [ - - [ - 'address' => '晋中地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '吕梁地区', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 142301 => - [ - - [ - 'address' => '榆次市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '孝义市', - 'start_year' => 1992, - 'end_year' => 2002, - ], - ], - 142302 => - [ - - [ - 'address' => '离石市', - 'start_year' => 1996, - 'end_year' => 2002, - ], - ], - 142303 => - [ - - [ - 'address' => '汾阳市', - 'start_year' => 1996, - 'end_year' => 2002, - ], - ], - 142321 => - [ - - [ - 'address' => '榆次县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '汾阳县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 142322 => - [ - - [ - 'address' => '寿阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '文水县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 142323 => - [ - - [ - 'address' => '盂县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '交城县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 142324 => - [ - - [ - 'address' => '平定县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '孝义县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 142325 => - [ - - [ - 'address' => '昔阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '兴县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 142326 => - [ - - [ - 'address' => '和顺县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '临县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 142327 => - [ - - [ - 'address' => '左权县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '柳林县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 142328 => - [ - - [ - 'address' => '榆社县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '石楼县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 142329 => - [ - - [ - 'address' => '太谷县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '岚县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 142330 => - [ - - [ - 'address' => '祁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '方山县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 142331 => - [ - - [ - 'address' => '平遥县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '离石县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 142332 => - [ - - [ - 'address' => '介休县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '中阳县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 142333 => - [ - - [ - 'address' => '灵石县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '交口县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 142400 => - [ - - [ - 'address' => '吕梁地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '晋中地区', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 142401 => - [ - - [ - 'address' => '榆次市', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 142402 => - [ - - [ - 'address' => '介休市', - 'start_year' => 1992, - 'end_year' => 1998, - ], - ], - 142421 => - [ - - [ - 'address' => '离石县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '榆社县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 142422 => - [ - - [ - 'address' => '孝义县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '左权县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 142423 => - [ - - [ - 'address' => '兴县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '和顺县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 142424 => - [ - - [ - 'address' => '交口县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '昔阳县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 142425 => - [ - - [ - 'address' => '方山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '平定县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 142426 => - [ - - [ - 'address' => '石楼县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '盂县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 142427 => - [ - - [ - 'address' => '岚县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '寿阳县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 142428 => - [ - - [ - 'address' => '中阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '榆次县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 142429 => - [ - - [ - 'address' => '交城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '太谷县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 142430 => - [ - - [ - 'address' => '临县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '祁县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 142431 => - [ - - [ - 'address' => '文水县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '平遥县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 142432 => - [ - - [ - 'address' => '柳林县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '介休县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 142433 => - [ - - [ - 'address' => '汾阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '灵石县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 142500 => - [ - - [ - 'address' => '晋东南地区', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 142501 => - [ - - [ - 'address' => '晋城市', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 142521 => - [ - - [ - 'address' => '长治县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 142522 => - [ - - [ - 'address' => '潞城县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 142523 => - [ - - [ - 'address' => '襄垣县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '屯留县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142524 => - [ - - [ - 'address' => '武乡县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '长子县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142525 => - [ - - [ - 'address' => '黎城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '沁水县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142526 => - [ - - [ - 'address' => '平顺县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '阳城县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142527 => - [ - - [ - 'address' => '壶关县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '晋城县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 142528 => - [ - - [ - 'address' => '陵川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '高平县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142529 => - [ - - [ - 'address' => '高平县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '陵川县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142530 => - [ - - [ - 'address' => '晋城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '壶关县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142531 => - [ - - [ - 'address' => '阳城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '平顺县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142532 => - [ - - [ - 'address' => '沁水县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '黎城县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142533 => - [ - - [ - 'address' => '长子县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '武乡县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142534 => - [ - - [ - 'address' => '屯留县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '襄垣县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142535 => - [ - - [ - 'address' => '沁源县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '沁县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142536 => - [ - - [ - 'address' => '沁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '沁源县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 142600 => - [ - - [ - 'address' => '临汾地区', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 142601 => - [ - - [ - 'address' => '临汾市', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 142602 => - [ - - [ - 'address' => '侯马市', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 142603 => - [ - - [ - 'address' => '霍州市', - 'start_year' => 1989, - 'end_year' => 1999, - ], - ], - 142621 => - [ - - [ - 'address' => '临汾县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '曲沃县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142622 => - [ - - [ - 'address' => '隰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '翼城县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142623 => - [ - - [ - 'address' => '汾西县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '襄汾县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142624 => - [ - - [ - 'address' => '永和县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '临汾县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 142625 => - [ - - [ - 'address' => '安泽县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '洪洞县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142626 => - [ - - [ - 'address' => '洪洞县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '霍县', - 'start_year' => 1982, - 'end_year' => 1988, - ], - ], - 142627 => - [ - - [ - 'address' => '古县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 142628 => - [ - - [ - 'address' => '霍县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '安泽县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142629 => - [ - - [ - 'address' => '翼城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '浮山县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142630 => - [ - - [ - 'address' => '浮山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '吉县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142631 => - [ - - [ - 'address' => '曲沃县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '乡宁县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142632 => - [ - - [ - 'address' => '襄汾县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '蒲县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142633 => - [ - - [ - 'address' => '吉县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '大宁县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142634 => - [ - - [ - 'address' => '乡宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '永和县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142635 => - [ - - [ - 'address' => '大宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '隰县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142636 => - [ - - [ - 'address' => '蒲县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '汾西县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142700 => - [ - - [ - 'address' => '运城地区', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 142701 => - [ - - [ - 'address' => '运城市', - 'start_year' => 1983, - 'end_year' => 1999, - ], - ], - 142702 => - [ - - [ - 'address' => '永济市', - 'start_year' => 1994, - 'end_year' => 1999, - ], - ], - 142703 => - [ - - [ - 'address' => '河津市', - 'start_year' => 1994, - 'end_year' => 1999, - ], - ], - 142721 => - [ - - [ - 'address' => '运城县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 142722 => - [ - - [ - 'address' => '夏县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '永济县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 142723 => - [ - - [ - 'address' => '闻喜县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '芮城县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142724 => - [ - - [ - 'address' => '绛县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '临猗县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142725 => - [ - - [ - 'address' => '垣曲县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '万荣县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142726 => - [ - - [ - 'address' => '平陆县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '新绛县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142727 => - [ - - [ - 'address' => '芮城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '稷山县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142728 => - [ - - [ - 'address' => '永济县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '河津县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 142729 => - [ - - [ - 'address' => '临猗县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '闻喜县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142730 => - [ - - [ - 'address' => '万荣县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '夏县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142731 => - [ - - [ - 'address' => '新绛县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '绛县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142732 => - [ - - [ - 'address' => '稷山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '平陆县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 142733 => - [ - - [ - 'address' => '河津县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '垣曲县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 149001 => - [ - - [ - 'address' => '古交市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 149002 => - [ - - [ - 'address' => '高平市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 149003 => - [ - - [ - 'address' => '潞城市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 150000 => - [ - - [ - 'address' => '内蒙古自治区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150100 => - [ - - [ - 'address' => '呼和浩特市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150102 => - [ - - [ - 'address' => '新城区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150103 => - [ - - [ - 'address' => '回民区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150104 => - [ - - [ - 'address' => '玉泉区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150105 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1999, - ], - - [ - 'address' => '赛罕区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 150121 => - [ - - [ - 'address' => '土默特左旗', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150122 => - [ - - [ - 'address' => '托克托县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150123 => - [ - - [ - 'address' => '和林格尔县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 150124 => - [ - - [ - 'address' => '清水河县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 150125 => - [ - - [ - 'address' => '武川县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 150200 => - [ - - [ - 'address' => '包头市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150202 => - [ - - [ - 'address' => '东河区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150203 => - [ - - [ - 'address' => '昆都仑区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150204 => - [ - - [ - 'address' => '青山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150205 => - [ - - [ - 'address' => '石拐矿区', - 'start_year' => '', - 'end_year' => 1998, - ], - - [ - 'address' => '石拐区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 150206 => - [ - - [ - 'address' => '白云矿区', - 'start_year' => '', - 'end_year' => 2006, - ], - - [ - 'address' => '白云鄂博矿区', - 'start_year' => 2007, - 'end_year' => '', - ], - ], - 150207 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1998, - ], - - [ - 'address' => '九原区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 150221 => - [ - - [ - 'address' => '土默特右旗', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150222 => - [ - - [ - 'address' => '固阳县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150223 => - [ - - [ - 'address' => '达尔罕茂明安联合旗', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 150300 => - [ - - [ - 'address' => '乌海市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150302 => - [ - - [ - 'address' => '海勃湾区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150303 => - [ - - [ - 'address' => '海南区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150304 => - [ - - [ - 'address' => '乌达区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 150400 => - [ - - [ - 'address' => '赤峰市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150402 => - [ - - [ - 'address' => '红山区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150403 => - [ - - [ - 'address' => '元宝山区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150404 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1992, - ], - - [ - 'address' => '松山区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 150421 => - [ - - [ - 'address' => '阿鲁科尔沁旗', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150422 => - [ - - [ - 'address' => '巴林左旗', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150423 => - [ - - [ - 'address' => '巴林右旗', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150424 => - [ - - [ - 'address' => '林西县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150425 => - [ - - [ - 'address' => '克什克腾旗', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150426 => - [ - - [ - 'address' => '翁牛特旗', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150428 => - [ - - [ - 'address' => '喀喇沁旗', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150429 => - [ - - [ - 'address' => '宁城县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150430 => - [ - - [ - 'address' => '敖汉旗', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 150500 => - [ - - [ - 'address' => '通辽市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 150502 => - [ - - [ - 'address' => '科尔沁区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 150521 => - [ - - [ - 'address' => '科尔沁左翼中旗', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 150522 => - [ - - [ - 'address' => '科尔沁左翼后旗', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 150523 => - [ - - [ - 'address' => '开鲁县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 150524 => - [ - - [ - 'address' => '库伦旗', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 150525 => - [ - - [ - 'address' => '奈曼旗', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 150526 => - [ - - [ - 'address' => '扎鲁特旗', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 150581 => - [ - - [ - 'address' => '霍林郭勒市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 150600 => - [ - - [ - 'address' => '鄂尔多斯市', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150602 => - [ - - [ - 'address' => '东胜区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150603 => - [ - - [ - 'address' => '康巴什区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 150621 => - [ - - [ - 'address' => '达拉特旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150622 => - [ - - [ - 'address' => '准格尔旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150623 => - [ - - [ - 'address' => '鄂托克前旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150624 => - [ - - [ - 'address' => '鄂托克旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150625 => - [ - - [ - 'address' => '杭锦旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150626 => - [ - - [ - 'address' => '乌审旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150627 => - [ - - [ - 'address' => '伊金霍洛旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150700 => - [ - - [ - 'address' => '呼伦贝尔市', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150702 => - [ - - [ - 'address' => '海拉尔区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150703 => - [ - - [ - 'address' => '扎赉诺尔区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 150721 => - [ - - [ - 'address' => '阿荣旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150722 => - [ - - [ - 'address' => '莫力达瓦达斡尔族自治旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150723 => - [ - - [ - 'address' => '鄂伦春自治旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150724 => - [ - - [ - 'address' => '鄂温克族自治旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150725 => - [ - - [ - 'address' => '陈巴尔虎旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150726 => - [ - - [ - 'address' => '新巴尔虎左旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150727 => - [ - - [ - 'address' => '新巴尔虎右旗', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150781 => - [ - - [ - 'address' => '满洲里市', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150782 => - [ - - [ - 'address' => '牙克石市', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150783 => - [ - - [ - 'address' => '扎兰屯市', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150784 => - [ - - [ - 'address' => '额尔古纳市', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150785 => - [ - - [ - 'address' => '根河市', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 150800 => - [ - - [ - 'address' => '巴彦淖尔市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150802 => - [ - - [ - 'address' => '临河区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150821 => - [ - - [ - 'address' => '五原县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150822 => - [ - - [ - 'address' => '磴口县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150823 => - [ - - [ - 'address' => '乌拉特前旗', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150824 => - [ - - [ - 'address' => '乌拉特中旗', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150825 => - [ - - [ - 'address' => '乌拉特后旗', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150826 => - [ - - [ - 'address' => '杭锦后旗', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150900 => - [ - - [ - 'address' => '乌兰察布市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150902 => - [ - - [ - 'address' => '集宁区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150921 => - [ - - [ - 'address' => '卓资县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150922 => - [ - - [ - 'address' => '化德县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150923 => - [ - - [ - 'address' => '商都县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150924 => - [ - - [ - 'address' => '兴和县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150925 => - [ - - [ - 'address' => '凉城县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150926 => - [ - - [ - 'address' => '察哈尔右翼前旗', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150927 => - [ - - [ - 'address' => '察哈尔右翼中旗', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150928 => - [ - - [ - 'address' => '察哈尔右翼后旗', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150929 => - [ - - [ - 'address' => '四子王旗', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 150981 => - [ - - [ - 'address' => '丰镇市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 152100 => - [ - - [ - 'address' => '呼伦贝尔盟', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 152101 => - [ - - [ - 'address' => '海拉尔市', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 152102 => - [ - - [ - 'address' => '满洲里市', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 152103 => - [ - - [ - 'address' => '扎兰屯市', - 'start_year' => 1983, - 'end_year' => 2000, - ], - ], - 152104 => - [ - - [ - 'address' => '牙克石市', - 'start_year' => 1983, - 'end_year' => 2000, - ], - ], - 152105 => - [ - - [ - 'address' => '根河市', - 'start_year' => 1994, - 'end_year' => 2000, - ], - ], - 152106 => - [ - - [ - 'address' => '额尔古纳市', - 'start_year' => 1994, - 'end_year' => 2000, - ], - ], - 152121 => - [ - - [ - 'address' => '布特哈旗', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152122 => - [ - - [ - 'address' => '阿荣旗', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 152123 => - [ - - [ - 'address' => '莫力达瓦达斡尔族自治旗', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 152124 => - [ - - [ - 'address' => '喜桂图旗', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152125 => - [ - - [ - 'address' => '额尔古纳右旗', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 152126 => - [ - - [ - 'address' => '额尔古纳左旗', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 152127 => - [ - - [ - 'address' => '鄂伦春自治旗', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 152128 => - [ - - [ - 'address' => '鄂温克族自治旗', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 152129 => - [ - - [ - 'address' => '新巴尔虎右旗', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 152130 => - [ - - [ - 'address' => '新巴尔虎左旗', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 152131 => - [ - - [ - 'address' => '陈巴尔虎旗', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 152200 => - [ - - [ - 'address' => '兴安盟', - 'start_year' => '', - 'end_year' => '', - ], - ], - 152201 => - [ - - [ - 'address' => '乌兰浩特市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 152202 => - [ - - [ - 'address' => '阿尔山市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 152221 => - [ - - [ - 'address' => '科尔沁右翼前旗', - 'start_year' => '', - 'end_year' => '', - ], - ], - 152222 => - [ - - [ - 'address' => '科尔沁右翼中旗', - 'start_year' => '', - 'end_year' => '', - ], - ], - 152223 => - [ - - [ - 'address' => '扎赉特旗', - 'start_year' => '', - 'end_year' => '', - ], - ], - 152224 => - [ - - [ - 'address' => '突泉县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 152300 => - [ - - [ - 'address' => '哲里木盟', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 152301 => - [ - - [ - 'address' => '通辽市', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 152302 => - [ - - [ - 'address' => '霍林郭勒市', - 'start_year' => 1985, - 'end_year' => 1998, - ], - ], - 152321 => - [ - - [ - 'address' => '通辽县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 152322 => - [ - - [ - 'address' => '科尔沁左翼中旗', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 152323 => - [ - - [ - 'address' => '科尔沁左翼后旗', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 152324 => - [ - - [ - 'address' => '开鲁县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 152325 => - [ - - [ - 'address' => '库伦旗', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 152326 => - [ - - [ - 'address' => '奈曼旗', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 152327 => - [ - - [ - 'address' => '扎鲁特旗', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 152400 => - [ - - [ - 'address' => '昭乌达盟', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152401 => - [ - - [ - 'address' => '赤峰市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152421 => - [ - - [ - 'address' => '赤峰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '阿鲁科尔沁旗', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 152422 => - [ - - [ - 'address' => '巴林左旗', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152423 => - [ - - [ - 'address' => '巴林右旗', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152424 => - [ - - [ - 'address' => '林西县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152425 => - [ - - [ - 'address' => '克什克腾旗', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152426 => - [ - - [ - 'address' => '翁牛特旗', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152427 => - [ - - [ - 'address' => '赤峰县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 152428 => - [ - - [ - 'address' => '喀喇沁旗', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152429 => - [ - - [ - 'address' => '宁城县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152430 => - [ - - [ - 'address' => '敖汉旗', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 152431 => - [ - - [ - 'address' => '阿鲁科尔沁旗', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 152500 => - [ - - [ - 'address' => '伊克昭盟', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '锡林郭勒盟', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152501 => - [ - - [ - 'address' => '二连浩特市', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152502 => - [ - - [ - 'address' => '锡林浩特市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 152521 => - [ - - [ - 'address' => '东胜县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '阿巴哈纳尔旗', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 152522 => - [ - - [ - 'address' => '达拉特旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '阿巴嘎旗', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152523 => - [ - - [ - 'address' => '准格尔旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '苏尼特左旗', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152524 => - [ - - [ - 'address' => '鄂托克前旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '苏尼特右旗', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152525 => - [ - - [ - 'address' => '鄂托克旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '东乌珠穆沁旗', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152526 => - [ - - [ - 'address' => '杭锦旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '西乌珠穆沁旗', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152527 => - [ - - [ - 'address' => '乌审旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '太仆寺旗', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152528 => - [ - - [ - 'address' => '伊金霍洛旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '镶黄旗', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152529 => - [ - - [ - 'address' => '正镶白旗', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152530 => - [ - - [ - 'address' => '正蓝旗', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152531 => - [ - - [ - 'address' => '多伦县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 152600 => - [ - - [ - 'address' => '锡林郭勒盟', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '乌兰察布盟', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152601 => - [ - - [ - 'address' => '二连浩特市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '集宁市', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152602 => - [ - - [ - 'address' => '丰镇市', - 'start_year' => 1990, - 'end_year' => 2002, - ], - ], - 152621 => - [ - - [ - 'address' => '阿巴哈纳尔旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '武川县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 152622 => - [ - - [ - 'address' => '阿巴嘎旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '和林格尔县', - 'start_year' => 1982, - 'end_year' => 1994, - ], - ], - 152623 => - [ - - [ - 'address' => '苏尼特左旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '清水河县', - 'start_year' => 1982, - 'end_year' => 1994, - ], - ], - 152624 => - [ - - [ - 'address' => '苏尼特右旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '卓资县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152625 => - [ - - [ - 'address' => '东乌珠穆沁旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '化德县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152626 => - [ - - [ - 'address' => '西乌珠穆沁旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '商都县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152627 => - [ - - [ - 'address' => '太仆寺旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '兴和县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152628 => - [ - - [ - 'address' => '镶黄旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '丰镇县', - 'start_year' => 1982, - 'end_year' => 1989, - ], - ], - 152629 => - [ - - [ - 'address' => '正镶白旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '凉城县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152630 => - [ - - [ - 'address' => '正蓝旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '察哈尔右翼前旗', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152631 => - [ - - [ - 'address' => '多伦县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '察哈尔右翼中旗', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152632 => - [ - - [ - 'address' => '察哈尔右翼后旗', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152633 => - [ - - [ - 'address' => '达尔罕茂明安联合旗', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 152634 => - [ - - [ - 'address' => '四子王旗', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152700 => - [ - - [ - 'address' => '巴彦淖尔盟', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '伊克昭盟', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 152701 => - [ - - [ - 'address' => '东胜市', - 'start_year' => 1983, - 'end_year' => 2000, - ], - ], - 152721 => - [ - - [ - 'address' => '临河县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '东胜县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 152722 => - [ - - [ - 'address' => '五原县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '达拉特旗', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 152723 => - [ - - [ - 'address' => '磴口县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '准格尔旗', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 152724 => - [ - - [ - 'address' => '乌拉特前旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '鄂托克前旗', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 152725 => - [ - - [ - 'address' => '乌拉特中后联合旗', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '乌拉特中旗', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '鄂托克旗', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 152726 => - [ - - [ - 'address' => '杭锦后旗', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '杭锦旗', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 152727 => - [ - - [ - 'address' => '潮格旗', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '乌拉特后旗', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '乌审旗', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 152728 => - [ - - [ - 'address' => '伊金霍洛旗', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 152800 => - [ - - [ - 'address' => '乌兰察布盟', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '巴彦淖尔盟', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152801 => - [ - - [ - 'address' => '集宁市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '临河市', - 'start_year' => 1984, - 'end_year' => 2002, - ], - ], - 152821 => - [ - - [ - 'address' => '武川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '临河县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 152822 => - [ - - [ - 'address' => '和林格尔县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '五原县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152823 => - [ - - [ - 'address' => '清水河县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '磴口县', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152824 => - [ - - [ - 'address' => '卓资县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '乌拉特前旗', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152825 => - [ - - [ - 'address' => '化德县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '乌拉特中旗', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152826 => - [ - - [ - 'address' => '商都县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '乌拉特后旗', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152827 => - [ - - [ - 'address' => '兴和县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '杭锦后旗', - 'start_year' => 1982, - 'end_year' => 2002, - ], - ], - 152828 => - [ - - [ - 'address' => '丰镇县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 152829 => - [ - - [ - 'address' => '凉城县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 152830 => - [ - - [ - 'address' => '察哈尔右翼前旗', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 152831 => - [ - - [ - 'address' => '察哈尔右翼中旗', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 152832 => - [ - - [ - 'address' => '察哈尔右翼后旗', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 152833 => - [ - - [ - 'address' => '达尔罕茂明安联合旗', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 152834 => - [ - - [ - 'address' => '四子王旗', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 152900 => - [ - - [ - 'address' => '阿拉善盟', - 'start_year' => '', - 'end_year' => '', - ], - ], - 152921 => - [ - - [ - 'address' => '阿拉善左旗', - 'start_year' => '', - 'end_year' => '', - ], - ], - 152922 => - [ - - [ - 'address' => '阿拉善右旗', - 'start_year' => '', - 'end_year' => '', - ], - ], - 152923 => - [ - - [ - 'address' => '额济纳旗', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210000 => - [ - - [ - 'address' => '辽宁省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210100 => - [ - - [ - 'address' => '沈阳市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210102 => - [ - - [ - 'address' => '和平区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210103 => - [ - - [ - 'address' => '沈河区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210104 => - [ - - [ - 'address' => '大东区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210105 => - [ - - [ - 'address' => '皇姑区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210106 => - [ - - [ - 'address' => '铁西区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210111 => - [ - - [ - 'address' => '苏家屯区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210112 => - [ - - [ - 'address' => '东陵区', - 'start_year' => '', - 'end_year' => 2015, - ], - - [ - 'address' => '浑南区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 210113 => - [ - - [ - 'address' => '新城子区', - 'start_year' => '', - 'end_year' => 2005, - ], - - [ - 'address' => '沈北新区', - 'start_year' => 2006, - 'end_year' => '', - ], - ], - 210114 => - [ - - [ - 'address' => '于洪区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210115 => - [ - - [ - 'address' => '辽中区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 210121 => - [ - - [ - 'address' => '新民县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 210122 => - [ - - [ - 'address' => '辽中县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 210123 => - [ - - [ - 'address' => '康平县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 210124 => - [ - - [ - 'address' => '法库县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 210181 => - [ - - [ - 'address' => '新民市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 210200 => - [ - - [ - 'address' => '旅大市', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '大连市', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 210202 => - [ - - [ - 'address' => '中山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210203 => - [ - - [ - 'address' => '西岗区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210204 => - [ - - [ - 'address' => '沙河口区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210211 => - [ - - [ - 'address' => '甘井子区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210212 => - [ - - [ - 'address' => '旅顺口区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210213 => - [ - - [ - 'address' => '金州区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 210214 => - [ - - [ - 'address' => '普兰店区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 210219 => - [ - - [ - 'address' => '瓦房店市', - 'start_year' => 1985, - 'end_year' => 1985, - ], - ], - 210221 => - [ - - [ - 'address' => '金县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 210222 => - [ - - [ - 'address' => '新金县', - 'start_year' => '', - 'end_year' => 1990, - ], - ], - 210223 => - [ - - [ - 'address' => '复县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 210224 => - [ - - [ - 'address' => '长海县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210225 => - [ - - [ - 'address' => '庄河县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 210281 => - [ - - [ - 'address' => '瓦房店市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 210282 => - [ - - [ - 'address' => '普兰店市', - 'start_year' => 1995, - 'end_year' => 2014, - ], - ], - 210283 => - [ - - [ - 'address' => '庄河市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 210300 => - [ - - [ - 'address' => '鞍山市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210302 => - [ - - [ - 'address' => '铁东区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210303 => - [ - - [ - 'address' => '铁西区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210304 => - [ - - [ - 'address' => '立山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210311 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '旧堡区', - 'start_year' => 1984, - 'end_year' => 1995, - ], - - [ - 'address' => '千山区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 210319 => - [ - - [ - 'address' => '海城市', - 'start_year' => 1985, - 'end_year' => 1985, - ], - ], - 210321 => - [ - - [ - 'address' => '台安县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210322 => - [ - - [ - 'address' => '海城县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 210323 => - [ - - [ - 'address' => '岫岩满族自治县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 210381 => - [ - - [ - 'address' => '海城市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 210400 => - [ - - [ - 'address' => '抚顺市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210402 => - [ - - [ - 'address' => '新抚区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210403 => - [ - - [ - 'address' => '露天区', - 'start_year' => '', - 'end_year' => 1998, - ], - - [ - 'address' => '东洲区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 210404 => - [ - - [ - 'address' => '望花区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210411 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1987, - ], - - [ - 'address' => '顺城区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 210421 => - [ - - [ - 'address' => '抚顺县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210422 => - [ - - [ - 'address' => '新宾县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '新宾满族自治县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 210423 => - [ - - [ - 'address' => '清原县', - 'start_year' => '', - 'end_year' => 1988, - ], - - [ - 'address' => '清原满族自治县', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 210500 => - [ - - [ - 'address' => '本溪市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210502 => - [ - - [ - 'address' => '平山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210503 => - [ - - [ - 'address' => '溪湖区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210504 => - [ - - [ - 'address' => '明山区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 210505 => - [ - - [ - 'address' => '南芬区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 210511 => - [ - - [ - 'address' => '立新区', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '南芬区', - 'start_year' => 1985, - 'end_year' => 1985, - ], - ], - 210521 => - [ - - [ - 'address' => '本溪县', - 'start_year' => '', - 'end_year' => 1988, - ], - - [ - 'address' => '本溪满族自治县', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 210522 => - [ - - [ - 'address' => '桓仁县', - 'start_year' => '', - 'end_year' => 1988, - ], - - [ - 'address' => '桓仁满族自治县', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 210600 => - [ - - [ - 'address' => '丹东市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210602 => - [ - - [ - 'address' => '元宝区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210603 => - [ - - [ - 'address' => '振兴区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210604 => - [ - - [ - 'address' => '振安区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210621 => - [ - - [ - 'address' => '凤城县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '凤城满族自治县', - 'start_year' => 1985, - 'end_year' => 1993, - ], - ], - 210622 => - [ - - [ - 'address' => '岫岩县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '岫岩满族自治县', - 'start_year' => 1985, - 'end_year' => 1991, - ], - ], - 210623 => - [ - - [ - 'address' => '东沟县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 210624 => - [ - - [ - 'address' => '宽甸县', - 'start_year' => '', - 'end_year' => 1988, - ], - - [ - 'address' => '宽甸满族自治县', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 210681 => - [ - - [ - 'address' => '东港市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 210682 => - [ - - [ - 'address' => '凤城市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 210700 => - [ - - [ - 'address' => '锦州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210702 => - [ - - [ - 'address' => '古塔区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210703 => - [ - - [ - 'address' => '凌河区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210704 => - [ - - [ - 'address' => '南票区', - 'start_year' => 1982, - 'end_year' => 1988, - ], - ], - 210705 => - [ - - [ - 'address' => '葫芦岛区', - 'start_year' => 1982, - 'end_year' => 1988, - ], - ], - 210706 => - [ - - [ - 'address' => '太和区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 210711 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '太和区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 210719 => - [ - - [ - 'address' => '锦西市', - 'start_year' => 1985, - 'end_year' => 1985, - ], - ], - 210721 => - [ - - [ - 'address' => '锦西县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 210722 => - [ - - [ - 'address' => '兴城县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 210723 => - [ - - [ - 'address' => '绥中县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 210724 => - [ - - [ - 'address' => '锦县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 210725 => - [ - - [ - 'address' => '北镇县', - 'start_year' => '', - 'end_year' => 1988, - ], - - [ - 'address' => '北镇满族自治县', - 'start_year' => 1989, - 'end_year' => 1994, - ], - ], - 210726 => - [ - - [ - 'address' => '黑山县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210727 => - [ - - [ - 'address' => '义县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210781 => - [ - - [ - 'address' => '凌海市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 210782 => - [ - - [ - 'address' => '北宁市', - 'start_year' => 1995, - 'end_year' => 2005, - ], - - [ - 'address' => '北镇市', - 'start_year' => 2006, - 'end_year' => '', - ], - ], - 210800 => - [ - - [ - 'address' => '营口市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210802 => - [ - - [ - 'address' => '站前区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210803 => - [ - - [ - 'address' => '西市区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210804 => - [ - - [ - 'address' => '鲅鱼圈区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 210811 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '老边区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 210821 => - [ - - [ - 'address' => '营口县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 210822 => - [ - - [ - 'address' => '盘山县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 210823 => - [ - - [ - 'address' => '大洼县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 210824 => - [ - - [ - 'address' => '盖县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 210881 => - [ - - [ - 'address' => '盖州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 210882 => - [ - - [ - 'address' => '大石桥市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 210900 => - [ - - [ - 'address' => '阜新市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210902 => - [ - - [ - 'address' => '海州区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210903 => - [ - - [ - 'address' => '新邱区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210904 => - [ - - [ - 'address' => '太平区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210905 => - [ - - [ - 'address' => '清河门区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 210911 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '细河区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 210921 => - [ - - [ - 'address' => '阜新蒙古族自治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 210922 => - [ - - [ - 'address' => '彰武县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 211000 => - [ - - [ - 'address' => '辽阳市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 211002 => - [ - - [ - 'address' => '白塔区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 211003 => - [ - - [ - 'address' => '文圣区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 211004 => - [ - - [ - 'address' => '宏伟区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 211005 => - [ - - [ - 'address' => '弓长岭区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211011 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '太子河区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211021 => - [ - - [ - 'address' => '辽阳县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 211022 => - [ - - [ - 'address' => '灯塔县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 211081 => - [ - - [ - 'address' => '灯塔市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 211100 => - [ - - [ - 'address' => '盘锦市', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211102 => - [ - - [ - 'address' => '盘山区', - 'start_year' => 1984, - 'end_year' => 1985, - ], - - [ - 'address' => '双台子区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 211103 => - [ - - [ - 'address' => '兴隆台区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211104 => - [ - - [ - 'address' => '大洼区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 211111 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1984, - 'end_year' => 1985, - ], - ], - 211121 => - [ - - [ - 'address' => '大洼县', - 'start_year' => 1984, - 'end_year' => 2015, - ], - ], - 211122 => - [ - - [ - 'address' => '盘山县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 211200 => - [ - - [ - 'address' => '铁岭市', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211202 => - [ - - [ - 'address' => '银州区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211203 => - [ - - [ - 'address' => '铁法区', - 'start_year' => 1984, - 'end_year' => 1985, - ], - ], - 211204 => - [ - - [ - 'address' => '清河区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211221 => - [ - - [ - 'address' => '铁岭县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211222 => - [ - - [ - 'address' => '开原县', - 'start_year' => 1984, - 'end_year' => 1987, - ], - ], - 211223 => - [ - - [ - 'address' => '西丰县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211224 => - [ - - [ - 'address' => '昌图县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211225 => - [ - - [ - 'address' => '康平县', - 'start_year' => 1984, - 'end_year' => 1991, - ], - ], - 211226 => - [ - - [ - 'address' => '法库县', - 'start_year' => 1984, - 'end_year' => 1991, - ], - ], - 211281 => - [ - - [ - 'address' => '铁法市', - 'start_year' => 1995, - 'end_year' => 2001, - ], - - [ - 'address' => '调兵山市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 211282 => - [ - - [ - 'address' => '开原市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 211300 => - [ - - [ - 'address' => '朝阳市', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211302 => - [ - - [ - 'address' => '双塔区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211303 => - [ - - [ - 'address' => '龙城区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211319 => - [ - - [ - 'address' => '北票市', - 'start_year' => 1985, - 'end_year' => 1985, - ], - ], - 211321 => - [ - - [ - 'address' => '朝阳县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211322 => - [ - - [ - 'address' => '建平县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211323 => - [ - - [ - 'address' => '凌源县', - 'start_year' => 1984, - 'end_year' => 1990, - ], - ], - 211324 => - [ - - [ - 'address' => '喀喇沁左翼蒙古族自治县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 211325 => - [ - - [ - 'address' => '建昌县', - 'start_year' => 1984, - 'end_year' => 1988, - ], - ], - 211326 => - [ - - [ - 'address' => '北票县', - 'start_year' => 1984, - 'end_year' => 1984, - ], - ], - 211381 => - [ - - [ - 'address' => '北票市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 211382 => - [ - - [ - 'address' => '凌源市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 211400 => - [ - - [ - 'address' => '锦西市', - 'start_year' => 1989, - 'end_year' => 1993, - ], - - [ - 'address' => '葫芦岛市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 211402 => - [ - - [ - 'address' => '连山区', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 211403 => - [ - - [ - 'address' => '龙港区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 211404 => - [ - - [ - 'address' => '南票区', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 211405 => - [ - - [ - 'address' => '葫芦岛区', - 'start_year' => 1989, - 'end_year' => 1993, - ], - ], - 211421 => - [ - - [ - 'address' => '绥中县', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 211422 => - [ - - [ - 'address' => '建昌县', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 211481 => - [ - - [ - 'address' => '兴城市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 212100 => - [ - - [ - 'address' => '铁岭地区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212101 => - [ - - [ - 'address' => '铁岭市', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212102 => - [ - - [ - 'address' => '铁法市', - 'start_year' => 1981, - 'end_year' => 1983, - ], - ], - 212121 => - [ - - [ - 'address' => '铁岭县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212122 => - [ - - [ - 'address' => '开原县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212123 => - [ - - [ - 'address' => '西丰县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212124 => - [ - - [ - 'address' => '昌图县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212125 => - [ - - [ - 'address' => '康平县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212126 => - [ - - [ - 'address' => '法库县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212200 => - [ - - [ - 'address' => '朝阳地区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212201 => - [ - - [ - 'address' => '朝阳市', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212221 => - [ - - [ - 'address' => '朝阳县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212222 => - [ - - [ - 'address' => '建平县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212223 => - [ - - [ - 'address' => '凌源县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212224 => - [ - - [ - 'address' => '喀喇沁左翼蒙古族自治县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212225 => - [ - - [ - 'address' => '建昌县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 212226 => - [ - - [ - 'address' => '北票县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 219001 => - [ - - [ - 'address' => '瓦房店市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 219002 => - [ - - [ - 'address' => '海城市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 219003 => - [ - - [ - 'address' => '锦西市', - 'start_year' => 1986, - 'end_year' => 1988, - ], - ], - 219004 => - [ - - [ - 'address' => '兴城市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 219005 => - [ - - [ - 'address' => '铁法市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 219006 => - [ - - [ - 'address' => '北票市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 219007 => - [ - - [ - 'address' => '开原市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 219008 => - [ - - [ - 'address' => '普兰店市', - 'start_year' => 1991, - 'end_year' => 1994, - ], - ], - 219009 => - [ - - [ - 'address' => '凌源市', - 'start_year' => 1991, - 'end_year' => 1994, - ], - ], - 219010 => - [ - - [ - 'address' => '庄河市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 219011 => - [ - - [ - 'address' => '大石桥市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 219012 => - [ - - [ - 'address' => '盖州市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 219013 => - [ - - [ - 'address' => '新民市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 219014 => - [ - - [ - 'address' => '东港市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 219015 => - [ - - [ - 'address' => '凌海市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 219016 => - [ - - [ - 'address' => '凤城市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 220000 => - [ - - [ - 'address' => '吉林省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 220100 => - [ - - [ - 'address' => '长春市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 220102 => - [ - - [ - 'address' => '南关区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 220103 => - [ - - [ - 'address' => '宽城区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 220104 => - [ - - [ - 'address' => '朝阳区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 220105 => - [ - - [ - 'address' => '二道河子区', - 'start_year' => '', - 'end_year' => 1994, - ], - - [ - 'address' => '二道区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220106 => - [ - - [ - 'address' => '绿园区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220111 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 220112 => - [ - - [ - 'address' => '双阳区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220113 => - [ - - [ - 'address' => '九台区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 220121 => - [ - - [ - 'address' => '榆树县', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 220122 => - [ - - [ - 'address' => '农安县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 220123 => - [ - - [ - 'address' => '九台县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 220124 => - [ - - [ - 'address' => '德惠县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 220125 => - [ - - [ - 'address' => '双阳县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 220181 => - [ - - [ - 'address' => '九台市', - 'start_year' => 1995, - 'end_year' => 2013, - ], - ], - 220182 => - [ - - [ - 'address' => '榆树市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220183 => - [ - - [ - 'address' => '德惠市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220200 => - [ - - [ - 'address' => '吉林市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 220202 => - [ - - [ - 'address' => '昌邑区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 220203 => - [ - - [ - 'address' => '龙潭区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 220204 => - [ - - [ - 'address' => '船营区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 220211 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1991, - ], - - [ - 'address' => '丰满区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 220221 => - [ - - [ - 'address' => '永吉县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 220222 => - [ - - [ - 'address' => '舒兰县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 220223 => - [ - - [ - 'address' => '磐石县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 220224 => - [ - - [ - 'address' => '蛟河县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 220225 => - [ - - [ - 'address' => '桦甸县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 220281 => - [ - - [ - 'address' => '蛟河市', - 'start_year' => 1995, - 'end_year' => '', - ], - - [ - 'address' => '桦甸市', - 'start_year' => 2003, - 'end_year' => 2003, - ], - ], - 220282 => - [ - - [ - 'address' => '桦甸市', - 'start_year' => 1995, - 'end_year' => '', - ], - - [ - 'address' => '蛟河市', - 'start_year' => 2003, - 'end_year' => 2003, - ], - ], - 220283 => - [ - - [ - 'address' => '舒兰市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220284 => - [ - - [ - 'address' => '磐石市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220300 => - [ - - [ - 'address' => '四平市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 220301 => - [ - - [ - 'address' => '铁西区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 220302 => - [ - - [ - 'address' => '铁东区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '铁西区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 220303 => - [ - - [ - 'address' => '铁东区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 220319 => - [ - - [ - 'address' => '公主岭市', - 'start_year' => 1985, - 'end_year' => 1987, - ], - ], - 220321 => - [ - - [ - 'address' => '怀德县', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 220322 => - [ - - [ - 'address' => '梨树县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 220323 => - [ - - [ - 'address' => '伊通县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - - [ - 'address' => '伊通满族自治县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 220324 => - [ - - [ - 'address' => '双辽县', - 'start_year' => 1983, - 'end_year' => 1995, - ], - ], - 220381 => - [ - - [ - 'address' => '公主岭市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220382 => - [ - - [ - 'address' => '双辽市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 220400 => - [ - - [ - 'address' => '辽源市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 220401 => - [ - - [ - 'address' => '龙山区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 220402 => - [ - - [ - 'address' => '西安区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '龙山区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 220403 => - [ - - [ - 'address' => '西安区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 220421 => - [ - - [ - 'address' => '东丰县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 220422 => - [ - - [ - 'address' => '东辽县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 220500 => - [ - - [ - 'address' => '通化市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 220502 => - [ - - [ - 'address' => '东昌区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 220503 => - [ - - [ - 'address' => '二道江区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 220519 => - [ - - [ - 'address' => '梅河口市', - 'start_year' => 1985, - 'end_year' => 1987, - ], - ], - 220521 => - [ - - [ - 'address' => '通化县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 220522 => - [ - - [ - 'address' => '集安县', - 'start_year' => 1985, - 'end_year' => 1987, - ], - ], - 220523 => - [ - - [ - 'address' => '辉南县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 220524 => - [ - - [ - 'address' => '柳河县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 220581 => - [ - - [ - 'address' => '梅河口市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220582 => - [ - - [ - 'address' => '集安市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220600 => - [ - - [ - 'address' => '浑江市', - 'start_year' => 1985, - 'end_year' => 1993, - ], - - [ - 'address' => '白山市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 220602 => - [ - - [ - 'address' => '八道江区', - 'start_year' => 1986, - 'end_year' => 2009, - ], - - [ - 'address' => '浑江区', - 'start_year' => 2010, - 'end_year' => '', - ], - ], - 220603 => - [ - - [ - 'address' => '三岔子区', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 220604 => - [ - - [ - 'address' => '临江区', - 'start_year' => 1986, - 'end_year' => 1991, - ], - ], - 220605 => - [ - - [ - 'address' => '江源区', - 'start_year' => 2006, - 'end_year' => '', - ], - ], - 220621 => - [ - - [ - 'address' => '抚松县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 220622 => - [ - - [ - 'address' => '靖宇县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 220623 => - [ - - [ - 'address' => '长白朝鲜族自治县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 220624 => - [ - - [ - 'address' => '临江县', - 'start_year' => 1992, - 'end_year' => 1992, - ], - ], - 220625 => - [ - - [ - 'address' => '江源县', - 'start_year' => 1995, - 'end_year' => 2005, - ], - ], - 220681 => - [ - - [ - 'address' => '临江市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220700 => - [ - - [ - 'address' => '松原市', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 220702 => - [ - - [ - 'address' => '扶余区', - 'start_year' => 1992, - 'end_year' => 1994, - ], - - [ - 'address' => '宁江区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220721 => - [ - - [ - 'address' => '前郭尔罗斯蒙古族自治县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 220722 => - [ - - [ - 'address' => '长岭县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 220723 => - [ - - [ - 'address' => '乾安县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 220724 => - [ - - [ - 'address' => '扶余县', - 'start_year' => 1995, - 'end_year' => 2012, - ], - ], - 220781 => - [ - - [ - 'address' => '扶余市', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 220800 => - [ - - [ - 'address' => '白城市', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 220802 => - [ - - [ - 'address' => '洮北区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 220821 => - [ - - [ - 'address' => '镇赉县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 220822 => - [ - - [ - 'address' => '通榆县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 220881 => - [ - - [ - 'address' => '洮南市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 220882 => - [ - - [ - 'address' => '大安市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 222100 => - [ - - [ - 'address' => '四平地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 222101 => - [ - - [ - 'address' => '四平市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 222102 => - [ - - [ - 'address' => '辽源市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 222121 => - [ - - [ - 'address' => '怀德县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 222122 => - [ - - [ - 'address' => '梨树县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 222123 => - [ - - [ - 'address' => '伊通县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 222124 => - [ - - [ - 'address' => '东丰县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 222125 => - [ - - [ - 'address' => '双辽县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 222200 => - [ - - [ - 'address' => '通化地区', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222201 => - [ - - [ - 'address' => '通化市', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222202 => - [ - - [ - 'address' => '浑江市', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222221 => - [ - - [ - 'address' => '海龙县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222222 => - [ - - [ - 'address' => '通化县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222223 => - [ - - [ - 'address' => '柳河县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222224 => - [ - - [ - 'address' => '辉南县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222225 => - [ - - [ - 'address' => '集安县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222226 => - [ - - [ - 'address' => '抚松县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222227 => - [ - - [ - 'address' => '靖宇县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222228 => - [ - - [ - 'address' => '长白朝鲜族自治县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222300 => - [ - - [ - 'address' => '白城地区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 222301 => - [ - - [ - 'address' => '白城市', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 222302 => - [ - - [ - 'address' => '洮南市', - 'start_year' => 1987, - 'end_year' => 1992, - ], - ], - 222303 => - [ - - [ - 'address' => '扶余市', - 'start_year' => 1987, - 'end_year' => 1991, - ], - ], - 222304 => - [ - - [ - 'address' => '大安市', - 'start_year' => 1988, - 'end_year' => 1992, - ], - ], - 222321 => - [ - - [ - 'address' => '扶余县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 222322 => - [ - - [ - 'address' => '洮安县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 222323 => - [ - - [ - 'address' => '长岭县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 222324 => - [ - - [ - 'address' => '前郭尔罗斯蒙古族自治县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 222325 => - [ - - [ - 'address' => '大安县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 222326 => - [ - - [ - 'address' => '镇赉县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 222327 => - [ - - [ - 'address' => '通榆县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 222328 => - [ - - [ - 'address' => '乾安县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 222400 => - [ - - [ - 'address' => '延边朝鲜族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 222401 => - [ - - [ - 'address' => '延吉市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 222402 => - [ - - [ - 'address' => '图们市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 222403 => - [ - - [ - 'address' => '敦化市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 222404 => - [ - - [ - 'address' => '珲春市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 222405 => - [ - - [ - 'address' => '龙井市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 222406 => - [ - - [ - 'address' => '和龙市', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 222421 => - [ - - [ - 'address' => '延吉县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '龙井县', - 'start_year' => 1984, - 'end_year' => 1987, - ], - ], - 222422 => - [ - - [ - 'address' => '敦化县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 222423 => - [ - - [ - 'address' => '和龙县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 222424 => - [ - - [ - 'address' => '汪清县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 222425 => - [ - - [ - 'address' => '珲春县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 222426 => - [ - - [ - 'address' => '安图县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 222427 => - [ - - [ - 'address' => '龙井县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 222500 => - [ - - [ - 'address' => '德惠地区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 222521 => - [ - - [ - 'address' => '榆树县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 222522 => - [ - - [ - 'address' => '农安县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 222523 => - [ - - [ - 'address' => '九台县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 222524 => - [ - - [ - 'address' => '德惠县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 222525 => - [ - - [ - 'address' => '双阳县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 222600 => - [ - - [ - 'address' => '永吉地区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 222621 => - [ - - [ - 'address' => '永吉县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 222622 => - [ - - [ - 'address' => '舒兰县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 222623 => - [ - - [ - 'address' => '磐石县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 222624 => - [ - - [ - 'address' => '蛟河县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 222625 => - [ - - [ - 'address' => '桦甸县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 229001 => - [ - - [ - 'address' => '公主岭市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 229002 => - [ - - [ - 'address' => '梅河口市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 229003 => - [ - - [ - 'address' => '集安市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 229004 => - [ - - [ - 'address' => '桦甸市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 229005 => - [ - - [ - 'address' => '九台市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 229006 => - [ - - [ - 'address' => '蛟河市', - 'start_year' => 1989, - 'end_year' => 1994, - ], - ], - 229007 => - [ - - [ - 'address' => '榆树市', - 'start_year' => 1990, - 'end_year' => 1994, - ], - ], - 229008 => - [ - - [ - 'address' => '舒兰市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 229009 => - [ - - [ - 'address' => '大安市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 229010 => - [ - - [ - 'address' => '洮南市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 229011 => - [ - - [ - 'address' => '临江市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 229012 => - [ - - [ - 'address' => '德惠市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 230000 => - [ - - [ - 'address' => '黑龙江省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230100 => - [ - - [ - 'address' => '哈尔滨市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230102 => - [ - - [ - 'address' => '道里区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230103 => - [ - - [ - 'address' => '南岗区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230104 => - [ - - [ - 'address' => '道外区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230105 => - [ - - [ - 'address' => '太平区', - 'start_year' => '', - 'end_year' => 2003, - ], - ], - 230106 => - [ - - [ - 'address' => '香坊区', - 'start_year' => '', - 'end_year' => 2003, - ], - ], - 230107 => - [ - - [ - 'address' => '动力区', - 'start_year' => '', - 'end_year' => 2005, - ], - ], - 230108 => - [ - - [ - 'address' => '平房区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230109 => - [ - - [ - 'address' => '松北区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 230110 => - [ - - [ - 'address' => '香坊区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 230111 => - [ - - [ - 'address' => '呼兰区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 230112 => - [ - - [ - 'address' => '阿城区', - 'start_year' => 2006, - 'end_year' => '', - ], - ], - 230113 => - [ - - [ - 'address' => '双城区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 230121 => - [ - - [ - 'address' => '阿城县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '呼兰县', - 'start_year' => 1984, - 'end_year' => 2003, - ], - ], - 230122 => - [ - - [ - 'address' => '呼兰县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '阿城县', - 'start_year' => 1984, - 'end_year' => 1986, - ], - ], - 230123 => - [ - - [ - 'address' => '依兰县', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 230124 => - [ - - [ - 'address' => '方正县', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 230125 => - [ - - [ - 'address' => '宾县', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 230126 => - [ - - [ - 'address' => '巴彦县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 230127 => - [ - - [ - 'address' => '木兰县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 230128 => - [ - - [ - 'address' => '通河县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 230129 => - [ - - [ - 'address' => '延寿县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 230181 => - [ - - [ - 'address' => '阿城市', - 'start_year' => 1995, - 'end_year' => 2005, - ], - ], - 230182 => - [ - - [ - 'address' => '双城市', - 'start_year' => 1996, - 'end_year' => 2013, - ], - ], - 230183 => - [ - - [ - 'address' => '尚志市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 230184 => - [ - - [ - 'address' => '五常市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 230200 => - [ - - [ - 'address' => '齐齐哈尔市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230202 => - [ - - [ - 'address' => '龙沙区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230203 => - [ - - [ - 'address' => '建华区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230204 => - [ - - [ - 'address' => '铁锋区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230205 => - [ - - [ - 'address' => '昂昂溪区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230206 => - [ - - [ - 'address' => '富拉尔基区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230207 => - [ - - [ - 'address' => '华安区', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '碾子山区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230208 => - [ - - [ - 'address' => '梅里斯区', - 'start_year' => '', - 'end_year' => 1987, - ], - - [ - 'address' => '梅里斯达斡尔族区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 230221 => - [ - - [ - 'address' => '龙江县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230222 => - [ - - [ - 'address' => '讷河县', - 'start_year' => 1984, - 'end_year' => 1991, - ], - ], - 230223 => - [ - - [ - 'address' => '依安县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230224 => - [ - - [ - 'address' => '泰来县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230225 => - [ - - [ - 'address' => '甘南县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230226 => - [ - - [ - 'address' => '杜尔伯特蒙古族自治县', - 'start_year' => 1984, - 'end_year' => 1991, - ], - ], - 230227 => - [ - - [ - 'address' => '富裕县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230228 => - [ - - [ - 'address' => '林甸县', - 'start_year' => 1984, - 'end_year' => 1991, - ], - ], - 230229 => - [ - - [ - 'address' => '克山县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230230 => - [ - - [ - 'address' => '克东县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230231 => - [ - - [ - 'address' => '拜泉县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230281 => - [ - - [ - 'address' => '讷河市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 230300 => - [ - - [ - 'address' => '鸡西市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230302 => - [ - - [ - 'address' => '鸡冠区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230303 => - [ - - [ - 'address' => '恒山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230304 => - [ - - [ - 'address' => '滴道区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230305 => - [ - - [ - 'address' => '梨树区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230306 => - [ - - [ - 'address' => '城子河区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230307 => - [ - - [ - 'address' => '麻山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230321 => - [ - - [ - 'address' => '鸡东县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 230322 => - [ - - [ - 'address' => '虎林县', - 'start_year' => 1993, - 'end_year' => 1995, - ], - ], - 230381 => - [ - - [ - 'address' => '虎林市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 230382 => - [ - - [ - 'address' => '密山市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 230400 => - [ - - [ - 'address' => '大庆市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '鹤岗市', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230402 => - [ - - [ - 'address' => '萨尔图区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '向阳区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230403 => - [ - - [ - 'address' => '龙凤区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '工农区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230404 => - [ - - [ - 'address' => '让胡路区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南山区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230405 => - [ - - [ - 'address' => '红岗区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '兴安区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230406 => - [ - - [ - 'address' => '大同区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '东山区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230407 => - [ - - [ - 'address' => '兴山区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230421 => - [ - - [ - 'address' => '萝北县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 230422 => - [ - - [ - 'address' => '绥滨县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 230500 => - [ - - [ - 'address' => '鹤岗市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '双鸭山市', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230502 => - [ - - [ - 'address' => '向阳区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '尖山区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230503 => - [ - - [ - 'address' => '工农区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '岭东区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230504 => - [ - - [ - 'address' => '南山区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '岭西区', - 'start_year' => 1982, - 'end_year' => 1986, - ], - ], - 230505 => - [ - - [ - 'address' => '兴安区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '四方台区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230506 => - [ - - [ - 'address' => '东山区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宝山区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230507 => - [ - - [ - 'address' => '兴山区', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 230521 => - [ - - [ - 'address' => '集贤县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 230522 => - [ - - [ - 'address' => '友谊县', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 230523 => - [ - - [ - 'address' => '宝清县', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 230524 => - [ - - [ - 'address' => '饶河县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 230600 => - [ - - [ - 'address' => '双鸭山市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '大庆市', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230602 => - [ - - [ - 'address' => '尖山区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '萨尔图区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230603 => - [ - - [ - 'address' => '岭东区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '龙凤区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230604 => - [ - - [ - 'address' => '岭西区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '让胡路区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230605 => - [ - - [ - 'address' => '四方台区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '红岗区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230606 => - [ - - [ - 'address' => '宝山区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '大同区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 230621 => - [ - - [ - 'address' => '肇州县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 230622 => - [ - - [ - 'address' => '肇源县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 230623 => - [ - - [ - 'address' => '林甸县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 230624 => - [ - - [ - 'address' => '杜尔伯特蒙古族自治县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 230700 => - [ - - [ - 'address' => '伊春市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230702 => - [ - - [ - 'address' => '伊春区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230703 => - [ - - [ - 'address' => '南岔区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230704 => - [ - - [ - 'address' => '友好区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230705 => - [ - - [ - 'address' => '西林区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230706 => - [ - - [ - 'address' => '翠峦区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230707 => - [ - - [ - 'address' => '新青区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230708 => - [ - - [ - 'address' => '美溪区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230709 => - [ - - [ - 'address' => '大丰区', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '金山屯区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230710 => - [ - - [ - 'address' => '五营区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230711 => - [ - - [ - 'address' => '乌敏河区', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '乌马河区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230712 => - [ - - [ - 'address' => '东风区', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '汤旺河区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230713 => - [ - - [ - 'address' => '带岭区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230714 => - [ - - [ - 'address' => '乌伊岭区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230715 => - [ - - [ - 'address' => '红星区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230716 => - [ - - [ - 'address' => '上甘岭区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230721 => - [ - - [ - 'address' => '铁力县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 230722 => - [ - - [ - 'address' => '嘉荫县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 230781 => - [ - - [ - 'address' => '铁力市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 230800 => - [ - - [ - 'address' => '佳木斯市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 230802 => - [ - - [ - 'address' => '永红区', - 'start_year' => 1983, - 'end_year' => 2005, - ], - ], - 230803 => - [ - - [ - 'address' => '向阳区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 230804 => - [ - - [ - 'address' => '前进区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 230805 => - [ - - [ - 'address' => '东风区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 230811 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 230821 => - [ - - [ - 'address' => '富锦县', - 'start_year' => 1984, - 'end_year' => 1987, - ], - ], - 230822 => - [ - - [ - 'address' => '桦南县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230823 => - [ - - [ - 'address' => '依兰县', - 'start_year' => 1984, - 'end_year' => 1990, - ], - ], - 230824 => - [ - - [ - 'address' => '友谊县', - 'start_year' => 1984, - 'end_year' => 1990, - ], - ], - 230825 => - [ - - [ - 'address' => '集贤县', - 'start_year' => 1984, - 'end_year' => 1986, - ], - ], - 230826 => - [ - - [ - 'address' => '桦川县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230827 => - [ - - [ - 'address' => '宝清县', - 'start_year' => 1984, - 'end_year' => 1990, - ], - ], - 230828 => - [ - - [ - 'address' => '汤原县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230829 => - [ - - [ - 'address' => '绥滨县', - 'start_year' => 1984, - 'end_year' => 1986, - ], - ], - 230830 => - [ - - [ - 'address' => '萝北县', - 'start_year' => 1984, - 'end_year' => 1986, - ], - ], - 230831 => - [ - - [ - 'address' => '同江县', - 'start_year' => 1984, - 'end_year' => 1986, - ], - ], - 230832 => - [ - - [ - 'address' => '饶河县', - 'start_year' => 1984, - 'end_year' => 1992, - ], - ], - 230833 => - [ - - [ - 'address' => '抚远县', - 'start_year' => 1984, - 'end_year' => 2015, - ], - ], - 230881 => - [ - - [ - 'address' => '同江市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 230882 => - [ - - [ - 'address' => '富锦市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 230883 => - [ - - [ - 'address' => '抚远市', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 230900 => - [ - - [ - 'address' => '七台河市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 230902 => - [ - - [ - 'address' => '新兴区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230903 => - [ - - [ - 'address' => '桃山区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230904 => - [ - - [ - 'address' => '茄子河区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 230921 => - [ - - [ - 'address' => '勃利县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 231000 => - [ - - [ - 'address' => '牡丹江市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 231002 => - [ - - [ - 'address' => '东安区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 231003 => - [ - - [ - 'address' => '阳明区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 231004 => - [ - - [ - 'address' => '爱民区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 231005 => - [ - - [ - 'address' => '西安区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 231006 => - [ - - [ - 'address' => '爱民区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 231007 => - [ - - [ - 'address' => '阳明区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 231011 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 231020 => - [ - - [ - 'address' => '绥芬河市', - 'start_year' => 1984, - 'end_year' => 1985, - ], - ], - 231021 => - [ - - [ - 'address' => '宁安县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 231022 => - [ - - [ - 'address' => '海林县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 231023 => - [ - - [ - 'address' => '穆棱县', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 231024 => - [ - - [ - 'address' => '东宁县', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 231025 => - [ - - [ - 'address' => '林口县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 231026 => - [ - - [ - 'address' => '密山县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 231027 => - [ - - [ - 'address' => '虎林县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 231081 => - [ - - [ - 'address' => '绥芬河市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 231083 => - [ - - [ - 'address' => '海林市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 231084 => - [ - - [ - 'address' => '宁安市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 231085 => - [ - - [ - 'address' => '穆棱市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 231086 => - [ - - [ - 'address' => '东宁市', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 231100 => - [ - - [ - 'address' => '黑河市', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 231101 => - [ - - [ - 'address' => '绥芬河市', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 231102 => - [ - - [ - 'address' => '爱辉区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 231121 => - [ - - [ - 'address' => '嫩江县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 231122 => - [ - - [ - 'address' => '德都县', - 'start_year' => 1993, - 'end_year' => 1995, - ], - ], - 231123 => - [ - - [ - 'address' => '逊克县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 231124 => - [ - - [ - 'address' => '孙吴县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 231181 => - [ - - [ - 'address' => '北安市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 231182 => - [ - - [ - 'address' => '五大连池市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 231200 => - [ - - [ - 'address' => '绥化市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 231202 => - [ - - [ - 'address' => '北林区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 231221 => - [ - - [ - 'address' => '望奎县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 231222 => - [ - - [ - 'address' => '兰西县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 231223 => - [ - - [ - 'address' => '青冈县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 231224 => - [ - - [ - 'address' => '庆安县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 231225 => - [ - - [ - 'address' => '明水县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 231226 => - [ - - [ - 'address' => '绥棱县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 231281 => - [ - - [ - 'address' => '安达市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 231282 => - [ - - [ - 'address' => '肇东市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 231283 => - [ - - [ - 'address' => '海伦市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 232100 => - [ - - [ - 'address' => '绥化地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '松花江地区', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 232101 => - [ - - [ - 'address' => '双城市', - 'start_year' => 1988, - 'end_year' => 1995, - ], - ], - 232102 => - [ - - [ - 'address' => '尚志市', - 'start_year' => 1988, - 'end_year' => 1995, - ], - ], - 232103 => - [ - - [ - 'address' => '五常市', - 'start_year' => 1993, - 'end_year' => 1995, - ], - ], - 232121 => - [ - - [ - 'address' => '海伦县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '阿城县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232122 => - [ - - [ - 'address' => '肇东县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宾县', - 'start_year' => 1982, - 'end_year' => 1990, - ], - ], - 232123 => - [ - - [ - 'address' => '绥化县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '呼兰县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232124 => - [ - - [ - 'address' => '安达县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '双城县', - 'start_year' => 1982, - 'end_year' => 1987, - ], - ], - 232125 => - [ - - [ - 'address' => '望奎县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '五常县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 232126 => - [ - - [ - 'address' => '兰西县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '巴彦县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 232127 => - [ - - [ - 'address' => '青冈县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '木兰县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 232128 => - [ - - [ - 'address' => '肇源县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '通河县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 232129 => - [ - - [ - 'address' => '肇州县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '尚志县', - 'start_year' => 1982, - 'end_year' => 1987, - ], - ], - 232130 => - [ - - [ - 'address' => '庆安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '方正县', - 'start_year' => 1982, - 'end_year' => 1990, - ], - ], - 232131 => - [ - - [ - 'address' => '明水县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '延寿县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 232132 => - [ - - [ - 'address' => '绥棱县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 232200 => - [ - - [ - 'address' => '松花江地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '嫩江地区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232221 => - [ - - [ - 'address' => '五常县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '龙江县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232222 => - [ - - [ - 'address' => '双城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '讷河县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232223 => - [ - - [ - 'address' => '巴彦县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '依安县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232224 => - [ - - [ - 'address' => '呼兰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '泰来县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232225 => - [ - - [ - 'address' => '宾县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '甘南县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232226 => - [ - - [ - 'address' => '阿城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '杜尔伯特蒙古族自治县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232227 => - [ - - [ - 'address' => '尚志县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '富裕县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232228 => - [ - - [ - 'address' => '木兰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '林甸县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232229 => - [ - - [ - 'address' => '延寿县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '克山县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232230 => - [ - - [ - 'address' => '通河县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '克东县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232231 => - [ - - [ - 'address' => '方正县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '拜泉县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232300 => - [ - - [ - 'address' => '嫩江地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '绥化地区', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 232301 => - [ - - [ - 'address' => '绥化市', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 232302 => - [ - - [ - 'address' => '安达市', - 'start_year' => 1984, - 'end_year' => 1998, - ], - ], - 232303 => - [ - - [ - 'address' => '肇东市', - 'start_year' => 1986, - 'end_year' => 1998, - ], - ], - 232304 => - [ - - [ - 'address' => '海伦市', - 'start_year' => 1989, - 'end_year' => 1998, - ], - ], - 232321 => - [ - - [ - 'address' => '讷河县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '海伦县', - 'start_year' => 1982, - 'end_year' => 1988, - ], - ], - 232322 => - [ - - [ - 'address' => '拜泉县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '肇东县', - 'start_year' => 1982, - 'end_year' => 1985, - ], - ], - 232323 => - [ - - [ - 'address' => '龙江县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 232324 => - [ - - [ - 'address' => '依安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '望奎县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 232325 => - [ - - [ - 'address' => '克山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '兰西县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 232326 => - [ - - [ - 'address' => '甘南县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '青冈县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 232327 => - [ - - [ - 'address' => '泰来县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '安达县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232328 => - [ - - [ - 'address' => '克东县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '肇源县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 232329 => - [ - - [ - 'address' => '富裕县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '肇州县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 232330 => - [ - - [ - 'address' => '林甸县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '庆安县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 232331 => - [ - - [ - 'address' => '杜尔伯特蒙古族自治县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '明水县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 232332 => - [ - - [ - 'address' => '绥棱县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 232400 => - [ - - [ - 'address' => '合江地区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 232401 => - [ - - [ - 'address' => '佳木斯市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 232402 => - [ - - [ - 'address' => '七台河市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 232403 => - [ - - [ - 'address' => '永红区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 232404 => - [ - - [ - 'address' => '向阳区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 232405 => - [ - - [ - 'address' => '前进区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 232406 => - [ - - [ - 'address' => '东风区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 232411 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 232421 => - [ - - [ - 'address' => '桦南县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '富锦县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232422 => - [ - - [ - 'address' => '集贤县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '桦南县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232423 => - [ - - [ - 'address' => '宝清县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '依兰县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232424 => - [ - - [ - 'address' => '富锦县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '勃利县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232425 => - [ - - [ - 'address' => '依兰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '集贤县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232426 => - [ - - [ - 'address' => '勃利县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '桦川县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232427 => - [ - - [ - 'address' => '汤原县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宝清县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232428 => - [ - - [ - 'address' => '桦川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '汤原县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232429 => - [ - - [ - 'address' => '萝北县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '绥滨县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232430 => - [ - - [ - 'address' => '绥滨县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '萝北县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232431 => - [ - - [ - 'address' => '饶河县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '同江县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232432 => - [ - - [ - 'address' => '同江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '饶河县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 232433 => - [ - - [ - 'address' => '抚远县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 232500 => - [ - - [ - 'address' => '牡丹江地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 232501 => - [ - - [ - 'address' => '牡丹江市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 232502 => - [ - - [ - 'address' => '东凤区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '绥芬河市', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232503 => - [ - - [ - 'address' => '先锋区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '东凤区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232504 => - [ - - [ - 'address' => '爱民区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '先锋区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232505 => - [ - - [ - 'address' => '阳明区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '爱民区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232506 => - [ - - [ - 'address' => '阳明区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232511 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 232521 => - [ - - [ - 'address' => '海林县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宁安县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232522 => - [ - - [ - 'address' => '宁安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '海林县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232523 => - [ - - [ - 'address' => '林口县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '穆棱县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232524 => - [ - - [ - 'address' => '密山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '东宁县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232525 => - [ - - [ - 'address' => '穆棱县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '林口县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232526 => - [ - - [ - 'address' => '虎林县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '鸡东县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232527 => - [ - - [ - 'address' => '鸡东县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '密山县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232528 => - [ - - [ - 'address' => '东宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '虎林县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232581 => - [ - - [ - 'address' => '绥芬河市', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 232600 => - [ - - [ - 'address' => '黑河地区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 232601 => - [ - - [ - 'address' => '黑河市', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 232602 => - [ - - [ - 'address' => '北安市', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 232603 => - [ - - [ - 'address' => '五大连池市', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 232621 => - [ - - [ - 'address' => '嫩江县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 232622 => - [ - - [ - 'address' => '北安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '嫩江县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 232623 => - [ - - [ - 'address' => '德都县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 232624 => - [ - - [ - 'address' => '爱辉县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 232625 => - [ - - [ - 'address' => '逊克县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 232626 => - [ - - [ - 'address' => '孙吴县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 232627 => - [ - - [ - 'address' => '通北县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 232700 => - [ - - [ - 'address' => '大兴安岭地区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 232701 => - [ - - [ - 'address' => '漠河市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 232721 => - [ - - [ - 'address' => '呼玛县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 232722 => - [ - - [ - 'address' => '塔河县', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 232723 => - [ - - [ - 'address' => '漠河县', - 'start_year' => 1981, - 'end_year' => 2017, - ], - ], - 239001 => - [ - - [ - 'address' => '绥芬河市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 239002 => - [ - - [ - 'address' => '镜泊湖市', - 'start_year' => 1986, - 'end_year' => 1986, - ], - - [ - 'address' => '阿城市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 239003 => - [ - - [ - 'address' => '同江市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 239004 => - [ - - [ - 'address' => '富锦市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 239005 => - [ - - [ - 'address' => '铁力市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 239006 => - [ - - [ - 'address' => '密山市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 239007 => - [ - - [ - 'address' => '海林市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 239008 => - [ - - [ - 'address' => '讷河市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 239009 => - [ - - [ - 'address' => '北安市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 239010 => - [ - - [ - 'address' => '五大连池市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 239011 => - [ - - [ - 'address' => '宁安市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 310000 => - [ - - [ - 'address' => '上海市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 310101 => - [ - - [ - 'address' => '黄浦区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 310102 => - [ - - [ - 'address' => '南市区', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 310103 => - [ - - [ - 'address' => '卢湾区', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 310104 => - [ - - [ - 'address' => '徐汇区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 310105 => - [ - - [ - 'address' => '长宁区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 310106 => - [ - - [ - 'address' => '静安区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 310107 => - [ - - [ - 'address' => '普陀区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 310108 => - [ - - [ - 'address' => '闸北区', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 310109 => - [ - - [ - 'address' => '虹口区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 310110 => - [ - - [ - 'address' => '杨浦区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 310111 => - [ - - [ - 'address' => '吴淞区', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 310112 => - [ - - [ - 'address' => '闵行区', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 310113 => - [ - - [ - 'address' => '宝山区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 310114 => - [ - - [ - 'address' => '嘉定区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 310115 => - [ - - [ - 'address' => '浦东新区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 310116 => - [ - - [ - 'address' => '金山区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 310117 => - [ - - [ - 'address' => '松江区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 310118 => - [ - - [ - 'address' => '青浦区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 310119 => - [ - - [ - 'address' => '南汇区', - 'start_year' => 2001, - 'end_year' => 2008, - ], - ], - 310120 => - [ - - [ - 'address' => '奉贤区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 310151 => - [ - - [ - 'address' => '崇明区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 310201 => - [ - - [ - 'address' => '上海县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 310202 => - [ - - [ - 'address' => '嘉定县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 310203 => - [ - - [ - 'address' => '宝山县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 310204 => - [ - - [ - 'address' => '川沙县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 310205 => - [ - - [ - 'address' => '南汇县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 310206 => - [ - - [ - 'address' => '奉贤县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 310207 => - [ - - [ - 'address' => '松江县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 310208 => - [ - - [ - 'address' => '金山县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 310209 => - [ - - [ - 'address' => '青浦县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 310210 => - [ - - [ - 'address' => '崇明县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 310221 => - [ - - [ - 'address' => '上海县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 310222 => - [ - - [ - 'address' => '嘉定县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 310223 => - [ - - [ - 'address' => '宝山县', - 'start_year' => 1982, - 'end_year' => 1987, - ], - ], - 310224 => - [ - - [ - 'address' => '川沙县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 310225 => - [ - - [ - 'address' => '南汇县', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 310226 => - [ - - [ - 'address' => '奉贤县', - 'start_year' => 1982, - 'end_year' => 2000, - ], - ], - 310227 => - [ - - [ - 'address' => '松江县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 310228 => - [ - - [ - 'address' => '金山县', - 'start_year' => 1982, - 'end_year' => 1996, - ], - ], - 310229 => - [ - - [ - 'address' => '青浦县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 310230 => - [ - - [ - 'address' => '崇明县', - 'start_year' => 1982, - 'end_year' => 2015, - ], - ], - 320000 => - [ - - [ - 'address' => '江苏省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320100 => - [ - - [ - 'address' => '南京市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320102 => - [ - - [ - 'address' => '玄武区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320103 => - [ - - [ - 'address' => '白下区', - 'start_year' => '', - 'end_year' => 2012, - ], - ], - 320104 => - [ - - [ - 'address' => '秦淮区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320105 => - [ - - [ - 'address' => '建邺区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320106 => - [ - - [ - 'address' => '鼓楼区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320107 => - [ - - [ - 'address' => '下关区', - 'start_year' => '', - 'end_year' => 2012, - ], - ], - 320111 => - [ - - [ - 'address' => '浦口区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320112 => - [ - - [ - 'address' => '大厂区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 320113 => - [ - - [ - 'address' => '栖霞区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320114 => - [ - - [ - 'address' => '雨花区', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '雨花台区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 320115 => - [ - - [ - 'address' => '江宁区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 320116 => - [ - - [ - 'address' => '六合区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 320117 => - [ - - [ - 'address' => '溧水区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 320118 => - [ - - [ - 'address' => '高淳区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 320121 => - [ - - [ - 'address' => '江宁县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 320122 => - [ - - [ - 'address' => '江浦县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 320123 => - [ - - [ - 'address' => '六合县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 320124 => - [ - - [ - 'address' => '溧水县', - 'start_year' => 1983, - 'end_year' => 2012, - ], - ], - 320125 => - [ - - [ - 'address' => '高淳县', - 'start_year' => 1983, - 'end_year' => 2012, - ], - ], - 320200 => - [ - - [ - 'address' => '无锡市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320202 => - [ - - [ - 'address' => '崇安区', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 320203 => - [ - - [ - 'address' => '南长区', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 320204 => - [ - - [ - 'address' => '北塘区', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 320205 => - [ - - [ - 'address' => '马山区', - 'start_year' => 1987, - 'end_year' => 1999, - ], - - [ - 'address' => '锡山区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 320206 => - [ - - [ - 'address' => '惠山区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 320211 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1999, - ], - - [ - 'address' => '滨湖区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 320213 => - [ - - [ - 'address' => '梁溪区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 320214 => - [ - - [ - 'address' => '新吴区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 320221 => - [ - - [ - 'address' => '江阴县', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 320222 => - [ - - [ - 'address' => '无锡县', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 320223 => - [ - - [ - 'address' => '宜兴县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 320281 => - [ - - [ - 'address' => '江阴市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320282 => - [ - - [ - 'address' => '宜兴市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320283 => - [ - - [ - 'address' => '锡山市', - 'start_year' => 1995, - 'end_year' => 1999, - ], - ], - 320300 => - [ - - [ - 'address' => '徐州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320302 => - [ - - [ - 'address' => '鼓楼区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320303 => - [ - - [ - 'address' => '云龙区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320304 => - [ - - [ - 'address' => '矿区', - 'start_year' => '', - 'end_year' => 1994, - ], - - [ - 'address' => '九里区', - 'start_year' => 1995, - 'end_year' => 2009, - ], - ], - 320305 => - [ - - [ - 'address' => '贾汪区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320311 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1992, - ], - - [ - 'address' => '泉山区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 320312 => - [ - - [ - 'address' => '铜山区', - 'start_year' => 2010, - 'end_year' => '', - ], - ], - 320321 => - [ - - [ - 'address' => '丰县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320322 => - [ - - [ - 'address' => '沛县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320323 => - [ - - [ - 'address' => '铜山县', - 'start_year' => 1983, - 'end_year' => 2009, - ], - ], - 320324 => - [ - - [ - 'address' => '睢宁县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320325 => - [ - - [ - 'address' => '邳县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 320326 => - [ - - [ - 'address' => '新沂县', - 'start_year' => 1983, - 'end_year' => 1989, - ], - ], - 320381 => - [ - - [ - 'address' => '新沂市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320382 => - [ - - [ - 'address' => '邳州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320400 => - [ - - [ - 'address' => '常州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320402 => - [ - - [ - 'address' => '天宁区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320403 => - [ - - [ - 'address' => '广化区', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 320404 => - [ - - [ - 'address' => '钟楼区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320405 => - [ - - [ - 'address' => '戚墅堰区', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 320411 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 2001, - ], - - [ - 'address' => '新北区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 320412 => - [ - - [ - 'address' => '武进区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 320413 => - [ - - [ - 'address' => '金坛区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 320421 => - [ - - [ - 'address' => '武进县', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 320422 => - [ - - [ - 'address' => '金坛县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 320423 => - [ - - [ - 'address' => '溧阳县', - 'start_year' => 1983, - 'end_year' => 1989, - ], - ], - 320481 => - [ - - [ - 'address' => '溧阳市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320482 => - [ - - [ - 'address' => '金坛市', - 'start_year' => 1995, - 'end_year' => 2014, - ], - ], - 320483 => - [ - - [ - 'address' => '武进市', - 'start_year' => 1995, - 'end_year' => 2001, - ], - ], - 320500 => - [ - - [ - 'address' => '苏州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320502 => - [ - - [ - 'address' => '沧浪区', - 'start_year' => '', - 'end_year' => 2011, - ], - ], - 320503 => - [ - - [ - 'address' => '平江区', - 'start_year' => '', - 'end_year' => 2011, - ], - ], - 320504 => - [ - - [ - 'address' => '金阊区', - 'start_year' => '', - 'end_year' => 2011, - ], - ], - 320505 => - [ - - [ - 'address' => '虎丘区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 320506 => - [ - - [ - 'address' => '吴中区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 320507 => - [ - - [ - 'address' => '相城区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 320508 => - [ - - [ - 'address' => '姑苏区', - 'start_year' => 2012, - 'end_year' => '', - ], - ], - 320509 => - [ - - [ - 'address' => '吴江区', - 'start_year' => 2012, - 'end_year' => '', - ], - ], - 320511 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1999, - ], - ], - 320521 => - [ - - [ - 'address' => '沙洲县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 320522 => - [ - - [ - 'address' => '太仓县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 320523 => - [ - - [ - 'address' => '昆山县', - 'start_year' => 1983, - 'end_year' => 1988, - ], - ], - 320524 => - [ - - [ - 'address' => '吴县', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 320525 => - [ - - [ - 'address' => '吴江县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 320581 => - [ - - [ - 'address' => '常熟市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320582 => - [ - - [ - 'address' => '张家港市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320583 => - [ - - [ - 'address' => '昆山市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320584 => - [ - - [ - 'address' => '吴江市', - 'start_year' => 1995, - 'end_year' => 2011, - ], - ], - 320585 => - [ - - [ - 'address' => '太仓市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320586 => - [ - - [ - 'address' => '吴县市', - 'start_year' => 1995, - 'end_year' => 1999, - ], - ], - 320600 => - [ - - [ - 'address' => '南通市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320602 => - [ - - [ - 'address' => '城中区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '城区', - 'start_year' => 1983, - 'end_year' => 1990, - ], - - [ - 'address' => '崇川区', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 320603 => - [ - - [ - 'address' => '港闸区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 320611 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1990, - ], - - [ - 'address' => '港闸区', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 320612 => - [ - - [ - 'address' => '通州区', - 'start_year' => 2009, - 'end_year' => '', - ], - ], - 320621 => - [ - - [ - 'address' => '海安县', - 'start_year' => 1983, - 'end_year' => 2017, - ], - ], - 320622 => - [ - - [ - 'address' => '如皋县', - 'start_year' => 1983, - 'end_year' => 1990, - ], - ], - 320623 => - [ - - [ - 'address' => '如东县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320624 => - [ - - [ - 'address' => '南通县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 320625 => - [ - - [ - 'address' => '海门县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 320626 => - [ - - [ - 'address' => '启东县', - 'start_year' => 1983, - 'end_year' => 1988, - ], - ], - 320681 => - [ - - [ - 'address' => '启东市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320682 => - [ - - [ - 'address' => '如皋市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320683 => - [ - - [ - 'address' => '通州市', - 'start_year' => 1995, - 'end_year' => 2008, - ], - ], - 320684 => - [ - - [ - 'address' => '海门市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320685 => - [ - - [ - 'address' => '海安市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 320700 => - [ - - [ - 'address' => '连云港市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 320702 => - [ - - [ - 'address' => '连云港区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '新海区', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 320703 => - [ - - [ - 'address' => '盐区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '连云区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320704 => - [ - - [ - 'address' => '新浦区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '云台区', - 'start_year' => 1983, - 'end_year' => 2000, - ], - ], - 320705 => - [ - - [ - 'address' => '海州区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '新浦区', - 'start_year' => 1986, - 'end_year' => 2013, - ], - ], - 320706 => - [ - - [ - 'address' => '海州区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 320707 => - [ - - [ - 'address' => '赣榆区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 320711 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1981, - 'end_year' => 1982, - ], - ], - 320721 => - [ - - [ - 'address' => '赣榆县', - 'start_year' => 1983, - 'end_year' => 2013, - ], - ], - 320722 => - [ - - [ - 'address' => '东海县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320723 => - [ - - [ - 'address' => '灌云县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320724 => - [ - - [ - 'address' => '灌南县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 320800 => - [ - - [ - 'address' => '淮阴市', - 'start_year' => 1983, - 'end_year' => 1999, - ], - - [ - 'address' => '淮安市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 320802 => - [ - - [ - 'address' => '清河区', - 'start_year' => 1983, - 'end_year' => 2015, - ], - ], - 320803 => - [ - - [ - 'address' => '楚州区', - 'start_year' => 2000, - 'end_year' => 2010, - ], - - [ - 'address' => '淮安区', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 320804 => - [ - - [ - 'address' => '淮阴区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 320811 => - [ - - [ - 'address' => '清浦区', - 'start_year' => 1983, - 'end_year' => 2015, - ], - ], - 320812 => - [ - - [ - 'address' => '清江浦区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 320813 => - [ - - [ - 'address' => '洪泽区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 320821 => - [ - - [ - 'address' => '淮阴县', - 'start_year' => 1983, - 'end_year' => 1999, - ], - ], - 320822 => - [ - - [ - 'address' => '灌南县', - 'start_year' => 1983, - 'end_year' => 1995, - ], - ], - 320823 => - [ - - [ - 'address' => '沭阳县', - 'start_year' => 1983, - 'end_year' => 1995, - ], - ], - 320824 => - [ - - [ - 'address' => '宿迁县', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 320825 => - [ - - [ - 'address' => '泗阳县', - 'start_year' => 1983, - 'end_year' => 1995, - ], - ], - 320826 => - [ - - [ - 'address' => '涟水县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320827 => - [ - - [ - 'address' => '泗洪县', - 'start_year' => 1983, - 'end_year' => 1995, - ], - ], - 320828 => - [ - - [ - 'address' => '淮安县', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 320829 => - [ - - [ - 'address' => '洪泽县', - 'start_year' => 1983, - 'end_year' => 2015, - ], - ], - 320830 => - [ - - [ - 'address' => '盱眙县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320831 => - [ - - [ - 'address' => '金湖县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320881 => - [ - - [ - 'address' => '宿迁市', - 'start_year' => 1995, - 'end_year' => 1995, - ], - ], - 320882 => - [ - - [ - 'address' => '淮安市', - 'start_year' => 1995, - 'end_year' => 1999, - ], - ], - 320900 => - [ - - [ - 'address' => '盐城市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320902 => - [ - - [ - 'address' => '城区', - 'start_year' => 1983, - 'end_year' => 2002, - ], - - [ - 'address' => '亭湖区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 320903 => - [ - - [ - 'address' => '盐都区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 320904 => - [ - - [ - 'address' => '大丰区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 320911 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1995, - ], - ], - 320921 => - [ - - [ - 'address' => '响水县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320922 => - [ - - [ - 'address' => '滨海县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320923 => - [ - - [ - 'address' => '阜宁县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320924 => - [ - - [ - 'address' => '射阳县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320925 => - [ - - [ - 'address' => '建湖县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 320926 => - [ - - [ - 'address' => '大丰县', - 'start_year' => 1983, - 'end_year' => 1995, - ], - ], - 320927 => - [ - - [ - 'address' => '东台县', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 320928 => - [ - - [ - 'address' => '盐都县', - 'start_year' => 1996, - 'end_year' => 2002, - ], - ], - 320981 => - [ - - [ - 'address' => '东台市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 320982 => - [ - - [ - 'address' => '大丰市', - 'start_year' => 1996, - 'end_year' => 2014, - ], - ], - 321000 => - [ - - [ - 'address' => '扬州市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 321002 => - [ - - [ - 'address' => '广陵区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 321003 => - [ - - [ - 'address' => '邗江区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 321011 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1984, - 'end_year' => 2001, - ], - - [ - 'address' => '维扬区', - 'start_year' => 2002, - 'end_year' => 2010, - ], - ], - 321012 => - [ - - [ - 'address' => '江都区', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 321021 => - [ - - [ - 'address' => '兴化县', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 321022 => - [ - - [ - 'address' => '高邮县', - 'start_year' => 1983, - 'end_year' => 1990, - ], - ], - 321023 => - [ - - [ - 'address' => '宝应县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 321024 => - [ - - [ - 'address' => '靖江县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 321025 => - [ - - [ - 'address' => '泰兴县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 321026 => - [ - - [ - 'address' => '江都县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 321027 => - [ - - [ - 'address' => '邗江县', - 'start_year' => 1983, - 'end_year' => 1999, - ], - ], - 321028 => - [ - - [ - 'address' => '泰县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 321029 => - [ - - [ - 'address' => '仪征县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 321081 => - [ - - [ - 'address' => '仪征市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 321082 => - [ - - [ - 'address' => '泰州市', - 'start_year' => 1995, - 'end_year' => 1995, - ], - ], - 321083 => - [ - - [ - 'address' => '兴化市', - 'start_year' => 1995, - 'end_year' => 1995, - ], - ], - 321084 => - [ - - [ - 'address' => '高邮市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 321085 => - [ - - [ - 'address' => '靖江市', - 'start_year' => 1995, - 'end_year' => 1995, - ], - ], - 321086 => - [ - - [ - 'address' => '泰兴市', - 'start_year' => 1995, - 'end_year' => 1995, - ], - ], - 321087 => - [ - - [ - 'address' => '姜堰市', - 'start_year' => 1995, - 'end_year' => 1995, - ], - ], - 321088 => - [ - - [ - 'address' => '江都市', - 'start_year' => 1995, - 'end_year' => 2010, - ], - ], - 321100 => - [ - - [ - 'address' => '镇江市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 321102 => - [ - - [ - 'address' => '城区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '京口区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 321111 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '润州区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 321112 => - [ - - [ - 'address' => '丹徒区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 321121 => - [ - - [ - 'address' => '丹徒县', - 'start_year' => 1983, - 'end_year' => 2001, - ], - ], - 321122 => - [ - - [ - 'address' => '丹阳县', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 321123 => - [ - - [ - 'address' => '句容县', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 321124 => - [ - - [ - 'address' => '扬中县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 321181 => - [ - - [ - 'address' => '丹阳市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 321182 => - [ - - [ - 'address' => '扬中市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 321183 => - [ - - [ - 'address' => '句容市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 321200 => - [ - - [ - 'address' => '泰州市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 321201 => - [ - - [ - 'address' => '泰州市', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 321202 => - [ - - [ - 'address' => '海陵区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 321203 => - [ - - [ - 'address' => '高港区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 321204 => - [ - - [ - 'address' => '姜堰区', - 'start_year' => 2012, - 'end_year' => '', - ], - ], - 321281 => - [ - - [ - 'address' => '兴化市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 321282 => - [ - - [ - 'address' => '靖江市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 321283 => - [ - - [ - 'address' => '泰兴市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 321284 => - [ - - [ - 'address' => '姜堰市', - 'start_year' => 1996, - 'end_year' => 2011, - ], - ], - 321300 => - [ - - [ - 'address' => '宿迁市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 321301 => - [ - - [ - 'address' => '常熟市', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 321302 => - [ - - [ - 'address' => '宿城区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 321311 => - [ - - [ - 'address' => '宿豫区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 321321 => - [ - - [ - 'address' => '宿豫县', - 'start_year' => 1996, - 'end_year' => 2003, - ], - ], - 321322 => - [ - - [ - 'address' => '沭阳县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 321323 => - [ - - [ - 'address' => '泗阳县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 321324 => - [ - - [ - 'address' => '泗洪县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 322100 => - [ - - [ - 'address' => '徐州地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322121 => - [ - - [ - 'address' => '丰县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322122 => - [ - - [ - 'address' => '沛县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322123 => - [ - - [ - 'address' => '铜山县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322124 => - [ - - [ - 'address' => '睢宁县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322125 => - [ - - [ - 'address' => '邳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322126 => - [ - - [ - 'address' => '新沂县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322127 => - [ - - [ - 'address' => '东海县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322128 => - [ - - [ - 'address' => '赣榆县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322200 => - [ - - [ - 'address' => '淮阴地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322201 => - [ - - [ - 'address' => '清江市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322221 => - [ - - [ - 'address' => '淮阴县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322222 => - [ - - [ - 'address' => '灌云县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322223 => - [ - - [ - 'address' => '灌南县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322224 => - [ - - [ - 'address' => '沭阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322225 => - [ - - [ - 'address' => '宿迁县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322226 => - [ - - [ - 'address' => '泗阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322227 => - [ - - [ - 'address' => '涟水县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322228 => - [ - - [ - 'address' => '泗洪县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322229 => - [ - - [ - 'address' => '淮安县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322230 => - [ - - [ - 'address' => '洪泽县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322231 => - [ - - [ - 'address' => '盱眙县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322232 => - [ - - [ - 'address' => '金湖县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322300 => - [ - - [ - 'address' => '盐城地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322321 => - [ - - [ - 'address' => '响水县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322322 => - [ - - [ - 'address' => '滨海县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322323 => - [ - - [ - 'address' => '阜宁县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322324 => - [ - - [ - 'address' => '射阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322325 => - [ - - [ - 'address' => '建湖县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322326 => - [ - - [ - 'address' => '盐城县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322327 => - [ - - [ - 'address' => '大丰县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322328 => - [ - - [ - 'address' => '东台县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322400 => - [ - - [ - 'address' => '扬州地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322401 => - [ - - [ - 'address' => '扬州市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322402 => - [ - - [ - 'address' => '泰州市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322421 => - [ - - [ - 'address' => '兴化县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322422 => - [ - - [ - 'address' => '高邮县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322423 => - [ - - [ - 'address' => '宝应县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322424 => - [ - - [ - 'address' => '靖江县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322425 => - [ - - [ - 'address' => '泰兴县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322426 => - [ - - [ - 'address' => '江都县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322427 => - [ - - [ - 'address' => '邗江县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322428 => - [ - - [ - 'address' => '泰县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322429 => - [ - - [ - 'address' => '仪征县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322500 => - [ - - [ - 'address' => '南通地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322521 => - [ - - [ - 'address' => '海安县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322522 => - [ - - [ - 'address' => '如皋县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322523 => - [ - - [ - 'address' => '如东县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322524 => - [ - - [ - 'address' => '南通县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322525 => - [ - - [ - 'address' => '海门县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322526 => - [ - - [ - 'address' => '启东县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322600 => - [ - - [ - 'address' => '镇江地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322601 => - [ - - [ - 'address' => '镇江市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322621 => - [ - - [ - 'address' => '丹徒县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322622 => - [ - - [ - 'address' => '武进县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322623 => - [ - - [ - 'address' => '丹阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322624 => - [ - - [ - 'address' => '句容县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322625 => - [ - - [ - 'address' => '金坛县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322626 => - [ - - [ - 'address' => '溧水县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322627 => - [ - - [ - 'address' => '高淳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322628 => - [ - - [ - 'address' => '溧阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322629 => - [ - - [ - 'address' => '宜兴县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322630 => - [ - - [ - 'address' => '扬中县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322700 => - [ - - [ - 'address' => '苏州地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322721 => - [ - - [ - 'address' => '江阴县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322722 => - [ - - [ - 'address' => '无锡县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322723 => - [ - - [ - 'address' => '沙洲县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322724 => - [ - - [ - 'address' => '常熟县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322725 => - [ - - [ - 'address' => '太仓县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322726 => - [ - - [ - 'address' => '昆山县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322727 => - [ - - [ - 'address' => '吴县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 322728 => - [ - - [ - 'address' => '吴江县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 329001 => - [ - - [ - 'address' => '泰州市', - 'start_year' => 1984, - 'end_year' => 1994, - ], - ], - 329002 => - [ - - [ - 'address' => '仪征市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 329003 => - [ - - [ - 'address' => '常熟市', - 'start_year' => 1984, - 'end_year' => 1994, - ], - ], - 329004 => - [ - - [ - 'address' => '张家港市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 329005 => - [ - - [ - 'address' => '江阴市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 329006 => - [ - - [ - 'address' => '宿迁市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 329007 => - [ - - [ - 'address' => '丹阳市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 329008 => - [ - - [ - 'address' => '东台市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 329009 => - [ - - [ - 'address' => '兴化市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 329010 => - [ - - [ - 'address' => '淮安市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 329011 => - [ - - [ - 'address' => '宜兴市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 329012 => - [ - - [ - 'address' => '昆山市', - 'start_year' => 1989, - 'end_year' => 1994, - ], - ], - 329013 => - [ - - [ - 'address' => '启东市', - 'start_year' => 1989, - 'end_year' => 1994, - ], - ], - 329014 => - [ - - [ - 'address' => '新沂市', - 'start_year' => 1990, - 'end_year' => 1994, - ], - ], - 329015 => - [ - - [ - 'address' => '溧阳市', - 'start_year' => 1990, - 'end_year' => 1994, - ], - ], - 329016 => - [ - - [ - 'address' => '如皋市', - 'start_year' => 1991, - 'end_year' => 1994, - ], - ], - 329017 => - [ - - [ - 'address' => '高邮市', - 'start_year' => 1991, - 'end_year' => 1994, - ], - ], - 329018 => - [ - - [ - 'address' => '吴江市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 329019 => - [ - - [ - 'address' => '邳州市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 329020 => - [ - - [ - 'address' => '泰兴市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 329021 => - [ - - [ - 'address' => '通州市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 329022 => - [ - - [ - 'address' => '太仓市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 329023 => - [ - - [ - 'address' => '靖江市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 329024 => - [ - - [ - 'address' => '金坛市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 329025 => - [ - - [ - 'address' => '江都市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 329026 => - [ - - [ - 'address' => '海门市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 329027 => - [ - - [ - 'address' => '扬中市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 329028 => - [ - - [ - 'address' => '姜堰市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 330000 => - [ - - [ - 'address' => '浙江省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330100 => - [ - - [ - 'address' => '杭州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330102 => - [ - - [ - 'address' => '上城区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330103 => - [ - - [ - 'address' => '下城区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330104 => - [ - - [ - 'address' => '江干区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330105 => - [ - - [ - 'address' => '拱墅区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330106 => - [ - - [ - 'address' => '西湖区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330107 => - [ - - [ - 'address' => '半山区', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 330108 => - [ - - [ - 'address' => '滨江区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 330109 => - [ - - [ - 'address' => '萧山区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 330110 => - [ - - [ - 'address' => '余杭区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 330111 => - [ - - [ - 'address' => '富阳区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 330112 => - [ - - [ - 'address' => '临安区', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 330121 => - [ - - [ - 'address' => '萧山县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 330122 => - [ - - [ - 'address' => '桐庐县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330123 => - [ - - [ - 'address' => '富阳县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 330124 => - [ - - [ - 'address' => '临安县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 330125 => - [ - - [ - 'address' => '余杭县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 330126 => - [ - - [ - 'address' => '建德县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 330127 => - [ - - [ - 'address' => '淳安县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330181 => - [ - - [ - 'address' => '萧山市', - 'start_year' => 1995, - 'end_year' => 2000, - ], - ], - 330182 => - [ - - [ - 'address' => '建德市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330183 => - [ - - [ - 'address' => '富阳市', - 'start_year' => 1995, - 'end_year' => 2013, - ], - ], - 330184 => - [ - - [ - 'address' => '余杭市', - 'start_year' => 1995, - 'end_year' => 2000, - ], - ], - 330185 => - [ - - [ - 'address' => '临安市', - 'start_year' => 1996, - 'end_year' => 2016, - ], - ], - 330200 => - [ - - [ - 'address' => '宁波市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330202 => - [ - - [ - 'address' => '镇明区', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 330203 => - [ - - [ - 'address' => '海曙区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330204 => - [ - - [ - 'address' => '江东区', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 330205 => - [ - - [ - 'address' => '江北区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330206 => - [ - - [ - 'address' => '滨海区', - 'start_year' => 1985, - 'end_year' => 1986, - ], - - [ - 'address' => '北仑区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 330211 => - [ - - [ - 'address' => '镇海区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 330212 => - [ - - [ - 'address' => '鄞州区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 330213 => - [ - - [ - 'address' => '奉化区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 330219 => - [ - - [ - 'address' => '余姚市', - 'start_year' => 1985, - 'end_year' => 1985, - ], - ], - 330221 => - [ - - [ - 'address' => '镇海县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 330222 => - [ - - [ - 'address' => '慈溪县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 330223 => - [ - - [ - 'address' => '余姚县', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 330224 => - [ - - [ - 'address' => '奉化县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 330225 => - [ - - [ - 'address' => '象山县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330226 => - [ - - [ - 'address' => '宁海县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330227 => - [ - - [ - 'address' => '鄞县', - 'start_year' => 1983, - 'end_year' => 2001, - ], - ], - 330281 => - [ - - [ - 'address' => '余姚市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330282 => - [ - - [ - 'address' => '慈溪市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330283 => - [ - - [ - 'address' => '奉化市', - 'start_year' => 1995, - 'end_year' => 2015, - ], - ], - 330300 => - [ - - [ - 'address' => '温州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 330301 => - [ - - [ - 'address' => '东城区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 330302 => - [ - - [ - 'address' => '南城区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '城区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '鹿城区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 330303 => - [ - - [ - 'address' => '西城区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '龙湾区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 330304 => - [ - - [ - 'address' => '瓯海区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 330305 => - [ - - [ - 'address' => '洞头区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 330321 => - [ - - [ - 'address' => '洞头县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '瓯海县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 330322 => - [ - - [ - 'address' => '永嘉县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '洞头县', - 'start_year' => 1982, - 'end_year' => 2014, - ], - ], - 330323 => - [ - - [ - 'address' => '瑞安县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '乐清县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 330324 => - [ - - [ - 'address' => '文成县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '永嘉县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 330325 => - [ - - [ - 'address' => '平阳县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '瑞安县', - 'start_year' => 1982, - 'end_year' => 1986, - ], - ], - 330326 => - [ - - [ - 'address' => '乐清县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '平阳县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 330327 => - [ - - [ - 'address' => '泰顺县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '苍南县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 330328 => - [ - - [ - 'address' => '瓯海县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '文成县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 330329 => - [ - - [ - 'address' => '苍南县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '泰顺县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 330381 => - [ - - [ - 'address' => '瑞安市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330382 => - [ - - [ - 'address' => '乐清市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330400 => - [ - - [ - 'address' => '嘉兴市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330402 => - [ - - [ - 'address' => '城区', - 'start_year' => 1983, - 'end_year' => 1992, - ], - - [ - 'address' => '秀城区', - 'start_year' => 1993, - 'end_year' => 2004, - ], - - [ - 'address' => '南湖区', - 'start_year' => 2005, - 'end_year' => '', - ], - ], - 330411 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1998, - ], - - [ - 'address' => '秀洲区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 330421 => - [ - - [ - 'address' => '嘉善县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330422 => - [ - - [ - 'address' => '平湖县', - 'start_year' => 1983, - 'end_year' => 1990, - ], - ], - 330423 => - [ - - [ - 'address' => '海宁县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 330424 => - [ - - [ - 'address' => '海盐县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330425 => - [ - - [ - 'address' => '桐乡县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 330481 => - [ - - [ - 'address' => '海宁市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330482 => - [ - - [ - 'address' => '平湖市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330483 => - [ - - [ - 'address' => '桐乡市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330500 => - [ - - [ - 'address' => '湖州市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330502 => - [ - - [ - 'address' => '城区', - 'start_year' => 1983, - 'end_year' => 1987, - ], - - [ - 'address' => '吴兴区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 330503 => - [ - - [ - 'address' => '南浔区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 330511 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 330521 => - [ - - [ - 'address' => '德清县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330522 => - [ - - [ - 'address' => '长兴县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330523 => - [ - - [ - 'address' => '安吉县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330600 => - [ - - [ - 'address' => '绍兴市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330602 => - [ - - [ - 'address' => '越城区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330603 => - [ - - [ - 'address' => '柯桥区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 330604 => - [ - - [ - 'address' => '上虞区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 330621 => - [ - - [ - 'address' => '绍兴县', - 'start_year' => 1983, - 'end_year' => 2012, - ], - ], - 330622 => - [ - - [ - 'address' => '上虞县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 330623 => - [ - - [ - 'address' => '嵊县', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 330624 => - [ - - [ - 'address' => '新昌县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 330625 => - [ - - [ - 'address' => '诸暨县', - 'start_year' => 1983, - 'end_year' => 1988, - ], - ], - 330681 => - [ - - [ - 'address' => '诸暨市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330682 => - [ - - [ - 'address' => '上虞市', - 'start_year' => 1995, - 'end_year' => 2012, - ], - ], - 330683 => - [ - - [ - 'address' => '嵊州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330700 => - [ - - [ - 'address' => '金华市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 330701 => - [ - - [ - 'address' => '兰溪市', - 'start_year' => 1985, - 'end_year' => 1985, - ], - ], - 330702 => - [ - - [ - 'address' => '婺城区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 330703 => - [ - - [ - 'address' => '金东区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 330721 => - [ - - [ - 'address' => '金华县', - 'start_year' => 1985, - 'end_year' => 1999, - ], - ], - 330722 => - [ - - [ - 'address' => '永康县', - 'start_year' => 1985, - 'end_year' => 1991, - ], - ], - 330723 => - [ - - [ - 'address' => '武义县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 330724 => - [ - - [ - 'address' => '东阳县', - 'start_year' => 1985, - 'end_year' => 1987, - ], - ], - 330725 => - [ - - [ - 'address' => '义乌县', - 'start_year' => 1985, - 'end_year' => 1987, - ], - ], - 330726 => - [ - - [ - 'address' => '浦江县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 330727 => - [ - - [ - 'address' => '磐安县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 330781 => - [ - - [ - 'address' => '兰溪市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330782 => - [ - - [ - 'address' => '义乌市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330783 => - [ - - [ - 'address' => '东阳市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330784 => - [ - - [ - 'address' => '永康市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330800 => - [ - - [ - 'address' => '衢州市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 330802 => - [ - - [ - 'address' => '柯城区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 330803 => - [ - - [ - 'address' => '衢江区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 330821 => - [ - - [ - 'address' => '衢县', - 'start_year' => 1985, - 'end_year' => 2000, - ], - ], - 330822 => - [ - - [ - 'address' => '常山县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 330823 => - [ - - [ - 'address' => '江山县', - 'start_year' => 1985, - 'end_year' => 1986, - ], - ], - 330824 => - [ - - [ - 'address' => '开化县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 330825 => - [ - - [ - 'address' => '龙游县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 330881 => - [ - - [ - 'address' => '江山市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 330900 => - [ - - [ - 'address' => '舟山市', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 330902 => - [ - - [ - 'address' => '定海区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 330903 => - [ - - [ - 'address' => '普陀区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 330921 => - [ - - [ - 'address' => '岱山县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 330922 => - [ - - [ - 'address' => '嵊泗县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 331000 => - [ - - [ - 'address' => '台州市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 331002 => - [ - - [ - 'address' => '椒江区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 331003 => - [ - - [ - 'address' => '黄岩区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 331004 => - [ - - [ - 'address' => '路桥区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 331021 => - [ - - [ - 'address' => '玉环县', - 'start_year' => 1994, - 'end_year' => 2016, - ], - ], - 331022 => - [ - - [ - 'address' => '三门县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 331023 => - [ - - [ - 'address' => '天台县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 331024 => - [ - - [ - 'address' => '仙居县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 331081 => - [ - - [ - 'address' => '温岭市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 331082 => - [ - - [ - 'address' => '临海市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 331083 => - [ - - [ - 'address' => '玉环市', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 331100 => - [ - - [ - 'address' => '丽水市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 331102 => - [ - - [ - 'address' => '莲都区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 331121 => - [ - - [ - 'address' => '青田县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 331122 => - [ - - [ - 'address' => '缙云县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 331123 => - [ - - [ - 'address' => '遂昌县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 331124 => - [ - - [ - 'address' => '松阳县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 331125 => - [ - - [ - 'address' => '云和县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 331126 => - [ - - [ - 'address' => '庆元县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 331127 => - [ - - [ - 'address' => '景宁畲族自治县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 331181 => - [ - - [ - 'address' => '龙泉市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 332100 => - [ - - [ - 'address' => '嘉兴地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332101 => - [ - - [ - 'address' => '湖州市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332102 => - [ - - [ - 'address' => '嘉兴市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332121 => - [ - - [ - 'address' => '嘉兴县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '嘉善县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332122 => - [ - - [ - 'address' => '嘉善县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '平湖县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332123 => - [ - - [ - 'address' => '平湖县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '海宁县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332124 => - [ - - [ - 'address' => '海宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '海盐县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332125 => - [ - - [ - 'address' => '海盐县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '桐乡县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332126 => - [ - - [ - 'address' => '桐乡县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '德清县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332127 => - [ - - [ - 'address' => '德清县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '长兴县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332128 => - [ - - [ - 'address' => '吴兴县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '安吉县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332129 => - [ - - [ - 'address' => '长兴县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332130 => - [ - - [ - 'address' => '安吉县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332200 => - [ - - [ - 'address' => '宁波地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332221 => - [ - - [ - 'address' => '慈溪县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332222 => - [ - - [ - 'address' => '余姚县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332223 => - [ - - [ - 'address' => '奉化县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332224 => - [ - - [ - 'address' => '象山县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332225 => - [ - - [ - 'address' => '宁海县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332226 => - [ - - [ - 'address' => '鄞县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332227 => - [ - - [ - 'address' => '镇海县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332300 => - [ - - [ - 'address' => '绍兴地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332301 => - [ - - [ - 'address' => '绍兴市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 332321 => - [ - - [ - 'address' => '绍兴县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '上虞县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332322 => - [ - - [ - 'address' => '上虞县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '嵊县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332323 => - [ - - [ - 'address' => '嵊县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '新昌县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332324 => - [ - - [ - 'address' => '新昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '诸暨县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 332325 => - [ - - [ - 'address' => '诸暨县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332400 => - [ - - [ - 'address' => '温州地区', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '金华地区', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332401 => - [ - - [ - 'address' => '金华市', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332402 => - [ - - [ - 'address' => '衢州市', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332421 => - [ - - [ - 'address' => '洞头县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '兰溪县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332422 => - [ - - [ - 'address' => '永嘉县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '永康县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332423 => - [ - - [ - 'address' => '瑞安县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '武义县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332424 => - [ - - [ - 'address' => '文成县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '东阳县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332425 => - [ - - [ - 'address' => '平阳县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '义乌县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332426 => - [ - - [ - 'address' => '乐清县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '浦江县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332427 => - [ - - [ - 'address' => '泰顺县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '常山县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332428 => - [ - - [ - 'address' => '江山县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332429 => - [ - - [ - 'address' => '开化县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 332430 => - [ - - [ - 'address' => '龙游县', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 332431 => - [ - - [ - 'address' => '磐安县', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 332500 => - [ - - [ - 'address' => '金华地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '丽水地区', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 332501 => - [ - - [ - 'address' => '金华市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '丽水市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 332502 => - [ - - [ - 'address' => '衢州市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '龙泉市', - 'start_year' => 1990, - 'end_year' => 1994, - ], - ], - 332521 => - [ - - [ - 'address' => '金华县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '丽水县', - 'start_year' => 1982, - 'end_year' => 1985, - ], - ], - 332522 => - [ - - [ - 'address' => '兰溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '青田县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 332523 => - [ - - [ - 'address' => '永康县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '云和县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 332524 => - [ - - [ - 'address' => '武义县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '龙泉县', - 'start_year' => 1982, - 'end_year' => 1989, - ], - ], - 332525 => - [ - - [ - 'address' => '东阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '庆元县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 332526 => - [ - - [ - 'address' => '义乌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '缙云县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 332527 => - [ - - [ - 'address' => '浦江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '遂昌县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 332528 => - [ - - [ - 'address' => '衢县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '松阳县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 332529 => - [ - - [ - 'address' => '常山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '景宁畲族自治县', - 'start_year' => 1984, - 'end_year' => 1999, - ], - ], - 332530 => - [ - - [ - 'address' => '江山县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332531 => - [ - - [ - 'address' => '开化县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332581 => - [ - - [ - 'address' => '龙泉市', - 'start_year' => 1995, - 'end_year' => 1999, - ], - ], - 332582 => - [ - - [ - 'address' => '丽水市', - 'start_year' => 1995, - 'end_year' => 1999, - ], - ], - 332600 => - [ - - [ - 'address' => '丽水地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '台州地区', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 332601 => - [ - - [ - 'address' => '椒江市', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 332602 => - [ - - [ - 'address' => '临海市', - 'start_year' => 1986, - 'end_year' => 1993, - ], - ], - 332603 => - [ - - [ - 'address' => '黄岩市', - 'start_year' => 1989, - 'end_year' => 1993, - ], - ], - 332621 => - [ - - [ - 'address' => '丽水县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '临海县', - 'start_year' => 1982, - 'end_year' => 1985, - ], - ], - 332622 => - [ - - [ - 'address' => '青田县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '黄岩县', - 'start_year' => 1982, - 'end_year' => 1988, - ], - ], - 332623 => - [ - - [ - 'address' => '云和县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '温岭县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 332624 => - [ - - [ - 'address' => '龙泉县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '仙居县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 332625 => - [ - - [ - 'address' => '庆元县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '天台县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 332626 => - [ - - [ - 'address' => '缙云县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '三门县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 332627 => - [ - - [ - 'address' => '遂昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '玉环县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 332700 => - [ - - [ - 'address' => '台州地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '舟山地区', - 'start_year' => 1982, - 'end_year' => 1986, - ], - ], - 332701 => - [ - - [ - 'address' => '椒江市', - 'start_year' => 1981, - 'end_year' => 1981, - ], - ], - 332721 => - [ - - [ - 'address' => '临海县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '定海县', - 'start_year' => 1982, - 'end_year' => 1986, - ], - ], - 332722 => - [ - - [ - 'address' => '黄岩县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '普陀县', - 'start_year' => 1982, - 'end_year' => 1986, - ], - ], - 332723 => - [ - - [ - 'address' => '温岭县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '岱山县', - 'start_year' => 1982, - 'end_year' => 1986, - ], - ], - 332724 => - [ - - [ - 'address' => '仙居县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '嵊泗县', - 'start_year' => 1982, - 'end_year' => 1986, - ], - ], - 332725 => - [ - - [ - 'address' => '天台县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332726 => - [ - - [ - 'address' => '三门县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332727 => - [ - - [ - 'address' => '玉环县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332800 => - [ - - [ - 'address' => '舟山地区', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332821 => - [ - - [ - 'address' => '定海县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332822 => - [ - - [ - 'address' => '普陀县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332823 => - [ - - [ - 'address' => '岱山县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 332824 => - [ - - [ - 'address' => '嵊泗县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 339001 => - [ - - [ - 'address' => '余姚市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 339002 => - [ - - [ - 'address' => '海宁市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 339003 => - [ - - [ - 'address' => '兰溪市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 339004 => - [ - - [ - 'address' => '瑞安市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 339005 => - [ - - [ - 'address' => '萧山市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 339006 => - [ - - [ - 'address' => '江山市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 339007 => - [ - - [ - 'address' => '安徽省', - 'start_year' => 1987, - 'end_year' => 1987, - ], - - [ - 'address' => '义乌市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 339008 => - [ - - [ - 'address' => '合肥市', - 'start_year' => 1987, - 'end_year' => 1987, - ], - - [ - 'address' => '东阳市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 339009 => - [ - - [ - 'address' => '慈溪市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 339010 => - [ - - [ - 'address' => '奉化市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 339011 => - [ - - [ - 'address' => '诸暨市', - 'start_year' => 1989, - 'end_year' => 1994, - ], - ], - 339012 => - [ - - [ - 'address' => '平湖市', - 'start_year' => 1991, - 'end_year' => 1994, - ], - ], - 339013 => - [ - - [ - 'address' => '建德市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 339014 => - [ - - [ - 'address' => '永康市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 339015 => - [ - - [ - 'address' => '上虞市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 339016 => - [ - - [ - 'address' => '桐乡市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 339017 => - [ - - [ - 'address' => '乐清市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 339018 => - [ - - [ - 'address' => '临海市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 339019 => - [ - - [ - 'address' => '富阳市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 339020 => - [ - - [ - 'address' => '温岭市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 339021 => - [ - - [ - 'address' => '余杭市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 340000 => - [ - - [ - 'address' => '安徽省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340100 => - [ - - [ - 'address' => '合肥市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340102 => - [ - - [ - 'address' => '东市区', - 'start_year' => '', - 'end_year' => 2001, - ], - - [ - 'address' => '瑶海区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 340103 => - [ - - [ - 'address' => '中市区', - 'start_year' => '', - 'end_year' => 2001, - ], - - [ - 'address' => '庐阳区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 340104 => - [ - - [ - 'address' => '西市区', - 'start_year' => '', - 'end_year' => 2001, - ], - - [ - 'address' => '蜀山区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 340111 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 2001, - ], - - [ - 'address' => '包河区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 340121 => - [ - - [ - 'address' => '长丰县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340122 => - [ - - [ - 'address' => '肥东县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 340123 => - [ - - [ - 'address' => '肥西县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340124 => - [ - - [ - 'address' => '庐江县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 340181 => - [ - - [ - 'address' => '巢湖市', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 340200 => - [ - - [ - 'address' => '芜湖市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340202 => - [ - - [ - 'address' => '镜湖区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340203 => - [ - - [ - 'address' => '马塘区', - 'start_year' => '', - 'end_year' => 2004, - ], - - [ - 'address' => '弋江区', - 'start_year' => 2005, - 'end_year' => '', - ], - ], - 340204 => - [ - - [ - 'address' => '新芜区', - 'start_year' => '', - 'end_year' => 2004, - ], - ], - 340205 => - [ - - [ - 'address' => '裕溪口区', - 'start_year' => '', - 'end_year' => 1989, - ], - - [ - 'address' => '鸠江区', - 'start_year' => 1990, - 'end_year' => 2004, - ], - ], - 340206 => - [ - - [ - 'address' => '四褐山区', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 340207 => - [ - - [ - 'address' => '鸠江区', - 'start_year' => 2005, - 'end_year' => '', - ], - ], - 340208 => - [ - - [ - 'address' => '三山区', - 'start_year' => 2005, - 'end_year' => '', - ], - ], - 340211 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 340221 => - [ - - [ - 'address' => '芜湖县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340222 => - [ - - [ - 'address' => '繁昌县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340223 => - [ - - [ - 'address' => '南陵县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340224 => - [ - - [ - 'address' => '青阳县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 340225 => - [ - - [ - 'address' => '无为县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 340300 => - [ - - [ - 'address' => '蚌埠市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340302 => - [ - - [ - 'address' => '东市区', - 'start_year' => '', - 'end_year' => 2003, - ], - - [ - 'address' => '龙子湖区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 340303 => - [ - - [ - 'address' => '中市区', - 'start_year' => '', - 'end_year' => 2003, - ], - - [ - 'address' => '蚌山区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 340304 => - [ - - [ - 'address' => '西市区', - 'start_year' => '', - 'end_year' => 2003, - ], - - [ - 'address' => '禹会区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 340311 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 2003, - ], - - [ - 'address' => '淮上区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 340321 => - [ - - [ - 'address' => '怀远县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 340322 => - [ - - [ - 'address' => '五河县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 340323 => - [ - - [ - 'address' => '固镇县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 340400 => - [ - - [ - 'address' => '淮南市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340402 => - [ - - [ - 'address' => '大通区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340403 => - [ - - [ - 'address' => '田家庵区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340404 => - [ - - [ - 'address' => '谢家集区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340405 => - [ - - [ - 'address' => '八公山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340406 => - [ - - [ - 'address' => '潘集区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340421 => - [ - - [ - 'address' => '凤台县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340422 => - [ - - [ - 'address' => '寿县', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 340500 => - [ - - [ - 'address' => '马鞍山市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340502 => - [ - - [ - 'address' => '金家庄区', - 'start_year' => '', - 'end_year' => 2011, - ], - ], - 340503 => - [ - - [ - 'address' => '花山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340504 => - [ - - [ - 'address' => '雨山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340505 => - [ - - [ - 'address' => '向山区', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 340506 => - [ - - [ - 'address' => '博望区', - 'start_year' => 2012, - 'end_year' => '', - ], - ], - 340511 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 340521 => - [ - - [ - 'address' => '当涂县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340522 => - [ - - [ - 'address' => '含山县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 340523 => - [ - - [ - 'address' => '和县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 340600 => - [ - - [ - 'address' => '淮北市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340602 => - [ - - [ - 'address' => '杜集区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340603 => - [ - - [ - 'address' => '相山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340604 => - [ - - [ - 'address' => '烈山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340611 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 340621 => - [ - - [ - 'address' => '濉溪县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340700 => - [ - - [ - 'address' => '铜陵市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340702 => - [ - - [ - 'address' => '铜官山区', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 340703 => - [ - - [ - 'address' => '狮子山区', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 340704 => - [ - - [ - 'address' => '铜山区', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 340705 => - [ - - [ - 'address' => '铜官区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 340706 => - [ - - [ - 'address' => '义安区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 340711 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340721 => - [ - - [ - 'address' => '铜陵县', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 340722 => - [ - - [ - 'address' => '枞阳县', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 340800 => - [ - - [ - 'address' => '安庆市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340802 => - [ - - [ - 'address' => '迎江区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340803 => - [ - - [ - 'address' => '大观区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 340811 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 2004, - ], - - [ - 'address' => '宜秀区', - 'start_year' => 2005, - 'end_year' => '', - ], - ], - 340821 => - [ - - [ - 'address' => '桐城县', - 'start_year' => 1988, - 'end_year' => 1995, - ], - ], - 340822 => - [ - - [ - 'address' => '怀宁县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 340823 => - [ - - [ - 'address' => '枞阳县', - 'start_year' => 1988, - 'end_year' => 2014, - ], - ], - 340824 => - [ - - [ - 'address' => '潜山县', - 'start_year' => 1988, - 'end_year' => 2018, - ], - ], - 340825 => - [ - - [ - 'address' => '太湖县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 340826 => - [ - - [ - 'address' => '宿松县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 340827 => - [ - - [ - 'address' => '望江县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 340828 => - [ - - [ - 'address' => '岳西县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 340881 => - [ - - [ - 'address' => '桐城市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 340882 => - [ - - [ - 'address' => '潜山市', - 'start_year' => 2019, - 'end_year' => '', - ], - ], - 340901 => - [ - - [ - 'address' => '黄山市', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 341000 => - [ - - [ - 'address' => '黄山市', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 341002 => - [ - - [ - 'address' => '屯溪区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 341003 => - [ - - [ - 'address' => '黄山区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 341004 => - [ - - [ - 'address' => '徽州区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 341021 => - [ - - [ - 'address' => '歙县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 341022 => - [ - - [ - 'address' => '休宁县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 341023 => - [ - - [ - 'address' => '黟县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 341024 => - [ - - [ - 'address' => '祁门县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 341100 => - [ - - [ - 'address' => '滁州市', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 341102 => - [ - - [ - 'address' => '琅琊区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 341103 => - [ - - [ - 'address' => '南谯区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 341121 => - [ - - [ - 'address' => '天长县', - 'start_year' => 1992, - 'end_year' => 1992, - ], - ], - 341122 => - [ - - [ - 'address' => '来安县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 341124 => - [ - - [ - 'address' => '全椒县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 341125 => - [ - - [ - 'address' => '定远县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 341126 => - [ - - [ - 'address' => '凤阳县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 341127 => - [ - - [ - 'address' => '嘉山县', - 'start_year' => 1992, - 'end_year' => 1993, - ], - ], - 341181 => - [ - - [ - 'address' => '天长市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 341182 => - [ - - [ - 'address' => '明光市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 341200 => - [ - - [ - 'address' => '阜阳市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 341202 => - [ - - [ - 'address' => '颍州区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 341203 => - [ - - [ - 'address' => '颍东区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 341204 => - [ - - [ - 'address' => '颍泉区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 341221 => - [ - - [ - 'address' => '临泉县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 341222 => - [ - - [ - 'address' => '太和县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 341223 => - [ - - [ - 'address' => '涡阳县', - 'start_year' => 1996, - 'end_year' => 1999, - ], - ], - 341224 => - [ - - [ - 'address' => '蒙城县', - 'start_year' => 1996, - 'end_year' => 1999, - ], - ], - 341225 => - [ - - [ - 'address' => '阜南县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 341226 => - [ - - [ - 'address' => '颍上县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 341227 => - [ - - [ - 'address' => '利辛县', - 'start_year' => 1996, - 'end_year' => 1999, - ], - ], - 341281 => - [ - - [ - 'address' => '亳州市', - 'start_year' => 1996, - 'end_year' => 1999, - ], - ], - 341282 => - [ - - [ - 'address' => '界首市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 341300 => - [ - - [ - 'address' => '宿州市', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 341302 => - [ - - [ - 'address' => '埇桥区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 341321 => - [ - - [ - 'address' => '砀山县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 341322 => - [ - - [ - 'address' => '萧县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 341323 => - [ - - [ - 'address' => '灵璧县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 341324 => - [ - - [ - 'address' => '泗县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 341400 => - [ - - [ - 'address' => '巢湖市', - 'start_year' => 1999, - 'end_year' => 2010, - ], - ], - 341402 => - [ - - [ - 'address' => '居巢区', - 'start_year' => 1999, - 'end_year' => 2010, - ], - ], - 341421 => - [ - - [ - 'address' => '庐江县', - 'start_year' => 1999, - 'end_year' => 2010, - ], - ], - 341422 => - [ - - [ - 'address' => '无为县', - 'start_year' => 1999, - 'end_year' => 2010, - ], - ], - 341423 => - [ - - [ - 'address' => '含山县', - 'start_year' => 1999, - 'end_year' => 2010, - ], - ], - 341424 => - [ - - [ - 'address' => '和县', - 'start_year' => 1999, - 'end_year' => 2010, - ], - ], - 341500 => - [ - - [ - 'address' => '六安市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 341502 => - [ - - [ - 'address' => '金安区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 341503 => - [ - - [ - 'address' => '裕安区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 341504 => - [ - - [ - 'address' => '叶集区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 341521 => - [ - - [ - 'address' => '寿县', - 'start_year' => 1999, - 'end_year' => 2014, - ], - ], - 341522 => - [ - - [ - 'address' => '霍邱县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 341523 => - [ - - [ - 'address' => '舒城县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 341524 => - [ - - [ - 'address' => '金寨县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 341525 => - [ - - [ - 'address' => '霍山县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 341600 => - [ - - [ - 'address' => '亳州市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341602 => - [ - - [ - 'address' => '谯城区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341621 => - [ - - [ - 'address' => '涡阳县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341622 => - [ - - [ - 'address' => '蒙城县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341623 => - [ - - [ - 'address' => '利辛县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341700 => - [ - - [ - 'address' => '池州市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341702 => - [ - - [ - 'address' => '贵池区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341721 => - [ - - [ - 'address' => '东至县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341722 => - [ - - [ - 'address' => '石台县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341723 => - [ - - [ - 'address' => '青阳县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341800 => - [ - - [ - 'address' => '宣城市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341802 => - [ - - [ - 'address' => '宣州区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341821 => - [ - - [ - 'address' => '郎溪县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341822 => - [ - - [ - 'address' => '广德县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341823 => - [ - - [ - 'address' => '泾县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341824 => - [ - - [ - 'address' => '绩溪县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341825 => - [ - - [ - 'address' => '旌德县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 341881 => - [ - - [ - 'address' => '宁国市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 342100 => - [ - - [ - 'address' => '阜阳地区', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 342101 => - [ - - [ - 'address' => '阜阳市', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 342102 => - [ - - [ - 'address' => '亳州市', - 'start_year' => 1986, - 'end_year' => 1995, - ], - ], - 342103 => - [ - - [ - 'address' => '界首市', - 'start_year' => 1989, - 'end_year' => 1995, - ], - ], - 342121 => - [ - - [ - 'address' => '阜阳县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 342122 => - [ - - [ - 'address' => '临泉县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 342123 => - [ - - [ - 'address' => '太和县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 342124 => - [ - - [ - 'address' => '涡阳县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 342125 => - [ - - [ - 'address' => '蒙城县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 342126 => - [ - - [ - 'address' => '亳县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 342127 => - [ - - [ - 'address' => '阜南县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 342128 => - [ - - [ - 'address' => '颍上县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 342129 => - [ - - [ - 'address' => '界首县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 342130 => - [ - - [ - 'address' => '利辛县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 342200 => - [ - - [ - 'address' => '宿县地区', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 342201 => - [ - - [ - 'address' => '宿州市', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 342221 => - [ - - [ - 'address' => '砀山县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 342222 => - [ - - [ - 'address' => '萧县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 342223 => - [ - - [ - 'address' => '宿县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 342224 => - [ - - [ - 'address' => '灵璧县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 342225 => - [ - - [ - 'address' => '泗县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 342226 => - [ - - [ - 'address' => '怀远县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 342227 => - [ - - [ - 'address' => '五河县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 342228 => - [ - - [ - 'address' => '固镇县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 342300 => - [ - - [ - 'address' => '滁县地区', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 342301 => - [ - - [ - 'address' => '滁州市', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 342321 => - [ - - [ - 'address' => '天长县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 342322 => - [ - - [ - 'address' => '来安县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 342323 => - [ - - [ - 'address' => '滁县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 342324 => - [ - - [ - 'address' => '全椒县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 342325 => - [ - - [ - 'address' => '定远县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 342326 => - [ - - [ - 'address' => '凤阳县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 342327 => - [ - - [ - 'address' => '嘉山县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 342400 => - [ - - [ - 'address' => '六安地区', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342401 => - [ - - [ - 'address' => '六安市', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342421 => - [ - - [ - 'address' => '六安县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 342422 => - [ - - [ - 'address' => '寿县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342423 => - [ - - [ - 'address' => '霍邱县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342424 => - [ - - [ - 'address' => '肥西县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 342425 => - [ - - [ - 'address' => '舒城县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342426 => - [ - - [ - 'address' => '金寨县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342427 => - [ - - [ - 'address' => '霍山县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342500 => - [ - - [ - 'address' => '宣城地区', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 342501 => - [ - - [ - 'address' => '宣城市', - 'start_year' => 1987, - 'end_year' => 1999, - ], - ], - 342502 => - [ - - [ - 'address' => '宁国市', - 'start_year' => 1997, - 'end_year' => 1999, - ], - ], - 342521 => - [ - - [ - 'address' => '宣城县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 342522 => - [ - - [ - 'address' => '郎溪县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 342523 => - [ - - [ - 'address' => '广德县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 342524 => - [ - - [ - 'address' => '宁国县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 342525 => - [ - - [ - 'address' => '当涂县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 342526 => - [ - - [ - 'address' => '繁昌县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 342527 => - [ - - [ - 'address' => '南陵县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 342528 => - [ - - [ - 'address' => '青阳县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 342529 => - [ - - [ - 'address' => '泾县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 342530 => - [ - - [ - 'address' => '旌德县', - 'start_year' => 1987, - 'end_year' => 1999, - ], - ], - 342531 => - [ - - [ - 'address' => '绩溪县', - 'start_year' => 1987, - 'end_year' => 1999, - ], - ], - 342600 => - [ - - [ - 'address' => '巢湖地区', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342601 => - [ - - [ - 'address' => '巢湖市', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 342621 => - [ - - [ - 'address' => '肥东县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 342622 => - [ - - [ - 'address' => '庐江县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342623 => - [ - - [ - 'address' => '无为县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342624 => - [ - - [ - 'address' => '巢县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 342625 => - [ - - [ - 'address' => '含山县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342626 => - [ - - [ - 'address' => '和县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 342700 => - [ - - [ - 'address' => '徽州地区', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 342701 => - [ - - [ - 'address' => '屯溪市', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 342721 => - [ - - [ - 'address' => '绩溪县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 342722 => - [ - - [ - 'address' => '旌德县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 342723 => - [ - - [ - 'address' => '歙县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 342724 => - [ - - [ - 'address' => '休宁县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 342725 => - [ - - [ - 'address' => '黟县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 342726 => - [ - - [ - 'address' => '祁门县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 342727 => - [ - - [ - 'address' => '太平县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 342728 => - [ - - [ - 'address' => '石台县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 342800 => - [ - - [ - 'address' => '安庆地区', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 342821 => - [ - - [ - 'address' => '怀宁县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 342822 => - [ - - [ - 'address' => '桐城县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 342823 => - [ - - [ - 'address' => '枞阳县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 342824 => - [ - - [ - 'address' => '潜山县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 342825 => - [ - - [ - 'address' => '太湖县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 342826 => - [ - - [ - 'address' => '宿松县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 342827 => - [ - - [ - 'address' => '望江县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 342828 => - [ - - [ - 'address' => '岳西县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 342829 => - [ - - [ - 'address' => '东至县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 342830 => - [ - - [ - 'address' => '贵池县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 342831 => - [ - - [ - 'address' => '石台县', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 342900 => - [ - - [ - 'address' => '池州地区', - 'start_year' => 1988, - 'end_year' => 1999, - ], - ], - 342901 => - [ - - [ - 'address' => '贵池市', - 'start_year' => 1988, - 'end_year' => 1999, - ], - ], - 342921 => - [ - - [ - 'address' => '东至县', - 'start_year' => 1988, - 'end_year' => 1999, - ], - ], - 342922 => - [ - - [ - 'address' => '石台县', - 'start_year' => 1988, - 'end_year' => 1999, - ], - ], - 342923 => - [ - - [ - 'address' => '青阳县', - 'start_year' => 1988, - 'end_year' => 1999, - ], - ], - 349001 => - [ - - [ - 'address' => '天长市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 349002 => - [ - - [ - 'address' => '明光市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 350000 => - [ - - [ - 'address' => '福建省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 350100 => - [ - - [ - 'address' => '福州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 350102 => - [ - - [ - 'address' => '鼓楼区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 350103 => - [ - - [ - 'address' => '台江区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 350104 => - [ - - [ - 'address' => '仓山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 350105 => - [ - - [ - 'address' => '马尾区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 350111 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1994, - ], - - [ - 'address' => '晋安区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 350112 => - [ - - [ - 'address' => '长乐区', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 350121 => - [ - - [ - 'address' => '闽侯县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 350122 => - [ - - [ - 'address' => '连江县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350123 => - [ - - [ - 'address' => '罗源县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350124 => - [ - - [ - 'address' => '闽清县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350125 => - [ - - [ - 'address' => '永泰县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350126 => - [ - - [ - 'address' => '长乐县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 350127 => - [ - - [ - 'address' => '福清县', - 'start_year' => 1983, - 'end_year' => 1989, - ], - ], - 350128 => - [ - - [ - 'address' => '平潭县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350181 => - [ - - [ - 'address' => '福清市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 350182 => - [ - - [ - 'address' => '长乐市', - 'start_year' => 1995, - 'end_year' => 2016, - ], - ], - 350200 => - [ - - [ - 'address' => '厦门市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 350202 => - [ - - [ - 'address' => '鼓浪屿区', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 350203 => - [ - - [ - 'address' => '思明区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 350204 => - [ - - [ - 'address' => '开元区', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 350205 => - [ - - [ - 'address' => '杏林区', - 'start_year' => '', - 'end_year' => 2002, - ], - - [ - 'address' => '海沧区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 350206 => - [ - - [ - 'address' => '湖里区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 350211 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1986, - ], - - [ - 'address' => '集美区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 350212 => - [ - - [ - 'address' => '同安区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 350213 => - [ - - [ - 'address' => '翔安区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 350221 => - [ - - [ - 'address' => '同安县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 350300 => - [ - - [ - 'address' => '莆田市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350302 => - [ - - [ - 'address' => '城厢区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350303 => - [ - - [ - 'address' => '涵江区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350304 => - [ - - [ - 'address' => '荔城区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 350305 => - [ - - [ - 'address' => '秀屿区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 350321 => - [ - - [ - 'address' => '莆田县', - 'start_year' => 1983, - 'end_year' => 2001, - ], - ], - 350322 => - [ - - [ - 'address' => '仙游县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350400 => - [ - - [ - 'address' => '三明市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350402 => - [ - - [ - 'address' => '梅列区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350403 => - [ - - [ - 'address' => '三元区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350420 => - [ - - [ - 'address' => '永安市', - 'start_year' => 1985, - 'end_year' => 1985, - ], - ], - 350421 => - [ - - [ - 'address' => '明溪县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350422 => - [ - - [ - 'address' => '永安县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 350423 => - [ - - [ - 'address' => '清流县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350424 => - [ - - [ - 'address' => '宁化县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350425 => - [ - - [ - 'address' => '大田县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350426 => - [ - - [ - 'address' => '尤溪县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350427 => - [ - - [ - 'address' => '沙县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350428 => - [ - - [ - 'address' => '将乐县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350429 => - [ - - [ - 'address' => '泰宁县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350430 => - [ - - [ - 'address' => '建宁县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 350481 => - [ - - [ - 'address' => '永安市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 350500 => - [ - - [ - 'address' => '泉州市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350501 => - [ - - [ - 'address' => '永安市', - 'start_year' => 1984, - 'end_year' => 1984, - ], - ], - 350502 => - [ - - [ - 'address' => '鲤城区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350503 => - [ - - [ - 'address' => '丰泽区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 350504 => - [ - - [ - 'address' => '洛江区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 350505 => - [ - - [ - 'address' => '泉港区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 350521 => - [ - - [ - 'address' => '惠安县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350522 => - [ - - [ - 'address' => '晋江县', - 'start_year' => 1985, - 'end_year' => 1991, - ], - ], - 350523 => - [ - - [ - 'address' => '南安县', - 'start_year' => 1985, - 'end_year' => 1992, - ], - ], - 350524 => - [ - - [ - 'address' => '安溪县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350525 => - [ - - [ - 'address' => '永春县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350526 => - [ - - [ - 'address' => '德化县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350527 => - [ - - [ - 'address' => '金门县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350581 => - [ - - [ - 'address' => '石狮市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 350582 => - [ - - [ - 'address' => '晋江市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 350583 => - [ - - [ - 'address' => '南安市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 350600 => - [ - - [ - 'address' => '漳州市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350602 => - [ - - [ - 'address' => '芗城区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350603 => - [ - - [ - 'address' => '龙文区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 350621 => - [ - - [ - 'address' => '龙海县', - 'start_year' => 1985, - 'end_year' => 1992, - ], - ], - 350622 => - [ - - [ - 'address' => '云霄县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350623 => - [ - - [ - 'address' => '漳浦县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350624 => - [ - - [ - 'address' => '诏安县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350625 => - [ - - [ - 'address' => '长泰县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350626 => - [ - - [ - 'address' => '东山县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350627 => - [ - - [ - 'address' => '南靖县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350628 => - [ - - [ - 'address' => '平和县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350629 => - [ - - [ - 'address' => '华安县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 350681 => - [ - - [ - 'address' => '龙海市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 350700 => - [ - - [ - 'address' => '南平市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 350702 => - [ - - [ - 'address' => '延平区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 350703 => - [ - - [ - 'address' => '建阳区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 350721 => - [ - - [ - 'address' => '顺昌县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 350722 => - [ - - [ - 'address' => '浦城县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 350723 => - [ - - [ - 'address' => '光泽县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 350724 => - [ - - [ - 'address' => '松溪县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 350725 => - [ - - [ - 'address' => '政和县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 350781 => - [ - - [ - 'address' => '邵武市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 350782 => - [ - - [ - 'address' => '武夷山市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 350783 => - [ - - [ - 'address' => '建瓯市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 350784 => - [ - - [ - 'address' => '建阳市', - 'start_year' => 1995, - 'end_year' => 2013, - ], - ], - 350800 => - [ - - [ - 'address' => '龙岩市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 350802 => - [ - - [ - 'address' => '新罗区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 350803 => - [ - - [ - 'address' => '永定区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 350821 => - [ - - [ - 'address' => '长汀县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 350822 => - [ - - [ - 'address' => '永定县', - 'start_year' => 1996, - 'end_year' => 2013, - ], - ], - 350823 => - [ - - [ - 'address' => '上杭县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 350824 => - [ - - [ - 'address' => '武平县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 350825 => - [ - - [ - 'address' => '连城县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 350881 => - [ - - [ - 'address' => '漳平市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 350900 => - [ - - [ - 'address' => '宁德市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 350902 => - [ - - [ - 'address' => '蕉城区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 350921 => - [ - - [ - 'address' => '霞浦县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 350922 => - [ - - [ - 'address' => '古田县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 350923 => - [ - - [ - 'address' => '屏南县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 350924 => - [ - - [ - 'address' => '寿宁县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 350925 => - [ - - [ - 'address' => '周宁县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 350926 => - [ - - [ - 'address' => '柘荣县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 350981 => - [ - - [ - 'address' => '福安市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 350982 => - [ - - [ - 'address' => '福鼎市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 352100 => - [ - - [ - 'address' => '建阳地区', - 'start_year' => 1982, - 'end_year' => 1987, - ], - - [ - 'address' => '南平地区', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 352101 => - [ - - [ - 'address' => '南平市', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 352102 => - [ - - [ - 'address' => '邵武市', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 352103 => - [ - - [ - 'address' => '武夷山市', - 'start_year' => 1989, - 'end_year' => 1993, - ], - ], - 352104 => - [ - - [ - 'address' => '建瓯市', - 'start_year' => 1992, - 'end_year' => 1993, - ], - ], - 352121 => - [ - - [ - 'address' => '顺昌县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 352122 => - [ - - [ - 'address' => '建阳县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 352123 => - [ - - [ - 'address' => '建瓯县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 352124 => - [ - - [ - 'address' => '浦城县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 352125 => - [ - - [ - 'address' => '邵武县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352126 => - [ - - [ - 'address' => '崇安县', - 'start_year' => 1982, - 'end_year' => 1988, - ], - ], - 352127 => - [ - - [ - 'address' => '光泽县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 352128 => - [ - - [ - 'address' => '松溪县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 352129 => - [ - - [ - 'address' => '政和县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 352200 => - [ - - [ - 'address' => '建阳地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宁德地区', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 352201 => - [ - - [ - 'address' => '南平市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宁德市', - 'start_year' => 1988, - 'end_year' => 1998, - ], - ], - 352202 => - [ - - [ - 'address' => '福安市', - 'start_year' => 1989, - 'end_year' => 1998, - ], - ], - 352203 => - [ - - [ - 'address' => '福鼎市', - 'start_year' => 1995, - 'end_year' => 1998, - ], - ], - 352221 => - [ - - [ - 'address' => '顺昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宁德县', - 'start_year' => 1982, - 'end_year' => 1987, - ], - ], - 352222 => - [ - - [ - 'address' => '建阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '连江县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352223 => - [ - - [ - 'address' => '建瓯县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '罗源县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352224 => - [ - - [ - 'address' => '浦城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '福鼎县', - 'start_year' => 1982, - 'end_year' => 1994, - ], - ], - 352225 => - [ - - [ - 'address' => '邵武县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '霞浦县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 352226 => - [ - - [ - 'address' => '崇安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '福安县', - 'start_year' => 1982, - 'end_year' => 1988, - ], - ], - 352227 => - [ - - [ - 'address' => '光泽县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '古田县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 352228 => - [ - - [ - 'address' => '松溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '屏南县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 352229 => - [ - - [ - 'address' => '政和县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '寿宁县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 352230 => - [ - - [ - 'address' => '周宁县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 352231 => - [ - - [ - 'address' => '柘荣县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 352300 => - [ - - [ - 'address' => '宁德地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '莆田地区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352321 => - [ - - [ - 'address' => '宁德县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '闽清县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352322 => - [ - - [ - 'address' => '连江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '永泰县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352323 => - [ - - [ - 'address' => '罗源县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '长乐县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352324 => - [ - - [ - 'address' => '福鼎县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '福清县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352325 => - [ - - [ - 'address' => '霞浦县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '平潭县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352326 => - [ - - [ - 'address' => '福安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '莆田县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352327 => - [ - - [ - 'address' => '古田县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '仙游县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352328 => - [ - - [ - 'address' => '屏南县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352329 => - [ - - [ - 'address' => '寿宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352330 => - [ - - [ - 'address' => '周宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352331 => - [ - - [ - 'address' => '柘荣县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352400 => - [ - - [ - 'address' => '莆田地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '晋江地区', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352401 => - [ - - [ - 'address' => '泉州市', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352421 => - [ - - [ - 'address' => '闽清县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '惠安县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352422 => - [ - - [ - 'address' => '永泰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '晋江县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352423 => - [ - - [ - 'address' => '长乐县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南安县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352424 => - [ - - [ - 'address' => '福清县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '安溪县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352425 => - [ - - [ - 'address' => '平潭县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '永春县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352426 => - [ - - [ - 'address' => '莆田县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '德化县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352427 => - [ - - [ - 'address' => '仙游县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '金门县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352500 => - [ - - [ - 'address' => '晋江地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '龙溪地区', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352501 => - [ - - [ - 'address' => '泉州市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '漳州市', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352521 => - [ - - [ - 'address' => '惠安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '龙海县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352522 => - [ - - [ - 'address' => '晋江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '云霄县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352523 => - [ - - [ - 'address' => '南安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '漳浦县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352524 => - [ - - [ - 'address' => '安溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '诏安县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352525 => - [ - - [ - 'address' => '永春县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '长泰县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352526 => - [ - - [ - 'address' => '德化县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '东山县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352527 => - [ - - [ - 'address' => '金门县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南靖县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352528 => - [ - - [ - 'address' => '平和县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352529 => - [ - - [ - 'address' => '华安县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 352600 => - [ - - [ - 'address' => '龙溪地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '龙岩地区', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 352601 => - [ - - [ - 'address' => '漳州市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '龙岩市', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 352602 => - [ - - [ - 'address' => '漳平市', - 'start_year' => 1990, - 'end_year' => 1995, - ], - ], - 352621 => - [ - - [ - 'address' => '龙海县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352622 => - [ - - [ - 'address' => '云霄县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '长汀县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 352623 => - [ - - [ - 'address' => '漳浦县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '永定县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 352624 => - [ - - [ - 'address' => '诏安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '上杭县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 352625 => - [ - - [ - 'address' => '长泰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '武平县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 352626 => - [ - - [ - 'address' => '东山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '漳平县', - 'start_year' => 1982, - 'end_year' => 1989, - ], - ], - 352627 => - [ - - [ - 'address' => '南靖县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '连城县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 352628 => - [ - - [ - 'address' => '平和县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352629 => - [ - - [ - 'address' => '华安县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352700 => - [ - - [ - 'address' => '龙岩地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '三明地区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352701 => - [ - - [ - 'address' => '龙岩市', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '三明市', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352721 => - [ - - [ - 'address' => '龙岩县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '明溪县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352722 => - [ - - [ - 'address' => '长汀县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '永安县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352723 => - [ - - [ - 'address' => '永定县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '清流县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352724 => - [ - - [ - 'address' => '上杭县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宁化县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352725 => - [ - - [ - 'address' => '武平县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '大田县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352726 => - [ - - [ - 'address' => '漳平县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '尤溪县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352727 => - [ - - [ - 'address' => '连城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '沙县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352728 => - [ - - [ - 'address' => '将乐县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352729 => - [ - - [ - 'address' => '泰宁县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352730 => - [ - - [ - 'address' => '建宁县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 352800 => - [ - - [ - 'address' => '三明地区', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352801 => - [ - - [ - 'address' => '三明市', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352821 => - [ - - [ - 'address' => '明溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352822 => - [ - - [ - 'address' => '永安县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352823 => - [ - - [ - 'address' => '清流县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352824 => - [ - - [ - 'address' => '宁化县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352825 => - [ - - [ - 'address' => '大田县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352826 => - [ - - [ - 'address' => '尤溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352827 => - [ - - [ - 'address' => '沙县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352828 => - [ - - [ - 'address' => '将乐县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352829 => - [ - - [ - 'address' => '泰宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 352830 => - [ - - [ - 'address' => '建宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 359001 => - [ - - [ - 'address' => '永安市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 359002 => - [ - - [ - 'address' => '石狮市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 359003 => - [ - - [ - 'address' => '福清市', - 'start_year' => 1990, - 'end_year' => 1994, - ], - ], - 359004 => - [ - - [ - 'address' => '晋江市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 359005 => - [ - - [ - 'address' => '南安市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 359006 => - [ - - [ - 'address' => '龙海市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 359007 => - [ - - [ - 'address' => '邵武市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 359008 => - [ - - [ - 'address' => '武夷山市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 359009 => - [ - - [ - 'address' => '建瓯市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 359010 => - [ - - [ - 'address' => '建阳市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 359011 => - [ - - [ - 'address' => '长乐市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 360000 => - [ - - [ - 'address' => '江西省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360100 => - [ - - [ - 'address' => '南昌市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360102 => - [ - - [ - 'address' => '东湖区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360103 => - [ - - [ - 'address' => '西湖区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360104 => - [ - - [ - 'address' => '青云谱区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360105 => - [ - - [ - 'address' => '湾里区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360111 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 2001, - ], - - [ - 'address' => '青山湖区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 360112 => - [ - - [ - 'address' => '新建区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 360121 => - [ - - [ - 'address' => '新建县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南昌县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 360122 => - [ - - [ - 'address' => '南昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '新建县', - 'start_year' => 1982, - 'end_year' => 2014, - ], - ], - 360123 => - [ - - [ - 'address' => '安义县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360124 => - [ - - [ - 'address' => '进贤县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360200 => - [ - - [ - 'address' => '景德镇市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360202 => - [ - - [ - 'address' => '昌江区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360203 => - [ - - [ - 'address' => '珠山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360211 => - [ - - [ - 'address' => '鹅湖区', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 360212 => - [ - - [ - 'address' => '蛟潭区', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 360221 => - [ - - [ - 'address' => '乐平县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 360222 => - [ - - [ - 'address' => '浮梁县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 360281 => - [ - - [ - 'address' => '乐平市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 360300 => - [ - - [ - 'address' => '萍乡市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360302 => - [ - - [ - 'address' => '城关区', - 'start_year' => '', - 'end_year' => 1992, - ], - - [ - 'address' => '安源区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 360311 => - [ - - [ - 'address' => '上栗区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 360312 => - [ - - [ - 'address' => '芦溪区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 360313 => - [ - - [ - 'address' => '湘东区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360321 => - [ - - [ - 'address' => '莲花县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 360322 => - [ - - [ - 'address' => '上栗县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 360323 => - [ - - [ - 'address' => '芦溪县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 360400 => - [ - - [ - 'address' => '九江市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360402 => - [ - - [ - 'address' => '庐山区', - 'start_year' => '', - 'end_year' => 2015, - ], - - [ - 'address' => '濂溪区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 360403 => - [ - - [ - 'address' => '浔阳区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 360404 => - [ - - [ - 'address' => '柴桑区', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 360411 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 360421 => - [ - - [ - 'address' => '九江县', - 'start_year' => 1983, - 'end_year' => 2016, - ], - ], - 360422 => - [ - - [ - 'address' => '瑞昌县', - 'start_year' => 1983, - 'end_year' => 1988, - ], - ], - 360423 => - [ - - [ - 'address' => '武宁县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360424 => - [ - - [ - 'address' => '修水县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360425 => - [ - - [ - 'address' => '永修县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360426 => - [ - - [ - 'address' => '德安县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360427 => - [ - - [ - 'address' => '星子县', - 'start_year' => 1983, - 'end_year' => 2015, - ], - ], - 360428 => - [ - - [ - 'address' => '都昌县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360429 => - [ - - [ - 'address' => '湖口县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360430 => - [ - - [ - 'address' => '彭泽县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360481 => - [ - - [ - 'address' => '瑞昌市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 360482 => - [ - - [ - 'address' => '共青城市', - 'start_year' => 2010, - 'end_year' => '', - ], - ], - 360483 => - [ - - [ - 'address' => '庐山市', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 360500 => - [ - - [ - 'address' => '新余市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360502 => - [ - - [ - 'address' => '渝水区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360521 => - [ - - [ - 'address' => '井冈山', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '分宜县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360600 => - [ - - [ - 'address' => '鹰潭市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360602 => - [ - - [ - 'address' => '月湖区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 360603 => - [ - - [ - 'address' => '余江区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 360621 => - [ - - [ - 'address' => '贵溪县', - 'start_year' => 1983, - 'end_year' => 1995, - ], - ], - 360622 => - [ - - [ - 'address' => '余江县', - 'start_year' => 1983, - 'end_year' => 2017, - ], - ], - 360681 => - [ - - [ - 'address' => '贵溪市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 360700 => - [ - - [ - 'address' => '赣州市', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360702 => - [ - - [ - 'address' => '章贡区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360703 => - [ - - [ - 'address' => '南康区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 360704 => - [ - - [ - 'address' => '赣县区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 360721 => - [ - - [ - 'address' => '赣县', - 'start_year' => 1998, - 'end_year' => 2015, - ], - ], - 360722 => - [ - - [ - 'address' => '信丰县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360723 => - [ - - [ - 'address' => '大余县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360724 => - [ - - [ - 'address' => '上犹县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360725 => - [ - - [ - 'address' => '崇义县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360726 => - [ - - [ - 'address' => '安远县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360727 => - [ - - [ - 'address' => '龙南县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360728 => - [ - - [ - 'address' => '定南县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360729 => - [ - - [ - 'address' => '全南县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360730 => - [ - - [ - 'address' => '宁都县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360731 => - [ - - [ - 'address' => '于都县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360732 => - [ - - [ - 'address' => '兴国县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360733 => - [ - - [ - 'address' => '会昌县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360734 => - [ - - [ - 'address' => '寻乌县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360735 => - [ - - [ - 'address' => '石城县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360781 => - [ - - [ - 'address' => '瑞金市', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 360782 => - [ - - [ - 'address' => '南康市', - 'start_year' => 1998, - 'end_year' => 2012, - ], - ], - 360800 => - [ - - [ - 'address' => '吉安市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360802 => - [ - - [ - 'address' => '吉州区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360803 => - [ - - [ - 'address' => '青原区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360821 => - [ - - [ - 'address' => '吉安县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360822 => - [ - - [ - 'address' => '吉水县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360823 => - [ - - [ - 'address' => '峡江县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360824 => - [ - - [ - 'address' => '新干县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360825 => - [ - - [ - 'address' => '永丰县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360826 => - [ - - [ - 'address' => '泰和县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360827 => - [ - - [ - 'address' => '遂川县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360828 => - [ - - [ - 'address' => '万安县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360829 => - [ - - [ - 'address' => '安福县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360830 => - [ - - [ - 'address' => '永新县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360881 => - [ - - [ - 'address' => '井冈山市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360900 => - [ - - [ - 'address' => '宜春市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360902 => - [ - - [ - 'address' => '袁州区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360921 => - [ - - [ - 'address' => '奉新县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360922 => - [ - - [ - 'address' => '万载县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360923 => - [ - - [ - 'address' => '上高县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360924 => - [ - - [ - 'address' => '宜丰县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360925 => - [ - - [ - 'address' => '靖安县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360926 => - [ - - [ - 'address' => '铜鼓县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360981 => - [ - - [ - 'address' => '丰城市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360982 => - [ - - [ - 'address' => '樟树市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 360983 => - [ - - [ - 'address' => '高安市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361000 => - [ - - [ - 'address' => '抚州市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361002 => - [ - - [ - 'address' => '临川区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361003 => - [ - - [ - 'address' => '东乡区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 361021 => - [ - - [ - 'address' => '南城县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361022 => - [ - - [ - 'address' => '黎川县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361023 => - [ - - [ - 'address' => '南丰县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361024 => - [ - - [ - 'address' => '崇仁县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361025 => - [ - - [ - 'address' => '乐安县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361026 => - [ - - [ - 'address' => '宜黄县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361027 => - [ - - [ - 'address' => '金溪县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361028 => - [ - - [ - 'address' => '资溪县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361029 => - [ - - [ - 'address' => '东乡县', - 'start_year' => 2000, - 'end_year' => 2015, - ], - ], - 361030 => - [ - - [ - 'address' => '广昌县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361100 => - [ - - [ - 'address' => '上饶市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361102 => - [ - - [ - 'address' => '信州区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361103 => - [ - - [ - 'address' => '广丰区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 361121 => - [ - - [ - 'address' => '上饶县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361122 => - [ - - [ - 'address' => '广丰县', - 'start_year' => 2000, - 'end_year' => 2014, - ], - ], - 361123 => - [ - - [ - 'address' => '玉山县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361124 => - [ - - [ - 'address' => '铅山县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361125 => - [ - - [ - 'address' => '横峰县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361126 => - [ - - [ - 'address' => '弋阳县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361127 => - [ - - [ - 'address' => '余干县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361128 => - [ - - [ - 'address' => '波阳县', - 'start_year' => 2000, - 'end_year' => 2002, - ], - - [ - 'address' => '鄱阳县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 361129 => - [ - - [ - 'address' => '万年县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361130 => - [ - - [ - 'address' => '婺源县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 361181 => - [ - - [ - 'address' => '德兴市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 362100 => - [ - - [ - 'address' => '九江地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '赣州地区', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362101 => - [ - - [ - 'address' => '赣州市', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362102 => - [ - - [ - 'address' => '瑞金市', - 'start_year' => 1994, - 'end_year' => 1997, - ], - ], - 362103 => - [ - - [ - 'address' => '南康市', - 'start_year' => 1995, - 'end_year' => 1997, - ], - ], - 362121 => - [ - - [ - 'address' => '九江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '赣县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362122 => - [ - - [ - 'address' => '永修县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南康县', - 'start_year' => 1982, - 'end_year' => 1994, - ], - ], - 362123 => - [ - - [ - 'address' => '彭泽县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '信丰县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362124 => - [ - - [ - 'address' => '德安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '大余县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362125 => - [ - - [ - 'address' => '湖口县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '上犹县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362126 => - [ - - [ - 'address' => '瑞昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '崇义县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362127 => - [ - - [ - 'address' => '都昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '安远县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362128 => - [ - - [ - 'address' => '武宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '龙南县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362129 => - [ - - [ - 'address' => '星子县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '定南县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362130 => - [ - - [ - 'address' => '修水县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '全南县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362131 => - [ - - [ - 'address' => '宁都县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362132 => - [ - - [ - 'address' => '于都县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362133 => - [ - - [ - 'address' => '兴国县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362134 => - [ - - [ - 'address' => '瑞金县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 362135 => - [ - - [ - 'address' => '会昌县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362136 => - [ - - [ - 'address' => '寻乌县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362137 => - [ - - [ - 'address' => '石城县', - 'start_year' => 1982, - 'end_year' => 1997, - ], - ], - 362138 => - [ - - [ - 'address' => '广昌县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362200 => - [ - - [ - 'address' => '上饶地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宜春地区', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362201 => - [ - - [ - 'address' => '上饶市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宜春市', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362202 => - [ - - [ - 'address' => '鹰潭市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '丰城市', - 'start_year' => 1988, - 'end_year' => 1999, - ], - ], - 362203 => - [ - - [ - 'address' => '樟树市', - 'start_year' => 1988, - 'end_year' => 1999, - ], - ], - 362204 => - [ - - [ - 'address' => '高安市', - 'start_year' => 1993, - 'end_year' => 1999, - ], - ], - 362221 => - [ - - [ - 'address' => '上饶县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '丰城县', - 'start_year' => 1982, - 'end_year' => 1987, - ], - ], - 362222 => - [ - - [ - 'address' => '贵溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '高安县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 362223 => - [ - - [ - 'address' => '婺源县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '清江县', - 'start_year' => 1982, - 'end_year' => 1987, - ], - ], - 362224 => - [ - - [ - 'address' => '余江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '新余县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362225 => - [ - - [ - 'address' => '德兴县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宜春县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 362226 => - [ - - [ - 'address' => '万年县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '奉新县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362227 => - [ - - [ - 'address' => '玉山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '万载县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362228 => - [ - - [ - 'address' => '乐平县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '上高县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362229 => - [ - - [ - 'address' => '广丰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宜丰县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362230 => - [ - - [ - 'address' => '波阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '分宜县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362231 => - [ - - [ - 'address' => '铅山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '安义县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362232 => - [ - - [ - 'address' => '余干县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '靖安县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362233 => - [ - - [ - 'address' => '横峰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '铜鼓县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362234 => - [ - - [ - 'address' => '弋阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 362300 => - [ - - [ - 'address' => '宜春地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '上饶地区', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362301 => - [ - - [ - 'address' => '宜春市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '上饶市', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362302 => - [ - - [ - 'address' => '鹰潭市', - 'start_year' => 1982, - 'end_year' => 1982, - ], - - [ - 'address' => '德兴市', - 'start_year' => 1990, - 'end_year' => 1999, - ], - ], - 362321 => - [ - - [ - 'address' => '宜春县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '上饶县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362322 => - [ - - [ - 'address' => '高安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '广丰县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362323 => - [ - - [ - 'address' => '万载县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '玉山县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362324 => - [ - - [ - 'address' => '丰城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '铅山县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362325 => - [ - - [ - 'address' => '铜鼓县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '横峰县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362326 => - [ - - [ - 'address' => '清江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '弋阳县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362327 => - [ - - [ - 'address' => '宜丰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '贵溪县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362328 => - [ - - [ - 'address' => '新余县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '余江县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362329 => - [ - - [ - 'address' => '上高县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '余干县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362330 => - [ - - [ - 'address' => '分宜县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '波阳县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362331 => - [ - - [ - 'address' => '安义县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '万年县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362332 => - [ - - [ - 'address' => '靖安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '乐平县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362333 => - [ - - [ - 'address' => '奉新县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '德兴县', - 'start_year' => 1982, - 'end_year' => 1989, - ], - ], - 362334 => - [ - - [ - 'address' => '婺源县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362400 => - [ - - [ - 'address' => '抚州地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '吉安地区', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362401 => - [ - - [ - 'address' => '抚州市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '吉安市', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362402 => - [ - - [ - 'address' => '井冈山市', - 'start_year' => 1984, - 'end_year' => 1999, - ], - ], - 362421 => - [ - - [ - 'address' => '临川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '吉安县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362422 => - [ - - [ - 'address' => '宜黄县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '吉水县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362423 => - [ - - [ - 'address' => '金溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '峡江县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362424 => - [ - - [ - 'address' => '崇仁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '新干县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362425 => - [ - - [ - 'address' => '资溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '永丰县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362426 => - [ - - [ - 'address' => '乐安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '泰和县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362427 => - [ - - [ - 'address' => '黎川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '遂川县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362428 => - [ - - [ - 'address' => '东乡县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '万安县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362429 => - [ - - [ - 'address' => '南丰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '安福县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362430 => - [ - - [ - 'address' => '进贤县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '永新县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362431 => - [ - - [ - 'address' => '南城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '莲花县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 362432 => - [ - - [ - 'address' => '宁冈县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362433 => - [ - - [ - 'address' => '井冈山县', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 362500 => - [ - - [ - 'address' => '吉安地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '抚州地区', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362501 => - [ - - [ - 'address' => '吉安市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '抚州市', - 'start_year' => 1982, - 'end_year' => 1986, - ], - - [ - 'address' => '临川市', - 'start_year' => 1987, - 'end_year' => 1999, - ], - ], - 362521 => - [ - - [ - 'address' => '吉安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '临川县', - 'start_year' => 1982, - 'end_year' => 1986, - ], - ], - 362522 => - [ - - [ - 'address' => '万安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南城县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362523 => - [ - - [ - 'address' => '新干县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '黎川县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362524 => - [ - - [ - 'address' => '遂川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南丰县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362525 => - [ - - [ - 'address' => '峡江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '崇仁县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362526 => - [ - - [ - 'address' => '宁冈县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '乐安县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362527 => - [ - - [ - 'address' => '吉水县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宜黄县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362528 => - [ - - [ - 'address' => '永新县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '金溪县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362529 => - [ - - [ - 'address' => '永丰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '资溪县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362530 => - [ - - [ - 'address' => '莲花县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '进贤县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362531 => - [ - - [ - 'address' => '泰和县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '东乡县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 362532 => - [ - - [ - 'address' => '安福县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '广昌县', - 'start_year' => 1983, - 'end_year' => 1999, - ], - ], - 362533 => - [ - - [ - 'address' => '井冈山县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - ], - 362600 => - [ - - [ - 'address' => '赣州地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '九江地区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362601 => - [ - - [ - 'address' => '赣州市', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 362621 => - [ - - [ - 'address' => '广昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '九江县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362622 => - [ - - [ - 'address' => '定南县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '瑞昌县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362623 => - [ - - [ - 'address' => '石城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '武宁县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362624 => - [ - - [ - 'address' => '龙南县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '修水县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362625 => - [ - - [ - 'address' => '宁都县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '永修县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362626 => - [ - - [ - 'address' => '全南县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '德安县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362627 => - [ - - [ - 'address' => '兴国县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '星子县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362628 => - [ - - [ - 'address' => '信丰县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '都昌县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362629 => - [ - - [ - 'address' => '于都县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '湖口县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362630 => - [ - - [ - 'address' => '赣县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '彭泽县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 362631 => - [ - - [ - 'address' => '瑞金县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 362632 => - [ - - [ - 'address' => '南康县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 362633 => - [ - - [ - 'address' => '会昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 362634 => - [ - - [ - 'address' => '上犹县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 362635 => - [ - - [ - 'address' => '安远县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 362636 => - [ - - [ - 'address' => '崇义县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 362637 => - [ - - [ - 'address' => '寻乌县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 362638 => - [ - - [ - 'address' => '大余县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 369001 => - [ - - [ - 'address' => '瑞昌市', - 'start_year' => 1989, - 'end_year' => 1994, - ], - ], - 369002 => - [ - - [ - 'address' => '乐平市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 370000 => - [ - - [ - 'address' => '山东省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370100 => - [ - - [ - 'address' => '济南市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370102 => - [ - - [ - 'address' => '历下区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370103 => - [ - - [ - 'address' => '市中区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370104 => - [ - - [ - 'address' => '槐荫区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370105 => - [ - - [ - 'address' => '天桥区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370111 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 370112 => - [ - - [ - 'address' => '历城区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 370113 => - [ - - [ - 'address' => '长清区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 370114 => - [ - - [ - 'address' => '章丘区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 370115 => - [ - - [ - 'address' => '济阳区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 370121 => - [ - - [ - 'address' => '历城县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 370122 => - [ - - [ - 'address' => '章丘县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 370123 => - [ - - [ - 'address' => '长清县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 370124 => - [ - - [ - 'address' => '平阴县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 370125 => - [ - - [ - 'address' => '济阳县', - 'start_year' => 1989, - 'end_year' => 2017, - ], - ], - 370126 => - [ - - [ - 'address' => '商河县', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 370181 => - [ - - [ - 'address' => '章丘市', - 'start_year' => 1995, - 'end_year' => 2015, - ], - ], - 370200 => - [ - - [ - 'address' => '青岛市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370202 => - [ - - [ - 'address' => '市南区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370203 => - [ - - [ - 'address' => '市北区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370204 => - [ - - [ - 'address' => '台东区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 370205 => - [ - - [ - 'address' => '四方区', - 'start_year' => '', - 'end_year' => 2011, - ], - ], - 370206 => - [ - - [ - 'address' => '沧口区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 370211 => - [ - - [ - 'address' => '黄岛区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370212 => - [ - - [ - 'address' => '崂山区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 370213 => - [ - - [ - 'address' => '李沧区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 370214 => - [ - - [ - 'address' => '城阳区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 370215 => - [ - - [ - 'address' => '即墨区', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 370221 => - [ - - [ - 'address' => '崂山县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 370222 => - [ - - [ - 'address' => '即墨县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 370223 => - [ - - [ - 'address' => '胶南县', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 370224 => - [ - - [ - 'address' => '胶县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 370225 => - [ - - [ - 'address' => '莱西县', - 'start_year' => 1983, - 'end_year' => 1989, - ], - ], - 370226 => - [ - - [ - 'address' => '平度县', - 'start_year' => 1983, - 'end_year' => 1988, - ], - ], - 370281 => - [ - - [ - 'address' => '胶州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370282 => - [ - - [ - 'address' => '即墨市', - 'start_year' => 1995, - 'end_year' => 2016, - ], - ], - 370283 => - [ - - [ - 'address' => '平度市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370284 => - [ - - [ - 'address' => '胶南市', - 'start_year' => 1995, - 'end_year' => 2011, - ], - ], - 370285 => - [ - - [ - 'address' => '莱西市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370300 => - [ - - [ - 'address' => '淄博市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370302 => - [ - - [ - 'address' => '淄川区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370303 => - [ - - [ - 'address' => '张店区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370304 => - [ - - [ - 'address' => '博山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370305 => - [ - - [ - 'address' => '临淄区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370306 => - [ - - [ - 'address' => '周村区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370321 => - [ - - [ - 'address' => '桓台县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370322 => - [ - - [ - 'address' => '高青县', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 370323 => - [ - - [ - 'address' => '沂源县', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 370400 => - [ - - [ - 'address' => '枣庄市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370402 => - [ - - [ - 'address' => '市中区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370403 => - [ - - [ - 'address' => '薛城区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370404 => - [ - - [ - 'address' => '峄城区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370405 => - [ - - [ - 'address' => '台儿庄区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 370406 => - [ - - [ - 'address' => '齐村区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '山亭区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370421 => - [ - - [ - 'address' => '滕县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 370481 => - [ - - [ - 'address' => '滕州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370500 => - [ - - [ - 'address' => '东营市', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 370502 => - [ - - [ - 'address' => '东营区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 370503 => - [ - - [ - 'address' => '河口区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 370504 => - [ - - [ - 'address' => '牛庄区', - 'start_year' => 1982, - 'end_year' => 1986, - ], - ], - 370505 => - [ - - [ - 'address' => '垦利区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 370521 => - [ - - [ - 'address' => '垦利县', - 'start_year' => 1982, - 'end_year' => 2015, - ], - ], - 370522 => - [ - - [ - 'address' => '利津县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 370523 => - [ - - [ - 'address' => '广饶县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370600 => - [ - - [ - 'address' => '烟台市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370602 => - [ - - [ - 'address' => '芝罘区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370611 => - [ - - [ - 'address' => '福山区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370612 => - [ - - [ - 'address' => '牟平区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 370613 => - [ - - [ - 'address' => '莱山区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 370620 => - [ - - [ - 'address' => '威海市', - 'start_year' => 1985, - 'end_year' => 1985, - ], - ], - 370622 => - [ - - [ - 'address' => '蓬莱县', - 'start_year' => 1983, - 'end_year' => 1990, - ], - ], - 370623 => - [ - - [ - 'address' => '黄县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 370624 => - [ - - [ - 'address' => '招远县', - 'start_year' => 1983, - 'end_year' => 1990, - ], - ], - 370625 => - [ - - [ - 'address' => '掖县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 370627 => - [ - - [ - 'address' => '莱阳县', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 370628 => - [ - - [ - 'address' => '栖霞县', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 370629 => - [ - - [ - 'address' => '海阳县', - 'start_year' => 1983, - 'end_year' => 1995, - ], - ], - 370630 => - [ - - [ - 'address' => '乳山县', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 370631 => - [ - - [ - 'address' => '牟平县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 370632 => - [ - - [ - 'address' => '文登县', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 370633 => - [ - - [ - 'address' => '荣成县', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 370634 => - [ - - [ - 'address' => '长岛县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370681 => - [ - - [ - 'address' => '龙口市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370682 => - [ - - [ - 'address' => '莱阳市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370683 => - [ - - [ - 'address' => '莱州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370684 => - [ - - [ - 'address' => '蓬莱市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370685 => - [ - - [ - 'address' => '招远市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370686 => - [ - - [ - 'address' => '栖霞市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370687 => - [ - - [ - 'address' => '海阳市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 370700 => - [ - - [ - 'address' => '潍坊市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370702 => - [ - - [ - 'address' => '潍城区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370703 => - [ - - [ - 'address' => '寒亭区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370704 => - [ - - [ - 'address' => '坊子区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370705 => - [ - - [ - 'address' => '奎文区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 370721 => - [ - - [ - 'address' => '益都县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 370722 => - [ - - [ - 'address' => '安丘县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 370723 => - [ - - [ - 'address' => '寿光县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 370724 => - [ - - [ - 'address' => '临朐县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370725 => - [ - - [ - 'address' => '昌乐县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370726 => - [ - - [ - 'address' => '昌邑县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 370727 => - [ - - [ - 'address' => '高密县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 370728 => - [ - - [ - 'address' => '诸城县', - 'start_year' => 1983, - 'end_year' => 1986, - ], - ], - 370729 => - [ - - [ - 'address' => '五莲县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 370781 => - [ - - [ - 'address' => '青州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370782 => - [ - - [ - 'address' => '诸城市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370783 => - [ - - [ - 'address' => '寿光市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370784 => - [ - - [ - 'address' => '安丘市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370785 => - [ - - [ - 'address' => '高密市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370786 => - [ - - [ - 'address' => '昌邑市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370800 => - [ - - [ - 'address' => '济宁市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370802 => - [ - - [ - 'address' => '市中区', - 'start_year' => 1983, - 'end_year' => 2012, - ], - ], - 370811 => - [ - - [ - 'address' => '市郊区', - 'start_year' => 1983, - 'end_year' => 1992, - ], - - [ - 'address' => '任城区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 370812 => - [ - - [ - 'address' => '兖州区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 370822 => - [ - - [ - 'address' => '兖州县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 370823 => - [ - - [ - 'address' => '曲阜县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 370825 => - [ - - [ - 'address' => '邹县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 370826 => - [ - - [ - 'address' => '微山县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370827 => - [ - - [ - 'address' => '鱼台县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370828 => - [ - - [ - 'address' => '金乡县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370829 => - [ - - [ - 'address' => '嘉祥县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 370830 => - [ - - [ - 'address' => '汶上县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 370831 => - [ - - [ - 'address' => '泗水县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 370832 => - [ - - [ - 'address' => '梁山县', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 370881 => - [ - - [ - 'address' => '曲阜市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370882 => - [ - - [ - 'address' => '兖州市', - 'start_year' => 1995, - 'end_year' => 2012, - ], - ], - 370883 => - [ - - [ - 'address' => '邹城市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 370900 => - [ - - [ - 'address' => '泰安市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 370901 => - [ - - [ - 'address' => '威海市', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 370902 => - [ - - [ - 'address' => '泰山区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 370911 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1985, - 'end_year' => 1999, - ], - - [ - 'address' => '岱岳区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 370921 => - [ - - [ - 'address' => '宁阳县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 370922 => - [ - - [ - 'address' => '肥城县', - 'start_year' => 1985, - 'end_year' => 1991, - ], - ], - 370923 => - [ - - [ - 'address' => '东平县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 370981 => - [ - - [ - 'address' => '莱芜市', - 'start_year' => 1985, - 'end_year' => 1985, - ], - ], - 370982 => - [ - - [ - 'address' => '新泰市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 370983 => - [ - - [ - 'address' => '肥城市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 371000 => - [ - - [ - 'address' => '威海市', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 371002 => - [ - - [ - 'address' => '环翠区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 371003 => - [ - - [ - 'address' => '文登区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 371021 => - [ - - [ - 'address' => '乳山县', - 'start_year' => 1987, - 'end_year' => 1992, - ], - ], - 371022 => - [ - - [ - 'address' => '文登县', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 371023 => - [ - - [ - 'address' => '荣成县', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 371081 => - [ - - [ - 'address' => '文登市', - 'start_year' => 1995, - 'end_year' => 2013, - ], - ], - 371082 => - [ - - [ - 'address' => '荣成市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 371083 => - [ - - [ - 'address' => '乳山市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 371100 => - [ - - [ - 'address' => '日照市', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 371102 => - [ - - [ - 'address' => '东港区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 371103 => - [ - - [ - 'address' => '岚山区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 371121 => - [ - - [ - 'address' => '五莲县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 371122 => - [ - - [ - 'address' => '莒县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 371200 => - [ - - [ - 'address' => '莱芜市', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 371202 => - [ - - [ - 'address' => '莱城区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 371203 => - [ - - [ - 'address' => '钢城区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 371300 => - [ - - [ - 'address' => '临沂市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371302 => - [ - - [ - 'address' => '兰山区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371311 => - [ - - [ - 'address' => '罗庄区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371312 => - [ - - [ - 'address' => '河东区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371321 => - [ - - [ - 'address' => '沂南县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371322 => - [ - - [ - 'address' => '郯城县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371323 => - [ - - [ - 'address' => '沂水县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371324 => - [ - - [ - 'address' => '苍山县', - 'start_year' => 1994, - 'end_year' => 2013, - ], - - [ - 'address' => '兰陵县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 371325 => - [ - - [ - 'address' => '费县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371326 => - [ - - [ - 'address' => '平邑县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371327 => - [ - - [ - 'address' => '莒南县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371328 => - [ - - [ - 'address' => '蒙阴县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371329 => - [ - - [ - 'address' => '临沭县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371400 => - [ - - [ - 'address' => '德州市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371402 => - [ - - [ - 'address' => '德城区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371403 => - [ - - [ - 'address' => '陵城区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 371421 => - [ - - [ - 'address' => '陵县', - 'start_year' => 1994, - 'end_year' => 2013, - ], - ], - 371422 => - [ - - [ - 'address' => '宁津县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371423 => - [ - - [ - 'address' => '庆云县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371424 => - [ - - [ - 'address' => '临邑县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371425 => - [ - - [ - 'address' => '齐河县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371426 => - [ - - [ - 'address' => '平原县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371427 => - [ - - [ - 'address' => '夏津县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371428 => - [ - - [ - 'address' => '武城县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 371481 => - [ - - [ - 'address' => '乐陵市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 371482 => - [ - - [ - 'address' => '禹城市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 371500 => - [ - - [ - 'address' => '聊城市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 371502 => - [ - - [ - 'address' => '东昌府区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 371521 => - [ - - [ - 'address' => '阳谷县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 371522 => - [ - - [ - 'address' => '莘县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 371523 => - [ - - [ - 'address' => '茌平县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 371524 => - [ - - [ - 'address' => '东阿县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 371525 => - [ - - [ - 'address' => '冠县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 371526 => - [ - - [ - 'address' => '高唐县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 371581 => - [ - - [ - 'address' => '临清市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 371600 => - [ - - [ - 'address' => '滨州市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371602 => - [ - - [ - 'address' => '滨城区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371603 => - [ - - [ - 'address' => '沾化区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 371621 => - [ - - [ - 'address' => '惠民县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371622 => - [ - - [ - 'address' => '阳信县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371623 => - [ - - [ - 'address' => '无棣县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371624 => - [ - - [ - 'address' => '沾化县', - 'start_year' => 2000, - 'end_year' => 2013, - ], - ], - 371625 => - [ - - [ - 'address' => '博兴县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371626 => - [ - - [ - 'address' => '邹平县', - 'start_year' => 2000, - 'end_year' => 2017, - ], - ], - 371681 => - [ - - [ - 'address' => '邹平市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 371700 => - [ - - [ - 'address' => '菏泽市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371702 => - [ - - [ - 'address' => '牡丹区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371703 => - [ - - [ - 'address' => '定陶区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 371721 => - [ - - [ - 'address' => '曹县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371722 => - [ - - [ - 'address' => '单县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371723 => - [ - - [ - 'address' => '成武县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371724 => - [ - - [ - 'address' => '巨野县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371725 => - [ - - [ - 'address' => '郓城县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371726 => - [ - - [ - 'address' => '鄄城县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 371727 => - [ - - [ - 'address' => '定陶县', - 'start_year' => 2000, - 'end_year' => 2015, - ], - ], - 371728 => - [ - - [ - 'address' => '东明县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 372100 => - [ - - [ - 'address' => '烟台地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372101 => - [ - - [ - 'address' => '烟台市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372102 => - [ - - [ - 'address' => '威海市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372121 => - [ - - [ - 'address' => '福山县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372122 => - [ - - [ - 'address' => '蓬莱县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372123 => - [ - - [ - 'address' => '黄县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372124 => - [ - - [ - 'address' => '招远县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372125 => - [ - - [ - 'address' => '掖县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372126 => - [ - - [ - 'address' => '莱西县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372127 => - [ - - [ - 'address' => '莱阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372128 => - [ - - [ - 'address' => '栖霞县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372129 => - [ - - [ - 'address' => '海阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372130 => - [ - - [ - 'address' => '乳山县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372131 => - [ - - [ - 'address' => '牟平县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372132 => - [ - - [ - 'address' => '文登县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372133 => - [ - - [ - 'address' => '荣成县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372134 => - [ - - [ - 'address' => '长岛县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372200 => - [ - - [ - 'address' => '昌潍地区', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '潍坊地区', - 'start_year' => 1981, - 'end_year' => 1982, - ], - ], - 372201 => - [ - - [ - 'address' => '潍坊市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372221 => - [ - - [ - 'address' => '益都县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372222 => - [ - - [ - 'address' => '安丘县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372223 => - [ - - [ - 'address' => '寿光县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372224 => - [ - - [ - 'address' => '临朐县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372225 => - [ - - [ - 'address' => '昌乐县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372226 => - [ - - [ - 'address' => '昌邑县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372227 => - [ - - [ - 'address' => '高密县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372228 => - [ - - [ - 'address' => '诸城县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372229 => - [ - - [ - 'address' => '五莲县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372230 => - [ - - [ - 'address' => '平度县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372231 => - [ - - [ - 'address' => '潍县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372300 => - [ - - [ - 'address' => '惠民地区', - 'start_year' => '', - 'end_year' => 1991, - ], - - [ - 'address' => '滨州地区', - 'start_year' => 1992, - 'end_year' => 1999, - ], - ], - 372301 => - [ - - [ - 'address' => '滨州市', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 372321 => - [ - - [ - 'address' => '惠民县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372322 => - [ - - [ - 'address' => '滨县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 372323 => - [ - - [ - 'address' => '阳信县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372324 => - [ - - [ - 'address' => '无棣县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372325 => - [ - - [ - 'address' => '沾化县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372326 => - [ - - [ - 'address' => '利津县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 372327 => - [ - - [ - 'address' => '广饶县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372328 => - [ - - [ - 'address' => '博兴县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372329 => - [ - - [ - 'address' => '桓台县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372330 => - [ - - [ - 'address' => '邹平县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372331 => - [ - - [ - 'address' => '高青县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 372332 => - [ - - [ - 'address' => '垦利县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 372400 => - [ - - [ - 'address' => '德州地区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372401 => - [ - - [ - 'address' => '德州市', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372402 => - [ - - [ - 'address' => '乐陵市', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 372403 => - [ - - [ - 'address' => '禹城市', - 'start_year' => 1993, - 'end_year' => 1993, - ], - ], - 372421 => - [ - - [ - 'address' => '陵县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372422 => - [ - - [ - 'address' => '平原县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372423 => - [ - - [ - 'address' => '夏津县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372424 => - [ - - [ - 'address' => '武城县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372425 => - [ - - [ - 'address' => '齐河县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372426 => - [ - - [ - 'address' => '禹城县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 372427 => - [ - - [ - 'address' => '乐陵县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 372428 => - [ - - [ - 'address' => '临邑县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372429 => - [ - - [ - 'address' => '商河县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 372430 => - [ - - [ - 'address' => '济阳县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 372431 => - [ - - [ - 'address' => '宁津县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372432 => - [ - - [ - 'address' => '庆云县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372500 => - [ - - [ - 'address' => '聊城地区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 372501 => - [ - - [ - 'address' => '聊城市', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 372502 => - [ - - [ - 'address' => '临清市', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 372521 => - [ - - [ - 'address' => '阳谷县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '聊城县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 372522 => - [ - - [ - 'address' => '莘县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '阳谷县', - 'start_year' => 1982, - 'end_year' => 1996, - ], - ], - 372523 => - [ - - [ - 'address' => '茌平县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '莘县', - 'start_year' => 1982, - 'end_year' => 1996, - ], - ], - 372524 => - [ - - [ - 'address' => '东阿县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '茌平县', - 'start_year' => 1982, - 'end_year' => 1996, - ], - ], - 372525 => - [ - - [ - 'address' => '冠县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '东阿县', - 'start_year' => 1982, - 'end_year' => 1996, - ], - ], - 372526 => - [ - - [ - 'address' => '高唐县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '冠县', - 'start_year' => 1982, - 'end_year' => 1996, - ], - ], - 372527 => - [ - - [ - 'address' => '临清县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '高唐县', - 'start_year' => 1982, - 'end_year' => 1996, - ], - ], - 372528 => - [ - - [ - 'address' => '聊城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '临清县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 372600 => - [ - - [ - 'address' => '泰安地区', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 372601 => - [ - - [ - 'address' => '泰安市', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 372602 => - [ - - [ - 'address' => '新汶市', - 'start_year' => 1982, - 'end_year' => 1982, - ], - - [ - 'address' => '莱芜市', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 372603 => - [ - - [ - 'address' => '新泰市', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 372621 => - [ - - [ - 'address' => '泰安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '莱芜县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 372622 => - [ - - [ - 'address' => '莱芜县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '新泰县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 372623 => - [ - - [ - 'address' => '新泰县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 372624 => - [ - - [ - 'address' => '宁阳县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 372625 => - [ - - [ - 'address' => '肥城县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 372626 => - [ - - [ - 'address' => '东平县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 372627 => - [ - - [ - 'address' => '平阴县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 372628 => - [ - - [ - 'address' => '新汶县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 372629 => - [ - - [ - 'address' => '汶上县', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 372630 => - [ - - [ - 'address' => '泗水县', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 372700 => - [ - - [ - 'address' => '济宁地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372701 => - [ - - [ - 'address' => '济宁市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372721 => - [ - - [ - 'address' => '济宁县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372722 => - [ - - [ - 'address' => '兖州县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372723 => - [ - - [ - 'address' => '曲阜县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372724 => - [ - - [ - 'address' => '泗水县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372725 => - [ - - [ - 'address' => '邹县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372726 => - [ - - [ - 'address' => '微山县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372727 => - [ - - [ - 'address' => '鱼台县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372728 => - [ - - [ - 'address' => '金乡县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372729 => - [ - - [ - 'address' => '嘉祥县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372730 => - [ - - [ - 'address' => '汶上县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372800 => - [ - - [ - 'address' => '临沂地区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372801 => - [ - - [ - 'address' => '临沂市', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 372821 => - [ - - [ - 'address' => '临沂县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372822 => - [ - - [ - 'address' => '郯城县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372823 => - [ - - [ - 'address' => '苍山县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372824 => - [ - - [ - 'address' => '莒南县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372825 => - [ - - [ - 'address' => '日照县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 372826 => - [ - - [ - 'address' => '莒县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 372827 => - [ - - [ - 'address' => '沂水县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372828 => - [ - - [ - 'address' => '沂源县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 372829 => - [ - - [ - 'address' => '蒙阴县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372830 => - [ - - [ - 'address' => '平邑县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372831 => - [ - - [ - 'address' => '费县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372832 => - [ - - [ - 'address' => '沂南县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372833 => - [ - - [ - 'address' => '临沭县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 372900 => - [ - - [ - 'address' => '菏泽地区', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372901 => - [ - - [ - 'address' => '菏泽市', - 'start_year' => 1983, - 'end_year' => 1999, - ], - ], - 372921 => - [ - - [ - 'address' => '菏泽县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 372922 => - [ - - [ - 'address' => '曹县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372923 => - [ - - [ - 'address' => '定陶县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372924 => - [ - - [ - 'address' => '成武县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372925 => - [ - - [ - 'address' => '单县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372926 => - [ - - [ - 'address' => '巨野县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372927 => - [ - - [ - 'address' => '梁山县', - 'start_year' => '', - 'end_year' => 1988, - ], - ], - 372928 => - [ - - [ - 'address' => '郓城县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372929 => - [ - - [ - 'address' => '鄄城县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 372930 => - [ - - [ - 'address' => '东明县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 379001 => - [ - - [ - 'address' => '青州市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 379002 => - [ - - [ - 'address' => '龙口市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 379003 => - [ - - [ - 'address' => '曲阜市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 379004 => - [ - - [ - 'address' => '莱芜市', - 'start_year' => 1986, - 'end_year' => 1991, - ], - ], - 379005 => - [ - - [ - 'address' => '新泰市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 379006 => - [ - - [ - 'address' => '威海市', - 'start_year' => 1986, - 'end_year' => 1986, - ], - - [ - 'address' => '胶州市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 379007 => - [ - - [ - 'address' => '诸城市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 379008 => - [ - - [ - 'address' => '莱阳市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 379009 => - [ - - [ - 'address' => '莱州市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 379010 => - [ - - [ - 'address' => '滕州市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 379011 => - [ - - [ - 'address' => '文登市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 379012 => - [ - - [ - 'address' => '荣成市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 379013 => - [ - - [ - 'address' => '即墨市', - 'start_year' => 1989, - 'end_year' => 1994, - ], - ], - 379014 => - [ - - [ - 'address' => '平度市', - 'start_year' => 1989, - 'end_year' => 1994, - ], - ], - 379015 => - [ - - [ - 'address' => '莱西市', - 'start_year' => 1990, - 'end_year' => 1994, - ], - ], - 379016 => - [ - - [ - 'address' => '胶南市', - 'start_year' => 1990, - 'end_year' => 1994, - ], - ], - 379017 => - [ - - [ - 'address' => '蓬莱市', - 'start_year' => 1991, - 'end_year' => 1994, - ], - ], - 379018 => - [ - - [ - 'address' => '招远市', - 'start_year' => 1991, - 'end_year' => 1994, - ], - ], - 379019 => - [ - - [ - 'address' => '肥城市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 379020 => - [ - - [ - 'address' => '章丘市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 379021 => - [ - - [ - 'address' => '兖州市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 379022 => - [ - - [ - 'address' => '邹城市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 379023 => - [ - - [ - 'address' => '寿光市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 379024 => - [ - - [ - 'address' => '乳山市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 379025 => - [ - - [ - 'address' => '乐陵市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 379026 => - [ - - [ - 'address' => '禹城市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 379027 => - [ - - [ - 'address' => '安丘市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 379028 => - [ - - [ - 'address' => '昌邑市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 379029 => - [ - - [ - 'address' => '高密市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 410000 => - [ - - [ - 'address' => '河南省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410100 => - [ - - [ - 'address' => '郑州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410102 => - [ - - [ - 'address' => '中原区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410103 => - [ - - [ - 'address' => '二七区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410104 => - [ - - [ - 'address' => '向阳回族区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '管城回族区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410105 => - [ - - [ - 'address' => '金水区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410106 => - [ - - [ - 'address' => '上街区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410107 => - [ - - [ - 'address' => '新密区', - 'start_year' => 1982, - 'end_year' => 1986, - ], - ], - 410108 => - [ - - [ - 'address' => '邙山区', - 'start_year' => 1987, - 'end_year' => 2002, - ], - - [ - 'address' => '惠济区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 410111 => - [ - - [ - 'address' => '金海区', - 'start_year' => 1981, - 'end_year' => 1986, - ], - ], - 410112 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 410121 => - [ - - [ - 'address' => '荥阳县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 410122 => - [ - - [ - 'address' => '中牟县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410123 => - [ - - [ - 'address' => '新郑县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 410124 => - [ - - [ - 'address' => '巩县', - 'start_year' => 1983, - 'end_year' => 1990, - ], - ], - 410125 => - [ - - [ - 'address' => '登封县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 410126 => - [ - - [ - 'address' => '密县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 410181 => - [ - - [ - 'address' => '巩义市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410182 => - [ - - [ - 'address' => '荥阳市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410183 => - [ - - [ - 'address' => '新密市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410184 => - [ - - [ - 'address' => '新郑市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410185 => - [ - - [ - 'address' => '登封市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410200 => - [ - - [ - 'address' => '开封市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410202 => - [ - - [ - 'address' => '龙亭区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410203 => - [ - - [ - 'address' => '顺河回族区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410204 => - [ - - [ - 'address' => '古楼区', - 'start_year' => '', - 'end_year' => 1988, - ], - - [ - 'address' => '鼓楼区', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 410205 => - [ - - [ - 'address' => '南关区', - 'start_year' => '', - 'end_year' => 2004, - ], - - [ - 'address' => '禹王台区', - 'start_year' => 2005, - 'end_year' => '', - ], - ], - 410211 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 2004, - ], - - [ - 'address' => '金明区', - 'start_year' => 2005, - 'end_year' => 2013, - ], - ], - 410212 => - [ - - [ - 'address' => '祥符区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 410221 => - [ - - [ - 'address' => '杞县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410222 => - [ - - [ - 'address' => '通许县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410223 => - [ - - [ - 'address' => '尉氏县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410224 => - [ - - [ - 'address' => '开封县', - 'start_year' => 1983, - 'end_year' => 2013, - ], - ], - 410225 => - [ - - [ - 'address' => '兰考县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410300 => - [ - - [ - 'address' => '洛阳市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410302 => - [ - - [ - 'address' => '洛北区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '老城区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410303 => - [ - - [ - 'address' => '西工区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410304 => - [ - - [ - 'address' => '瀍河回族区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410305 => - [ - - [ - 'address' => '涧西区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410306 => - [ - - [ - 'address' => '吉利区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 410311 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1999, - ], - - [ - 'address' => '洛龙区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 410321 => - [ - - [ - 'address' => '偃师县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 410322 => - [ - - [ - 'address' => '孟津县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410323 => - [ - - [ - 'address' => '新安县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410324 => - [ - - [ - 'address' => '栾川县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410325 => - [ - - [ - 'address' => '嵩县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410326 => - [ - - [ - 'address' => '汝阳县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410327 => - [ - - [ - 'address' => '宜阳县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410328 => - [ - - [ - 'address' => '洛宁县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410329 => - [ - - [ - 'address' => '伊川县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410381 => - [ - - [ - 'address' => '偃师市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410400 => - [ - - [ - 'address' => '平顶山市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410402 => - [ - - [ - 'address' => '新华区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410403 => - [ - - [ - 'address' => '卫东区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 410404 => - [ - - [ - 'address' => '石龙区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 410411 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1993, - ], - - [ - 'address' => '湛河区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 410412 => - [ - - [ - 'address' => '舞钢区', - 'start_year' => 1982, - 'end_year' => 1989, - ], - ], - 410421 => - [ - - [ - 'address' => '宝丰县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410422 => - [ - - [ - 'address' => '叶县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410423 => - [ - - [ - 'address' => '鲁山县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410424 => - [ - - [ - 'address' => '临汝县', - 'start_year' => 1986, - 'end_year' => 1987, - ], - ], - 410425 => - [ - - [ - 'address' => '郏县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410426 => - [ - - [ - 'address' => '襄城县', - 'start_year' => 1986, - 'end_year' => 1996, - ], - ], - 410481 => - [ - - [ - 'address' => '舞钢市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410482 => - [ - - [ - 'address' => '汝州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410500 => - [ - - [ - 'address' => '鹤壁市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '安阳市', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 410502 => - [ - - [ - 'address' => '鹤山区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '文峰区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 410503 => - [ - - [ - 'address' => '山城区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '北关区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 410504 => - [ - - [ - 'address' => '铁西区', - 'start_year' => 1984, - 'end_year' => 2001, - ], - ], - 410505 => - [ - - [ - 'address' => '殷都区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 410506 => - [ - - [ - 'address' => '龙安区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 410511 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 410521 => - [ - - [ - 'address' => '林县', - 'start_year' => 1984, - 'end_year' => 1993, - ], - ], - 410522 => - [ - - [ - 'address' => '安阳县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 410523 => - [ - - [ - 'address' => '汤阴县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 410524 => - [ - - [ - 'address' => '淇县', - 'start_year' => 1984, - 'end_year' => 1985, - ], - ], - 410525 => - [ - - [ - 'address' => '浚县', - 'start_year' => 1984, - 'end_year' => 1985, - ], - ], - 410526 => - [ - - [ - 'address' => '滑县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410527 => - [ - - [ - 'address' => '内黄县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410581 => - [ - - [ - 'address' => '林州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410600 => - [ - - [ - 'address' => '焦作市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '鹤壁市', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 410602 => - [ - - [ - 'address' => '解放区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '鹤山区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 410603 => - [ - - [ - 'address' => '中站区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '山城区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 410604 => - [ - - [ - 'address' => '马村区', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 410611 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 2000, - ], - - [ - 'address' => '淇滨区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 410621 => - [ - - [ - 'address' => '浚县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410622 => - [ - - [ - 'address' => '淇县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410700 => - [ - - [ - 'address' => '新乡市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410702 => - [ - - [ - 'address' => '红旗区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410703 => - [ - - [ - 'address' => '新华区', - 'start_year' => 1983, - 'end_year' => 2002, - ], - - [ - 'address' => '卫滨区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 410704 => - [ - - [ - 'address' => '北站区', - 'start_year' => 1983, - 'end_year' => 2002, - ], - - [ - 'address' => '凤泉区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 410711 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1983, - 'end_year' => 2002, - ], - - [ - 'address' => '牧野区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 410721 => - [ - - [ - 'address' => '新乡县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410722 => - [ - - [ - 'address' => '汲县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 410723 => - [ - - [ - 'address' => '辉县', - 'start_year' => 1986, - 'end_year' => 1987, - ], - ], - 410724 => - [ - - [ - 'address' => '获嘉县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410725 => - [ - - [ - 'address' => '原阳县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410726 => - [ - - [ - 'address' => '延津县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410727 => - [ - - [ - 'address' => '封丘县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410728 => - [ - - [ - 'address' => '长垣县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410781 => - [ - - [ - 'address' => '卫辉市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410782 => - [ - - [ - 'address' => '辉县市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410800 => - [ - - [ - 'address' => '焦作市', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 410802 => - [ - - [ - 'address' => '解放区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 410803 => - [ - - [ - 'address' => '中站区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 410804 => - [ - - [ - 'address' => '马村区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 410811 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1982, - 'end_year' => 1989, - ], - - [ - 'address' => '山阳区', - 'start_year' => 1990, - 'end_year' => '', - ], - ], - 410821 => - [ - - [ - 'address' => '修武县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410822 => - [ - - [ - 'address' => '博爱县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410823 => - [ - - [ - 'address' => '武陟县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410824 => - [ - - [ - 'address' => '沁阳县', - 'start_year' => 1986, - 'end_year' => 1988, - ], - ], - 410825 => - [ - - [ - 'address' => '温县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 410826 => - [ - - [ - 'address' => '孟县', - 'start_year' => 1986, - 'end_year' => 1995, - ], - ], - 410827 => - [ - - [ - 'address' => '济源县', - 'start_year' => 1986, - 'end_year' => 1987, - ], - ], - 410881 => - [ - - [ - 'address' => '济源市', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 410882 => - [ - - [ - 'address' => '沁阳市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 410883 => - [ - - [ - 'address' => '孟州市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 410900 => - [ - - [ - 'address' => '濮阳市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410902 => - [ - - [ - 'address' => '市区', - 'start_year' => 1985, - 'end_year' => 2001, - ], - - [ - 'address' => '华龙区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 410911 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1984, - 'end_year' => 1986, - ], - ], - 410921 => - [ - - [ - 'address' => '滑县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 410922 => - [ - - [ - 'address' => '清丰县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410923 => - [ - - [ - 'address' => '南乐县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410924 => - [ - - [ - 'address' => '内黄县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 410925 => - [ - - [ - 'address' => '长垣县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 410926 => - [ - - [ - 'address' => '范县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410927 => - [ - - [ - 'address' => '台前县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 410928 => - [ - - [ - 'address' => '濮阳县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 411000 => - [ - - [ - 'address' => '许昌市', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 411002 => - [ - - [ - 'address' => '魏都区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 411003 => - [ - - [ - 'address' => '建安区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 411021 => - [ - - [ - 'address' => '禹县', - 'start_year' => 1986, - 'end_year' => 1987, - ], - ], - 411022 => - [ - - [ - 'address' => '长葛县', - 'start_year' => 1986, - 'end_year' => 1992, - ], - ], - 411023 => - [ - - [ - 'address' => '许昌县', - 'start_year' => 1986, - 'end_year' => 2015, - ], - ], - 411024 => - [ - - [ - 'address' => '鄢陵县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 411025 => - [ - - [ - 'address' => '襄城县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 411081 => - [ - - [ - 'address' => '禹州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 411082 => - [ - - [ - 'address' => '长葛市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 411100 => - [ - - [ - 'address' => '漯河市', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 411102 => - [ - - [ - 'address' => '源汇区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 411103 => - [ - - [ - 'address' => '郾城区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 411104 => - [ - - [ - 'address' => '召陵区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 411121 => - [ - - [ - 'address' => '舞阳县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 411122 => - [ - - [ - 'address' => '临颍县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 411123 => - [ - - [ - 'address' => '郾城县', - 'start_year' => 1986, - 'end_year' => 2003, - ], - ], - 411200 => - [ - - [ - 'address' => '三门峡市', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 411202 => - [ - - [ - 'address' => '湖滨区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 411203 => - [ - - [ - 'address' => '陕州区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 411221 => - [ - - [ - 'address' => '渑池县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 411222 => - [ - - [ - 'address' => '陕县', - 'start_year' => 1986, - 'end_year' => 2014, - ], - ], - 411223 => - [ - - [ - 'address' => '灵宝县', - 'start_year' => 1986, - 'end_year' => 1992, - ], - ], - 411224 => - [ - - [ - 'address' => '卢氏县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 411281 => - [ - - [ - 'address' => '义马市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 411282 => - [ - - [ - 'address' => '灵宝市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 411300 => - [ - - [ - 'address' => '南阳市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411302 => - [ - - [ - 'address' => '宛城区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411303 => - [ - - [ - 'address' => '卧龙区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411321 => - [ - - [ - 'address' => '南召县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411322 => - [ - - [ - 'address' => '方城县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411323 => - [ - - [ - 'address' => '西峡县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411324 => - [ - - [ - 'address' => '镇平县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411325 => - [ - - [ - 'address' => '内乡县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411326 => - [ - - [ - 'address' => '淅川县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411327 => - [ - - [ - 'address' => '社旗县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411328 => - [ - - [ - 'address' => '唐河县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411329 => - [ - - [ - 'address' => '新野县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411330 => - [ - - [ - 'address' => '桐柏县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 411381 => - [ - - [ - 'address' => '邓州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 411400 => - [ - - [ - 'address' => '商丘市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 411402 => - [ - - [ - 'address' => '梁园区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 411403 => - [ - - [ - 'address' => '睢阳区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 411421 => - [ - - [ - 'address' => '民权县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 411422 => - [ - - [ - 'address' => '睢县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 411423 => - [ - - [ - 'address' => '宁陵县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 411424 => - [ - - [ - 'address' => '柘城县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 411425 => - [ - - [ - 'address' => '虞城县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 411426 => - [ - - [ - 'address' => '夏邑县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 411481 => - [ - - [ - 'address' => '永城市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 411500 => - [ - - [ - 'address' => '信阳市', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 411502 => - [ - - [ - 'address' => '浉河区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 411503 => - [ - - [ - 'address' => '平桥区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 411521 => - [ - - [ - 'address' => '罗山县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 411522 => - [ - - [ - 'address' => '光山县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 411523 => - [ - - [ - 'address' => '新县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 411524 => - [ - - [ - 'address' => '商城县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 411525 => - [ - - [ - 'address' => '固始县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 411526 => - [ - - [ - 'address' => '潢川县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 411527 => - [ - - [ - 'address' => '淮滨县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 411528 => - [ - - [ - 'address' => '息县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 411600 => - [ - - [ - 'address' => '周口市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411602 => - [ - - [ - 'address' => '川汇区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411621 => - [ - - [ - 'address' => '扶沟县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411622 => - [ - - [ - 'address' => '西华县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411623 => - [ - - [ - 'address' => '商水县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411624 => - [ - - [ - 'address' => '沈丘县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411625 => - [ - - [ - 'address' => '郸城县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411626 => - [ - - [ - 'address' => '淮阳县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411627 => - [ - - [ - 'address' => '太康县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411628 => - [ - - [ - 'address' => '鹿邑县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411681 => - [ - - [ - 'address' => '项城市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411700 => - [ - - [ - 'address' => '驻马店市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411702 => - [ - - [ - 'address' => '驿城区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411721 => - [ - - [ - 'address' => '西平县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411722 => - [ - - [ - 'address' => '上蔡县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411723 => - [ - - [ - 'address' => '平舆县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411724 => - [ - - [ - 'address' => '正阳县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411725 => - [ - - [ - 'address' => '确山县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411726 => - [ - - [ - 'address' => '泌阳县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411727 => - [ - - [ - 'address' => '汝南县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411728 => - [ - - [ - 'address' => '遂平县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 411729 => - [ - - [ - 'address' => '新蔡县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 412100 => - [ - - [ - 'address' => '安阳地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412101 => - [ - - [ - 'address' => '安阳市', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 412102 => - [ - - [ - 'address' => '文峰区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 412103 => - [ - - [ - 'address' => '北关区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 412104 => - [ - - [ - 'address' => '铁西区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 412111 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 412121 => - [ - - [ - 'address' => '林县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 412122 => - [ - - [ - 'address' => '安阳县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 412123 => - [ - - [ - 'address' => '汤阴县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 412124 => - [ - - [ - 'address' => '淇县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 412125 => - [ - - [ - 'address' => '浚县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 412126 => - [ - - [ - 'address' => '濮阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412127 => - [ - - [ - 'address' => '滑县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412128 => - [ - - [ - 'address' => '清丰县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412129 => - [ - - [ - 'address' => '南乐县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412130 => - [ - - [ - 'address' => '内黄县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412131 => - [ - - [ - 'address' => '长垣县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412132 => - [ - - [ - 'address' => '范县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412133 => - [ - - [ - 'address' => '台前县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412200 => - [ - - [ - 'address' => '新乡地区', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412201 => - [ - - [ - 'address' => '新乡市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412202 => - [ - - [ - 'address' => '红旗区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412203 => - [ - - [ - 'address' => '新华区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412204 => - [ - - [ - 'address' => '北站区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 412211 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412221 => - [ - - [ - 'address' => '沁阳县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412222 => - [ - - [ - 'address' => '博爱县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412223 => - [ - - [ - 'address' => '济源县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412224 => - [ - - [ - 'address' => '孟县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412225 => - [ - - [ - 'address' => '温县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412226 => - [ - - [ - 'address' => '武陟县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412227 => - [ - - [ - 'address' => '修武县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412228 => - [ - - [ - 'address' => '获嘉县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412229 => - [ - - [ - 'address' => '新乡县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412230 => - [ - - [ - 'address' => '辉县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412231 => - [ - - [ - 'address' => '汲县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412232 => - [ - - [ - 'address' => '原阳县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412233 => - [ - - [ - 'address' => '延津县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412234 => - [ - - [ - 'address' => '封丘县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412300 => - [ - - [ - 'address' => '商丘地区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 412301 => - [ - - [ - 'address' => '商丘市', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 412302 => - [ - - [ - 'address' => '永城市', - 'start_year' => 1996, - 'end_year' => 1996, - ], - ], - 412321 => - [ - - [ - 'address' => '虞城县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 412322 => - [ - - [ - 'address' => '商丘县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 412323 => - [ - - [ - 'address' => '民权县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 412324 => - [ - - [ - 'address' => '宁陵县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 412325 => - [ - - [ - 'address' => '睢县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 412326 => - [ - - [ - 'address' => '夏邑县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 412327 => - [ - - [ - 'address' => '柘城县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 412328 => - [ - - [ - 'address' => '永城县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 412400 => - [ - - [ - 'address' => '开封地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412421 => - [ - - [ - 'address' => '杞县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412422 => - [ - - [ - 'address' => '通许县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412423 => - [ - - [ - 'address' => '尉氏县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412424 => - [ - - [ - 'address' => '开封县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412425 => - [ - - [ - 'address' => '中牟县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412426 => - [ - - [ - 'address' => '新郑县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '巩县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 412427 => - [ - - [ - 'address' => '巩县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '登封县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 412428 => - [ - - [ - 'address' => '登封县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '新郑县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 412429 => - [ - - [ - 'address' => '密县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412430 => - [ - - [ - 'address' => '兰考县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412500 => - [ - - [ - 'address' => '洛阳地区', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412501 => - [ - - [ - 'address' => '三门峡市', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412502 => - [ - - [ - 'address' => '义马市', - 'start_year' => 1981, - 'end_year' => 1985, - ], - ], - 412521 => - [ - - [ - 'address' => '偃师县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412522 => - [ - - [ - 'address' => '孟津县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412523 => - [ - - [ - 'address' => '新安县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412524 => - [ - - [ - 'address' => '渑池县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412525 => - [ - - [ - 'address' => '陕县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412526 => - [ - - [ - 'address' => '灵宝县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412527 => - [ - - [ - 'address' => '伊川县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412528 => - [ - - [ - 'address' => '汝阳县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412529 => - [ - - [ - 'address' => '嵩县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412530 => - [ - - [ - 'address' => '洛宁县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412531 => - [ - - [ - 'address' => '卢氏县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412532 => - [ - - [ - 'address' => '栾川县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412533 => - [ - - [ - 'address' => '临汝县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412534 => - [ - - [ - 'address' => '宜阳县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412600 => - [ - - [ - 'address' => '许昌地区', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412601 => - [ - - [ - 'address' => '许昌市', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412602 => - [ - - [ - 'address' => '漯河市', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412621 => - [ - - [ - 'address' => '长葛县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412622 => - [ - - [ - 'address' => '禹县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412623 => - [ - - [ - 'address' => '鄢陵县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412624 => - [ - - [ - 'address' => '许昌县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412625 => - [ - - [ - 'address' => '郏县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412626 => - [ - - [ - 'address' => '临颍县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412627 => - [ - - [ - 'address' => '襄城县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412628 => - [ - - [ - 'address' => '宝丰县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412629 => - [ - - [ - 'address' => '郾城县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412630 => - [ - - [ - 'address' => '叶县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412631 => - [ - - [ - 'address' => '鲁山县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 412632 => - [ - - [ - 'address' => '舞阳县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 412700 => - [ - - [ - 'address' => '周口地区', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412701 => - [ - - [ - 'address' => '周口市', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412702 => - [ - - [ - 'address' => '项城市', - 'start_year' => 1993, - 'end_year' => 1999, - ], - ], - 412721 => - [ - - [ - 'address' => '扶沟县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412722 => - [ - - [ - 'address' => '西华县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412723 => - [ - - [ - 'address' => '商水县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412724 => - [ - - [ - 'address' => '太康县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412725 => - [ - - [ - 'address' => '鹿邑县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412726 => - [ - - [ - 'address' => '郸城县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412727 => - [ - - [ - 'address' => '淮阳县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412728 => - [ - - [ - 'address' => '沈丘县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412729 => - [ - - [ - 'address' => '项城县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 412800 => - [ - - [ - 'address' => '驻马店地区', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412801 => - [ - - [ - 'address' => '驻马店市', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412821 => - [ - - [ - 'address' => '确山县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412822 => - [ - - [ - 'address' => '泌阳县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412823 => - [ - - [ - 'address' => '遂平县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412824 => - [ - - [ - 'address' => '西平县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412825 => - [ - - [ - 'address' => '上蔡县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412826 => - [ - - [ - 'address' => '汝南县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412827 => - [ - - [ - 'address' => '平舆县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412828 => - [ - - [ - 'address' => '新蔡县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412829 => - [ - - [ - 'address' => '正阳县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 412900 => - [ - - [ - 'address' => '南阳地区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412901 => - [ - - [ - 'address' => '南阳市', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412902 => - [ - - [ - 'address' => '邓州市', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 412921 => - [ - - [ - 'address' => '南召县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412922 => - [ - - [ - 'address' => '方城县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412923 => - [ - - [ - 'address' => '西峡县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412924 => - [ - - [ - 'address' => '南阳县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412925 => - [ - - [ - 'address' => '镇平县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412926 => - [ - - [ - 'address' => '内乡县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412927 => - [ - - [ - 'address' => '淅川县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412928 => - [ - - [ - 'address' => '社旗县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412929 => - [ - - [ - 'address' => '唐河县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412930 => - [ - - [ - 'address' => '邓县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 412931 => - [ - - [ - 'address' => '新野县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 412932 => - [ - - [ - 'address' => '桐柏县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 413000 => - [ - - [ - 'address' => '信阳地区', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 413001 => - [ - - [ - 'address' => '信阳市', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 413021 => - [ - - [ - 'address' => '息县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 413022 => - [ - - [ - 'address' => '淮滨县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 413023 => - [ - - [ - 'address' => '信阳县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 413024 => - [ - - [ - 'address' => '潢川县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 413025 => - [ - - [ - 'address' => '光山县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 413026 => - [ - - [ - 'address' => '固始县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 413027 => - [ - - [ - 'address' => '商城县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 413028 => - [ - - [ - 'address' => '罗山县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 413029 => - [ - - [ - 'address' => '新县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 419001 => - [ - - [ - 'address' => '义马市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - - [ - 'address' => '济源市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 419002 => - [ - - [ - 'address' => '汝州市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 419003 => - [ - - [ - 'address' => '济源市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 419004 => - [ - - [ - 'address' => '禹州市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 419005 => - [ - - [ - 'address' => '卫辉市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 419006 => - [ - - [ - 'address' => '辉县市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 419007 => - [ - - [ - 'address' => '沁阳市', - 'start_year' => 1989, - 'end_year' => 1994, - ], - ], - 419008 => - [ - - [ - 'address' => '舞钢市', - 'start_year' => 1990, - 'end_year' => 1994, - ], - ], - 419009 => - [ - - [ - 'address' => '巩义市', - 'start_year' => 1991, - 'end_year' => 1994, - ], - ], - 419010 => - [ - - [ - 'address' => '灵宝市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 419011 => - [ - - [ - 'address' => '长葛市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 419012 => - [ - - [ - 'address' => '偃师市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 419013 => - [ - - [ - 'address' => '邓州市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 419014 => - [ - - [ - 'address' => '林州市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 419015 => - [ - - [ - 'address' => '新密市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 419016 => - [ - - [ - 'address' => '荥阳市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 419017 => - [ - - [ - 'address' => '新郑市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 419018 => - [ - - [ - 'address' => '登封市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 420000 => - [ - - [ - 'address' => '湖北省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420100 => - [ - - [ - 'address' => '武汉市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420102 => - [ - - [ - 'address' => '江岸区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420103 => - [ - - [ - 'address' => '江汉区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420104 => - [ - - [ - 'address' => '硚口区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420105 => - [ - - [ - 'address' => '汉阳区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420106 => - [ - - [ - 'address' => '武昌区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420107 => - [ - - [ - 'address' => '青山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420111 => - [ - - [ - 'address' => '洪山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420112 => - [ - - [ - 'address' => '东西湖区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420113 => - [ - - [ - 'address' => '汉南区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 420114 => - [ - - [ - 'address' => '蔡甸区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 420115 => - [ - - [ - 'address' => '江夏区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 420116 => - [ - - [ - 'address' => '黄陂区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 420117 => - [ - - [ - 'address' => '新洲区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 420121 => - [ - - [ - 'address' => '汉阳县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 420122 => - [ - - [ - 'address' => '武昌县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 420123 => - [ - - [ - 'address' => '黄陂县', - 'start_year' => 1983, - 'end_year' => 1997, - ], - ], - 420124 => - [ - - [ - 'address' => '新洲县', - 'start_year' => 1983, - 'end_year' => 1997, - ], - ], - 420200 => - [ - - [ - 'address' => '黄石市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420202 => - [ - - [ - 'address' => '黄石港区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420203 => - [ - - [ - 'address' => '石灰窑区', - 'start_year' => '', - 'end_year' => 2000, - ], - - [ - 'address' => '西塞山区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 420204 => - [ - - [ - 'address' => '下陆区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420205 => - [ - - [ - 'address' => '铁山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420211 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 420221 => - [ - - [ - 'address' => '大冶县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 420222 => - [ - - [ - 'address' => '阳新县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 420281 => - [ - - [ - 'address' => '大冶市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 420300 => - [ - - [ - 'address' => '十堰市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420302 => - [ - - [ - 'address' => '茅箭区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 420303 => - [ - - [ - 'address' => '张湾区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 420304 => - [ - - [ - 'address' => '郧阳区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 420321 => - [ - - [ - 'address' => '郧县', - 'start_year' => 1994, - 'end_year' => 2013, - ], - ], - 420322 => - [ - - [ - 'address' => '郧西县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 420323 => - [ - - [ - 'address' => '竹山县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 420324 => - [ - - [ - 'address' => '竹溪县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 420325 => - [ - - [ - 'address' => '房县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 420381 => - [ - - [ - 'address' => '丹江口市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 420400 => - [ - - [ - 'address' => '沙市市', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 420500 => - [ - - [ - 'address' => '宜昌市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 420502 => - [ - - [ - 'address' => '西陵区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 420503 => - [ - - [ - 'address' => '伍家岗区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 420504 => - [ - - [ - 'address' => '点军区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 420505 => - [ - - [ - 'address' => '猇亭区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 420506 => - [ - - [ - 'address' => '夷陵区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 420521 => - [ - - [ - 'address' => '宜昌县', - 'start_year' => 1992, - 'end_year' => 2000, - ], - ], - 420523 => - [ - - [ - 'address' => '枝江县', - 'start_year' => 1992, - 'end_year' => 1995, - ], - ], - 420525 => - [ - - [ - 'address' => '远安县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 420526 => - [ - - [ - 'address' => '兴山县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 420527 => - [ - - [ - 'address' => '秭归县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 420528 => - [ - - [ - 'address' => '长阳土家族自治县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 420529 => - [ - - [ - 'address' => '五峰土家族自治县', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 420581 => - [ - - [ - 'address' => '枝城市', - 'start_year' => 1996, - 'end_year' => 1997, - ], - - [ - 'address' => '宜都市', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 420582 => - [ - - [ - 'address' => '当阳市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 420583 => - [ - - [ - 'address' => '枝城市', - 'start_year' => 1995, - 'end_year' => 1995, - ], - - [ - 'address' => '枝江市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 420600 => - [ - - [ - 'address' => '襄樊市', - 'start_year' => '', - 'end_year' => 2009, - ], - - [ - 'address' => '襄阳市', - 'start_year' => 2010, - 'end_year' => '', - ], - ], - 420602 => - [ - - [ - 'address' => '襄城区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 420603 => - [ - - [ - 'address' => '樊东区', - 'start_year' => 1984, - 'end_year' => 1994, - ], - ], - 420604 => - [ - - [ - 'address' => '樊西区', - 'start_year' => 1984, - 'end_year' => 1994, - ], - ], - 420606 => - [ - - [ - 'address' => '樊城区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 420607 => - [ - - [ - 'address' => '襄阳区', - 'start_year' => 2001, - 'end_year' => 2009, - ], - - [ - 'address' => '襄州区', - 'start_year' => 2010, - 'end_year' => '', - ], - ], - 420611 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1984, - 'end_year' => 1994, - ], - ], - 420621 => - [ - - [ - 'address' => '襄阳县', - 'start_year' => 1983, - 'end_year' => 2000, - ], - ], - 420622 => - [ - - [ - 'address' => '枣阳县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 420623 => - [ - - [ - 'address' => '宜城县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 420624 => - [ - - [ - 'address' => '南漳县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 420625 => - [ - - [ - 'address' => '谷城县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 420626 => - [ - - [ - 'address' => '保康县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 420682 => - [ - - [ - 'address' => '老河口市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 420683 => - [ - - [ - 'address' => '枣阳市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 420684 => - [ - - [ - 'address' => '宜城市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 420700 => - [ - - [ - 'address' => '鄂州市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 420702 => - [ - - [ - 'address' => '梁子湖区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 420703 => - [ - - [ - 'address' => '黄州区', - 'start_year' => 1984, - 'end_year' => 1986, - ], - - [ - 'address' => '华容区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 420704 => - [ - - [ - 'address' => '鄂城区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 420800 => - [ - - [ - 'address' => '荆门市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 420802 => - [ - - [ - 'address' => '东宝区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 420803 => - [ - - [ - 'address' => '沙洋区', - 'start_year' => 1985, - 'end_year' => 1997, - ], - ], - 420804 => - [ - - [ - 'address' => '掇刀区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 420821 => - [ - - [ - 'address' => '京山县', - 'start_year' => 1996, - 'end_year' => 2017, - ], - ], - 420822 => - [ - - [ - 'address' => '沙洋县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 420881 => - [ - - [ - 'address' => '钟祥市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 420882 => - [ - - [ - 'address' => '京山市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 420900 => - [ - - [ - 'address' => '孝感市', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 420901 => - [ - - [ - 'address' => '随州市', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 420902 => - [ - - [ - 'address' => '孝南区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 420921 => - [ - - [ - 'address' => '孝昌县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 420922 => - [ - - [ - 'address' => '大悟县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 420923 => - [ - - [ - 'address' => '云梦县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 420924 => - [ - - [ - 'address' => '汉川县', - 'start_year' => 1993, - 'end_year' => 1996, - ], - ], - 420981 => - [ - - [ - 'address' => '应城市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 420982 => - [ - - [ - 'address' => '安陆市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 420983 => - [ - - [ - 'address' => '广水市', - 'start_year' => 1995, - 'end_year' => 1999, - ], - ], - 420984 => - [ - - [ - 'address' => '汉川市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 421000 => - [ - - [ - 'address' => '荆沙市', - 'start_year' => 1994, - 'end_year' => 1995, - ], - - [ - 'address' => '荆州市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 421001 => - [ - - [ - 'address' => '老河口市', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 421002 => - [ - - [ - 'address' => '沙市区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 421003 => - [ - - [ - 'address' => '荆州区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 421004 => - [ - - [ - 'address' => '江陵区', - 'start_year' => 1994, - 'end_year' => 1997, - ], - ], - 421022 => - [ - - [ - 'address' => '公安县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 421023 => - [ - - [ - 'address' => '监利县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 421024 => - [ - - [ - 'address' => '松滋县', - 'start_year' => 1994, - 'end_year' => 1994, - ], - - [ - 'address' => '江陵县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 421025 => - [ - - [ - 'address' => '京山县', - 'start_year' => 1994, - 'end_year' => 1995, - ], - ], - 421081 => - [ - - [ - 'address' => '石首市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421082 => - [ - - [ - 'address' => '钟祥市', - 'start_year' => 1995, - 'end_year' => 1995, - ], - ], - 421083 => - [ - - [ - 'address' => '洪湖市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421087 => - [ - - [ - 'address' => '松滋市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421100 => - [ - - [ - 'address' => '黄冈市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421102 => - [ - - [ - 'address' => '黄州区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421121 => - [ - - [ - 'address' => '团风县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421122 => - [ - - [ - 'address' => '红安县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421123 => - [ - - [ - 'address' => '罗田县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421124 => - [ - - [ - 'address' => '英山县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421125 => - [ - - [ - 'address' => '浠水县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421126 => - [ - - [ - 'address' => '蕲春县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421127 => - [ - - [ - 'address' => '黄梅县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421181 => - [ - - [ - 'address' => '麻城市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421182 => - [ - - [ - 'address' => '武穴市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 421200 => - [ - - [ - 'address' => '咸宁市', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 421202 => - [ - - [ - 'address' => '咸安区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 421221 => - [ - - [ - 'address' => '嘉鱼县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 421222 => - [ - - [ - 'address' => '通城县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 421223 => - [ - - [ - 'address' => '崇阳县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 421224 => - [ - - [ - 'address' => '通山县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 421281 => - [ - - [ - 'address' => '赤壁市', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 421300 => - [ - - [ - 'address' => '随州市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 421303 => - [ - - [ - 'address' => '曾都区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 421321 => - [ - - [ - 'address' => '随县', - 'start_year' => 2009, - 'end_year' => '', - ], - ], - 421381 => - [ - - [ - 'address' => '广水市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 422100 => - [ - - [ - 'address' => '黄冈地区', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 422101 => - [ - - [ - 'address' => '鄂城市', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '麻城市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 422102 => - [ - - [ - 'address' => '武穴市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 422103 => - [ - - [ - 'address' => '黄州市', - 'start_year' => 1990, - 'end_year' => 1994, - ], - ], - 422121 => - [ - - [ - 'address' => '黄冈县', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 422122 => - [ - - [ - 'address' => '新洲县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422123 => - [ - - [ - 'address' => '红安县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 422124 => - [ - - [ - 'address' => '麻城县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 422125 => - [ - - [ - 'address' => '罗田县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 422126 => - [ - - [ - 'address' => '英山县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 422127 => - [ - - [ - 'address' => '浠水县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 422128 => - [ - - [ - 'address' => '蕲春县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 422129 => - [ - - [ - 'address' => '广济县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 422130 => - [ - - [ - 'address' => '黄梅县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 422131 => - [ - - [ - 'address' => '鄂城县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422200 => - [ - - [ - 'address' => '孝感地区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 422201 => - [ - - [ - 'address' => '孝感市', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 422202 => - [ - - [ - 'address' => '应城市', - 'start_year' => 1986, - 'end_year' => 1992, - ], - ], - 422203 => - [ - - [ - 'address' => '安陆市', - 'start_year' => 1987, - 'end_year' => 1992, - ], - ], - 422204 => - [ - - [ - 'address' => '广水市', - 'start_year' => 1988, - 'end_year' => 1992, - ], - ], - 422221 => - [ - - [ - 'address' => '孝感县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422222 => - [ - - [ - 'address' => '黄陂县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422223 => - [ - - [ - 'address' => '大悟县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 422224 => - [ - - [ - 'address' => '应山县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 422225 => - [ - - [ - 'address' => '安陆县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 422226 => - [ - - [ - 'address' => '云梦县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 422227 => - [ - - [ - 'address' => '应城县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 422228 => - [ - - [ - 'address' => '汉川县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 422300 => - [ - - [ - 'address' => '咸宁地区', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 422301 => - [ - - [ - 'address' => '咸宁市', - 'start_year' => 1983, - 'end_year' => 1997, - ], - ], - 422302 => - [ - - [ - 'address' => '蒲圻市', - 'start_year' => 1986, - 'end_year' => 1997, - ], - ], - 422321 => - [ - - [ - 'address' => '咸宁县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422322 => - [ - - [ - 'address' => '嘉鱼县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 422323 => - [ - - [ - 'address' => '蒲圻县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 422324 => - [ - - [ - 'address' => '通城县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 422325 => - [ - - [ - 'address' => '崇阳县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 422326 => - [ - - [ - 'address' => '通山县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 422327 => - [ - - [ - 'address' => '阳新县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 422400 => - [ - - [ - 'address' => '荆州地区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422401 => - [ - - [ - 'address' => '荆门市', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '仙桃市', - 'start_year' => 1986, - 'end_year' => 1993, - ], - ], - 422402 => - [ - - [ - 'address' => '石首市', - 'start_year' => 1986, - 'end_year' => 1993, - ], - ], - 422403 => - [ - - [ - 'address' => '洪湖市', - 'start_year' => 1987, - 'end_year' => 1993, - ], - ], - 422404 => - [ - - [ - 'address' => '天门市', - 'start_year' => 1987, - 'end_year' => 1993, - ], - ], - 422405 => - [ - - [ - 'address' => '潜江市', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 422406 => - [ - - [ - 'address' => '钟祥市', - 'start_year' => 1992, - 'end_year' => 1993, - ], - ], - 422421 => - [ - - [ - 'address' => '江陵县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422422 => - [ - - [ - 'address' => '松滋县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422423 => - [ - - [ - 'address' => '公安县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422424 => - [ - - [ - 'address' => '石首县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 422425 => - [ - - [ - 'address' => '监利县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422426 => - [ - - [ - 'address' => '洪湖县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 422427 => - [ - - [ - 'address' => '沔阳县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 422428 => - [ - - [ - 'address' => '天门县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 422429 => - [ - - [ - 'address' => '潜江县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 422430 => - [ - - [ - 'address' => '荆门县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422431 => - [ - - [ - 'address' => '钟祥县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 422432 => - [ - - [ - 'address' => '京山县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422500 => - [ - - [ - 'address' => '襄阳地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422501 => - [ - - [ - 'address' => '随州市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422502 => - [ - - [ - 'address' => '老河口市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422521 => - [ - - [ - 'address' => '樊阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422522 => - [ - - [ - 'address' => '枣阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422523 => - [ - - [ - 'address' => '随县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422524 => - [ - - [ - 'address' => '宜城县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422525 => - [ - - [ - 'address' => '南漳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422526 => - [ - - [ - 'address' => '光化县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422527 => - [ - - [ - 'address' => '谷城县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422528 => - [ - - [ - 'address' => '保康县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422600 => - [ - - [ - 'address' => '郧阳地区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422601 => - [ - - [ - 'address' => '丹江口市', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 422621 => - [ - - [ - 'address' => '均县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422622 => - [ - - [ - 'address' => '郧县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422623 => - [ - - [ - 'address' => '郧西县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422624 => - [ - - [ - 'address' => '竹山县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422625 => - [ - - [ - 'address' => '竹溪县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422626 => - [ - - [ - 'address' => '房县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 422627 => - [ - - [ - 'address' => '神农架林区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422700 => - [ - - [ - 'address' => '宜昌地区', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 422701 => - [ - - [ - 'address' => '枝城市', - 'start_year' => 1987, - 'end_year' => 1991, - ], - ], - 422702 => - [ - - [ - 'address' => '当阳市', - 'start_year' => 1988, - 'end_year' => 1991, - ], - ], - 422721 => - [ - - [ - 'address' => '宜昌县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 422722 => - [ - - [ - 'address' => '宜都县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 422723 => - [ - - [ - 'address' => '枝江县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 422724 => - [ - - [ - 'address' => '当阳县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 422725 => - [ - - [ - 'address' => '远安县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 422726 => - [ - - [ - 'address' => '兴山县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 422727 => - [ - - [ - 'address' => '秭归县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 422728 => - [ - - [ - 'address' => '长阳县', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '长阳土家族自治县', - 'start_year' => 1984, - 'end_year' => 1991, - ], - ], - 422729 => - [ - - [ - 'address' => '五峰县', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '五峰土家族自治县', - 'start_year' => 1984, - 'end_year' => 1991, - ], - ], - 422800 => - [ - - [ - 'address' => '恩施地区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '鄂西土家族苗族自治州', - 'start_year' => 1983, - 'end_year' => 1992, - ], - - [ - 'address' => '恩施土家族苗族自治州', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 422801 => - [ - - [ - 'address' => '恩施市', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 422802 => - [ - - [ - 'address' => '利川市', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 422821 => - [ - - [ - 'address' => '恩施县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 422822 => - [ - - [ - 'address' => '建始县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 422823 => - [ - - [ - 'address' => '巴东县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 422824 => - [ - - [ - 'address' => '利川县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 422825 => - [ - - [ - 'address' => '宣恩县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 422826 => - [ - - [ - 'address' => '咸丰县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 422827 => - [ - - [ - 'address' => '来凤土家族自治县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '来凤县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 422828 => - [ - - [ - 'address' => '鹤峰土家族自治县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '鹤峰县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 422921 => - [ - - [ - 'address' => '神农架林区', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 429001 => - [ - - [ - 'address' => '随州市', - 'start_year' => 1984, - 'end_year' => 1999, - ], - ], - 429002 => - [ - - [ - 'address' => '老河口市', - 'start_year' => 1984, - 'end_year' => 1994, - ], - ], - 429003 => - [ - - [ - 'address' => '枣阳市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 429004 => - [ - - [ - 'address' => '仙桃市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 429005 => - [ - - [ - 'address' => '潜江市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 429006 => - [ - - [ - 'address' => '天门市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 429007 => - [ - - [ - 'address' => '枝城市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 429008 => - [ - - [ - 'address' => '当阳市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 429009 => - [ - - [ - 'address' => '应城市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 429010 => - [ - - [ - 'address' => '安陆市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 429011 => - [ - - [ - 'address' => '广水市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 429012 => - [ - - [ - 'address' => '石首市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 429013 => - [ - - [ - 'address' => '洪湖市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 429014 => - [ - - [ - 'address' => '钟祥市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 429015 => - [ - - [ - 'address' => '丹江口市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 429016 => - [ - - [ - 'address' => '大冶市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 429017 => - [ - - [ - 'address' => '宜城市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 429021 => - [ - - [ - 'address' => '神农架林区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 430000 => - [ - - [ - 'address' => '湖南省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 430100 => - [ - - [ - 'address' => '长沙市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 430102 => - [ - - [ - 'address' => '城东区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '东区', - 'start_year' => 1983, - 'end_year' => 1995, - ], - - [ - 'address' => '芙蓉区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 430103 => - [ - - [ - 'address' => '城南区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '南区', - 'start_year' => 1983, - 'end_year' => 1995, - ], - - [ - 'address' => '天心区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 430104 => - [ - - [ - 'address' => '城西区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '西区', - 'start_year' => 1983, - 'end_year' => 1995, - ], - - [ - 'address' => '岳麓区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 430105 => - [ - - [ - 'address' => '城北区', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '北区', - 'start_year' => 1983, - 'end_year' => 1995, - ], - - [ - 'address' => '开福区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 430111 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1995, - ], - - [ - 'address' => '雨花区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 430112 => - [ - - [ - 'address' => '望城区', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 430121 => - [ - - [ - 'address' => '长沙县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 430122 => - [ - - [ - 'address' => '望城县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 430123 => - [ - - [ - 'address' => '浏阳县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 430124 => - [ - - [ - 'address' => '宁乡县', - 'start_year' => 1983, - 'end_year' => 2016, - ], - ], - 430181 => - [ - - [ - 'address' => '浏阳市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 430182 => - [ - - [ - 'address' => '宁乡市', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 430200 => - [ - - [ - 'address' => '株洲市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 430202 => - [ - - [ - 'address' => '东区', - 'start_year' => '', - 'end_year' => 1996, - ], - - [ - 'address' => '荷塘区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 430203 => - [ - - [ - 'address' => '北区', - 'start_year' => '', - 'end_year' => 1996, - ], - - [ - 'address' => '芦淞区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 430204 => - [ - - [ - 'address' => '南区', - 'start_year' => '', - 'end_year' => 1996, - ], - - [ - 'address' => '石峰区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 430211 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1996, - ], - - [ - 'address' => '天元区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 430212 => - [ - - [ - 'address' => '渌口区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 430219 => - [ - - [ - 'address' => '醴陵市', - 'start_year' => 1985, - 'end_year' => 1985, - ], - ], - 430221 => - [ - - [ - 'address' => '株洲县', - 'start_year' => '', - 'end_year' => 2017, - ], - ], - 430222 => - [ - - [ - 'address' => '醴陵县', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 430223 => - [ - - [ - 'address' => '攸县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 430224 => - [ - - [ - 'address' => '茶陵县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 430225 => - [ - - [ - 'address' => '酃县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - - [ - 'address' => '炎陵县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 430281 => - [ - - [ - 'address' => '醴陵市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 430300 => - [ - - [ - 'address' => '湘潭市', - 'start_year' => '', - 'end_year' => '', - ], - - [ - 'address' => '邵阳市', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 430302 => - [ - - [ - 'address' => '雨湖区', - 'start_year' => '', - 'end_year' => '', - ], - - [ - 'address' => '东区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 430303 => - [ - - [ - 'address' => '湘江区', - 'start_year' => '', - 'end_year' => 1991, - ], - - [ - 'address' => '西区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 430304 => - [ - - [ - 'address' => '岳塘区', - 'start_year' => '', - 'end_year' => '', - ], - - [ - 'address' => '桥头区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 430305 => - [ - - [ - 'address' => '板塘区', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 430306 => - [ - - [ - 'address' => '韶山区', - 'start_year' => 1988, - 'end_year' => 1989, - ], - ], - 430311 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 430321 => - [ - - [ - 'address' => '邵东县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '湘潭县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 430322 => - [ - - [ - 'address' => '新邵县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '湘乡县', - 'start_year' => 1984, - 'end_year' => 1985, - ], - ], - 430381 => - [ - - [ - 'address' => '湘乡市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 430382 => - [ - - [ - 'address' => '韶山市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 430400 => - [ - - [ - 'address' => '衡阳市', - 'start_year' => '', - 'end_year' => '', - ], - - [ - 'address' => '湘潭市', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 430402 => - [ - - [ - 'address' => '江东区', - 'start_year' => '', - 'end_year' => 2000, - ], - - [ - 'address' => '雨湖区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 430403 => - [ - - [ - 'address' => '城南区', - 'start_year' => '', - 'end_year' => 2000, - ], - - [ - 'address' => '湘江区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 430404 => - [ - - [ - 'address' => '城北区', - 'start_year' => '', - 'end_year' => 2000, - ], - - [ - 'address' => '岳塘区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 430405 => - [ - - [ - 'address' => '板塘区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - - [ - 'address' => '珠晖区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 430406 => - [ - - [ - 'address' => '雁峰区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 430407 => - [ - - [ - 'address' => '石鼓区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 430408 => - [ - - [ - 'address' => '蒸湘区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 430411 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 430412 => - [ - - [ - 'address' => '南岳区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430421 => - [ - - [ - 'address' => '湘潭县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '衡阳县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 430422 => - [ - - [ - 'address' => '湘乡县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '衡南县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 430423 => - [ - - [ - 'address' => '衡山县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 430424 => - [ - - [ - 'address' => '衡东县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 430425 => - [ - - [ - 'address' => '常宁县', - 'start_year' => 1984, - 'end_year' => 1995, - ], - ], - 430426 => - [ - - [ - 'address' => '祁东县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 430427 => - [ - - [ - 'address' => '耒阳县', - 'start_year' => 1984, - 'end_year' => 1985, - ], - ], - 430481 => - [ - - [ - 'address' => '耒阳市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 430482 => - [ - - [ - 'address' => '常宁市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 430500 => - [ - - [ - 'address' => '邵阳市', - 'start_year' => '', - 'end_year' => '', - ], - - [ - 'address' => '衡阳市', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 430502 => - [ - - [ - 'address' => '东区', - 'start_year' => '', - 'end_year' => 1996, - ], - - [ - 'address' => '江东区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - - [ - 'address' => '双清区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 430503 => - [ - - [ - 'address' => '西区', - 'start_year' => '', - 'end_year' => 1996, - ], - - [ - 'address' => '城南区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - - [ - 'address' => '大祥区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 430504 => - [ - - [ - 'address' => '桥头区', - 'start_year' => '', - 'end_year' => 1986, - ], - - [ - 'address' => '城北区', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 430511 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1996, - ], - - [ - 'address' => '北塔区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 430521 => - [ - - [ - 'address' => '衡阳县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '邵东县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 430522 => - [ - - [ - 'address' => '衡南县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '新邵县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 430523 => - [ - - [ - 'address' => '衡山县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '邵阳县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 430524 => - [ - - [ - 'address' => '衡东县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '隆回县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 430525 => - [ - - [ - 'address' => '常宁县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '洞口县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 430526 => - [ - - [ - 'address' => '祁东县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '武冈县', - 'start_year' => 1986, - 'end_year' => 1993, - ], - ], - 430527 => - [ - - [ - 'address' => '耒阳县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - - [ - 'address' => '绥宁县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 430528 => - [ - - [ - 'address' => '新宁县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 430529 => - [ - - [ - 'address' => '城步苗族自治县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 430581 => - [ - - [ - 'address' => '武冈市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 430600 => - [ - - [ - 'address' => '岳阳市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 430602 => - [ - - [ - 'address' => '南区', - 'start_year' => 1984, - 'end_year' => 1995, - ], - - [ - 'address' => '岳阳楼区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 430603 => - [ - - [ - 'address' => '北区', - 'start_year' => 1984, - 'end_year' => 1995, - ], - - [ - 'address' => '云溪区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 430611 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1984, - 'end_year' => 1995, - ], - - [ - 'address' => '君山区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 430621 => - [ - - [ - 'address' => '岳阳县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 430622 => - [ - - [ - 'address' => '临湘县', - 'start_year' => 1986, - 'end_year' => 1991, - ], - ], - 430623 => - [ - - [ - 'address' => '华容县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 430624 => - [ - - [ - 'address' => '湘阴县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 430626 => - [ - - [ - 'address' => '平江县', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 430627 => - [ - - [ - 'address' => '汨罗县', - 'start_year' => 1986, - 'end_year' => 1986, - ], - ], - 430681 => - [ - - [ - 'address' => '汨罗市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 430682 => - [ - - [ - 'address' => '临湘市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 430700 => - [ - - [ - 'address' => '常德市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430702 => - [ - - [ - 'address' => '武陵区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430703 => - [ - - [ - 'address' => '鼎城区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430721 => - [ - - [ - 'address' => '安乡县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430722 => - [ - - [ - 'address' => '汉寿县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430723 => - [ - - [ - 'address' => '澧县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430724 => - [ - - [ - 'address' => '临澧县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430725 => - [ - - [ - 'address' => '桃源县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430726 => - [ - - [ - 'address' => '石门县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430781 => - [ - - [ - 'address' => '津市市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 430800 => - [ - - [ - 'address' => '大庸市', - 'start_year' => 1988, - 'end_year' => 1993, - ], - - [ - 'address' => '张家界市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 430802 => - [ - - [ - 'address' => '永定区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430811 => - [ - - [ - 'address' => '武陵源区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430821 => - [ - - [ - 'address' => '慈利县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430822 => - [ - - [ - 'address' => '桑植县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 430900 => - [ - - [ - 'address' => '益阳市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 430902 => - [ - - [ - 'address' => '资阳区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 430903 => - [ - - [ - 'address' => '赫山区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 430921 => - [ - - [ - 'address' => '南县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 430922 => - [ - - [ - 'address' => '桃江县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 430923 => - [ - - [ - 'address' => '安化县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 430981 => - [ - - [ - 'address' => '沅江市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431000 => - [ - - [ - 'address' => '郴州市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 431002 => - [ - - [ - 'address' => '北湖区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 431003 => - [ - - [ - 'address' => '苏仙区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 431021 => - [ - - [ - 'address' => '桂阳县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 431022 => - [ - - [ - 'address' => '宜章县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 431023 => - [ - - [ - 'address' => '永兴县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 431024 => - [ - - [ - 'address' => '嘉禾县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 431025 => - [ - - [ - 'address' => '临武县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 431026 => - [ - - [ - 'address' => '汝城县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 431027 => - [ - - [ - 'address' => '桂东县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 431028 => - [ - - [ - 'address' => '安仁县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 431081 => - [ - - [ - 'address' => '资兴市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431100 => - [ - - [ - 'address' => '永州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431102 => - [ - - [ - 'address' => '芝山区', - 'start_year' => 1995, - 'end_year' => 2004, - ], - - [ - 'address' => '零陵区', - 'start_year' => 2005, - 'end_year' => '', - ], - ], - 431103 => - [ - - [ - 'address' => '冷水滩区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431121 => - [ - - [ - 'address' => '祁阳县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431122 => - [ - - [ - 'address' => '东安县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431123 => - [ - - [ - 'address' => '双牌县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431124 => - [ - - [ - 'address' => '道县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431125 => - [ - - [ - 'address' => '江永县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431126 => - [ - - [ - 'address' => '宁远县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431127 => - [ - - [ - 'address' => '蓝山县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431128 => - [ - - [ - 'address' => '新田县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431129 => - [ - - [ - 'address' => '江华瑶族自治县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 431200 => - [ - - [ - 'address' => '怀化市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431202 => - [ - - [ - 'address' => '鹤城区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431221 => - [ - - [ - 'address' => '中方县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431222 => - [ - - [ - 'address' => '沅陵县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431223 => - [ - - [ - 'address' => '辰溪县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431224 => - [ - - [ - 'address' => '溆浦县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431225 => - [ - - [ - 'address' => '会同县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431226 => - [ - - [ - 'address' => '麻阳苗族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431227 => - [ - - [ - 'address' => '新晃侗族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431228 => - [ - - [ - 'address' => '芷江侗族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431229 => - [ - - [ - 'address' => '靖州苗族侗族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431230 => - [ - - [ - 'address' => '通道侗族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431281 => - [ - - [ - 'address' => '洪江市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 431300 => - [ - - [ - 'address' => '娄底市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 431302 => - [ - - [ - 'address' => '娄星区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 431321 => - [ - - [ - 'address' => '双峰县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 431322 => - [ - - [ - 'address' => '新化县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 431381 => - [ - - [ - 'address' => '冷水江市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 431382 => - [ - - [ - 'address' => '涟源市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 432100 => - [ - - [ - 'address' => '湘潭地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432121 => - [ - - [ - 'address' => '湘潭县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432122 => - [ - - [ - 'address' => '湘乡县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432123 => - [ - - [ - 'address' => '醴陵县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432124 => - [ - - [ - 'address' => '浏阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432125 => - [ - - [ - 'address' => '攸县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432126 => - [ - - [ - 'address' => '茶陵县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432127 => - [ - - [ - 'address' => '酃县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432200 => - [ - - [ - 'address' => '岳阳地区', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432201 => - [ - - [ - 'address' => '岳阳市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432221 => - [ - - [ - 'address' => '岳阳县', - 'start_year' => '', - 'end_year' => 1980, - ], - ], - 432222 => - [ - - [ - 'address' => '平江县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432223 => - [ - - [ - 'address' => '湘阴县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432224 => - [ - - [ - 'address' => '汨罗县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432225 => - [ - - [ - 'address' => '临湘县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432226 => - [ - - [ - 'address' => '华容县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432300 => - [ - - [ - 'address' => '益阳地区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432301 => - [ - - [ - 'address' => '益阳市', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432302 => - [ - - [ - 'address' => '沅江市', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 432321 => - [ - - [ - 'address' => '益阳县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432322 => - [ - - [ - 'address' => '南县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432323 => - [ - - [ - 'address' => '沅江县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432324 => - [ - - [ - 'address' => '宁乡县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432325 => - [ - - [ - 'address' => '桃江县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432326 => - [ - - [ - 'address' => '安化县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432400 => - [ - - [ - 'address' => '常德地区', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432401 => - [ - - [ - 'address' => '常德市', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432402 => - [ - - [ - 'address' => '津市市', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432421 => - [ - - [ - 'address' => '常德县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432422 => - [ - - [ - 'address' => '安乡县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432423 => - [ - - [ - 'address' => '汉寿县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432424 => - [ - - [ - 'address' => '澧县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432425 => - [ - - [ - 'address' => '临澧县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432426 => - [ - - [ - 'address' => '桃源县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432427 => - [ - - [ - 'address' => '石门县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432428 => - [ - - [ - 'address' => '慈利县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 432500 => - [ - - [ - 'address' => '涟源地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '娄底地区', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 432501 => - [ - - [ - 'address' => '娄底市', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 432502 => - [ - - [ - 'address' => '冷水江市', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 432503 => - [ - - [ - 'address' => '涟源市', - 'start_year' => 1987, - 'end_year' => 1998, - ], - ], - 432521 => - [ - - [ - 'address' => '涟源县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 432522 => - [ - - [ - 'address' => '双峰县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 432523 => - [ - - [ - 'address' => '邵东县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432524 => - [ - - [ - 'address' => '新化县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 432525 => - [ - - [ - 'address' => '新邵县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432600 => - [ - - [ - 'address' => '邵阳地区', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432621 => - [ - - [ - 'address' => '邵阳县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432622 => - [ - - [ - 'address' => '隆回县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432623 => - [ - - [ - 'address' => '武冈县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432624 => - [ - - [ - 'address' => '洞口县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432625 => - [ - - [ - 'address' => '新宁县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432626 => - [ - - [ - 'address' => '绥宁县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432627 => - [ - - [ - 'address' => '城步苗族自治县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 432700 => - [ - - [ - 'address' => '衡阳地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432721 => - [ - - [ - 'address' => '衡阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432722 => - [ - - [ - 'address' => '衡南县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432723 => - [ - - [ - 'address' => '衡山县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432724 => - [ - - [ - 'address' => '衡东县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432725 => - [ - - [ - 'address' => '常宁县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432726 => - [ - - [ - 'address' => '祁东县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432727 => - [ - - [ - 'address' => '祁阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432800 => - [ - - [ - 'address' => '郴州地区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432801 => - [ - - [ - 'address' => '郴州市', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432802 => - [ - - [ - 'address' => '资兴市', - 'start_year' => 1984, - 'end_year' => 1993, - ], - ], - 432821 => - [ - - [ - 'address' => '郴县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432822 => - [ - - [ - 'address' => '桂阳县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432823 => - [ - - [ - 'address' => '永兴县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432824 => - [ - - [ - 'address' => '宜章县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432825 => - [ - - [ - 'address' => '资兴县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 432826 => - [ - - [ - 'address' => '嘉禾县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432827 => - [ - - [ - 'address' => '临武县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432828 => - [ - - [ - 'address' => '汝城县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432829 => - [ - - [ - 'address' => '桂东县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432830 => - [ - - [ - 'address' => '耒阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 432831 => - [ - - [ - 'address' => '安仁县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 432900 => - [ - - [ - 'address' => '零陵地区', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 432901 => - [ - - [ - 'address' => '永州市', - 'start_year' => 1982, - 'end_year' => 1994, - ], - ], - 432902 => - [ - - [ - 'address' => '冷水滩市', - 'start_year' => 1984, - 'end_year' => 1994, - ], - ], - 432921 => - [ - - [ - 'address' => '零陵县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 432922 => - [ - - [ - 'address' => '东安县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 432923 => - [ - - [ - 'address' => '道县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 432924 => - [ - - [ - 'address' => '宁远县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 432925 => - [ - - [ - 'address' => '江永县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 432926 => - [ - - [ - 'address' => '江华瑶族自治县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 432927 => - [ - - [ - 'address' => '蓝山县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 432928 => - [ - - [ - 'address' => '新田县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 432929 => - [ - - [ - 'address' => '双牌县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 432930 => - [ - - [ - 'address' => '祁阳县', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 433000 => - [ - - [ - 'address' => '黔阳地区', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '怀化地区', - 'start_year' => 1981, - 'end_year' => 1996, - ], - ], - 433001 => - [ - - [ - 'address' => '洪江市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '怀化市', - 'start_year' => 1982, - 'end_year' => 1996, - ], - ], - 433002 => - [ - - [ - 'address' => '怀化市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '洪江市', - 'start_year' => 1982, - 'end_year' => 1996, - ], - ], - 433021 => - [ - - [ - 'address' => '黔阳县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 433022 => - [ - - [ - 'address' => '沅陵县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 433023 => - [ - - [ - 'address' => '辰溪县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 433024 => - [ - - [ - 'address' => '溆浦县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 433025 => - [ - - [ - 'address' => '麻阳县', - 'start_year' => '', - 'end_year' => 1987, - ], - - [ - 'address' => '麻阳苗族自治县', - 'start_year' => 1988, - 'end_year' => 1996, - ], - ], - 433026 => - [ - - [ - 'address' => '新晃侗族自治县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 433027 => - [ - - [ - 'address' => '芷江县', - 'start_year' => '', - 'end_year' => 1985, - ], - - [ - 'address' => '芷江侗族自治县', - 'start_year' => 1986, - 'end_year' => 1996, - ], - ], - 433028 => - [ - - [ - 'address' => '怀化县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 433029 => - [ - - [ - 'address' => '会同县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 433030 => - [ - - [ - 'address' => '靖县', - 'start_year' => '', - 'end_year' => 1986, - ], - - [ - 'address' => '靖州苗族侗族自治县', - 'start_year' => 1987, - 'end_year' => 1996, - ], - ], - 433031 => - [ - - [ - 'address' => '通道侗族自治县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 433100 => - [ - - [ - 'address' => '湘西土家族苗族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 433101 => - [ - - [ - 'address' => '吉首市', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 433102 => - [ - - [ - 'address' => '大庸市', - 'start_year' => 1985, - 'end_year' => 1987, - ], - ], - 433121 => - [ - - [ - 'address' => '吉首县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 433122 => - [ - - [ - 'address' => '泸溪县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 433123 => - [ - - [ - 'address' => '凤凰县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 433124 => - [ - - [ - 'address' => '花垣县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 433125 => - [ - - [ - 'address' => '保靖县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 433126 => - [ - - [ - 'address' => '古丈县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 433127 => - [ - - [ - 'address' => '永顺县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 433128 => - [ - - [ - 'address' => '大庸县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 433129 => - [ - - [ - 'address' => '桑植县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 433130 => - [ - - [ - 'address' => '龙山县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 439001 => - [ - - [ - 'address' => '醴陵市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 439002 => - [ - - [ - 'address' => '湘乡市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 439003 => - [ - - [ - 'address' => '耒阳市', - 'start_year' => 1986, - 'end_year' => 1994, - ], - ], - 439004 => - [ - - [ - 'address' => '汨罗市', - 'start_year' => 1987, - 'end_year' => 1994, - ], - ], - 439005 => - [ - - [ - 'address' => '津市市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 439006 => - [ - - [ - 'address' => '韶山市', - 'start_year' => 1990, - 'end_year' => 1994, - ], - ], - 439007 => - [ - - [ - 'address' => '临湘市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 439008 => - [ - - [ - 'address' => '浏阳市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 439009 => - [ - - [ - 'address' => '资兴市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 439010 => - [ - - [ - 'address' => '沅江市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 439011 => - [ - - [ - 'address' => '武冈市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 440000 => - [ - - [ - 'address' => '广东省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440100 => - [ - - [ - 'address' => '广州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440102 => - [ - - [ - 'address' => '东山区', - 'start_year' => '', - 'end_year' => 2004, - ], - ], - 440103 => - [ - - [ - 'address' => '荔湾区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440104 => - [ - - [ - 'address' => '越秀区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440105 => - [ - - [ - 'address' => '海珠区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440106 => - [ - - [ - 'address' => '芳村区', - 'start_year' => 1985, - 'end_year' => 1987, - ], - - [ - 'address' => '天河区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 440107 => - [ - - [ - 'address' => '天河区', - 'start_year' => 1985, - 'end_year' => 1987, - ], - - [ - 'address' => '芳村区', - 'start_year' => 1988, - 'end_year' => 2004, - ], - ], - 440111 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1986, - ], - - [ - 'address' => '白云区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 440112 => - [ - - [ - 'address' => '黄埔区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440113 => - [ - - [ - 'address' => '番禺区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 440114 => - [ - - [ - 'address' => '花都区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 440115 => - [ - - [ - 'address' => '南沙区', - 'start_year' => 2005, - 'end_year' => '', - ], - ], - 440116 => - [ - - [ - 'address' => '萝岗区', - 'start_year' => 2005, - 'end_year' => 2013, - ], - ], - 440117 => - [ - - [ - 'address' => '从化区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 440118 => - [ - - [ - 'address' => '增城区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 440121 => - [ - - [ - 'address' => '花县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 440122 => - [ - - [ - 'address' => '从化县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 440123 => - [ - - [ - 'address' => '新丰县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 440124 => - [ - - [ - 'address' => '龙门县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 440125 => - [ - - [ - 'address' => '增城县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 440126 => - [ - - [ - 'address' => '番禺县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 440127 => - [ - - [ - 'address' => '清远县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 440128 => - [ - - [ - 'address' => '佛冈县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 440181 => - [ - - [ - 'address' => '番禺市', - 'start_year' => 1995, - 'end_year' => 1999, - ], - ], - 440182 => - [ - - [ - 'address' => '花都市', - 'start_year' => 1995, - 'end_year' => 1999, - ], - ], - 440183 => - [ - - [ - 'address' => '增城市', - 'start_year' => 1995, - 'end_year' => 2013, - ], - ], - 440184 => - [ - - [ - 'address' => '从化市', - 'start_year' => 1995, - 'end_year' => 2013, - ], - ], - 440200 => - [ - - [ - 'address' => '韶关市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440202 => - [ - - [ - 'address' => '北江区', - 'start_year' => 1984, - 'end_year' => 2003, - ], - ], - 440203 => - [ - - [ - 'address' => '浈江区', - 'start_year' => 1984, - 'end_year' => 2002, - ], - - [ - 'address' => '武江区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 440204 => - [ - - [ - 'address' => '武江区', - 'start_year' => 1984, - 'end_year' => 2002, - ], - - [ - 'address' => '浈江区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 440205 => - [ - - [ - 'address' => '曲江区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 440221 => - [ - - [ - 'address' => '曲江县', - 'start_year' => '', - 'end_year' => 2003, - ], - ], - 440222 => - [ - - [ - 'address' => '始兴县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 440223 => - [ - - [ - 'address' => '南雄县', - 'start_year' => 1983, - 'end_year' => 1995, - ], - ], - 440224 => - [ - - [ - 'address' => '仁化县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 440225 => - [ - - [ - 'address' => '乐昌县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 440226 => - [ - - [ - 'address' => '连县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 440227 => - [ - - [ - 'address' => '阳山县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 440228 => - [ - - [ - 'address' => '英德县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 440229 => - [ - - [ - 'address' => '翁源县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 440230 => - [ - - [ - 'address' => '连山壮族瑶族自治县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 440231 => - [ - - [ - 'address' => '连南瑶族自治县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 440232 => - [ - - [ - 'address' => '乳源瑶族自治县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 440233 => - [ - - [ - 'address' => '新丰县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 440281 => - [ - - [ - 'address' => '乐昌市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 440282 => - [ - - [ - 'address' => '南雄市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 440300 => - [ - - [ - 'address' => '深圳市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440303 => - [ - - [ - 'address' => '罗湖区', - 'start_year' => 1990, - 'end_year' => '', - ], - ], - 440304 => - [ - - [ - 'address' => '福田区', - 'start_year' => 1990, - 'end_year' => '', - ], - ], - 440305 => - [ - - [ - 'address' => '南山区', - 'start_year' => 1990, - 'end_year' => '', - ], - ], - 440306 => - [ - - [ - 'address' => '宝安区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 440307 => - [ - - [ - 'address' => '龙岗区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 440308 => - [ - - [ - 'address' => '盐田区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 440309 => - [ - - [ - 'address' => '龙华区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 440310 => - [ - - [ - 'address' => '坪山区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 440311 => - [ - - [ - 'address' => '光明区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 440321 => - [ - - [ - 'address' => '宝安县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 440400 => - [ - - [ - 'address' => '珠海市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440402 => - [ - - [ - 'address' => '香洲区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 440403 => - [ - - [ - 'address' => '斗门区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 440404 => - [ - - [ - 'address' => '金湾区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 440421 => - [ - - [ - 'address' => '斗门县', - 'start_year' => 1983, - 'end_year' => 2000, - ], - ], - 440500 => - [ - - [ - 'address' => '汕头市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440502 => - [ - - [ - 'address' => '同平区', - 'start_year' => '', - 'end_year' => 1990, - ], - - [ - 'address' => '龙湖区', - 'start_year' => 1991, - 'end_year' => 1993, - ], - ], - 440503 => - [ - - [ - 'address' => '安平区', - 'start_year' => '', - 'end_year' => 1990, - ], - - [ - 'address' => '金园区', - 'start_year' => 1991, - 'end_year' => 1993, - ], - ], - 440504 => - [ - - [ - 'address' => '公园区', - 'start_year' => '', - 'end_year' => 1990, - ], - - [ - 'address' => '升平区', - 'start_year' => 1991, - 'end_year' => 1993, - ], - ], - 440505 => - [ - - [ - 'address' => '金沙区', - 'start_year' => '', - 'end_year' => 1990, - ], - ], - 440506 => - [ - - [ - 'address' => '达豪区', - 'start_year' => 1984, - 'end_year' => 2002, - ], - ], - 440507 => - [ - - [ - 'address' => '龙湖区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 440508 => - [ - - [ - 'address' => '金园区', - 'start_year' => 1994, - 'end_year' => 2002, - ], - ], - 440509 => - [ - - [ - 'address' => '升平区', - 'start_year' => 1994, - 'end_year' => 2002, - ], - ], - 440510 => - [ - - [ - 'address' => '河浦区', - 'start_year' => 1994, - 'end_year' => 2002, - ], - ], - 440511 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1990, - ], - - [ - 'address' => '金平区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 440512 => - [ - - [ - 'address' => '濠江区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 440513 => - [ - - [ - 'address' => '潮阳区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 440514 => - [ - - [ - 'address' => '潮南区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 440515 => - [ - - [ - 'address' => '澄海区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 440521 => - [ - - [ - 'address' => '澄海县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 440522 => - [ - - [ - 'address' => '饶平县', - 'start_year' => 1983, - 'end_year' => 1990, - ], - ], - 440523 => - [ - - [ - 'address' => '南澳县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 440524 => - [ - - [ - 'address' => '潮阳县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 440525 => - [ - - [ - 'address' => '揭阳县', - 'start_year' => 1983, - 'end_year' => 1990, - ], - ], - 440526 => - [ - - [ - 'address' => '揭西县', - 'start_year' => 1983, - 'end_year' => 1990, - ], - ], - 440527 => - [ - - [ - 'address' => '普宁县', - 'start_year' => 1983, - 'end_year' => 1990, - ], - ], - 440528 => - [ - - [ - 'address' => '惠来县', - 'start_year' => 1983, - 'end_year' => 1990, - ], - ], - 440582 => - [ - - [ - 'address' => '潮阳市', - 'start_year' => 1995, - 'end_year' => 2002, - ], - ], - 440583 => - [ - - [ - 'address' => '澄海市', - 'start_year' => 1995, - 'end_year' => 2002, - ], - ], - 440600 => - [ - - [ - 'address' => '佛山市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440602 => - [ - - [ - 'address' => '汾江区', - 'start_year' => 1984, - 'end_year' => 1986, - ], - - [ - 'address' => '城区', - 'start_year' => 1987, - 'end_year' => 2001, - ], - ], - 440603 => - [ - - [ - 'address' => '石湾区', - 'start_year' => 1984, - 'end_year' => 2001, - ], - ], - 440604 => - [ - - [ - 'address' => '禅城区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 440605 => - [ - - [ - 'address' => '南海区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 440606 => - [ - - [ - 'address' => '顺德区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 440607 => - [ - - [ - 'address' => '三水区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 440608 => - [ - - [ - 'address' => '高明区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 440620 => - [ - - [ - 'address' => '中山市', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 440621 => - [ - - [ - 'address' => '三水县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 440622 => - [ - - [ - 'address' => '南海县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 440623 => - [ - - [ - 'address' => '顺德县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 440624 => - [ - - [ - 'address' => '高明县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 440681 => - [ - - [ - 'address' => '顺德市', - 'start_year' => 1995, - 'end_year' => 2001, - ], - ], - 440682 => - [ - - [ - 'address' => '南海市', - 'start_year' => 1995, - 'end_year' => 2001, - ], - ], - 440683 => - [ - - [ - 'address' => '三水市', - 'start_year' => 1995, - 'end_year' => 2001, - ], - ], - 440684 => - [ - - [ - 'address' => '高明市', - 'start_year' => 1995, - 'end_year' => 2001, - ], - ], - 440700 => - [ - - [ - 'address' => '江门市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440702 => - [ - - [ - 'address' => '城区', - 'start_year' => 1984, - 'end_year' => 1993, - ], - ], - 440703 => - [ - - [ - 'address' => '蓬江区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 440704 => - [ - - [ - 'address' => '江海区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 440705 => - [ - - [ - 'address' => '新会区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 440711 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1984, - 'end_year' => 1993, - ], - ], - 440721 => - [ - - [ - 'address' => '新会县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 440722 => - [ - - [ - 'address' => '台山县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 440723 => - [ - - [ - 'address' => '恩平县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 440724 => - [ - - [ - 'address' => '开平县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 440725 => - [ - - [ - 'address' => '鹤山县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 440726 => - [ - - [ - 'address' => '阳江县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 440727 => - [ - - [ - 'address' => '阳春县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 440781 => - [ - - [ - 'address' => '台山市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 440782 => - [ - - [ - 'address' => '新会市', - 'start_year' => 1995, - 'end_year' => 2001, - ], - ], - 440783 => - [ - - [ - 'address' => '开平市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 440784 => - [ - - [ - 'address' => '鹤山市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 440785 => - [ - - [ - 'address' => '恩平市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 440800 => - [ - - [ - 'address' => '湛江市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440802 => - [ - - [ - 'address' => '赤坎区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440803 => - [ - - [ - 'address' => '霞山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440804 => - [ - - [ - 'address' => '坡头区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 440811 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1993, - ], - - [ - 'address' => '麻章区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 440821 => - [ - - [ - 'address' => '吴川县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 440822 => - [ - - [ - 'address' => '廉江县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 440823 => - [ - - [ - 'address' => '遂溪县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 440824 => - [ - - [ - 'address' => '海康县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 440825 => - [ - - [ - 'address' => '徐闻县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 440881 => - [ - - [ - 'address' => '廉江市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 440882 => - [ - - [ - 'address' => '雷州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 440883 => - [ - - [ - 'address' => '吴川市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 440900 => - [ - - [ - 'address' => '茂名市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 440902 => - [ - - [ - 'address' => '茂南区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 440903 => - [ - - [ - 'address' => '茂港区', - 'start_year' => 2001, - 'end_year' => 2013, - ], - ], - 440904 => - [ - - [ - 'address' => '电白区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 440921 => - [ - - [ - 'address' => '信宜县', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 440922 => - [ - - [ - 'address' => '高州县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 440923 => - [ - - [ - 'address' => '电白县', - 'start_year' => 1983, - 'end_year' => 2013, - ], - ], - 440924 => - [ - - [ - 'address' => '化州县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 440981 => - [ - - [ - 'address' => '高州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 440982 => - [ - - [ - 'address' => '化州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 440983 => - [ - - [ - 'address' => '信宜市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 441000 => - [ - - [ - 'address' => '海口市', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 441001 => - [ - - [ - 'address' => '潮州市', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 441002 => - [ - - [ - 'address' => '新华区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 441003 => - [ - - [ - 'address' => '立新区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 441004 => - [ - - [ - 'address' => '东方红区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 441005 => - [ - - [ - 'address' => '秀英区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 441100 => - [ - - [ - 'address' => '三亚市', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 441200 => - [ - - [ - 'address' => '肇庆市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441202 => - [ - - [ - 'address' => '端州区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441203 => - [ - - [ - 'address' => '鼎湖区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441204 => - [ - - [ - 'address' => '高要区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 441221 => - [ - - [ - 'address' => '高要县', - 'start_year' => 1988, - 'end_year' => 1992, - ], - ], - 441222 => - [ - - [ - 'address' => '四会县', - 'start_year' => 1988, - 'end_year' => 1992, - ], - ], - 441223 => - [ - - [ - 'address' => '广宁县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441224 => - [ - - [ - 'address' => '怀集县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441225 => - [ - - [ - 'address' => '封开县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441226 => - [ - - [ - 'address' => '德庆县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441227 => - [ - - [ - 'address' => '云浮县', - 'start_year' => 1988, - 'end_year' => 1991, - ], - ], - 441228 => - [ - - [ - 'address' => '新兴县', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 441229 => - [ - - [ - 'address' => '郁南县', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 441230 => - [ - - [ - 'address' => '罗定县', - 'start_year' => 1988, - 'end_year' => 1992, - ], - ], - 441283 => - [ - - [ - 'address' => '高要市', - 'start_year' => 1995, - 'end_year' => 2014, - ], - ], - 441284 => - [ - - [ - 'address' => '四会市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 441300 => - [ - - [ - 'address' => '惠州市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441302 => - [ - - [ - 'address' => '惠城区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441303 => - [ - - [ - 'address' => '惠阳区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 441321 => - [ - - [ - 'address' => '惠阳县', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 441322 => - [ - - [ - 'address' => '博罗县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441323 => - [ - - [ - 'address' => '惠东县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441324 => - [ - - [ - 'address' => '龙门县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441381 => - [ - - [ - 'address' => '惠阳市', - 'start_year' => 1995, - 'end_year' => 2002, - ], - ], - 441400 => - [ - - [ - 'address' => '梅州市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441402 => - [ - - [ - 'address' => '梅江区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441403 => - [ - - [ - 'address' => '梅县区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 441421 => - [ - - [ - 'address' => '梅县', - 'start_year' => 1988, - 'end_year' => 2012, - ], - ], - 441422 => - [ - - [ - 'address' => '大埔县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441423 => - [ - - [ - 'address' => '丰顺县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441424 => - [ - - [ - 'address' => '五华县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441425 => - [ - - [ - 'address' => '兴宁县', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 441426 => - [ - - [ - 'address' => '平远县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441427 => - [ - - [ - 'address' => '蕉岭县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441481 => - [ - - [ - 'address' => '兴宁市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 441500 => - [ - - [ - 'address' => '汕尾市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441502 => - [ - - [ - 'address' => '城区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441521 => - [ - - [ - 'address' => '海丰县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441522 => - [ - - [ - 'address' => '陆丰县', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 441523 => - [ - - [ - 'address' => '陆河县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441581 => - [ - - [ - 'address' => '陆丰市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 441600 => - [ - - [ - 'address' => '河源市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441602 => - [ - - [ - 'address' => '源城区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441611 => - [ - - [ - 'address' => '郊区', - 'start_year' => 1988, - 'end_year' => 1992, - ], - ], - 441621 => - [ - - [ - 'address' => '紫金县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441622 => - [ - - [ - 'address' => '龙川县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441623 => - [ - - [ - 'address' => '连平县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441624 => - [ - - [ - 'address' => '和平县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441625 => - [ - - [ - 'address' => '东源县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 441700 => - [ - - [ - 'address' => '阳江市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441702 => - [ - - [ - 'address' => '江城区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441703 => - [ - - [ - 'address' => '阳东区', - 'start_year' => 1988, - 'end_year' => 1990, - ], - ], - 441704 => - [ - - [ - 'address' => '阳东区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 441721 => - [ - - [ - 'address' => '阳西县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441722 => - [ - - [ - 'address' => '阳春县', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 441723 => - [ - - [ - 'address' => '阳东县', - 'start_year' => 1991, - 'end_year' => 2013, - ], - ], - 441781 => - [ - - [ - 'address' => '阳春市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 441800 => - [ - - [ - 'address' => '清远市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441802 => - [ - - [ - 'address' => '清城区', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441803 => - [ - - [ - 'address' => '清新区', - 'start_year' => 2012, - 'end_year' => '', - ], - ], - 441811 => - [ - - [ - 'address' => '清郊区', - 'start_year' => 1988, - 'end_year' => 1991, - ], - ], - 441821 => - [ - - [ - 'address' => '佛冈县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441822 => - [ - - [ - 'address' => '英德县', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 441823 => - [ - - [ - 'address' => '阳山县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441824 => - [ - - [ - 'address' => '连县', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 441825 => - [ - - [ - 'address' => '连山壮族瑶族自治县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441826 => - [ - - [ - 'address' => '连南瑶族自治县', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 441827 => - [ - - [ - 'address' => '清新县', - 'start_year' => 1992, - 'end_year' => 2011, - ], - ], - 441881 => - [ - - [ - 'address' => '英德市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 441882 => - [ - - [ - 'address' => '连州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 441900 => - [ - - [ - 'address' => '东莞市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 442000 => - [ - - [ - 'address' => '中山市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 442100 => - [ - - [ - 'address' => '海南行政区', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442101 => - [ - - [ - 'address' => '海口市', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 442102 => - [ - - [ - 'address' => '通什市', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 442121 => - [ - - [ - 'address' => '琼山县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442122 => - [ - - [ - 'address' => '文昌县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442123 => - [ - - [ - 'address' => '琼海县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442124 => - [ - - [ - 'address' => '万宁县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442125 => - [ - - [ - 'address' => '定安县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442126 => - [ - - [ - 'address' => '屯昌县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442127 => - [ - - [ - 'address' => '澄迈县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442128 => - [ - - [ - 'address' => '临高县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442129 => - [ - - [ - 'address' => '儋县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442130 => - [ - - [ - 'address' => '东方黎族自治县', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 442131 => - [ - - [ - 'address' => '乐东黎族自治县', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 442132 => - [ - - [ - 'address' => '琼中黎族苗族自治县', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 442133 => - [ - - [ - 'address' => '保亭黎族苗族自治县', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 442134 => - [ - - [ - 'address' => '陵水黎族自治县', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 442135 => - [ - - [ - 'address' => '白沙黎族自治县', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 442136 => - [ - - [ - 'address' => '昌江黎族自治县', - 'start_year' => 1987, - 'end_year' => 1987, - ], - ], - 442200 => - [ - - [ - 'address' => '海南黎族苗族自治州', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 442201 => - [ - - [ - 'address' => '三亚市', - 'start_year' => 1984, - 'end_year' => 1986, - ], - ], - 442202 => - [ - - [ - 'address' => '通什市', - 'start_year' => 1986, - 'end_year' => 1986, - ], - ], - 442221 => - [ - - [ - 'address' => '崖县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 442222 => - [ - - [ - 'address' => '东方县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 442223 => - [ - - [ - 'address' => '乐东县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 442224 => - [ - - [ - 'address' => '琼中县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 442225 => - [ - - [ - 'address' => '保亭县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 442226 => - [ - - [ - 'address' => '陵水县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 442227 => - [ - - [ - 'address' => '白沙县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 442228 => - [ - - [ - 'address' => '昌江县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 442300 => - [ - - [ - 'address' => '汕头地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442301 => - [ - - [ - 'address' => '潮州市', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 442302 => - [ - - [ - 'address' => '潮州市', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442321 => - [ - - [ - 'address' => '潮安县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442322 => - [ - - [ - 'address' => '澄海县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442323 => - [ - - [ - 'address' => '饶平县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442324 => - [ - - [ - 'address' => '南澳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442325 => - [ - - [ - 'address' => '潮阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442326 => - [ - - [ - 'address' => '揭阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442327 => - [ - - [ - 'address' => '揭西县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442328 => - [ - - [ - 'address' => '普宁县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442329 => - [ - - [ - 'address' => '惠来县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442330 => - [ - - [ - 'address' => '陆丰县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442331 => - [ - - [ - 'address' => '海丰县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442400 => - [ - - [ - 'address' => '梅县地区', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442401 => - [ - - [ - 'address' => '梅州市', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '梅县市', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 442421 => - [ - - [ - 'address' => '梅县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442422 => - [ - - [ - 'address' => '大埔县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442423 => - [ - - [ - 'address' => '丰顺县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442424 => - [ - - [ - 'address' => '五华县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442425 => - [ - - [ - 'address' => '兴宁县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442426 => - [ - - [ - 'address' => '平远县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442427 => - [ - - [ - 'address' => '蕉岭县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442500 => - [ - - [ - 'address' => '惠阳地区', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442501 => - [ - - [ - 'address' => '惠州市', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442502 => - [ - - [ - 'address' => '东莞市', - 'start_year' => 1985, - 'end_year' => 1987, - ], - ], - 442521 => - [ - - [ - 'address' => '惠阳县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442522 => - [ - - [ - 'address' => '紫金县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442523 => - [ - - [ - 'address' => '和平县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442524 => - [ - - [ - 'address' => '连平县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442525 => - [ - - [ - 'address' => '河源县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442526 => - [ - - [ - 'address' => '博罗县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442527 => - [ - - [ - 'address' => '东莞县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 442528 => - [ - - [ - 'address' => '惠东县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442529 => - [ - - [ - 'address' => '龙川县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442530 => - [ - - [ - 'address' => '陆丰县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 442531 => - [ - - [ - 'address' => '海丰县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 442600 => - [ - - [ - 'address' => '韶关地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442621 => - [ - - [ - 'address' => '始兴县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '三水县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442622 => - [ - - [ - 'address' => '南雄县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '南海县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442623 => - [ - - [ - 'address' => '仁化县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '顺德县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442624 => - [ - - [ - 'address' => '乐昌县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '中山县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442625 => - [ - - [ - 'address' => '连县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '斗门县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442626 => - [ - - [ - 'address' => '阳山县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '新会县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442627 => - [ - - [ - 'address' => '英德县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '台山县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442628 => - [ - - [ - 'address' => '清远县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '恩平县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442629 => - [ - - [ - 'address' => '佛冈县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '开平县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442630 => - [ - - [ - 'address' => '翁源县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442631 => - [ - - [ - 'address' => '连山壮族瑶族自治县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '鹤山县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442632 => - [ - - [ - 'address' => '连南瑶族自治县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '高明县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 442633 => - [ - - [ - 'address' => '乳源瑶族自治县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442700 => - [ - - [ - 'address' => '佛山地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442721 => - [ - - [ - 'address' => '三水县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 442722 => - [ - - [ - 'address' => '南海县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 442723 => - [ - - [ - 'address' => '顺德县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 442724 => - [ - - [ - 'address' => '中山县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 442725 => - [ - - [ - 'address' => '斗门县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 442726 => - [ - - [ - 'address' => '新会县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 442727 => - [ - - [ - 'address' => '台山县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 442728 => - [ - - [ - 'address' => '恩平县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 442729 => - [ - - [ - 'address' => '开平县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 442730 => - [ - - [ - 'address' => '高鹤县', - 'start_year' => '', - 'end_year' => 1980, - ], - ], - 442731 => - [ - - [ - 'address' => '鹤山县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - ], - 442732 => - [ - - [ - 'address' => '高明县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - ], - 442800 => - [ - - [ - 'address' => '肇庆地区', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442801 => - [ - - [ - 'address' => '肇庆市', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442821 => - [ - - [ - 'address' => '高要县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442822 => - [ - - [ - 'address' => '四会县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442823 => - [ - - [ - 'address' => '广宁县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442824 => - [ - - [ - 'address' => '怀集县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442825 => - [ - - [ - 'address' => '封开县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442826 => - [ - - [ - 'address' => '德庆县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442827 => - [ - - [ - 'address' => '云浮县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442828 => - [ - - [ - 'address' => '新兴县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442829 => - [ - - [ - 'address' => '郁南县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442830 => - [ - - [ - 'address' => '罗定县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 442900 => - [ - - [ - 'address' => '湛江地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442921 => - [ - - [ - 'address' => '阳江县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442922 => - [ - - [ - 'address' => '阳春县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442923 => - [ - - [ - 'address' => '信宜县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442924 => - [ - - [ - 'address' => '高州县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442925 => - [ - - [ - 'address' => '电白县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442926 => - [ - - [ - 'address' => '吴川县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442927 => - [ - - [ - 'address' => '化州县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442928 => - [ - - [ - 'address' => '廉江县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442929 => - [ - - [ - 'address' => '遂溪县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442930 => - [ - - [ - 'address' => '海康县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 442931 => - [ - - [ - 'address' => '徐闻县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 445100 => - [ - - [ - 'address' => '潮州市', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 445102 => - [ - - [ - 'address' => '湘桥区', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 445103 => - [ - - [ - 'address' => '潮安区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 445121 => - [ - - [ - 'address' => '潮安县', - 'start_year' => 1991, - 'end_year' => 2012, - ], - ], - 445122 => - [ - - [ - 'address' => '饶平县', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 445200 => - [ - - [ - 'address' => '揭阳市', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 445202 => - [ - - [ - 'address' => '榕城区', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 445203 => - [ - - [ - 'address' => '揭东区', - 'start_year' => 2012, - 'end_year' => '', - ], - ], - 445221 => - [ - - [ - 'address' => '揭东县', - 'start_year' => 1991, - 'end_year' => 2011, - ], - ], - 445222 => - [ - - [ - 'address' => '揭西县', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 445223 => - [ - - [ - 'address' => '普宁县', - 'start_year' => 1991, - 'end_year' => 1992, - ], - ], - 445224 => - [ - - [ - 'address' => '惠来县', - 'start_year' => 1991, - 'end_year' => '', - ], - ], - 445281 => - [ - - [ - 'address' => '普宁市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 445300 => - [ - - [ - 'address' => '云浮市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 445302 => - [ - - [ - 'address' => '云城区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 445303 => - [ - - [ - 'address' => '云安区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 445321 => - [ - - [ - 'address' => '新兴县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 445322 => - [ - - [ - 'address' => '郁南县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 445323 => - [ - - [ - 'address' => '云安县', - 'start_year' => 1996, - 'end_year' => 2013, - ], - ], - 445381 => - [ - - [ - 'address' => '罗定市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 449001 => - [ - - [ - 'address' => '潮州市', - 'start_year' => 1984, - 'end_year' => 1990, - ], - - [ - 'address' => '顺德市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 449002 => - [ - - [ - 'address' => '中山市', - 'start_year' => 1984, - 'end_year' => 1987, - ], - - [ - 'address' => '台山市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 449003 => - [ - - [ - 'address' => '海口市', - 'start_year' => 1986, - 'end_year' => 1986, - ], - - [ - 'address' => '番禺市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 449004 => - [ - - [ - 'address' => '南海市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 449005 => - [ - - [ - 'address' => '云浮市', - 'start_year' => 1992, - 'end_year' => 1993, - ], - ], - 449006 => - [ - - [ - 'address' => '新会市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 449007 => - [ - - [ - 'address' => '开平市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449008 => - [ - - [ - 'address' => '三水市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449009 => - [ - - [ - 'address' => '普宁市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449010 => - [ - - [ - 'address' => '罗定市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449011 => - [ - - [ - 'address' => '潮阳市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449012 => - [ - - [ - 'address' => '高州市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449013 => - [ - - [ - 'address' => '花都市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449014 => - [ - - [ - 'address' => '高要市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449015 => - [ - - [ - 'address' => '鹤山市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449016 => - [ - - [ - 'address' => '四会市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449017 => - [ - - [ - 'address' => '增城市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449018 => - [ - - [ - 'address' => '廉江市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 449019 => - [ - - [ - 'address' => '英德市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449020 => - [ - - [ - 'address' => '恩平市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449021 => - [ - - [ - 'address' => '从化市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449022 => - [ - - [ - 'address' => '澄海市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449023 => - [ - - [ - 'address' => '高明市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449024 => - [ - - [ - 'address' => '连州市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449025 => - [ - - [ - 'address' => '雷州市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449026 => - [ - - [ - 'address' => '乐昌市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449027 => - [ - - [ - 'address' => '阳春市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449028 => - [ - - [ - 'address' => '惠阳市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449029 => - [ - - [ - 'address' => '吴川市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449030 => - [ - - [ - 'address' => '兴宁市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 449031 => - [ - - [ - 'address' => '化州市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 450000 => - [ - - [ - 'address' => '广西壮族自治区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450100 => - [ - - [ - 'address' => '南宁市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450102 => - [ - - [ - 'address' => '兴宁区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450103 => - [ - - [ - 'address' => '新城区', - 'start_year' => '', - 'end_year' => 2003, - ], - - [ - 'address' => '青秀区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 450104 => - [ - - [ - 'address' => '城北区', - 'start_year' => '', - 'end_year' => 2003, - ], - ], - 450105 => - [ - - [ - 'address' => '江南区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450106 => - [ - - [ - 'address' => '永新区', - 'start_year' => '', - 'end_year' => 2003, - ], - ], - 450107 => - [ - - [ - 'address' => '市郊区', - 'start_year' => 1984, - 'end_year' => 2000, - ], - - [ - 'address' => '西乡塘区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 450108 => - [ - - [ - 'address' => '良庆区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 450109 => - [ - - [ - 'address' => '邕宁区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 450110 => - [ - - [ - 'address' => '武鸣区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 450121 => - [ - - [ - 'address' => '邕宁县', - 'start_year' => 1983, - 'end_year' => 2003, - ], - ], - 450122 => - [ - - [ - 'address' => '武鸣县', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 450123 => - [ - - [ - 'address' => '隆安县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 450124 => - [ - - [ - 'address' => '马山县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 450125 => - [ - - [ - 'address' => '上林县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 450126 => - [ - - [ - 'address' => '宾阳县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 450127 => - [ - - [ - 'address' => '横县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 450200 => - [ - - [ - 'address' => '柳州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450202 => - [ - - [ - 'address' => '城中区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450203 => - [ - - [ - 'address' => '鱼峰区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450204 => - [ - - [ - 'address' => '柳南区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450205 => - [ - - [ - 'address' => '柳北区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450206 => - [ - - [ - 'address' => '市郊区', - 'start_year' => 1984, - 'end_year' => 2001, - ], - - [ - 'address' => '柳江区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 450221 => - [ - - [ - 'address' => '柳江县', - 'start_year' => 1983, - 'end_year' => 2015, - ], - ], - 450222 => - [ - - [ - 'address' => '柳城县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 450223 => - [ - - [ - 'address' => '鹿寨县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 450224 => - [ - - [ - 'address' => '融安县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 450225 => - [ - - [ - 'address' => '融水苗族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 450226 => - [ - - [ - 'address' => '三江侗族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 450300 => - [ - - [ - 'address' => '桂林市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450302 => - [ - - [ - 'address' => '秀峰区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450303 => - [ - - [ - 'address' => '叠彩区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450304 => - [ - - [ - 'address' => '象山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450305 => - [ - - [ - 'address' => '七星区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450306 => - [ - - [ - 'address' => '市郊区', - 'start_year' => 1984, - 'end_year' => 1995, - ], - ], - 450311 => - [ - - [ - 'address' => '雁山区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 450312 => - [ - - [ - 'address' => '临桂区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 450321 => - [ - - [ - 'address' => '阳朔县', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 450322 => - [ - - [ - 'address' => '临桂县', - 'start_year' => 1983, - 'end_year' => 2012, - ], - ], - 450323 => - [ - - [ - 'address' => '灵川县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 450324 => - [ - - [ - 'address' => '全州县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 450325 => - [ - - [ - 'address' => '兴安县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 450326 => - [ - - [ - 'address' => '永福县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 450327 => - [ - - [ - 'address' => '灌阳县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 450328 => - [ - - [ - 'address' => '龙胜各族自治县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 450329 => - [ - - [ - 'address' => '资源县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 450330 => - [ - - [ - 'address' => '平乐县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 450331 => - [ - - [ - 'address' => '荔浦县', - 'start_year' => 1998, - 'end_year' => 2017, - ], - ], - 450332 => - [ - - [ - 'address' => '恭城瑶族自治县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 450381 => - [ - - [ - 'address' => '荔浦市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 450400 => - [ - - [ - 'address' => '梧州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450402 => - [ - - [ - 'address' => '白云区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 450403 => - [ - - [ - 'address' => '万秀区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 450404 => - [ - - [ - 'address' => '蝶山区', - 'start_year' => '', - 'end_year' => 2012, - ], - ], - 450405 => - [ - - [ - 'address' => '鸳江区', - 'start_year' => '', - 'end_year' => 1983, - ], - - [ - 'address' => '市郊区', - 'start_year' => 1984, - 'end_year' => 2002, - ], - - [ - 'address' => '长洲区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 450406 => - [ - - [ - 'address' => '龙圩区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 450421 => - [ - - [ - 'address' => '苍梧县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 450422 => - [ - - [ - 'address' => '藤县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 450423 => - [ - - [ - 'address' => '蒙山县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 450481 => - [ - - [ - 'address' => '岑溪市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 450500 => - [ - - [ - 'address' => '北海市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 450502 => - [ - - [ - 'address' => '海城区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 450503 => - [ - - [ - 'address' => '市郊区', - 'start_year' => 1984, - 'end_year' => 1993, - ], - - [ - 'address' => '银海区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 450512 => - [ - - [ - 'address' => '铁山港区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 450521 => - [ - - [ - 'address' => '合浦县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 450600 => - [ - - [ - 'address' => '防城港市', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 450602 => - [ - - [ - 'address' => '港口区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 450603 => - [ - - [ - 'address' => '防城区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 450621 => - [ - - [ - 'address' => '上思县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 450681 => - [ - - [ - 'address' => '东兴市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 450700 => - [ - - [ - 'address' => '钦州市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 450702 => - [ - - [ - 'address' => '钦南区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 450703 => - [ - - [ - 'address' => '钦北区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 450721 => - [ - - [ - 'address' => '灵山县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 450722 => - [ - - [ - 'address' => '浦北县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 450800 => - [ - - [ - 'address' => '贵港市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 450802 => - [ - - [ - 'address' => '港北区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 450803 => - [ - - [ - 'address' => '港南区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 450804 => - [ - - [ - 'address' => '覃塘区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 450821 => - [ - - [ - 'address' => '平南县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 450881 => - [ - - [ - 'address' => '桂平市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 450900 => - [ - - [ - 'address' => '玉林市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 450902 => - [ - - [ - 'address' => '玉州区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 450903 => - [ - - [ - 'address' => '福绵区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 450921 => - [ - - [ - 'address' => '容县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 450922 => - [ - - [ - 'address' => '陆川县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 450923 => - [ - - [ - 'address' => '博白县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 450924 => - [ - - [ - 'address' => '兴业县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 450981 => - [ - - [ - 'address' => '北流市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 451000 => - [ - - [ - 'address' => '百色市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451002 => - [ - - [ - 'address' => '右江区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451021 => - [ - - [ - 'address' => '田阳县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451022 => - [ - - [ - 'address' => '田东县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451023 => - [ - - [ - 'address' => '平果县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451024 => - [ - - [ - 'address' => '德保县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451025 => - [ - - [ - 'address' => '靖西县', - 'start_year' => 2002, - 'end_year' => 2014, - ], - ], - 451026 => - [ - - [ - 'address' => '那坡县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451027 => - [ - - [ - 'address' => '凌云县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451028 => - [ - - [ - 'address' => '乐业县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451029 => - [ - - [ - 'address' => '田林县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451030 => - [ - - [ - 'address' => '西林县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451031 => - [ - - [ - 'address' => '隆林各族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451081 => - [ - - [ - 'address' => '靖西市', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 451100 => - [ - - [ - 'address' => '贺州市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451102 => - [ - - [ - 'address' => '八步区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451103 => - [ - - [ - 'address' => '平桂区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 451121 => - [ - - [ - 'address' => '昭平县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451122 => - [ - - [ - 'address' => '钟山县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451123 => - [ - - [ - 'address' => '富川瑶族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451200 => - [ - - [ - 'address' => '河池市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451202 => - [ - - [ - 'address' => '金城江区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451203 => - [ - - [ - 'address' => '宜州区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 451221 => - [ - - [ - 'address' => '南丹县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451222 => - [ - - [ - 'address' => '天峨县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451223 => - [ - - [ - 'address' => '凤山县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451224 => - [ - - [ - 'address' => '东兰县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451225 => - [ - - [ - 'address' => '罗城仫佬族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451226 => - [ - - [ - 'address' => '环江毛南族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451227 => - [ - - [ - 'address' => '巴马瑶族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451228 => - [ - - [ - 'address' => '都安瑶族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451229 => - [ - - [ - 'address' => '大化瑶族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451281 => - [ - - [ - 'address' => '宜州市', - 'start_year' => 2002, - 'end_year' => 2015, - ], - ], - 451300 => - [ - - [ - 'address' => '来宾市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451302 => - [ - - [ - 'address' => '兴宾区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451321 => - [ - - [ - 'address' => '忻城县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451322 => - [ - - [ - 'address' => '象州县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451323 => - [ - - [ - 'address' => '武宣县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451324 => - [ - - [ - 'address' => '金秀瑶族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451381 => - [ - - [ - 'address' => '合山市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451400 => - [ - - [ - 'address' => '崇左市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451402 => - [ - - [ - 'address' => '江州区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451421 => - [ - - [ - 'address' => '扶绥县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451422 => - [ - - [ - 'address' => '宁明县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451423 => - [ - - [ - 'address' => '龙州县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451424 => - [ - - [ - 'address' => '大新县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451425 => - [ - - [ - 'address' => '天等县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 451481 => - [ - - [ - 'address' => '凭祥市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 452100 => - [ - - [ - 'address' => '南宁地区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452101 => - [ - - [ - 'address' => '凭祥市', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452121 => - [ - - [ - 'address' => '邕宁县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 452122 => - [ - - [ - 'address' => '横县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452123 => - [ - - [ - 'address' => '宾阳县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452124 => - [ - - [ - 'address' => '上林县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452125 => - [ - - [ - 'address' => '武鸣县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 452126 => - [ - - [ - 'address' => '隆安县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452127 => - [ - - [ - 'address' => '马山县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452128 => - [ - - [ - 'address' => '扶绥县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452129 => - [ - - [ - 'address' => '崇左县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452130 => - [ - - [ - 'address' => '大新县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452131 => - [ - - [ - 'address' => '天等县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452132 => - [ - - [ - 'address' => '宁明县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452133 => - [ - - [ - 'address' => '龙州县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452200 => - [ - - [ - 'address' => '柳州地区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452201 => - [ - - [ - 'address' => '合山市', - 'start_year' => 1981, - 'end_year' => 2001, - ], - ], - 452221 => - [ - - [ - 'address' => '柳江县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 452222 => - [ - - [ - 'address' => '柳城县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 452223 => - [ - - [ - 'address' => '鹿寨县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452224 => - [ - - [ - 'address' => '象州县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452225 => - [ - - [ - 'address' => '武宣县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452226 => - [ - - [ - 'address' => '来宾县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452227 => - [ - - [ - 'address' => '融安县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452228 => - [ - - [ - 'address' => '三江侗族自治县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452229 => - [ - - [ - 'address' => '融水苗族自治县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452230 => - [ - - [ - 'address' => '金秀瑶族自治县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452231 => - [ - - [ - 'address' => '忻城县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452300 => - [ - - [ - 'address' => '桂林地区', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 452321 => - [ - - [ - 'address' => '临桂县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 452322 => - [ - - [ - 'address' => '灵川县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 452323 => - [ - - [ - 'address' => '全州县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 452324 => - [ - - [ - 'address' => '兴安县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 452325 => - [ - - [ - 'address' => '永福县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 452326 => - [ - - [ - 'address' => '阳朔县', - 'start_year' => '', - 'end_year' => 1980, - ], - ], - 452327 => - [ - - [ - 'address' => '灌阳县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 452328 => - [ - - [ - 'address' => '龙胜各族自治县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 452329 => - [ - - [ - 'address' => '资源县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 452330 => - [ - - [ - 'address' => '平乐县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 452331 => - [ - - [ - 'address' => '荔浦县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 452332 => - [ - - [ - 'address' => '恭城县', - 'start_year' => '', - 'end_year' => 1989, - ], - - [ - 'address' => '恭城瑶族自治县', - 'start_year' => 1990, - 'end_year' => 1997, - ], - ], - 452400 => - [ - - [ - 'address' => '梧州地区', - 'start_year' => '', - 'end_year' => 1996, - ], - - [ - 'address' => '贺州地区', - 'start_year' => 1997, - 'end_year' => 2001, - ], - ], - 452401 => - [ - - [ - 'address' => '岑溪市', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 452402 => - [ - - [ - 'address' => '贺州市', - 'start_year' => 1997, - 'end_year' => 2001, - ], - ], - 452421 => - [ - - [ - 'address' => '岑溪县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 452422 => - [ - - [ - 'address' => '苍梧县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 452423 => - [ - - [ - 'address' => '藤县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 452424 => - [ - - [ - 'address' => '昭平县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452425 => - [ - - [ - 'address' => '蒙山县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 452426 => - [ - - [ - 'address' => '贺县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 452427 => - [ - - [ - 'address' => '钟山县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452428 => - [ - - [ - 'address' => '富川县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '富川瑶族自治县', - 'start_year' => 1983, - 'end_year' => 2001, - ], - ], - 452500 => - [ - - [ - 'address' => '玉林地区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 452501 => - [ - - [ - 'address' => '玉林市', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 452502 => - [ - - [ - 'address' => '贵港市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 452503 => - [ - - [ - 'address' => '桂平市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 452504 => - [ - - [ - 'address' => '北流市', - 'start_year' => 1994, - 'end_year' => 1996, - ], - ], - 452521 => - [ - - [ - 'address' => '玉林县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 452522 => - [ - - [ - 'address' => '贵县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 452523 => - [ - - [ - 'address' => '桂平县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 452524 => - [ - - [ - 'address' => '平南县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 452525 => - [ - - [ - 'address' => '容县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 452526 => - [ - - [ - 'address' => '北流县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 452527 => - [ - - [ - 'address' => '陆川县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 452528 => - [ - - [ - 'address' => '博白县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 452600 => - [ - - [ - 'address' => '百色地区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452601 => - [ - - [ - 'address' => '百色市', - 'start_year' => 1983, - 'end_year' => 2001, - ], - ], - 452621 => - [ - - [ - 'address' => '百色县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 452622 => - [ - - [ - 'address' => '田阳县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452623 => - [ - - [ - 'address' => '田东县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452624 => - [ - - [ - 'address' => '平果县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452625 => - [ - - [ - 'address' => '德保县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452626 => - [ - - [ - 'address' => '靖西县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452627 => - [ - - [ - 'address' => '那坡县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452628 => - [ - - [ - 'address' => '凌云县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452629 => - [ - - [ - 'address' => '乐业县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452630 => - [ - - [ - 'address' => '田林县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452631 => - [ - - [ - 'address' => '隆林各族自治县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452632 => - [ - - [ - 'address' => '西林县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452700 => - [ - - [ - 'address' => '河池地区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452701 => - [ - - [ - 'address' => '河池市', - 'start_year' => 1983, - 'end_year' => 2001, - ], - ], - 452702 => - [ - - [ - 'address' => '宜州市', - 'start_year' => 1993, - 'end_year' => 2001, - ], - ], - 452721 => - [ - - [ - 'address' => '河池县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 452722 => - [ - - [ - 'address' => '宜山县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 452723 => - [ - - [ - 'address' => '罗城县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '罗城仫佬族自治县', - 'start_year' => 1983, - 'end_year' => 2001, - ], - ], - 452724 => - [ - - [ - 'address' => '环江县', - 'start_year' => '', - 'end_year' => 1985, - ], - - [ - 'address' => '环江毛南族自治县', - 'start_year' => 1986, - 'end_year' => 2001, - ], - ], - 452725 => - [ - - [ - 'address' => '南丹县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452726 => - [ - - [ - 'address' => '天峨县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452727 => - [ - - [ - 'address' => '凤山县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452728 => - [ - - [ - 'address' => '东兰县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452729 => - [ - - [ - 'address' => '巴马瑶族自治县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452730 => - [ - - [ - 'address' => '都安瑶族自治县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 452731 => - [ - - [ - 'address' => '大化瑶族自治县', - 'start_year' => 1987, - 'end_year' => 2001, - ], - ], - 452800 => - [ - - [ - 'address' => '钦州地区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 452801 => - [ - - [ - 'address' => '北海市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 452802 => - [ - - [ - 'address' => '钦州市', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 452821 => - [ - - [ - 'address' => '上思县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 452822 => - [ - - [ - 'address' => '防城各族自治县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 452823 => - [ - - [ - 'address' => '钦州县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 452824 => - [ - - [ - 'address' => '灵山县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 452825 => - [ - - [ - 'address' => '合浦县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 452826 => - [ - - [ - 'address' => '浦北县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 460000 => - [ - - [ - 'address' => '海南省', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 460001 => - [ - - [ - 'address' => '通什市', - 'start_year' => 1988, - 'end_year' => 2000, - ], - - [ - 'address' => '五指山市', - 'start_year' => 2001, - 'end_year' => 2002, - ], - ], - 460002 => - [ - - [ - 'address' => '琼海市', - 'start_year' => 1992, - 'end_year' => 2002, - ], - ], - 460003 => - [ - - [ - 'address' => '儋州市', - 'start_year' => 1993, - 'end_year' => 2002, - ], - ], - 460004 => - [ - - [ - 'address' => '琼山市', - 'start_year' => 1994, - 'end_year' => 2001, - ], - ], - 460005 => - [ - - [ - 'address' => '文昌市', - 'start_year' => 1995, - 'end_year' => 2002, - ], - ], - 460006 => - [ - - [ - 'address' => '万宁市', - 'start_year' => 1996, - 'end_year' => 2002, - ], - ], - 460007 => - [ - - [ - 'address' => '东方市', - 'start_year' => 1997, - 'end_year' => 2002, - ], - ], - 460021 => - [ - - [ - 'address' => '琼山县', - 'start_year' => 1988, - 'end_year' => 1993, - ], - ], - 460022 => - [ - - [ - 'address' => '文昌县', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 460023 => - [ - - [ - 'address' => '琼海县', - 'start_year' => 1988, - 'end_year' => 1991, - ], - ], - 460024 => - [ - - [ - 'address' => '万宁县', - 'start_year' => 1988, - 'end_year' => 1995, - ], - ], - 460025 => - [ - - [ - 'address' => '定安县', - 'start_year' => 1988, - 'end_year' => 2002, - ], - ], - 460026 => - [ - - [ - 'address' => '屯昌县', - 'start_year' => 1988, - 'end_year' => 2002, - ], - ], - 460027 => - [ - - [ - 'address' => '澄迈县', - 'start_year' => 1988, - 'end_year' => 2002, - ], - ], - 460028 => - [ - - [ - 'address' => '临高县', - 'start_year' => 1988, - 'end_year' => 2002, - ], - ], - 460029 => - [ - - [ - 'address' => '儋县', - 'start_year' => 1988, - 'end_year' => 1992, - ], - ], - 460030 => - [ - - [ - 'address' => '白沙黎族自治县', - 'start_year' => 1988, - 'end_year' => 2002, - ], - ], - 460031 => - [ - - [ - 'address' => '昌江黎族自治县', - 'start_year' => 1988, - 'end_year' => 2002, - ], - ], - 460032 => - [ - - [ - 'address' => '东方黎族自治县', - 'start_year' => 1988, - 'end_year' => 1996, - ], - ], - 460033 => - [ - - [ - 'address' => '乐东黎族自治县', - 'start_year' => 1988, - 'end_year' => 2002, - ], - ], - 460034 => - [ - - [ - 'address' => '陵水黎族自治县', - 'start_year' => 1988, - 'end_year' => 2002, - ], - ], - 460035 => - [ - - [ - 'address' => '保亭黎族苗族自治县', - 'start_year' => 1988, - 'end_year' => 2002, - ], - ], - 460036 => - [ - - [ - 'address' => '琼中黎族苗族自治县', - 'start_year' => 1988, - 'end_year' => 2002, - ], - ], - 460100 => - [ - - [ - 'address' => '海口市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 460102 => - [ - - [ - 'address' => '振东区', - 'start_year' => 1990, - 'end_year' => 2001, - ], - ], - 460103 => - [ - - [ - 'address' => '新华区', - 'start_year' => 1990, - 'end_year' => 2001, - ], - ], - 460104 => - [ - - [ - 'address' => '秀英区', - 'start_year' => 1990, - 'end_year' => 2001, - ], - ], - 460105 => - [ - - [ - 'address' => '秀英区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 460106 => - [ - - [ - 'address' => '龙华区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 460107 => - [ - - [ - 'address' => '琼山区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 460108 => - [ - - [ - 'address' => '美兰区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 460200 => - [ - - [ - 'address' => '三亚市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 460202 => - [ - - [ - 'address' => '海棠区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 460203 => - [ - - [ - 'address' => '吉阳区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 460204 => - [ - - [ - 'address' => '天涯区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 460205 => - [ - - [ - 'address' => '崖州区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 460300 => - [ - - [ - 'address' => '三沙市', - 'start_year' => 2012, - 'end_year' => '', - ], - ], - 460400 => - [ - - [ - 'address' => '儋州市', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 469001 => - [ - - [ - 'address' => '五指山市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469002 => - [ - - [ - 'address' => '琼海市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469003 => - [ - - [ - 'address' => '儋州市', - 'start_year' => 2003, - 'end_year' => 2014, - ], - ], - 469005 => - [ - - [ - 'address' => '文昌市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469006 => - [ - - [ - 'address' => '万宁市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469007 => - [ - - [ - 'address' => '东方市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469021 => - [ - - [ - 'address' => '定安县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469022 => - [ - - [ - 'address' => '屯昌县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469023 => - [ - - [ - 'address' => '澄迈县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469024 => - [ - - [ - 'address' => '临高县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469025 => - [ - - [ - 'address' => '白沙黎族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469026 => - [ - - [ - 'address' => '昌江黎族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469027 => - [ - - [ - 'address' => '乐东黎族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469028 => - [ - - [ - 'address' => '陵水黎族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469029 => - [ - - [ - 'address' => '保亭黎族苗族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 469030 => - [ - - [ - 'address' => '琼中黎族苗族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 500000 => - [ - - [ - 'address' => '重庆市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500101 => - [ - - [ - 'address' => '万县区', - 'start_year' => 1997, - 'end_year' => 1997, - ], - - [ - 'address' => '万州区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 500102 => - [ - - [ - 'address' => '涪陵区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500103 => - [ - - [ - 'address' => '渝中区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500104 => - [ - - [ - 'address' => '大渡口区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500105 => - [ - - [ - 'address' => '江北区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500106 => - [ - - [ - 'address' => '沙坪坝区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500107 => - [ - - [ - 'address' => '九龙坡区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500108 => - [ - - [ - 'address' => '南岸区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500109 => - [ - - [ - 'address' => '北碚区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500110 => - [ - - [ - 'address' => '万盛区', - 'start_year' => 1997, - 'end_year' => 2010, - ], - - [ - 'address' => '綦江区', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 500111 => - [ - - [ - 'address' => '双桥区', - 'start_year' => 1997, - 'end_year' => 2010, - ], - - [ - 'address' => '大足区', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 500112 => - [ - - [ - 'address' => '渝北区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500113 => - [ - - [ - 'address' => '巴南区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500114 => - [ - - [ - 'address' => '黔江区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 500115 => - [ - - [ - 'address' => '长寿区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 500116 => - [ - - [ - 'address' => '江津区', - 'start_year' => 2006, - 'end_year' => '', - ], - ], - 500117 => - [ - - [ - 'address' => '合川区', - 'start_year' => 2006, - 'end_year' => '', - ], - ], - 500118 => - [ - - [ - 'address' => '永川区', - 'start_year' => 2006, - 'end_year' => '', - ], - ], - 500119 => - [ - - [ - 'address' => '南川区', - 'start_year' => 2006, - 'end_year' => '', - ], - ], - 500120 => - [ - - [ - 'address' => '璧山区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 500151 => - [ - - [ - 'address' => '铜梁区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 500152 => - [ - - [ - 'address' => '潼南区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 500153 => - [ - - [ - 'address' => '荣昌区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 500154 => - [ - - [ - 'address' => '开州区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 500155 => - [ - - [ - 'address' => '梁平区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 500156 => - [ - - [ - 'address' => '武隆区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 500221 => - [ - - [ - 'address' => '长寿县', - 'start_year' => 1997, - 'end_year' => 2000, - ], - ], - 500222 => - [ - - [ - 'address' => '綦江县', - 'start_year' => 1997, - 'end_year' => 2010, - ], - ], - 500223 => - [ - - [ - 'address' => '潼南县', - 'start_year' => 1997, - 'end_year' => 2014, - ], - ], - 500224 => - [ - - [ - 'address' => '铜梁县', - 'start_year' => 1997, - 'end_year' => 2013, - ], - ], - 500225 => - [ - - [ - 'address' => '大足县', - 'start_year' => 1997, - 'end_year' => 2010, - ], - ], - 500226 => - [ - - [ - 'address' => '荣昌县', - 'start_year' => 1997, - 'end_year' => 2014, - ], - ], - 500227 => - [ - - [ - 'address' => '璧山县', - 'start_year' => 1997, - 'end_year' => 2013, - ], - ], - 500228 => - [ - - [ - 'address' => '梁平县', - 'start_year' => 1997, - 'end_year' => 2015, - ], - ], - 500229 => - [ - - [ - 'address' => '城口县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500230 => - [ - - [ - 'address' => '丰都县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500231 => - [ - - [ - 'address' => '垫江县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500232 => - [ - - [ - 'address' => '武隆县', - 'start_year' => 1997, - 'end_year' => 2015, - ], - ], - 500233 => - [ - - [ - 'address' => '忠县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500234 => - [ - - [ - 'address' => '开县', - 'start_year' => 1997, - 'end_year' => 2015, - ], - ], - 500235 => - [ - - [ - 'address' => '云阳县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500236 => - [ - - [ - 'address' => '奉节县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500237 => - [ - - [ - 'address' => '巫山县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500238 => - [ - - [ - 'address' => '巫溪县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500239 => - [ - - [ - 'address' => '黔江土家族苗族自治县', - 'start_year' => 1997, - 'end_year' => 1999, - ], - ], - 500240 => - [ - - [ - 'address' => '石柱土家族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500241 => - [ - - [ - 'address' => '秀山土家族苗族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500242 => - [ - - [ - 'address' => '酉阳土家族苗族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500243 => - [ - - [ - 'address' => '彭水苗族土家族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 500381 => - [ - - [ - 'address' => '江津市', - 'start_year' => 1997, - 'end_year' => 2005, - ], - ], - 500382 => - [ - - [ - 'address' => '合川市', - 'start_year' => 1997, - 'end_year' => 2005, - ], - ], - 500383 => - [ - - [ - 'address' => '永川市', - 'start_year' => 1997, - 'end_year' => 2005, - ], - ], - 500384 => - [ - - [ - 'address' => '南川市', - 'start_year' => 1997, - 'end_year' => 2005, - ], - ], - 510000 => - [ - - [ - 'address' => '四川省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510100 => - [ - - [ - 'address' => '成都市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510102 => - [ - - [ - 'address' => '东城区', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 510103 => - [ - - [ - 'address' => '西城区', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 510104 => - [ - - [ - 'address' => '锦江区', - 'start_year' => 1990, - 'end_year' => '', - ], - ], - 510105 => - [ - - [ - 'address' => '青羊区', - 'start_year' => 1990, - 'end_year' => '', - ], - ], - 510106 => - [ - - [ - 'address' => '金牛区', - 'start_year' => 1990, - 'end_year' => '', - ], - ], - 510107 => - [ - - [ - 'address' => '武侯区', - 'start_year' => 1990, - 'end_year' => '', - ], - ], - 510108 => - [ - - [ - 'address' => '成华区', - 'start_year' => 1990, - 'end_year' => '', - ], - ], - 510111 => - [ - - [ - 'address' => '金牛区', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 510112 => - [ - - [ - 'address' => '龙泉驿区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510113 => - [ - - [ - 'address' => '青白江区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510114 => - [ - - [ - 'address' => '新都区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 510115 => - [ - - [ - 'address' => '温江区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 510116 => - [ - - [ - 'address' => '双流区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 510117 => - [ - - [ - 'address' => '郫都区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 510121 => - [ - - [ - 'address' => '金堂县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510122 => - [ - - [ - 'address' => '双流县', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 510123 => - [ - - [ - 'address' => '温江县', - 'start_year' => 1983, - 'end_year' => 2001, - ], - ], - 510124 => - [ - - [ - 'address' => '郫县', - 'start_year' => 1983, - 'end_year' => 2015, - ], - ], - 510125 => - [ - - [ - 'address' => '新都县', - 'start_year' => 1983, - 'end_year' => 2000, - ], - ], - 510126 => - [ - - [ - 'address' => '彭县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 510127 => - [ - - [ - 'address' => '灌县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 510128 => - [ - - [ - 'address' => '崇庆县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 510129 => - [ - - [ - 'address' => '大邑县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 510130 => - [ - - [ - 'address' => '邛崃县', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 510131 => - [ - - [ - 'address' => '蒲江县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 510132 => - [ - - [ - 'address' => '新津县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 510181 => - [ - - [ - 'address' => '都江堰市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 510182 => - [ - - [ - 'address' => '彭州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 510183 => - [ - - [ - 'address' => '邛崃市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 510184 => - [ - - [ - 'address' => '崇州市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 510185 => - [ - - [ - 'address' => '简阳市', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 510200 => - [ - - [ - 'address' => '重庆市', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 510202 => - [ - - [ - 'address' => '市中区', - 'start_year' => '', - 'end_year' => 1993, - ], - - [ - 'address' => '渝中区', - 'start_year' => 1994, - 'end_year' => 1996, - ], - ], - 510203 => - [ - - [ - 'address' => '大渡口区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 510211 => - [ - - [ - 'address' => '江北区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 510212 => - [ - - [ - 'address' => '沙坪坝区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 510213 => - [ - - [ - 'address' => '九龙坡区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 510214 => - [ - - [ - 'address' => '南岸区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 510215 => - [ - - [ - 'address' => '北碚区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 510216 => - [ - - [ - 'address' => '南桐矿区', - 'start_year' => '', - 'end_year' => 1992, - ], - - [ - 'address' => '万盛区', - 'start_year' => 1993, - 'end_year' => 1996, - ], - ], - 510217 => - [ - - [ - 'address' => '双桥区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 510218 => - [ - - [ - 'address' => '渝北区', - 'start_year' => 1994, - 'end_year' => 1996, - ], - ], - 510219 => - [ - - [ - 'address' => '巴南区', - 'start_year' => 1994, - 'end_year' => 1996, - ], - ], - 510221 => - [ - - [ - 'address' => '长寿县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 510222 => - [ - - [ - 'address' => '巴县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 510223 => - [ - - [ - 'address' => '綦江县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 510224 => - [ - - [ - 'address' => '江北县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 510225 => - [ - - [ - 'address' => '江津县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 510226 => - [ - - [ - 'address' => '合川县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 510227 => - [ - - [ - 'address' => '潼南县', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 510228 => - [ - - [ - 'address' => '铜梁县', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 510229 => - [ - - [ - 'address' => '永川县', - 'start_year' => 1983, - 'end_year' => 1991, - ], - ], - 510230 => - [ - - [ - 'address' => '大足县', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 510231 => - [ - - [ - 'address' => '荣昌县', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 510232 => - [ - - [ - 'address' => '璧山县', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 510281 => - [ - - [ - 'address' => '永川市', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 510282 => - [ - - [ - 'address' => '合川市', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 510283 => - [ - - [ - 'address' => '江津市', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 510300 => - [ - - [ - 'address' => '自贡市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510302 => - [ - - [ - 'address' => '自流井区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510303 => - [ - - [ - 'address' => '贡井区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510304 => - [ - - [ - 'address' => '大安区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510311 => - [ - - [ - 'address' => '沿滩区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510321 => - [ - - [ - 'address' => '荣县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510322 => - [ - - [ - 'address' => '富顺县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 510400 => - [ - - [ - 'address' => '渡口市', - 'start_year' => '', - 'end_year' => 1986, - ], - - [ - 'address' => '攀枝花市', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 510402 => - [ - - [ - 'address' => '东区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510403 => - [ - - [ - 'address' => '西区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510411 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '仁和区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 510421 => - [ - - [ - 'address' => '米易县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510422 => - [ - - [ - 'address' => '盐边县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 510500 => - [ - - [ - 'address' => '泸州市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 510502 => - [ - - [ - 'address' => '市中区', - 'start_year' => 1984, - 'end_year' => 1994, - ], - - [ - 'address' => '江阳区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 510503 => - [ - - [ - 'address' => '纳溪区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 510504 => - [ - - [ - 'address' => '龙马潭区', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 510521 => - [ - - [ - 'address' => '泸县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 510522 => - [ - - [ - 'address' => '合江县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 510523 => - [ - - [ - 'address' => '纳溪县', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 510524 => - [ - - [ - 'address' => '叙永县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510525 => - [ - - [ - 'address' => '古蔺县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510600 => - [ - - [ - 'address' => '德阳市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 510602 => - [ - - [ - 'address' => '市中区', - 'start_year' => 1984, - 'end_year' => 1995, - ], - ], - 510603 => - [ - - [ - 'address' => '旌阳区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 510604 => - [ - - [ - 'address' => '罗江区', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 510621 => - [ - - [ - 'address' => '德阳县', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 510622 => - [ - - [ - 'address' => '绵竹县', - 'start_year' => 1983, - 'end_year' => 1995, - ], - ], - 510623 => - [ - - [ - 'address' => '中江县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 510624 => - [ - - [ - 'address' => '广汉县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 510625 => - [ - - [ - 'address' => '什邡县', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 510626 => - [ - - [ - 'address' => '罗江县', - 'start_year' => 1996, - 'end_year' => 2016, - ], - ], - 510681 => - [ - - [ - 'address' => '广汉市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 510682 => - [ - - [ - 'address' => '什邡市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 510683 => - [ - - [ - 'address' => '绵竹市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 510700 => - [ - - [ - 'address' => '绵阳市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510702 => - [ - - [ - 'address' => '市中区', - 'start_year' => 1985, - 'end_year' => 1991, - ], - ], - 510703 => - [ - - [ - 'address' => '涪城区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 510704 => - [ - - [ - 'address' => '游仙区', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 510705 => - [ - - [ - 'address' => '安州区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 510721 => - [ - - [ - 'address' => '江油县', - 'start_year' => 1985, - 'end_year' => 1987, - ], - ], - 510722 => - [ - - [ - 'address' => '三台县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510723 => - [ - - [ - 'address' => '盐亭县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510724 => - [ - - [ - 'address' => '安县', - 'start_year' => 1985, - 'end_year' => 2015, - ], - ], - 510725 => - [ - - [ - 'address' => '梓潼县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510726 => - [ - - [ - 'address' => '北川县', - 'start_year' => 1985, - 'end_year' => 2002, - ], - - [ - 'address' => '北川羌族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 510727 => - [ - - [ - 'address' => '平武县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510781 => - [ - - [ - 'address' => '江油市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 510800 => - [ - - [ - 'address' => '广元市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510802 => - [ - - [ - 'address' => '市中区', - 'start_year' => 1985, - 'end_year' => 2006, - ], - - [ - 'address' => '利州区', - 'start_year' => 2007, - 'end_year' => '', - ], - ], - 510811 => - [ - - [ - 'address' => '元坝区', - 'start_year' => 1989, - 'end_year' => 2012, - ], - - [ - 'address' => '昭化区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 510812 => - [ - - [ - 'address' => '朝天区', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 510821 => - [ - - [ - 'address' => '旺苍县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510822 => - [ - - [ - 'address' => '青川县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510823 => - [ - - [ - 'address' => '剑阁县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510824 => - [ - - [ - 'address' => '苍溪县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510900 => - [ - - [ - 'address' => '遂宁市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510902 => - [ - - [ - 'address' => '市中区', - 'start_year' => 1985, - 'end_year' => 2002, - ], - ], - 510903 => - [ - - [ - 'address' => '船山区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 510904 => - [ - - [ - 'address' => '安居区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 510921 => - [ - - [ - 'address' => '蓬溪县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510922 => - [ - - [ - 'address' => '射洪县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 510923 => - [ - - [ - 'address' => '大英县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 511000 => - [ - - [ - 'address' => '内江市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511002 => - [ - - [ - 'address' => '市中区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511011 => - [ - - [ - 'address' => '东兴区', - 'start_year' => 1989, - 'end_year' => '', - ], - ], - 511021 => - [ - - [ - 'address' => '内江县', - 'start_year' => 1985, - 'end_year' => 1988, - ], - ], - 511022 => - [ - - [ - 'address' => '乐至县', - 'start_year' => 1985, - 'end_year' => 1997, - ], - ], - 511023 => - [ - - [ - 'address' => '安岳县', - 'start_year' => 1985, - 'end_year' => 1997, - ], - ], - 511024 => - [ - - [ - 'address' => '威远县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511025 => - [ - - [ - 'address' => '资中县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511026 => - [ - - [ - 'address' => '资阳县', - 'start_year' => 1985, - 'end_year' => 1992, - ], - ], - 511027 => - [ - - [ - 'address' => '简阳县', - 'start_year' => 1985, - 'end_year' => 1993, - ], - ], - 511028 => - [ - - [ - 'address' => '隆昌县', - 'start_year' => 1985, - 'end_year' => 2016, - ], - ], - 511081 => - [ - - [ - 'address' => '资阳市', - 'start_year' => 1995, - 'end_year' => 1997, - ], - ], - 511082 => - [ - - [ - 'address' => '简阳市', - 'start_year' => 1995, - 'end_year' => 1997, - ], - ], - 511083 => - [ - - [ - 'address' => '隆昌市', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 511100 => - [ - - [ - 'address' => '乐山市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511102 => - [ - - [ - 'address' => '市中区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511111 => - [ - - [ - 'address' => '沙湾区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511112 => - [ - - [ - 'address' => '五通桥区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511113 => - [ - - [ - 'address' => '金口河区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511121 => - [ - - [ - 'address' => '仁寿县', - 'start_year' => 1985, - 'end_year' => 1996, - ], - ], - 511122 => - [ - - [ - 'address' => '眉山县', - 'start_year' => 1985, - 'end_year' => 1996, - ], - ], - 511123 => - [ - - [ - 'address' => '犍为县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511124 => - [ - - [ - 'address' => '井研县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511125 => - [ - - [ - 'address' => '峨眉县', - 'start_year' => 1985, - 'end_year' => 1987, - ], - ], - 511126 => - [ - - [ - 'address' => '夹江县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511127 => - [ - - [ - 'address' => '洪雅县', - 'start_year' => 1985, - 'end_year' => 1996, - ], - ], - 511128 => - [ - - [ - 'address' => '彭山县', - 'start_year' => 1985, - 'end_year' => 1996, - ], - ], - 511129 => - [ - - [ - 'address' => '沐川县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511130 => - [ - - [ - 'address' => '青神县', - 'start_year' => 1985, - 'end_year' => 1996, - ], - ], - 511131 => - [ - - [ - 'address' => '丹棱县', - 'start_year' => 1985, - 'end_year' => 1996, - ], - ], - 511132 => - [ - - [ - 'address' => '峨边彝族自治县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511133 => - [ - - [ - 'address' => '马边彝族自治县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 511181 => - [ - - [ - 'address' => '峨眉山市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 511200 => - [ - - [ - 'address' => '万县市', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511202 => - [ - - [ - 'address' => '龙宝区', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511203 => - [ - - [ - 'address' => '天城区', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511204 => - [ - - [ - 'address' => '五桥区', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511221 => - [ - - [ - 'address' => '开县', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511222 => - [ - - [ - 'address' => '忠县', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511223 => - [ - - [ - 'address' => '梁平县', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511224 => - [ - - [ - 'address' => '云阳县', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511225 => - [ - - [ - 'address' => '奉节县', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511226 => - [ - - [ - 'address' => '巫山县', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511227 => - [ - - [ - 'address' => '巫溪县', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511228 => - [ - - [ - 'address' => '城口县', - 'start_year' => 1992, - 'end_year' => 1996, - ], - ], - 511300 => - [ - - [ - 'address' => '南充市', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 511302 => - [ - - [ - 'address' => '顺庆区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 511303 => - [ - - [ - 'address' => '高坪区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 511304 => - [ - - [ - 'address' => '嘉陵区', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 511321 => - [ - - [ - 'address' => '南部县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 511322 => - [ - - [ - 'address' => '营山县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 511323 => - [ - - [ - 'address' => '蓬安县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 511324 => - [ - - [ - 'address' => '仪陇县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 511325 => - [ - - [ - 'address' => '西充县', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 511381 => - [ - - [ - 'address' => '阆中市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 511400 => - [ - - [ - 'address' => '眉山市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511402 => - [ - - [ - 'address' => '东坡区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511403 => - [ - - [ - 'address' => '彭山区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 511421 => - [ - - [ - 'address' => '仁寿县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511422 => - [ - - [ - 'address' => '彭山县', - 'start_year' => 2000, - 'end_year' => 2013, - ], - ], - 511423 => - [ - - [ - 'address' => '洪雅县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511424 => - [ - - [ - 'address' => '丹棱县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511425 => - [ - - [ - 'address' => '青神县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511500 => - [ - - [ - 'address' => '宜宾市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 511502 => - [ - - [ - 'address' => '翠屏区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 511503 => - [ - - [ - 'address' => '南溪区', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 511504 => - [ - - [ - 'address' => '叙州区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 511521 => - [ - - [ - 'address' => '宜宾县', - 'start_year' => 1996, - 'end_year' => 2017, - ], - ], - 511522 => - [ - - [ - 'address' => '南溪县', - 'start_year' => 1996, - 'end_year' => 2010, - ], - ], - 511523 => - [ - - [ - 'address' => '江安县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 511524 => - [ - - [ - 'address' => '长宁县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 511525 => - [ - - [ - 'address' => '高县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 511526 => - [ - - [ - 'address' => '珙县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 511527 => - [ - - [ - 'address' => '筠连县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 511528 => - [ - - [ - 'address' => '兴文县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 511529 => - [ - - [ - 'address' => '屏山县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 511600 => - [ - - [ - 'address' => '广安市', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 511602 => - [ - - [ - 'address' => '广安区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 511603 => - [ - - [ - 'address' => '前锋区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 511621 => - [ - - [ - 'address' => '岳池县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 511622 => - [ - - [ - 'address' => '武胜县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 511623 => - [ - - [ - 'address' => '邻水县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 511681 => - [ - - [ - 'address' => '华蓥市', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 511700 => - [ - - [ - 'address' => '达州市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 511702 => - [ - - [ - 'address' => '通川区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 511703 => - [ - - [ - 'address' => '达川区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 511721 => - [ - - [ - 'address' => '达县', - 'start_year' => 1999, - 'end_year' => 2012, - ], - ], - 511722 => - [ - - [ - 'address' => '宣汉县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 511723 => - [ - - [ - 'address' => '开江县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 511724 => - [ - - [ - 'address' => '大竹县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 511725 => - [ - - [ - 'address' => '渠县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 511781 => - [ - - [ - 'address' => '万源市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 511800 => - [ - - [ - 'address' => '雅安市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511802 => - [ - - [ - 'address' => '雨城区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511803 => - [ - - [ - 'address' => '名山区', - 'start_year' => 2012, - 'end_year' => '', - ], - ], - 511821 => - [ - - [ - 'address' => '名山县', - 'start_year' => 2000, - 'end_year' => 2011, - ], - ], - 511822 => - [ - - [ - 'address' => '荥经县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511823 => - [ - - [ - 'address' => '汉源县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511824 => - [ - - [ - 'address' => '石棉县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511825 => - [ - - [ - 'address' => '天全县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511826 => - [ - - [ - 'address' => '芦山县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511827 => - [ - - [ - 'address' => '宝兴县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511900 => - [ - - [ - 'address' => '巴中市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511902 => - [ - - [ - 'address' => '巴州区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511903 => - [ - - [ - 'address' => '恩阳区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 511921 => - [ - - [ - 'address' => '通江县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511922 => - [ - - [ - 'address' => '南江县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 511923 => - [ - - [ - 'address' => '平昌县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 512000 => - [ - - [ - 'address' => '资阳市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 512002 => - [ - - [ - 'address' => '雁江区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 512021 => - [ - - [ - 'address' => '安岳县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 512022 => - [ - - [ - 'address' => '乐至县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 512081 => - [ - - [ - 'address' => '简阳市', - 'start_year' => 2000, - 'end_year' => 2015, - ], - ], - 512100 => - [ - - [ - 'address' => '温江地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '永川地区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512121 => - [ - - [ - 'address' => '温江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '江津县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512122 => - [ - - [ - 'address' => '郫县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '合川县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512123 => - [ - - [ - 'address' => '灌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '潼南县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512124 => - [ - - [ - 'address' => '彭县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '铜梁县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512125 => - [ - - [ - 'address' => '什邡县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '永川县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512126 => - [ - - [ - 'address' => '广汉县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '大足县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512127 => - [ - - [ - 'address' => '新都县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '荣昌县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512128 => - [ - - [ - 'address' => '新津县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '璧山县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512129 => - [ - - [ - 'address' => '蒲江县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512130 => - [ - - [ - 'address' => '邛崃县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512131 => - [ - - [ - 'address' => '大邑县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512132 => - [ - - [ - 'address' => '崇庆县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512200 => - [ - - [ - 'address' => '绵阳地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '万县地区', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 512201 => - [ - - [ - 'address' => '绵阳市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '万县市', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 512202 => - [ - - [ - 'address' => '市中区', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512221 => - [ - - [ - 'address' => '江油县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '万县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 512222 => - [ - - [ - 'address' => '青川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '开县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 512223 => - [ - - [ - 'address' => '平武县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '忠县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 512224 => - [ - - [ - 'address' => '广元县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '梁平县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 512225 => - [ - - [ - 'address' => '旺苍县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '云阳县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 512226 => - [ - - [ - 'address' => '剑阁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '奉节县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 512227 => - [ - - [ - 'address' => '梓潼县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '巫山县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 512228 => - [ - - [ - 'address' => '三台县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '巫溪县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 512229 => - [ - - [ - 'address' => '盐亭县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '城口县', - 'start_year' => 1982, - 'end_year' => 1991, - ], - ], - 512230 => - [ - - [ - 'address' => '射洪县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512231 => - [ - - [ - 'address' => '遂宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512232 => - [ - - [ - 'address' => '蓬溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512233 => - [ - - [ - 'address' => '中江县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512234 => - [ - - [ - 'address' => '德阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512235 => - [ - - [ - 'address' => '绵竹县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512236 => - [ - - [ - 'address' => '安县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512237 => - [ - - [ - 'address' => '北川县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512300 => - [ - - [ - 'address' => '内江地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '涪陵地区', - 'start_year' => 1982, - 'end_year' => 1994, - ], - ], - 512301 => - [ - - [ - 'address' => '内江市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '涪陵市', - 'start_year' => 1983, - 'end_year' => 1994, - ], - ], - 512302 => - [ - - [ - 'address' => '南川市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 512321 => - [ - - [ - 'address' => '内江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '涪陵县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512322 => - [ - - [ - 'address' => '乐至县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '垫江县', - 'start_year' => 1982, - 'end_year' => 1994, - ], - ], - 512323 => - [ - - [ - 'address' => '安岳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南川县', - 'start_year' => 1982, - 'end_year' => 1993, - ], - ], - 512324 => - [ - - [ - 'address' => '威远县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '丰都县', - 'start_year' => 1982, - 'end_year' => 1994, - ], - ], - 512325 => - [ - - [ - 'address' => '资中县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '石柱县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - - [ - 'address' => '石柱土家族自治县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 512326 => - [ - - [ - 'address' => '资阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '武隆县', - 'start_year' => 1982, - 'end_year' => 1994, - ], - ], - 512327 => - [ - - [ - 'address' => '简阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '彭水县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - - [ - 'address' => '彭水苗族土家族自治县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 512328 => - [ - - [ - 'address' => '黔江县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - - [ - 'address' => '黔江土家族苗族自治县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 512329 => - [ - - [ - 'address' => '酉阳县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - - [ - 'address' => '酉阳土家族苗族自治县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 512330 => - [ - - [ - 'address' => '秀山县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - - [ - 'address' => '秀山土家族苗族自治县', - 'start_year' => 1983, - 'end_year' => 1987, - ], - ], - 512400 => - [ - - [ - 'address' => '宜宾地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '内江地区', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512401 => - [ - - [ - 'address' => '宜宾市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '内江市', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512402 => - [ - - [ - 'address' => '泸州市', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512421 => - [ - - [ - 'address' => '宜宾县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '内江县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512422 => - [ - - [ - 'address' => '富顺县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '资中县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512423 => - [ - - [ - 'address' => '隆昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '资阳县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512424 => - [ - - [ - 'address' => '南溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '简阳县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512425 => - [ - - [ - 'address' => '江安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '威远县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512426 => - [ - - [ - 'address' => '纳溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '隆昌县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512427 => - [ - - [ - 'address' => '泸县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '安岳县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512428 => - [ - - [ - 'address' => '合江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '乐至县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512429 => - [ - - [ - 'address' => '古蔺县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512430 => - [ - - [ - 'address' => '叙永县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512431 => - [ - - [ - 'address' => '长宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512432 => - [ - - [ - 'address' => '兴文县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512433 => - [ - - [ - 'address' => '珙县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512434 => - [ - - [ - 'address' => '高县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512435 => - [ - - [ - 'address' => '筠连县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512436 => - [ - - [ - 'address' => '屏山县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 512500 => - [ - - [ - 'address' => '乐山地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宜宾地区', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 512501 => - [ - - [ - 'address' => '乐山市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宜宾市', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 512502 => - [ - - [ - 'address' => '泸州市', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512521 => - [ - - [ - 'address' => '夹江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '泸县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512522 => - [ - - [ - 'address' => '洪雅县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '富顺县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512523 => - [ - - [ - 'address' => '丹棱县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '合江县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512524 => - [ - - [ - 'address' => '青神县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '纳溪县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512525 => - [ - - [ - 'address' => '眉山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '叙永县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512526 => - [ - - [ - 'address' => '彭山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '古蔺县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512527 => - [ - - [ - 'address' => '井研县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宜宾县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 512528 => - [ - - [ - 'address' => '仁寿县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南溪县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 512529 => - [ - - [ - 'address' => '犍为县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '江安县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 512530 => - [ - - [ - 'address' => '沐川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '长宁县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 512531 => - [ - - [ - 'address' => '峨眉县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '高县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 512532 => - [ - - [ - 'address' => '金口河工农区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '筠连县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 512533 => - [ - - [ - 'address' => '峨边县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '珙县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 512534 => - [ - - [ - 'address' => '马边县', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '兴文县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 512535 => - [ - - [ - 'address' => '屏山县', - 'start_year' => 1982, - 'end_year' => 1995, - ], - ], - 512600 => - [ - - [ - 'address' => '江津地区', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '永川地区', - 'start_year' => 1981, - 'end_year' => 1981, - ], - - [ - 'address' => '乐山地区', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512601 => - [ - - [ - 'address' => '乐山市', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512621 => - [ - - [ - 'address' => '永川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '仁寿县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512622 => - [ - - [ - 'address' => '大足县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '眉山县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512623 => - [ - - [ - 'address' => '铜梁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '犍为县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512624 => - [ - - [ - 'address' => '合川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '井研县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512625 => - [ - - [ - 'address' => '潼南县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '峨眉县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512626 => - [ - - [ - 'address' => '璧山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '夹江县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512627 => - [ - - [ - 'address' => '江津县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '洪雅县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512628 => - [ - - [ - 'address' => '荣昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '彭山县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512629 => - [ - - [ - 'address' => '沐川县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512630 => - [ - - [ - 'address' => '青神县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512631 => - [ - - [ - 'address' => '丹棱县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512632 => - [ - - [ - 'address' => '峨边县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - - [ - 'address' => '峨边彝族自治县', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 512633 => - [ - - [ - 'address' => '马边县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - - [ - 'address' => '马边彝族自治县', - 'start_year' => 1983, - 'end_year' => 1984, - ], - ], - 512634 => - [ - - [ - 'address' => '金口河工农区', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512700 => - [ - - [ - 'address' => '涪陵地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '温江地区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512721 => - [ - - [ - 'address' => '涪陵县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '温江县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512722 => - [ - - [ - 'address' => '垫江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '郫县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512723 => - [ - - [ - 'address' => '丰都县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '新都县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512724 => - [ - - [ - 'address' => '石柱县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '广汉县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512725 => - [ - - [ - 'address' => '秀山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '什邡县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512726 => - [ - - [ - 'address' => '酉阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '彭县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512727 => - [ - - [ - 'address' => '黔江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '灌县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512728 => - [ - - [ - 'address' => '彭水县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '崇庆县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512729 => - [ - - [ - 'address' => '武隆县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '大邑县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512730 => - [ - - [ - 'address' => '南川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '邛崃县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512731 => - [ - - [ - 'address' => '蒲江县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512732 => - [ - - [ - 'address' => '新津县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512800 => - [ - - [ - 'address' => '万县地区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '绵阳地区', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512801 => - [ - - [ - 'address' => '万县市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '绵阳市', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512802 => - [ - - [ - 'address' => '市中区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512821 => - [ - - [ - 'address' => '万县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '德阳县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512822 => - [ - - [ - 'address' => '开县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '绵竹县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512823 => - [ - - [ - 'address' => '城口县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '安县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512824 => - [ - - [ - 'address' => '巫溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '江油县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512825 => - [ - - [ - 'address' => '巫山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '梓潼县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512826 => - [ - - [ - 'address' => '奉节县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '剑阁县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512827 => - [ - - [ - 'address' => '云阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '广元县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512828 => - [ - - [ - 'address' => '忠县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '旺苍县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512829 => - [ - - [ - 'address' => '梁平县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '青川县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512830 => - [ - - [ - 'address' => '平武县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512831 => - [ - - [ - 'address' => '北川县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512832 => - [ - - [ - 'address' => '遂宁县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512833 => - [ - - [ - 'address' => '三台县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512834 => - [ - - [ - 'address' => '中江县', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 512835 => - [ - - [ - 'address' => '蓬溪县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512836 => - [ - - [ - 'address' => '射洪县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512837 => - [ - - [ - 'address' => '盐亭县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512900 => - [ - - [ - 'address' => '南充地区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 512901 => - [ - - [ - 'address' => '南充市', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 512902 => - [ - - [ - 'address' => '华蓥市', - 'start_year' => 1985, - 'end_year' => 1992, - ], - ], - 512903 => - [ - - [ - 'address' => '阆中市', - 'start_year' => 1991, - 'end_year' => 1992, - ], - ], - 512921 => - [ - - [ - 'address' => '南充县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 512922 => - [ - - [ - 'address' => '苍溪县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南部县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 512923 => - [ - - [ - 'address' => '阆中县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '岳池县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 512924 => - [ - - [ - 'address' => '仪陇县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '营山县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 512925 => - [ - - [ - 'address' => '南部县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '广安县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 512926 => - [ - - [ - 'address' => '西充县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '蓬安县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 512927 => - [ - - [ - 'address' => '营山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '仪陇县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 512928 => - [ - - [ - 'address' => '蓬安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '武胜县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 512929 => - [ - - [ - 'address' => '广安县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '西充县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 512930 => - [ - - [ - 'address' => '岳池县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '阆中县', - 'start_year' => 1982, - 'end_year' => 1990, - ], - ], - 512931 => - [ - - [ - 'address' => '武胜县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '苍溪县', - 'start_year' => 1982, - 'end_year' => 1984, - ], - ], - 512932 => - [ - - [ - 'address' => '华云工农区', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 513000 => - [ - - [ - 'address' => '达县地区', - 'start_year' => '', - 'end_year' => 1992, - ], - - [ - 'address' => '达川地区', - 'start_year' => 1993, - 'end_year' => 1998, - ], - ], - 513001 => - [ - - [ - 'address' => '达县市', - 'start_year' => '', - 'end_year' => 1992, - ], - - [ - 'address' => '达川市', - 'start_year' => 1993, - 'end_year' => 1998, - ], - ], - 513002 => - [ - - [ - 'address' => '万源市', - 'start_year' => 1993, - 'end_year' => 1998, - ], - ], - 513021 => - [ - - [ - 'address' => '达县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 513022 => - [ - - [ - 'address' => '万源县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '宣汉县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 513023 => - [ - - [ - 'address' => '宣汉县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '开江县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 513024 => - [ - - [ - 'address' => '开江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '万源县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 513025 => - [ - - [ - 'address' => '邻水县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '通江县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 513026 => - [ - - [ - 'address' => '大竹县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南江县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 513027 => - [ - - [ - 'address' => '渠县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '巴中县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 513028 => - [ - - [ - 'address' => '南江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '平昌县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 513029 => - [ - - [ - 'address' => '巴中县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '大竹县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 513030 => - [ - - [ - 'address' => '平昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '渠县', - 'start_year' => 1982, - 'end_year' => 1998, - ], - ], - 513031 => - [ - - [ - 'address' => '通江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '邻水县', - 'start_year' => 1982, - 'end_year' => 1992, - ], - ], - 513032 => - [ - - [ - 'address' => '白沙工农区', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 513100 => - [ - - [ - 'address' => '雅安地区', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 513101 => - [ - - [ - 'address' => '雅安市', - 'start_year' => 1983, - 'end_year' => 1999, - ], - ], - 513121 => - [ - - [ - 'address' => '雅安县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 513122 => - [ - - [ - 'address' => '芦山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '名山县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 513123 => - [ - - [ - 'address' => '名山县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '荥经县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 513124 => - [ - - [ - 'address' => '荥经县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '汉源县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 513125 => - [ - - [ - 'address' => '汉源县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '石棉县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 513126 => - [ - - [ - 'address' => '石棉县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '天全县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 513127 => - [ - - [ - 'address' => '天全县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '芦山县', - 'start_year' => 1982, - 'end_year' => 1999, - ], - ], - 513128 => - [ - - [ - 'address' => '宝兴县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 513200 => - [ - - [ - 'address' => '阿坝藏族自治州', - 'start_year' => '', - 'end_year' => 1986, - ], - - [ - 'address' => '阿坝藏族羌族自治州', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 513201 => - [ - - [ - 'address' => '马尔康区', - 'start_year' => 2015, - 'end_year' => 2015, - ], - - [ - 'address' => '马尔康市', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 513221 => - [ - - [ - 'address' => '马尔康县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '汶川县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513222 => - [ - - [ - 'address' => '红原县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '理县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513223 => - [ - - [ - 'address' => '阿坝县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '茂汶羌族自治县', - 'start_year' => 1982, - 'end_year' => 1986, - ], - - [ - 'address' => '茂县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 513224 => - [ - - [ - 'address' => '若尔盖县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '松潘县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513225 => - [ - - [ - 'address' => '黑水县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '南坪县', - 'start_year' => 1982, - 'end_year' => 1996, - ], - - [ - 'address' => '九寨沟县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 513226 => - [ - - [ - 'address' => '松潘县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '金川县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513227 => - [ - - [ - 'address' => '南坪县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '小金县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513228 => - [ - - [ - 'address' => '茂汶羌族自治县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '黑水县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513229 => - [ - - [ - 'address' => '汶川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '马尔康县', - 'start_year' => 1982, - 'end_year' => 2014, - ], - ], - 513230 => - [ - - [ - 'address' => '理县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '壤塘县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513231 => - [ - - [ - 'address' => '小金县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '阿坝县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513232 => - [ - - [ - 'address' => '金川县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '若尔盖县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513233 => - [ - - [ - 'address' => '壤塘县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '红原县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513300 => - [ - - [ - 'address' => '甘孜藏族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 513301 => - [ - - [ - 'address' => '康定市', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 513321 => - [ - - [ - 'address' => '康定县', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 513322 => - [ - - [ - 'address' => '炉霍县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '泸定县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513323 => - [ - - [ - 'address' => '甘孜县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '丹巴县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513324 => - [ - - [ - 'address' => '新龙县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '九龙县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513325 => - [ - - [ - 'address' => '白玉县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '雅江县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513326 => - [ - - [ - 'address' => '德格县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '道孚县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513327 => - [ - - [ - 'address' => '石渠县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '炉霍县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513328 => - [ - - [ - 'address' => '色达县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '甘孜县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513329 => - [ - - [ - 'address' => '泸定县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '新龙县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513330 => - [ - - [ - 'address' => '丹巴县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '德格县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513331 => - [ - - [ - 'address' => '九龙县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '白玉县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513332 => - [ - - [ - 'address' => '雅江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '石渠县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513333 => - [ - - [ - 'address' => '道孚县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '色达县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513334 => - [ - - [ - 'address' => '理塘县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 513335 => - [ - - [ - 'address' => '乡城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '巴塘县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513336 => - [ - - [ - 'address' => '稻城县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '乡城县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513337 => - [ - - [ - 'address' => '巴塘县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '稻城县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513338 => - [ - - [ - 'address' => '得荣县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 513400 => - [ - - [ - 'address' => '凉山彝族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 513401 => - [ - - [ - 'address' => '西昌市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 513421 => - [ - - [ - 'address' => '西昌县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 513422 => - [ - - [ - 'address' => '昭觉县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '木里藏族自治县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513423 => - [ - - [ - 'address' => '甘洛县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '盐源县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513424 => - [ - - [ - 'address' => '峨边县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '德昌县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513425 => - [ - - [ - 'address' => '马边县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '会理县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513426 => - [ - - [ - 'address' => '雷波县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '会东县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513427 => - [ - - [ - 'address' => '宁南县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 513428 => - [ - - [ - 'address' => '会东县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '普格县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513429 => - [ - - [ - 'address' => '会理县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '布拖县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513430 => - [ - - [ - 'address' => '德昌县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '金阳县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513431 => - [ - - [ - 'address' => '美姑县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '昭觉县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513432 => - [ - - [ - 'address' => '金阳县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '喜德县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513433 => - [ - - [ - 'address' => '布拖县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '冕宁县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513434 => - [ - - [ - 'address' => '普格县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '越西县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513435 => - [ - - [ - 'address' => '喜德县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '甘洛县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513436 => - [ - - [ - 'address' => '越西县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '美姑县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513437 => - [ - - [ - 'address' => '盐源县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '雷波县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 513438 => - [ - - [ - 'address' => '木里藏族自治县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 513439 => - [ - - [ - 'address' => '冕宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - ], - 513500 => - [ - - [ - 'address' => '黔江地区', - 'start_year' => 1988, - 'end_year' => 1996, - ], - ], - 513521 => - [ - - [ - 'address' => '石柱土家族自治县', - 'start_year' => 1988, - 'end_year' => 1996, - ], - ], - 513522 => - [ - - [ - 'address' => '秀山土家族苗族自治县', - 'start_year' => 1988, - 'end_year' => 1996, - ], - ], - 513523 => - [ - - [ - 'address' => '黔江土家族苗族自治县', - 'start_year' => 1988, - 'end_year' => 1996, - ], - ], - 513524 => - [ - - [ - 'address' => '酉阳土家族苗族自治县', - 'start_year' => 1988, - 'end_year' => 1996, - ], - ], - 513525 => - [ - - [ - 'address' => '彭水苗族土家族自治县', - 'start_year' => 1988, - 'end_year' => 1996, - ], - ], - 513600 => - [ - - [ - 'address' => '广安地区', - 'start_year' => 1993, - 'end_year' => 1997, - ], - ], - 513601 => - [ - - [ - 'address' => '华蓥市', - 'start_year' => 1993, - 'end_year' => 1997, - ], - ], - 513621 => - [ - - [ - 'address' => '岳池县', - 'start_year' => 1993, - 'end_year' => 1997, - ], - ], - 513622 => - [ - - [ - 'address' => '广安县', - 'start_year' => 1993, - 'end_year' => 1997, - ], - ], - 513623 => - [ - - [ - 'address' => '武胜县', - 'start_year' => 1993, - 'end_year' => 1997, - ], - ], - 513624 => - [ - - [ - 'address' => '邻水县', - 'start_year' => 1993, - 'end_year' => 1997, - ], - ], - 513700 => - [ - - [ - 'address' => '巴中地区', - 'start_year' => 1993, - 'end_year' => 1999, - ], - ], - 513701 => - [ - - [ - 'address' => '巴中市', - 'start_year' => 1993, - 'end_year' => 1999, - ], - ], - 513721 => - [ - - [ - 'address' => '通江县', - 'start_year' => 1993, - 'end_year' => 1999, - ], - ], - 513722 => - [ - - [ - 'address' => '南江县', - 'start_year' => 1993, - 'end_year' => 1999, - ], - ], - 513723 => - [ - - [ - 'address' => '平昌县', - 'start_year' => 1993, - 'end_year' => 1999, - ], - ], - 513800 => - [ - - [ - 'address' => '眉山地区', - 'start_year' => 1997, - 'end_year' => 1999, - ], - ], - 513821 => - [ - - [ - 'address' => '眉山县', - 'start_year' => 1997, - 'end_year' => 1999, - ], - ], - 513822 => - [ - - [ - 'address' => '仁寿县', - 'start_year' => 1997, - 'end_year' => 1999, - ], - ], - 513823 => - [ - - [ - 'address' => '彭山县', - 'start_year' => 1997, - 'end_year' => 1999, - ], - ], - 513824 => - [ - - [ - 'address' => '洪雅县', - 'start_year' => 1997, - 'end_year' => 1999, - ], - ], - 513825 => - [ - - [ - 'address' => '丹棱县', - 'start_year' => 1997, - 'end_year' => 1999, - ], - ], - 513826 => - [ - - [ - 'address' => '青神县', - 'start_year' => 1997, - 'end_year' => 1999, - ], - ], - 513900 => - [ - - [ - 'address' => '资阳地区', - 'start_year' => 1998, - 'end_year' => 1999, - ], - ], - 513901 => - [ - - [ - 'address' => '资阳市', - 'start_year' => 1998, - 'end_year' => 1999, - ], - ], - 513902 => - [ - - [ - 'address' => '简阳市', - 'start_year' => 1998, - 'end_year' => 1999, - ], - ], - 513921 => - [ - - [ - 'address' => '安岳县', - 'start_year' => 1998, - 'end_year' => 1999, - ], - ], - 513922 => - [ - - [ - 'address' => '乐至县', - 'start_year' => 1998, - 'end_year' => 1999, - ], - ], - 517000 => - [ - - [ - 'address' => '涪陵市', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 517002 => - [ - - [ - 'address' => '枳城区', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 517003 => - [ - - [ - 'address' => '李渡区', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 517021 => - [ - - [ - 'address' => '垫江县', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 517022 => - [ - - [ - 'address' => '丰都县', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 517023 => - [ - - [ - 'address' => '武隆县', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 517081 => - [ - - [ - 'address' => '南川市', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 519001 => - [ - - [ - 'address' => '广汉市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 519002 => - [ - - [ - 'address' => '江油市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 519003 => - [ - - [ - 'address' => '都江堰市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 519004 => - [ - - [ - 'address' => '峨眉山市', - 'start_year' => 1988, - 'end_year' => 1994, - ], - ], - 519005 => - [ - - [ - 'address' => '永川市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 519006 => - [ - - [ - 'address' => '合川市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 519007 => - [ - - [ - 'address' => '江津市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 519008 => - [ - - [ - 'address' => '阆中市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 519009 => - [ - - [ - 'address' => '资阳市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 519010 => - [ - - [ - 'address' => '彭州市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 519011 => - [ - - [ - 'address' => '简阳市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 519012 => - [ - - [ - 'address' => '邛崃市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 519013 => - [ - - [ - 'address' => '崇州市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 520000 => - [ - - [ - 'address' => '贵州省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 520100 => - [ - - [ - 'address' => '贵阳市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 520102 => - [ - - [ - 'address' => '南明区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 520103 => - [ - - [ - 'address' => '云岩区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 520111 => - [ - - [ - 'address' => '花溪区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 520112 => - [ - - [ - 'address' => '乌当区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 520113 => - [ - - [ - 'address' => '白云区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 520114 => - [ - - [ - 'address' => '小河区', - 'start_year' => 2000, - 'end_year' => 2011, - ], - ], - 520115 => - [ - - [ - 'address' => '观山湖区', - 'start_year' => 2012, - 'end_year' => '', - ], - ], - 520121 => - [ - - [ - 'address' => '开阳县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 520122 => - [ - - [ - 'address' => '息烽县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 520123 => - [ - - [ - 'address' => '修文县', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 520181 => - [ - - [ - 'address' => '清镇市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 520200 => - [ - - [ - 'address' => '六盘水市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 520201 => - [ - - [ - 'address' => '水城特区', - 'start_year' => '', - 'end_year' => 1986, - ], - - [ - 'address' => '钟山区', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 520202 => - [ - - [ - 'address' => '盘县特区', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 520203 => - [ - - [ - 'address' => '六枝特区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 520221 => - [ - - [ - 'address' => '水城县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 520222 => - [ - - [ - 'address' => '盘县', - 'start_year' => 1999, - 'end_year' => 2016, - ], - ], - 520281 => - [ - - [ - 'address' => '盘州市', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 520300 => - [ - - [ - 'address' => '遵义市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520302 => - [ - - [ - 'address' => '红花岗区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520303 => - [ - - [ - 'address' => '汇川区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 520304 => - [ - - [ - 'address' => '播州区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 520321 => - [ - - [ - 'address' => '遵义县', - 'start_year' => 1997, - 'end_year' => 2015, - ], - ], - 520322 => - [ - - [ - 'address' => '桐梓县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520323 => - [ - - [ - 'address' => '绥阳县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520324 => - [ - - [ - 'address' => '正安县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520325 => - [ - - [ - 'address' => '道真仡佬族苗族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520326 => - [ - - [ - 'address' => '务川仡佬族苗族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520327 => - [ - - [ - 'address' => '凤冈县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520328 => - [ - - [ - 'address' => '湄潭县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520329 => - [ - - [ - 'address' => '余庆县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520330 => - [ - - [ - 'address' => '习水县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520381 => - [ - - [ - 'address' => '赤水市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520382 => - [ - - [ - 'address' => '仁怀市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 520400 => - [ - - [ - 'address' => '安顺市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 520402 => - [ - - [ - 'address' => '西秀区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 520403 => - [ - - [ - 'address' => '平坝区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 520421 => - [ - - [ - 'address' => '平坝县', - 'start_year' => 2000, - 'end_year' => 2013, - ], - ], - 520422 => - [ - - [ - 'address' => '普定县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 520423 => - [ - - [ - 'address' => '镇宁布依族苗族自治县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 520424 => - [ - - [ - 'address' => '关岭布依族苗族自治县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 520425 => - [ - - [ - 'address' => '紫云苗族布依族自治县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 520500 => - [ - - [ - 'address' => '毕节市', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520502 => - [ - - [ - 'address' => '七星关区', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520521 => - [ - - [ - 'address' => '大方县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520522 => - [ - - [ - 'address' => '黔西县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520523 => - [ - - [ - 'address' => '金沙县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520524 => - [ - - [ - 'address' => '织金县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520525 => - [ - - [ - 'address' => '纳雍县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520526 => - [ - - [ - 'address' => '威宁彝族回族苗族自治县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520527 => - [ - - [ - 'address' => '赫章县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520600 => - [ - - [ - 'address' => '铜仁市', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520602 => - [ - - [ - 'address' => '碧江区', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520603 => - [ - - [ - 'address' => '万山区', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520621 => - [ - - [ - 'address' => '江口县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520622 => - [ - - [ - 'address' => '玉屏侗族自治县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520623 => - [ - - [ - 'address' => '石阡县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520624 => - [ - - [ - 'address' => '思南县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520625 => - [ - - [ - 'address' => '印江土家族苗族自治县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520626 => - [ - - [ - 'address' => '德江县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520627 => - [ - - [ - 'address' => '沿河土家族自治县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 520628 => - [ - - [ - 'address' => '松桃苗族自治县', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 522100 => - [ - - [ - 'address' => '遵义地区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 522101 => - [ - - [ - 'address' => '遵义市', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 522102 => - [ - - [ - 'address' => '赤水市', - 'start_year' => 1990, - 'end_year' => 1996, - ], - ], - 522103 => - [ - - [ - 'address' => '仁怀市', - 'start_year' => 1995, - 'end_year' => 1996, - ], - ], - 522121 => - [ - - [ - 'address' => '遵义县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 522122 => - [ - - [ - 'address' => '桐梓县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 522123 => - [ - - [ - 'address' => '绥阳县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 522124 => - [ - - [ - 'address' => '正安县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 522125 => - [ - - [ - 'address' => '道真县', - 'start_year' => '', - 'end_year' => 1985, - ], - - [ - 'address' => '道真仡佬族苗族自治县', - 'start_year' => 1986, - 'end_year' => 1996, - ], - ], - 522126 => - [ - - [ - 'address' => '务川县', - 'start_year' => '', - 'end_year' => 1985, - ], - - [ - 'address' => '务川仡佬族苗族自治县', - 'start_year' => 1986, - 'end_year' => 1996, - ], - ], - 522127 => - [ - - [ - 'address' => '凤冈县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 522128 => - [ - - [ - 'address' => '湄潭县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 522129 => - [ - - [ - 'address' => '余庆县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 522130 => - [ - - [ - 'address' => '仁怀县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 522131 => - [ - - [ - 'address' => '赤水县', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 522132 => - [ - - [ - 'address' => '习水县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 522200 => - [ - - [ - 'address' => '铜仁地区', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522201 => - [ - - [ - 'address' => '铜仁市', - 'start_year' => 1987, - 'end_year' => 2010, - ], - ], - 522221 => - [ - - [ - 'address' => '铜仁县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 522222 => - [ - - [ - 'address' => '江口县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522223 => - [ - - [ - 'address' => '玉屏县', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '玉屏侗族自治县', - 'start_year' => 1983, - 'end_year' => 2010, - ], - ], - 522224 => - [ - - [ - 'address' => '石阡县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522225 => - [ - - [ - 'address' => '思南县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522226 => - [ - - [ - 'address' => '印江县', - 'start_year' => '', - 'end_year' => 1985, - ], - - [ - 'address' => '印江土家族苗族自治县', - 'start_year' => 1986, - 'end_year' => 2010, - ], - ], - 522227 => - [ - - [ - 'address' => '德江县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522228 => - [ - - [ - 'address' => '沿河县', - 'start_year' => '', - 'end_year' => 1985, - ], - - [ - 'address' => '沿河土家族自治县', - 'start_year' => 1986, - 'end_year' => 2010, - ], - ], - 522229 => - [ - - [ - 'address' => '松桃苗族自治县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522230 => - [ - - [ - 'address' => '万山特区', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522300 => - [ - - [ - 'address' => '兴义地区', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '黔西南布依族苗族自治州', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 522301 => - [ - - [ - 'address' => '兴义市', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 522302 => - [ - - [ - 'address' => '兴仁市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 522321 => - [ - - [ - 'address' => '兴义县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 522322 => - [ - - [ - 'address' => '兴仁县', - 'start_year' => '', - 'end_year' => 2017, - ], - ], - 522323 => - [ - - [ - 'address' => '普安县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522324 => - [ - - [ - 'address' => '晴隆县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522325 => - [ - - [ - 'address' => '贞丰布依族苗族自治县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '贞丰县', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 522326 => - [ - - [ - 'address' => '望谟布依族苗族自治县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '望谟县', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 522327 => - [ - - [ - 'address' => '册亨布依族自治县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '册亨县', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 522328 => - [ - - [ - 'address' => '安龙布依族苗族自治县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '安龙县', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 522400 => - [ - - [ - 'address' => '毕节地区', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522401 => - [ - - [ - 'address' => '毕节市', - 'start_year' => 1993, - 'end_year' => 2010, - ], - ], - 522421 => - [ - - [ - 'address' => '毕节县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 522422 => - [ - - [ - 'address' => '大方县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522423 => - [ - - [ - 'address' => '黔西县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522424 => - [ - - [ - 'address' => '金沙县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522425 => - [ - - [ - 'address' => '织金县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522426 => - [ - - [ - 'address' => '纳雍县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522427 => - [ - - [ - 'address' => '威宁彝族回族苗族自治县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522428 => - [ - - [ - 'address' => '赫章县', - 'start_year' => '', - 'end_year' => 2010, - ], - ], - 522500 => - [ - - [ - 'address' => '安顺地区', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 522501 => - [ - - [ - 'address' => '安顺市', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 522502 => - [ - - [ - 'address' => '清镇市', - 'start_year' => 1992, - 'end_year' => 1994, - ], - ], - 522521 => - [ - - [ - 'address' => '安顺县', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 522522 => - [ - - [ - 'address' => '开阳县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 522523 => - [ - - [ - 'address' => '息烽县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 522524 => - [ - - [ - 'address' => '修文县', - 'start_year' => '', - 'end_year' => 1994, - ], - ], - 522525 => - [ - - [ - 'address' => '清镇县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 522526 => - [ - - [ - 'address' => '平坝县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 522527 => - [ - - [ - 'address' => '普定县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 522528 => - [ - - [ - 'address' => '关岭县', - 'start_year' => '', - 'end_year' => 1980, - ], - - [ - 'address' => '关岭布依族苗族自治县', - 'start_year' => 1981, - 'end_year' => 1999, - ], - ], - 522529 => - [ - - [ - 'address' => '镇宁布依族苗族自治县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 522530 => - [ - - [ - 'address' => '紫云苗族布依族自治县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 522600 => - [ - - [ - 'address' => '黔东南苗族侗族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522601 => - [ - - [ - 'address' => '凯里市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 522621 => - [ - - [ - 'address' => '凯里县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 522622 => - [ - - [ - 'address' => '黄平县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522623 => - [ - - [ - 'address' => '施秉县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522624 => - [ - - [ - 'address' => '三穗县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522625 => - [ - - [ - 'address' => '镇远县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522626 => - [ - - [ - 'address' => '岑巩县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522627 => - [ - - [ - 'address' => '天柱县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522628 => - [ - - [ - 'address' => '锦屏县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522629 => - [ - - [ - 'address' => '剑河县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522630 => - [ - - [ - 'address' => '台江县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522631 => - [ - - [ - 'address' => '黎平县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522632 => - [ - - [ - 'address' => '榕江县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522633 => - [ - - [ - 'address' => '从江县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522634 => - [ - - [ - 'address' => '雷山县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522635 => - [ - - [ - 'address' => '麻江县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522636 => - [ - - [ - 'address' => '丹寨县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522700 => - [ - - [ - 'address' => '黔南布依族苗族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522701 => - [ - - [ - 'address' => '都匀市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522702 => - [ - - [ - 'address' => '福泉市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 522721 => - [ - - [ - 'address' => '都匀县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 522722 => - [ - - [ - 'address' => '荔波县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522723 => - [ - - [ - 'address' => '贵定县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522724 => - [ - - [ - 'address' => '福泉县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 522725 => - [ - - [ - 'address' => '瓮安县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522726 => - [ - - [ - 'address' => '独山县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522727 => - [ - - [ - 'address' => '平塘县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522728 => - [ - - [ - 'address' => '罗甸县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522729 => - [ - - [ - 'address' => '长顺县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522730 => - [ - - [ - 'address' => '龙里县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522731 => - [ - - [ - 'address' => '惠水县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 522732 => - [ - - [ - 'address' => '三都水族自治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 530000 => - [ - - [ - 'address' => '云南省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 530100 => - [ - - [ - 'address' => '昆明市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 530102 => - [ - - [ - 'address' => '五华区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 530103 => - [ - - [ - 'address' => '盘龙区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 530111 => - [ - - [ - 'address' => '官渡区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 530112 => - [ - - [ - 'address' => '西山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 530113 => - [ - - [ - 'address' => '东川区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 530114 => - [ - - [ - 'address' => '呈贡区', - 'start_year' => 2011, - 'end_year' => '', - ], - ], - 530115 => - [ - - [ - 'address' => '晋宁区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 530121 => - [ - - [ - 'address' => '安宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '呈贡县', - 'start_year' => 1982, - 'end_year' => 2010, - ], - ], - 530122 => - [ - - [ - 'address' => '呈贡县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '晋宁县', - 'start_year' => 1982, - 'end_year' => 2015, - ], - ], - 530123 => - [ - - [ - 'address' => '富民县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '安宁县', - 'start_year' => 1982, - 'end_year' => 1994, - ], - ], - 530124 => - [ - - [ - 'address' => '晋宁县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '富民县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 530125 => - [ - - [ - 'address' => '宜良县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 530126 => - [ - - [ - 'address' => '路南彝族自治县', - 'start_year' => 1983, - 'end_year' => 1997, - ], - - [ - 'address' => '石林彝族自治县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 530127 => - [ - - [ - 'address' => '嵩明县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 530128 => - [ - - [ - 'address' => '禄劝县', - 'start_year' => 1983, - 'end_year' => 1984, - ], - - [ - 'address' => '禄劝彝族苗族自治县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 530129 => - [ - - [ - 'address' => '寻甸回族彝族自治县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 530181 => - [ - - [ - 'address' => '安宁市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 530200 => - [ - - [ - 'address' => '东川市', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 530300 => - [ - - [ - 'address' => '曲靖市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530302 => - [ - - [ - 'address' => '麒麟区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530303 => - [ - - [ - 'address' => '沾益区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 530304 => - [ - - [ - 'address' => '马龙区', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 530321 => - [ - - [ - 'address' => '马龙县', - 'start_year' => 1997, - 'end_year' => 2017, - ], - ], - 530322 => - [ - - [ - 'address' => '陆良县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530323 => - [ - - [ - 'address' => '师宗县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530324 => - [ - - [ - 'address' => '罗平县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530325 => - [ - - [ - 'address' => '富源县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530326 => - [ - - [ - 'address' => '会泽县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530327 => - [ - - [ - 'address' => '寻甸回族彝族自治县', - 'start_year' => 1997, - 'end_year' => 1997, - ], - ], - 530328 => - [ - - [ - 'address' => '沾益县', - 'start_year' => 1997, - 'end_year' => 2015, - ], - ], - 530381 => - [ - - [ - 'address' => '宣威市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530400 => - [ - - [ - 'address' => '玉溪市', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530402 => - [ - - [ - 'address' => '红塔区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530403 => - [ - - [ - 'address' => '江川区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 530421 => - [ - - [ - 'address' => '江川县', - 'start_year' => 1997, - 'end_year' => 2014, - ], - ], - 530422 => - [ - - [ - 'address' => '澄江县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530423 => - [ - - [ - 'address' => '通海县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530424 => - [ - - [ - 'address' => '华宁县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530425 => - [ - - [ - 'address' => '易门县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530426 => - [ - - [ - 'address' => '峨山彝族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530427 => - [ - - [ - 'address' => '新平彝族傣族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530428 => - [ - - [ - 'address' => '元江哈尼族彝族傣族自治县', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 530500 => - [ - - [ - 'address' => '保山市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 530502 => - [ - - [ - 'address' => '隆阳区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 530521 => - [ - - [ - 'address' => '施甸县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 530522 => - [ - - [ - 'address' => '腾冲县', - 'start_year' => 2000, - 'end_year' => 2014, - ], - ], - 530523 => - [ - - [ - 'address' => '龙陵县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 530524 => - [ - - [ - 'address' => '昌宁县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 530581 => - [ - - [ - 'address' => '腾冲市', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 530600 => - [ - - [ - 'address' => '昭通市', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 530602 => - [ - - [ - 'address' => '昭阳区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 530621 => - [ - - [ - 'address' => '鲁甸县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 530622 => - [ - - [ - 'address' => '巧家县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 530623 => - [ - - [ - 'address' => '盐津县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 530624 => - [ - - [ - 'address' => '大关县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 530625 => - [ - - [ - 'address' => '永善县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 530626 => - [ - - [ - 'address' => '绥江县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 530627 => - [ - - [ - 'address' => '镇雄县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 530628 => - [ - - [ - 'address' => '彝良县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 530629 => - [ - - [ - 'address' => '威信县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 530630 => - [ - - [ - 'address' => '水富县', - 'start_year' => 2001, - 'end_year' => 2017, - ], - ], - 530681 => - [ - - [ - 'address' => '水富市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 530700 => - [ - - [ - 'address' => '丽江市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 530702 => - [ - - [ - 'address' => '古城区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 530721 => - [ - - [ - 'address' => '玉龙纳西族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 530722 => - [ - - [ - 'address' => '永胜县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 530723 => - [ - - [ - 'address' => '华坪县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 530724 => - [ - - [ - 'address' => '宁蒗彝族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 530800 => - [ - - [ - 'address' => '思茅市', - 'start_year' => 2003, - 'end_year' => 2006, - ], - - [ - 'address' => '普洱市', - 'start_year' => 2007, - 'end_year' => '', - ], - ], - 530802 => - [ - - [ - 'address' => '翠云区', - 'start_year' => 2003, - 'end_year' => 2006, - ], - - [ - 'address' => '思茅区', - 'start_year' => 2007, - 'end_year' => '', - ], - ], - 530821 => - [ - - [ - 'address' => '普洱哈尼族彝族自治县', - 'start_year' => 2003, - 'end_year' => 2006, - ], - - [ - 'address' => '宁洱哈尼族彝族自治县', - 'start_year' => 2007, - 'end_year' => '', - ], - ], - 530822 => - [ - - [ - 'address' => '墨江哈尼族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530823 => - [ - - [ - 'address' => '景东彝族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530824 => - [ - - [ - 'address' => '景谷傣族彝族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530825 => - [ - - [ - 'address' => '镇沅彝族哈尼族拉祜族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530826 => - [ - - [ - 'address' => '江城哈尼族彝族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530827 => - [ - - [ - 'address' => '孟连傣族拉祜族佤族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530828 => - [ - - [ - 'address' => '澜沧拉祜族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530829 => - [ - - [ - 'address' => '西盟佤族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530900 => - [ - - [ - 'address' => '临沧市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530902 => - [ - - [ - 'address' => '临翔区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530921 => - [ - - [ - 'address' => '凤庆县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530922 => - [ - - [ - 'address' => '云县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530923 => - [ - - [ - 'address' => '永德县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530924 => - [ - - [ - 'address' => '镇康县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530925 => - [ - - [ - 'address' => '双江拉祜族佤族布朗族傣族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530926 => - [ - - [ - 'address' => '耿马傣族佤族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 530927 => - [ - - [ - 'address' => '沧源佤族自治县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 532100 => - [ - - [ - 'address' => '昭通地区', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 532101 => - [ - - [ - 'address' => '昭通市', - 'start_year' => 1981, - 'end_year' => 2000, - ], - ], - 532121 => - [ - - [ - 'address' => '昭通县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 532122 => - [ - - [ - 'address' => '鲁甸县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 532123 => - [ - - [ - 'address' => '巧家县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 532124 => - [ - - [ - 'address' => '盐津县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 532125 => - [ - - [ - 'address' => '大关县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 532126 => - [ - - [ - 'address' => '永善县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 532127 => - [ - - [ - 'address' => '绥江县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 532128 => - [ - - [ - 'address' => '镇雄县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 532129 => - [ - - [ - 'address' => '彝良县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 532130 => - [ - - [ - 'address' => '威信县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 532131 => - [ - - [ - 'address' => '水富县', - 'start_year' => 1981, - 'end_year' => 2000, - ], - ], - 532200 => - [ - - [ - 'address' => '曲靖地区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532201 => - [ - - [ - 'address' => '曲靖市', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 532202 => - [ - - [ - 'address' => '宣威市', - 'start_year' => 1994, - 'end_year' => 1996, - ], - ], - 532221 => - [ - - [ - 'address' => '曲靖县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 532222 => - [ - - [ - 'address' => '沾益县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 532223 => - [ - - [ - 'address' => '马龙县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532224 => - [ - - [ - 'address' => '宣威县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 532225 => - [ - - [ - 'address' => '富源县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532226 => - [ - - [ - 'address' => '罗平县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532227 => - [ - - [ - 'address' => '师宗县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532228 => - [ - - [ - 'address' => '陆良县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532229 => - [ - - [ - 'address' => '宜良县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 532230 => - [ - - [ - 'address' => '路南彝族自治县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 532231 => - [ - - [ - 'address' => '寻甸回族彝族自治县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532232 => - [ - - [ - 'address' => '嵩明县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 532233 => - [ - - [ - 'address' => '会泽县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532300 => - [ - - [ - 'address' => '楚雄彝族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532301 => - [ - - [ - 'address' => '楚雄市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 532321 => - [ - - [ - 'address' => '楚雄县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 532322 => - [ - - [ - 'address' => '双柏县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532323 => - [ - - [ - 'address' => '牟定县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532324 => - [ - - [ - 'address' => '南华县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532325 => - [ - - [ - 'address' => '姚安县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532326 => - [ - - [ - 'address' => '大姚县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532327 => - [ - - [ - 'address' => '永仁县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532328 => - [ - - [ - 'address' => '元谋县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532329 => - [ - - [ - 'address' => '武定县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532330 => - [ - - [ - 'address' => '禄劝县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 532331 => - [ - - [ - 'address' => '禄丰县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532400 => - [ - - [ - 'address' => '玉溪地区', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532401 => - [ - - [ - 'address' => '玉溪市', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 532421 => - [ - - [ - 'address' => '玉溪县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 532422 => - [ - - [ - 'address' => '江川县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532423 => - [ - - [ - 'address' => '澄江县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532424 => - [ - - [ - 'address' => '通海县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532425 => - [ - - [ - 'address' => '华宁县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532426 => - [ - - [ - 'address' => '易门县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532427 => - [ - - [ - 'address' => '峨山彝族自治县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532428 => - [ - - [ - 'address' => '新平彝族傣族自治县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532429 => - [ - - [ - 'address' => '元江哈尼族彝族傣族自治县', - 'start_year' => '', - 'end_year' => 1996, - ], - ], - 532500 => - [ - - [ - 'address' => '红河哈尼族彝族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532501 => - [ - - [ - 'address' => '个旧市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532502 => - [ - - [ - 'address' => '开远市', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 532503 => - [ - - [ - 'address' => '蒙自市', - 'start_year' => 2010, - 'end_year' => '', - ], - ], - 532504 => - [ - - [ - 'address' => '弥勒市', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 532521 => - [ - - [ - 'address' => '开远县', - 'start_year' => '', - 'end_year' => 1980, - ], - ], - 532522 => - [ - - [ - 'address' => '蒙自县', - 'start_year' => '', - 'end_year' => 2009, - ], - ], - 532523 => - [ - - [ - 'address' => '屏边苗族自治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532524 => - [ - - [ - 'address' => '建水县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532525 => - [ - - [ - 'address' => '石屏县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532526 => - [ - - [ - 'address' => '弥勒县', - 'start_year' => '', - 'end_year' => 2012, - ], - ], - 532527 => - [ - - [ - 'address' => '泸西县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532528 => - [ - - [ - 'address' => '元阳县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532529 => - [ - - [ - 'address' => '红河县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532530 => - [ - - [ - 'address' => '金平县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '金平苗族瑶族傣族自治县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 532531 => - [ - - [ - 'address' => '绿春县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532532 => - [ - - [ - 'address' => '河口瑶族自治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532600 => - [ - - [ - 'address' => '文山壮族苗族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532601 => - [ - - [ - 'address' => '文山市', - 'start_year' => 2010, - 'end_year' => '', - ], - ], - 532621 => - [ - - [ - 'address' => '文山县', - 'start_year' => '', - 'end_year' => 2009, - ], - ], - 532622 => - [ - - [ - 'address' => '砚山县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532623 => - [ - - [ - 'address' => '西畴县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532624 => - [ - - [ - 'address' => '麻栗坡县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532625 => - [ - - [ - 'address' => '马关县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532626 => - [ - - [ - 'address' => '丘北县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532627 => - [ - - [ - 'address' => '广南县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532628 => - [ - - [ - 'address' => '富宁县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532700 => - [ - - [ - 'address' => '思茅地区', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 532701 => - [ - - [ - 'address' => '思茅市', - 'start_year' => 1993, - 'end_year' => 2002, - ], - ], - 532721 => - [ - - [ - 'address' => '思茅县', - 'start_year' => 1981, - 'end_year' => 1992, - ], - ], - 532722 => - [ - - [ - 'address' => '普洱县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '普洱哈尼族彝族自治县', - 'start_year' => 1985, - 'end_year' => 2002, - ], - ], - 532723 => - [ - - [ - 'address' => '墨江哈尼族自治县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 532724 => - [ - - [ - 'address' => '景东县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '景东彝族自治县', - 'start_year' => 1985, - 'end_year' => 2002, - ], - ], - 532725 => - [ - - [ - 'address' => '景谷县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '景谷傣族彝族自治县', - 'start_year' => 1985, - 'end_year' => 2002, - ], - ], - 532726 => - [ - - [ - 'address' => '镇沅县', - 'start_year' => '', - 'end_year' => 1989, - ], - - [ - 'address' => '镇沅彝族哈尼族拉祜族自治县', - 'start_year' => 1990, - 'end_year' => 2002, - ], - ], - 532727 => - [ - - [ - 'address' => '江城哈尼族彝族自治县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 532728 => - [ - - [ - 'address' => '孟连傣族拉祜族佤族自治县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 532729 => - [ - - [ - 'address' => '澜沧拉祜族自治县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 532730 => - [ - - [ - 'address' => '西盟佤族自治县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 532800 => - [ - - [ - 'address' => '西双版纳傣族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532801 => - [ - - [ - 'address' => '景洪市', - 'start_year' => 1993, - 'end_year' => '', - ], - ], - 532821 => - [ - - [ - 'address' => '景洪县', - 'start_year' => '', - 'end_year' => 1992, - ], - ], - 532822 => - [ - - [ - 'address' => '勐海县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532823 => - [ - - [ - 'address' => '勐腊县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532900 => - [ - - [ - 'address' => '大理白族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532901 => - [ - - [ - 'address' => '下关市', - 'start_year' => '', - 'end_year' => 1982, - ], - - [ - 'address' => '大理市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 532921 => - [ - - [ - 'address' => '大理县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 532922 => - [ - - [ - 'address' => '漾濞县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '漾濞彝族自治县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 532923 => - [ - - [ - 'address' => '祥云县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532924 => - [ - - [ - 'address' => '宾川县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532925 => - [ - - [ - 'address' => '弥渡县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532926 => - [ - - [ - 'address' => '南涧彝族自治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532927 => - [ - - [ - 'address' => '巍山彝族回族自治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532928 => - [ - - [ - 'address' => '永平县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532929 => - [ - - [ - 'address' => '云龙县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532930 => - [ - - [ - 'address' => '洱源县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532931 => - [ - - [ - 'address' => '剑川县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 532932 => - [ - - [ - 'address' => '鹤庆县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 533000 => - [ - - [ - 'address' => '保山地区', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 533001 => - [ - - [ - 'address' => '保山市', - 'start_year' => 1983, - 'end_year' => 1999, - ], - ], - 533021 => - [ - - [ - 'address' => '保山县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 533022 => - [ - - [ - 'address' => '施甸县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 533023 => - [ - - [ - 'address' => '腾冲县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 533024 => - [ - - [ - 'address' => '龙陵县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 533025 => - [ - - [ - 'address' => '昌宁县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 533100 => - [ - - [ - 'address' => '德宏傣族景颇族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 533101 => - [ - - [ - 'address' => '畹町市', - 'start_year' => 1985, - 'end_year' => 1998, - ], - ], - 533102 => - [ - - [ - 'address' => '瑞丽市', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 533103 => - [ - - [ - 'address' => '潞西市', - 'start_year' => 1996, - 'end_year' => 2009, - ], - - [ - 'address' => '芒市', - 'start_year' => 2010, - 'end_year' => '', - ], - ], - 533121 => - [ - - [ - 'address' => '潞西县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 533122 => - [ - - [ - 'address' => '梁河县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 533123 => - [ - - [ - 'address' => '盈江县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 533124 => - [ - - [ - 'address' => '陇川县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 533125 => - [ - - [ - 'address' => '瑞丽县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 533126 => - [ - - [ - 'address' => '畹町镇', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 533200 => - [ - - [ - 'address' => '丽江地区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 533221 => - [ - - [ - 'address' => '丽江纳西族自治县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 533222 => - [ - - [ - 'address' => '永胜县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 533223 => - [ - - [ - 'address' => '华坪县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 533224 => - [ - - [ - 'address' => '宁蒗彝族自治县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 533300 => - [ - - [ - 'address' => '怒江傈僳族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 533301 => - [ - - [ - 'address' => '泸水市', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 533321 => - [ - - [ - 'address' => '碧江县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '泸水县', - 'start_year' => 1982, - 'end_year' => 2015, - ], - ], - 533322 => - [ - - [ - 'address' => '福贡县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '碧江县', - 'start_year' => 1982, - 'end_year' => 1985, - ], - ], - 533323 => - [ - - [ - 'address' => '贡山独龙族怒族自治县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '福贡县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 533324 => - [ - - [ - 'address' => '泸水县', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '贡山独龙族怒族自治县', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 533325 => - [ - - [ - 'address' => '兰坪县', - 'start_year' => '', - 'end_year' => 1986, - ], - - [ - 'address' => '兰坪白族普米族自治县', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 533400 => - [ - - [ - 'address' => '迪庆藏族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 533401 => - [ - - [ - 'address' => '香格里拉市', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 533421 => - [ - - [ - 'address' => '中甸县', - 'start_year' => '', - 'end_year' => 2000, - ], - - [ - 'address' => '香格里拉县', - 'start_year' => 2001, - 'end_year' => 2013, - ], - ], - 533422 => - [ - - [ - 'address' => '德钦县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 533423 => - [ - - [ - 'address' => '维西县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '维西傈僳族自治县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 533500 => - [ - - [ - 'address' => '临沧地区', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 533521 => - [ - - [ - 'address' => '临沧县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 533522 => - [ - - [ - 'address' => '凤庆县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 533523 => - [ - - [ - 'address' => '云县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 533524 => - [ - - [ - 'address' => '永德县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 533525 => - [ - - [ - 'address' => '镇康县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 533526 => - [ - - [ - 'address' => '双江县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '双江拉祜族佤族布朗族傣族自治县', - 'start_year' => 1985, - 'end_year' => 2002, - ], - ], - 533527 => - [ - - [ - 'address' => '耿马傣族佤族自治县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 533528 => - [ - - [ - 'address' => '沧源佤族自治县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 540000 => - [ - - [ - 'address' => '西藏自治区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 540100 => - [ - - [ - 'address' => '拉萨市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 540102 => - [ - - [ - 'address' => '城关区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 540103 => - [ - - [ - 'address' => '堆龙德庆区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 540104 => - [ - - [ - 'address' => '达孜区', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540121 => - [ - - [ - 'address' => '林周县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 540122 => - [ - - [ - 'address' => '当雄县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 540123 => - [ - - [ - 'address' => '尼木县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 540124 => - [ - - [ - 'address' => '曲水县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 540125 => - [ - - [ - 'address' => '堆龙德庆县', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 540126 => - [ - - [ - 'address' => '达孜县', - 'start_year' => '', - 'end_year' => 2016, - ], - ], - 540127 => - [ - - [ - 'address' => '墨竹工卡县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 540128 => - [ - - [ - 'address' => '工布江达县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 540129 => - [ - - [ - 'address' => '林芝县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 540130 => - [ - - [ - 'address' => '米林县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 540131 => - [ - - [ - 'address' => '墨脱县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 540200 => - [ - - [ - 'address' => '日喀则市', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540202 => - [ - - [ - 'address' => '桑珠孜区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540221 => - [ - - [ - 'address' => '南木林县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540222 => - [ - - [ - 'address' => '江孜县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540223 => - [ - - [ - 'address' => '定日县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540224 => - [ - - [ - 'address' => '萨迦县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540225 => - [ - - [ - 'address' => '拉孜县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540226 => - [ - - [ - 'address' => '昂仁县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540227 => - [ - - [ - 'address' => '谢通门县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540228 => - [ - - [ - 'address' => '白朗县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540229 => - [ - - [ - 'address' => '仁布县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540230 => - [ - - [ - 'address' => '康马县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540231 => - [ - - [ - 'address' => '定结县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540232 => - [ - - [ - 'address' => '仲巴县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540233 => - [ - - [ - 'address' => '亚东县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540234 => - [ - - [ - 'address' => '吉隆县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540235 => - [ - - [ - 'address' => '聂拉木县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540236 => - [ - - [ - 'address' => '萨嘎县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540237 => - [ - - [ - 'address' => '岗巴县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540300 => - [ - - [ - 'address' => '昌都市', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540302 => - [ - - [ - 'address' => '卡若区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540321 => - [ - - [ - 'address' => '江达县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540322 => - [ - - [ - 'address' => '贡觉县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540323 => - [ - - [ - 'address' => '类乌齐县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540324 => - [ - - [ - 'address' => '丁青县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540325 => - [ - - [ - 'address' => '察雅县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540326 => - [ - - [ - 'address' => '八宿县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540327 => - [ - - [ - 'address' => '左贡县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540328 => - [ - - [ - 'address' => '芒康县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540329 => - [ - - [ - 'address' => '洛隆县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540330 => - [ - - [ - 'address' => '边坝县', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 540400 => - [ - - [ - 'address' => '林芝市', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 540402 => - [ - - [ - 'address' => '巴宜区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 540421 => - [ - - [ - 'address' => '工布江达县', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 540422 => - [ - - [ - 'address' => '米林县', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 540423 => - [ - - [ - 'address' => '墨脱县', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 540424 => - [ - - [ - 'address' => '波密县', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 540425 => - [ - - [ - 'address' => '察隅县', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 540426 => - [ - - [ - 'address' => '朗县', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 540500 => - [ - - [ - 'address' => '山南市', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540502 => - [ - - [ - 'address' => '乃东区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540521 => - [ - - [ - 'address' => '扎囊县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540522 => - [ - - [ - 'address' => '贡嘎县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540523 => - [ - - [ - 'address' => '桑日县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540524 => - [ - - [ - 'address' => '琼结县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540525 => - [ - - [ - 'address' => '曲松县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540526 => - [ - - [ - 'address' => '措美县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540527 => - [ - - [ - 'address' => '洛扎县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540528 => - [ - - [ - 'address' => '加查县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540529 => - [ - - [ - 'address' => '隆子县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540530 => - [ - - [ - 'address' => '错那县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540531 => - [ - - [ - 'address' => '浪卡子县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 540600 => - [ - - [ - 'address' => '那曲市', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540602 => - [ - - [ - 'address' => '色尼区', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540621 => - [ - - [ - 'address' => '嘉黎县', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540622 => - [ - - [ - 'address' => '比如县', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540623 => - [ - - [ - 'address' => '聂荣县', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540624 => - [ - - [ - 'address' => '安多县', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540625 => - [ - - [ - 'address' => '申扎县', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540626 => - [ - - [ - 'address' => '索县', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540627 => - [ - - [ - 'address' => '班戈县', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540628 => - [ - - [ - 'address' => '巴青县', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540629 => - [ - - [ - 'address' => '尼玛县', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 540630 => - [ - - [ - 'address' => '双湖县', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 542100 => - [ - - [ - 'address' => '昌都地区', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542121 => - [ - - [ - 'address' => '昌都县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542122 => - [ - - [ - 'address' => '江达县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542123 => - [ - - [ - 'address' => '贡觉县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542124 => - [ - - [ - 'address' => '类乌齐县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542125 => - [ - - [ - 'address' => '丁青县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542126 => - [ - - [ - 'address' => '察雅县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542127 => - [ - - [ - 'address' => '八宿县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542128 => - [ - - [ - 'address' => '左贡县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542129 => - [ - - [ - 'address' => '芒康县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542130 => - [ - - [ - 'address' => '波密县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 542131 => - [ - - [ - 'address' => '察隅县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 542132 => - [ - - [ - 'address' => '洛隆县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542133 => - [ - - [ - 'address' => '边坝县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542134 => - [ - - [ - 'address' => '盐井县', - 'start_year' => 1983, - 'end_year' => 1998, - ], - ], - 542135 => - [ - - [ - 'address' => '碧土县', - 'start_year' => 1983, - 'end_year' => 1998, - ], - ], - 542136 => - [ - - [ - 'address' => '妥坝县', - 'start_year' => 1983, - 'end_year' => 1998, - ], - ], - 542137 => - [ - - [ - 'address' => '生达县', - 'start_year' => 1983, - 'end_year' => 1998, - ], - ], - 542200 => - [ - - [ - 'address' => '山南地区', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542221 => - [ - - [ - 'address' => '乃东县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542222 => - [ - - [ - 'address' => '扎囊县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542223 => - [ - - [ - 'address' => '贡嘎县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542224 => - [ - - [ - 'address' => '桑日县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542225 => - [ - - [ - 'address' => '穷结县', - 'start_year' => '', - 'end_year' => 1985, - ], - - [ - 'address' => '琼结县', - 'start_year' => 1986, - 'end_year' => 2015, - ], - ], - 542226 => - [ - - [ - 'address' => '曲松县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542227 => - [ - - [ - 'address' => '措美县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542228 => - [ - - [ - 'address' => '洛扎县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542229 => - [ - - [ - 'address' => '加查县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542230 => - [ - - [ - 'address' => '朗县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 542231 => - [ - - [ - 'address' => '隆子县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542232 => - [ - - [ - 'address' => '错那县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542233 => - [ - - [ - 'address' => '浪卡子县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 542300 => - [ - - [ - 'address' => '日喀则地区', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542301 => - [ - - [ - 'address' => '日喀则市', - 'start_year' => 1986, - 'end_year' => 2013, - ], - ], - 542321 => - [ - - [ - 'address' => '日喀则县', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 542322 => - [ - - [ - 'address' => '南木林县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542323 => - [ - - [ - 'address' => '江孜县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542324 => - [ - - [ - 'address' => '定日县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542325 => - [ - - [ - 'address' => '萨迦县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542326 => - [ - - [ - 'address' => '拉孜县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542327 => - [ - - [ - 'address' => '昂仁县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542328 => - [ - - [ - 'address' => '谢通门县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542329 => - [ - - [ - 'address' => '白朗县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542330 => - [ - - [ - 'address' => '仁布县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542331 => - [ - - [ - 'address' => '康马县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542332 => - [ - - [ - 'address' => '定结县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542333 => - [ - - [ - 'address' => '仲巴县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542334 => - [ - - [ - 'address' => '亚东县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542335 => - [ - - [ - 'address' => '吉隆县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542336 => - [ - - [ - 'address' => '聂拉木县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542337 => - [ - - [ - 'address' => '萨嘎县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542338 => - [ - - [ - 'address' => '岗巴县', - 'start_year' => '', - 'end_year' => 2013, - ], - ], - 542400 => - [ - - [ - 'address' => '那曲地区', - 'start_year' => '', - 'end_year' => 2016, - ], - ], - 542421 => - [ - - [ - 'address' => '那曲县', - 'start_year' => '', - 'end_year' => 2016, - ], - ], - 542422 => - [ - - [ - 'address' => '嘉黎县', - 'start_year' => '', - 'end_year' => 2016, - ], - ], - 542423 => - [ - - [ - 'address' => '比如县', - 'start_year' => '', - 'end_year' => 2016, - ], - ], - 542424 => - [ - - [ - 'address' => '聂荣县', - 'start_year' => '', - 'end_year' => 2016, - ], - ], - 542425 => - [ - - [ - 'address' => '安多县', - 'start_year' => '', - 'end_year' => 2016, - ], - ], - 542426 => - [ - - [ - 'address' => '申扎县', - 'start_year' => '', - 'end_year' => 2016, - ], - ], - 542427 => - [ - - [ - 'address' => '索县', - 'start_year' => '', - 'end_year' => 2016, - ], - ], - 542428 => - [ - - [ - 'address' => '班戈县', - 'start_year' => '', - 'end_year' => 2016, - ], - ], - 542429 => - [ - - [ - 'address' => '巴青县', - 'start_year' => '', - 'end_year' => 2016, - ], - ], - 542430 => - [ - - [ - 'address' => '尼玛县', - 'start_year' => 1983, - 'end_year' => 2016, - ], - ], - 542431 => - [ - - [ - 'address' => '双湖县', - 'start_year' => 2012, - 'end_year' => 2016, - ], - ], - 542500 => - [ - - [ - 'address' => '阿里地区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 542521 => - [ - - [ - 'address' => '普兰县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 542522 => - [ - - [ - 'address' => '札达县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 542523 => - [ - - [ - 'address' => '噶尔县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 542524 => - [ - - [ - 'address' => '日土县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 542525 => - [ - - [ - 'address' => '革吉县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 542526 => - [ - - [ - 'address' => '改则县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 542527 => - [ - - [ - 'address' => '措勤县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 542528 => - [ - - [ - 'address' => '隆格尔县', - 'start_year' => 1983, - 'end_year' => 1998, - ], - ], - 542600 => - [ - - [ - 'address' => '林芝地区', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 542621 => - [ - - [ - 'address' => '林芝县', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 542622 => - [ - - [ - 'address' => '工布江达县', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 542623 => - [ - - [ - 'address' => '米林县', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 542624 => - [ - - [ - 'address' => '墨脱县', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 542625 => - [ - - [ - 'address' => '波密县', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 542626 => - [ - - [ - 'address' => '察隅县', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 542627 => - [ - - [ - 'address' => '朗县', - 'start_year' => 1983, - 'end_year' => 2014, - ], - ], - 542700 => - [ - - [ - 'address' => '江孜地区', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 542721 => - [ - - [ - 'address' => '江孜县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 542722 => - [ - - [ - 'address' => '浪卡子县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 542723 => - [ - - [ - 'address' => '白朗县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 542724 => - [ - - [ - 'address' => '仁布县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 542725 => - [ - - [ - 'address' => '康马县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 542726 => - [ - - [ - 'address' => '亚东县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 542727 => - [ - - [ - 'address' => '岗巴县', - 'start_year' => 1983, - 'end_year' => 1985, - ], - ], - 610000 => - [ - - [ - 'address' => '陕西省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610100 => - [ - - [ - 'address' => '西安市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610102 => - [ - - [ - 'address' => '新城区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610103 => - [ - - [ - 'address' => '碑林区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610104 => - [ - - [ - 'address' => '莲湖区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610111 => - [ - - [ - 'address' => '灞桥区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610112 => - [ - - [ - 'address' => '未央区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610113 => - [ - - [ - 'address' => '雁塔区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610114 => - [ - - [ - 'address' => '阎良区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610115 => - [ - - [ - 'address' => '临潼区', - 'start_year' => 1997, - 'end_year' => '', - ], - ], - 610116 => - [ - - [ - 'address' => '长安区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 610117 => - [ - - [ - 'address' => '高陵区', - 'start_year' => 2014, - 'end_year' => '', - ], - ], - 610118 => - [ - - [ - 'address' => '鄠邑区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 610121 => - [ - - [ - 'address' => '长安县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 610122 => - [ - - [ - 'address' => '蓝田县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610123 => - [ - - [ - 'address' => '临潼县', - 'start_year' => 1983, - 'end_year' => 1996, - ], - ], - 610124 => - [ - - [ - 'address' => '周至县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610125 => - [ - - [ - 'address' => '户县', - 'start_year' => 1983, - 'end_year' => 2015, - ], - ], - 610126 => - [ - - [ - 'address' => '高陵县', - 'start_year' => 1983, - 'end_year' => 2013, - ], - ], - 610200 => - [ - - [ - 'address' => '铜川市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610202 => - [ - - [ - 'address' => '城区', - 'start_year' => '', - 'end_year' => 1999, - ], - - [ - 'address' => '王益区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610203 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1999, - ], - - [ - 'address' => '印台区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610204 => - [ - - [ - 'address' => '耀州区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 610221 => - [ - - [ - 'address' => '耀县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 610222 => - [ - - [ - 'address' => '宜君县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610300 => - [ - - [ - 'address' => '宝鸡市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610302 => - [ - - [ - 'address' => '渭滨区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610303 => - [ - - [ - 'address' => '金台区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610304 => - [ - - [ - 'address' => '杨陵区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - - [ - 'address' => '陈仓区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 610321 => - [ - - [ - 'address' => '宝鸡县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 610322 => - [ - - [ - 'address' => '凤翔县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610323 => - [ - - [ - 'address' => '岐山县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610324 => - [ - - [ - 'address' => '扶风县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610325 => - [ - - [ - 'address' => '武功县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 610326 => - [ - - [ - 'address' => '眉县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610327 => - [ - - [ - 'address' => '陇县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610328 => - [ - - [ - 'address' => '千阳县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610329 => - [ - - [ - 'address' => '麟游县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610330 => - [ - - [ - 'address' => '凤县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610331 => - [ - - [ - 'address' => '太白县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 610400 => - [ - - [ - 'address' => '咸阳市', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 610401 => - [ - - [ - 'address' => '咸阳市', - 'start_year' => 1983, - 'end_year' => 1983, - ], - ], - 610402 => - [ - - [ - 'address' => '秦都区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610403 => - [ - - [ - 'address' => '杨陵区', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610404 => - [ - - [ - 'address' => '渭城区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 610421 => - [ - - [ - 'address' => '兴平县', - 'start_year' => 1983, - 'end_year' => 1992, - ], - ], - 610422 => - [ - - [ - 'address' => '三原县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610423 => - [ - - [ - 'address' => '泾阳县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610424 => - [ - - [ - 'address' => '乾县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610425 => - [ - - [ - 'address' => '礼泉县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610426 => - [ - - [ - 'address' => '永寿县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610427 => - [ - - [ - 'address' => '彬县', - 'start_year' => 1983, - 'end_year' => 2017, - ], - ], - 610428 => - [ - - [ - 'address' => '长武县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610429 => - [ - - [ - 'address' => '旬邑县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610430 => - [ - - [ - 'address' => '淳化县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610431 => - [ - - [ - 'address' => '武功县', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 610481 => - [ - - [ - 'address' => '兴平市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 610482 => - [ - - [ - 'address' => '彬州市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 610500 => - [ - - [ - 'address' => '渭南市', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 610502 => - [ - - [ - 'address' => '临渭区', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 610503 => - [ - - [ - 'address' => '华州区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 610521 => - [ - - [ - 'address' => '华县', - 'start_year' => 1994, - 'end_year' => 2014, - ], - ], - 610522 => - [ - - [ - 'address' => '潼关县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 610523 => - [ - - [ - 'address' => '大荔县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 610524 => - [ - - [ - 'address' => '合阳县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 610525 => - [ - - [ - 'address' => '澄城县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 610526 => - [ - - [ - 'address' => '蒲城县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 610527 => - [ - - [ - 'address' => '白水县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 610528 => - [ - - [ - 'address' => '富平县', - 'start_year' => 1994, - 'end_year' => '', - ], - ], - 610581 => - [ - - [ - 'address' => '韩城市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 610582 => - [ - - [ - 'address' => '华阴市', - 'start_year' => 1995, - 'end_year' => '', - ], - ], - 610600 => - [ - - [ - 'address' => '延安市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610602 => - [ - - [ - 'address' => '宝塔区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610603 => - [ - - [ - 'address' => '安塞区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 610621 => - [ - - [ - 'address' => '延长县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610622 => - [ - - [ - 'address' => '延川县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610623 => - [ - - [ - 'address' => '子长县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610624 => - [ - - [ - 'address' => '安塞县', - 'start_year' => 1996, - 'end_year' => 2015, - ], - ], - 610625 => - [ - - [ - 'address' => '志丹县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610626 => - [ - - [ - 'address' => '吴旗县', - 'start_year' => 1996, - 'end_year' => 2004, - ], - - [ - 'address' => '吴起县', - 'start_year' => 2005, - 'end_year' => '', - ], - ], - 610627 => - [ - - [ - 'address' => '甘泉县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610628 => - [ - - [ - 'address' => '富县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610629 => - [ - - [ - 'address' => '洛川县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610630 => - [ - - [ - 'address' => '宜川县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610631 => - [ - - [ - 'address' => '黄龙县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610632 => - [ - - [ - 'address' => '黄陵县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610700 => - [ - - [ - 'address' => '汉中市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610702 => - [ - - [ - 'address' => '汉台区', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610703 => - [ - - [ - 'address' => '南郑区', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 610721 => - [ - - [ - 'address' => '南郑县', - 'start_year' => 1996, - 'end_year' => 2016, - ], - ], - 610722 => - [ - - [ - 'address' => '城固县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610723 => - [ - - [ - 'address' => '洋县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610724 => - [ - - [ - 'address' => '西乡县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610725 => - [ - - [ - 'address' => '勉县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610726 => - [ - - [ - 'address' => '宁强县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610727 => - [ - - [ - 'address' => '略阳县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610728 => - [ - - [ - 'address' => '镇巴县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610729 => - [ - - [ - 'address' => '留坝县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610730 => - [ - - [ - 'address' => '佛坪县', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 610800 => - [ - - [ - 'address' => '榆林市', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 610802 => - [ - - [ - 'address' => '榆阳区', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 610803 => - [ - - [ - 'address' => '横山区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 610821 => - [ - - [ - 'address' => '神木县', - 'start_year' => 1999, - 'end_year' => 2016, - ], - ], - 610822 => - [ - - [ - 'address' => '府谷县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 610823 => - [ - - [ - 'address' => '横山县', - 'start_year' => 1999, - 'end_year' => 2014, - ], - ], - 610824 => - [ - - [ - 'address' => '靖边县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 610825 => - [ - - [ - 'address' => '定边县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 610826 => - [ - - [ - 'address' => '绥德县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 610827 => - [ - - [ - 'address' => '米脂县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 610828 => - [ - - [ - 'address' => '佳县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 610829 => - [ - - [ - 'address' => '吴堡县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 610830 => - [ - - [ - 'address' => '清涧县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 610831 => - [ - - [ - 'address' => '子洲县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 610881 => - [ - - [ - 'address' => '神木市', - 'start_year' => 2017, - 'end_year' => '', - ], - ], - 610900 => - [ - - [ - 'address' => '安康市', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610902 => - [ - - [ - 'address' => '汉滨区', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610921 => - [ - - [ - 'address' => '汉阴县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610922 => - [ - - [ - 'address' => '石泉县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610923 => - [ - - [ - 'address' => '宁陕县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610924 => - [ - - [ - 'address' => '紫阳县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610925 => - [ - - [ - 'address' => '岚皋县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610926 => - [ - - [ - 'address' => '平利县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610927 => - [ - - [ - 'address' => '镇坪县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610928 => - [ - - [ - 'address' => '旬阳县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 610929 => - [ - - [ - 'address' => '白河县', - 'start_year' => 2000, - 'end_year' => '', - ], - ], - 611000 => - [ - - [ - 'address' => '商洛市', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 611002 => - [ - - [ - 'address' => '商州区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 611021 => - [ - - [ - 'address' => '洛南县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 611022 => - [ - - [ - 'address' => '丹凤县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 611023 => - [ - - [ - 'address' => '商南县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 611024 => - [ - - [ - 'address' => '山阳县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 611025 => - [ - - [ - 'address' => '镇安县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 611026 => - [ - - [ - 'address' => '柞水县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 612100 => - [ - - [ - 'address' => '渭南地区', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 612101 => - [ - - [ - 'address' => '渭南市', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 612102 => - [ - - [ - 'address' => '韩城市', - 'start_year' => 1983, - 'end_year' => 1993, - ], - ], - 612103 => - [ - - [ - 'address' => '华阴市', - 'start_year' => 1990, - 'end_year' => 1993, - ], - ], - 612121 => - [ - - [ - 'address' => '蓝田县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612122 => - [ - - [ - 'address' => '临潼县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612123 => - [ - - [ - 'address' => '渭南县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612124 => - [ - - [ - 'address' => '华县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 612125 => - [ - - [ - 'address' => '华阴县', - 'start_year' => '', - 'end_year' => 1989, - ], - ], - 612126 => - [ - - [ - 'address' => '潼关县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 612127 => - [ - - [ - 'address' => '大荔县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 612128 => - [ - - [ - 'address' => '蒲城县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 612129 => - [ - - [ - 'address' => '澄城县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 612130 => - [ - - [ - 'address' => '白水县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 612131 => - [ - - [ - 'address' => '韩城县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612132 => - [ - - [ - 'address' => '合阳县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 612133 => - [ - - [ - 'address' => '富平县', - 'start_year' => '', - 'end_year' => 1993, - ], - ], - 612200 => - [ - - [ - 'address' => '咸阳地区', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612201 => - [ - - [ - 'address' => '咸阳市', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612221 => - [ - - [ - 'address' => '兴平县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612222 => - [ - - [ - 'address' => '周至县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612223 => - [ - - [ - 'address' => '户县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612224 => - [ - - [ - 'address' => '三原县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612225 => - [ - - [ - 'address' => '泾阳县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612226 => - [ - - [ - 'address' => '高陵县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612227 => - [ - - [ - 'address' => '乾县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612228 => - [ - - [ - 'address' => '礼泉县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612229 => - [ - - [ - 'address' => '永寿县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612230 => - [ - - [ - 'address' => '彬县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612231 => - [ - - [ - 'address' => '长武县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612232 => - [ - - [ - 'address' => '旬邑县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612233 => - [ - - [ - 'address' => '淳化县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612300 => - [ - - [ - 'address' => '汉中地区', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612301 => - [ - - [ - 'address' => '汉中市', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612321 => - [ - - [ - 'address' => '南郑县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612322 => - [ - - [ - 'address' => '城固县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612323 => - [ - - [ - 'address' => '洋县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612324 => - [ - - [ - 'address' => '西乡县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612325 => - [ - - [ - 'address' => '勉县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612326 => - [ - - [ - 'address' => '宁强县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612327 => - [ - - [ - 'address' => '略阳县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612328 => - [ - - [ - 'address' => '镇巴县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612329 => - [ - - [ - 'address' => '留坝县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612330 => - [ - - [ - 'address' => '佛坪县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612400 => - [ - - [ - 'address' => '安康地区', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 612401 => - [ - - [ - 'address' => '安康市', - 'start_year' => 1988, - 'end_year' => 1999, - ], - ], - 612421 => - [ - - [ - 'address' => '安康县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 612422 => - [ - - [ - 'address' => '汉阴县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 612423 => - [ - - [ - 'address' => '石泉县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 612424 => - [ - - [ - 'address' => '宁陕县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 612425 => - [ - - [ - 'address' => '紫阳县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 612426 => - [ - - [ - 'address' => '岚皋县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 612427 => - [ - - [ - 'address' => '平利县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 612428 => - [ - - [ - 'address' => '镇坪县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 612429 => - [ - - [ - 'address' => '旬阳县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 612430 => - [ - - [ - 'address' => '白河县', - 'start_year' => '', - 'end_year' => 1999, - ], - ], - 612500 => - [ - - [ - 'address' => '商洛地区', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 612501 => - [ - - [ - 'address' => '商州市', - 'start_year' => 1988, - 'end_year' => 2000, - ], - ], - 612521 => - [ - - [ - 'address' => '商县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 612522 => - [ - - [ - 'address' => '洛南县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 612523 => - [ - - [ - 'address' => '丹凤县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 612524 => - [ - - [ - 'address' => '商南县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 612525 => - [ - - [ - 'address' => '山阳县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 612526 => - [ - - [ - 'address' => '镇安县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 612527 => - [ - - [ - 'address' => '柞水县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 612600 => - [ - - [ - 'address' => '延安地区', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612601 => - [ - - [ - 'address' => '延安市', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612621 => - [ - - [ - 'address' => '延长县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612622 => - [ - - [ - 'address' => '延川县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612623 => - [ - - [ - 'address' => '子长县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612624 => - [ - - [ - 'address' => '安塞县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612625 => - [ - - [ - 'address' => '志丹县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612626 => - [ - - [ - 'address' => '吴旗县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612627 => - [ - - [ - 'address' => '甘泉县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612628 => - [ - - [ - 'address' => '富县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612629 => - [ - - [ - 'address' => '洛川县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612630 => - [ - - [ - 'address' => '宜川县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612631 => - [ - - [ - 'address' => '黄龙县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612632 => - [ - - [ - 'address' => '黄陵县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 612633 => - [ - - [ - 'address' => '宜君县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 612700 => - [ - - [ - 'address' => '榆林地区', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 612701 => - [ - - [ - 'address' => '榆林市', - 'start_year' => 1988, - 'end_year' => 1998, - ], - ], - 612721 => - [ - - [ - 'address' => '榆林县', - 'start_year' => '', - 'end_year' => 1987, - ], - ], - 612722 => - [ - - [ - 'address' => '神木县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 612723 => - [ - - [ - 'address' => '府谷县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 612724 => - [ - - [ - 'address' => '横山县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 612725 => - [ - - [ - 'address' => '靖边县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 612726 => - [ - - [ - 'address' => '定边县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 612727 => - [ - - [ - 'address' => '绥德县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 612728 => - [ - - [ - 'address' => '米脂县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 612729 => - [ - - [ - 'address' => '佳县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 612730 => - [ - - [ - 'address' => '吴堡县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 612731 => - [ - - [ - 'address' => '清涧县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 612732 => - [ - - [ - 'address' => '子洲县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 619001 => - [ - - [ - 'address' => '兴平市', - 'start_year' => 1993, - 'end_year' => 1994, - ], - ], - 619002 => - [ - - [ - 'address' => '韩城市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 619003 => - [ - - [ - 'address' => '华阴市', - 'start_year' => 1994, - 'end_year' => 1994, - ], - ], - 620000 => - [ - - [ - 'address' => '甘肃省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 620100 => - [ - - [ - 'address' => '兰州市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 620102 => - [ - - [ - 'address' => '城关区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 620103 => - [ - - [ - 'address' => '七里河区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 620104 => - [ - - [ - 'address' => '西固区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 620105 => - [ - - [ - 'address' => '安宁区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 620111 => - [ - - [ - 'address' => '红古区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 620112 => - [ - - [ - 'address' => '白银区', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 620121 => - [ - - [ - 'address' => '永登县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 620122 => - [ - - [ - 'address' => '皋兰县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 620123 => - [ - - [ - 'address' => '榆中县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 620200 => - [ - - [ - 'address' => '嘉峪关市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 620300 => - [ - - [ - 'address' => '金昌市', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 620302 => - [ - - [ - 'address' => '金川区', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 620321 => - [ - - [ - 'address' => '永昌县', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 620400 => - [ - - [ - 'address' => '白银市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620402 => - [ - - [ - 'address' => '白银区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620403 => - [ - - [ - 'address' => '平川区', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620421 => - [ - - [ - 'address' => '靖远县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620422 => - [ - - [ - 'address' => '会宁县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620423 => - [ - - [ - 'address' => '景泰县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620500 => - [ - - [ - 'address' => '天水市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620502 => - [ - - [ - 'address' => '秦城区', - 'start_year' => 1985, - 'end_year' => 2003, - ], - - [ - 'address' => '秦州区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 620503 => - [ - - [ - 'address' => '北道区', - 'start_year' => 1985, - 'end_year' => 2003, - ], - - [ - 'address' => '麦积区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 620521 => - [ - - [ - 'address' => '清水县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620522 => - [ - - [ - 'address' => '秦安县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620523 => - [ - - [ - 'address' => '甘谷县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620524 => - [ - - [ - 'address' => '武山县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620525 => - [ - - [ - 'address' => '张家川回族自治县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 620600 => - [ - - [ - 'address' => '武威市', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 620602 => - [ - - [ - 'address' => '凉州区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 620621 => - [ - - [ - 'address' => '民勤县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 620622 => - [ - - [ - 'address' => '古浪县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 620623 => - [ - - [ - 'address' => '天祝藏族自治县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 620700 => - [ - - [ - 'address' => '张掖市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620702 => - [ - - [ - 'address' => '甘州区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620721 => - [ - - [ - 'address' => '肃南裕固族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620722 => - [ - - [ - 'address' => '民乐县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620723 => - [ - - [ - 'address' => '临泽县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620724 => - [ - - [ - 'address' => '高台县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620725 => - [ - - [ - 'address' => '山丹县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620800 => - [ - - [ - 'address' => '平凉市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620802 => - [ - - [ - 'address' => '崆峒区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620821 => - [ - - [ - 'address' => '泾川县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620822 => - [ - - [ - 'address' => '灵台县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620823 => - [ - - [ - 'address' => '崇信县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620824 => - [ - - [ - 'address' => '华亭县', - 'start_year' => 2002, - 'end_year' => 2017, - ], - ], - 620825 => - [ - - [ - 'address' => '庄浪县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620826 => - [ - - [ - 'address' => '静宁县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620881 => - [ - - [ - 'address' => '华亭市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 620900 => - [ - - [ - 'address' => '酒泉市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620902 => - [ - - [ - 'address' => '肃州区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620921 => - [ - - [ - 'address' => '金塔县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620922 => - [ - - [ - 'address' => '瓜州县', - 'start_year' => 2006, - 'end_year' => '', - ], - ], - 620923 => - [ - - [ - 'address' => '肃北蒙古族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620924 => - [ - - [ - 'address' => '阿克塞哈萨克族自治县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620925 => - [ - - [ - 'address' => '安西县', - 'start_year' => 2002, - 'end_year' => 2005, - ], - ], - 620981 => - [ - - [ - 'address' => '玉门市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 620982 => - [ - - [ - 'address' => '敦煌市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 621000 => - [ - - [ - 'address' => '庆阳市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 621002 => - [ - - [ - 'address' => '西峰区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 621021 => - [ - - [ - 'address' => '庆城县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 621022 => - [ - - [ - 'address' => '环县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 621023 => - [ - - [ - 'address' => '华池县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 621024 => - [ - - [ - 'address' => '合水县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 621025 => - [ - - [ - 'address' => '正宁县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 621026 => - [ - - [ - 'address' => '宁县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 621027 => - [ - - [ - 'address' => '镇原县', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 621100 => - [ - - [ - 'address' => '定西市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 621102 => - [ - - [ - 'address' => '安定区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 621121 => - [ - - [ - 'address' => '通渭县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 621122 => - [ - - [ - 'address' => '陇西县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 621123 => - [ - - [ - 'address' => '渭源县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 621124 => - [ - - [ - 'address' => '临洮县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 621125 => - [ - - [ - 'address' => '漳县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 621126 => - [ - - [ - 'address' => '岷县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 621200 => - [ - - [ - 'address' => '陇南市', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 621202 => - [ - - [ - 'address' => '武都区', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 621221 => - [ - - [ - 'address' => '成县', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 621222 => - [ - - [ - 'address' => '文县', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 621223 => - [ - - [ - 'address' => '宕昌县', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 621224 => - [ - - [ - 'address' => '康县', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 621225 => - [ - - [ - 'address' => '西和县', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 621226 => - [ - - [ - 'address' => '礼县', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 621227 => - [ - - [ - 'address' => '徽县', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 621228 => - [ - - [ - 'address' => '两当县', - 'start_year' => 2004, - 'end_year' => '', - ], - ], - 622100 => - [ - - [ - 'address' => '酒泉地区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622101 => - [ - - [ - 'address' => '玉门市', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622102 => - [ - - [ - 'address' => '酒泉市', - 'start_year' => 1985, - 'end_year' => 2001, - ], - ], - 622103 => - [ - - [ - 'address' => '敦煌市', - 'start_year' => 1987, - 'end_year' => 2001, - ], - ], - 622121 => - [ - - [ - 'address' => '酒泉县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622122 => - [ - - [ - 'address' => '敦煌县', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 622123 => - [ - - [ - 'address' => '金塔县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622124 => - [ - - [ - 'address' => '肃北蒙古族自治县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622125 => - [ - - [ - 'address' => '阿克塞哈萨克族自治县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622126 => - [ - - [ - 'address' => '安西县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622200 => - [ - - [ - 'address' => '张掖地区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622201 => - [ - - [ - 'address' => '张掖市', - 'start_year' => 1985, - 'end_year' => 2001, - ], - ], - 622221 => - [ - - [ - 'address' => '张掖县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622222 => - [ - - [ - 'address' => '肃南裕固族自治县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622223 => - [ - - [ - 'address' => '民乐县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622224 => - [ - - [ - 'address' => '临泽县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622225 => - [ - - [ - 'address' => '高台县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622226 => - [ - - [ - 'address' => '山丹县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622300 => - [ - - [ - 'address' => '武威地区', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 622301 => - [ - - [ - 'address' => '武威市', - 'start_year' => 1985, - 'end_year' => 2000, - ], - ], - 622321 => - [ - - [ - 'address' => '武威县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622322 => - [ - - [ - 'address' => '民勤县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 622323 => - [ - - [ - 'address' => '古浪县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 622324 => - [ - - [ - 'address' => '景泰县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622325 => - [ - - [ - 'address' => '永昌县', - 'start_year' => '', - 'end_year' => 1980, - ], - ], - 622326 => - [ - - [ - 'address' => '天祝藏族自治县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 622400 => - [ - - [ - 'address' => '定西地区', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 622421 => - [ - - [ - 'address' => '定西县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 622422 => - [ - - [ - 'address' => '靖远县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622423 => - [ - - [ - 'address' => '会宁县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622424 => - [ - - [ - 'address' => '通渭县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 622425 => - [ - - [ - 'address' => '陇西县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 622426 => - [ - - [ - 'address' => '渭源县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 622427 => - [ - - [ - 'address' => '临洮县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 622428 => - [ - - [ - 'address' => '漳县', - 'start_year' => 1985, - 'end_year' => 2002, - ], - ], - 622429 => - [ - - [ - 'address' => '岷县', - 'start_year' => 1985, - 'end_year' => 2002, - ], - ], - 622500 => - [ - - [ - 'address' => '天水地区', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622501 => - [ - - [ - 'address' => '天水市', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622521 => - [ - - [ - 'address' => '张家川回族自治县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622522 => - [ - - [ - 'address' => '天水县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622523 => - [ - - [ - 'address' => '清水县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622524 => - [ - - [ - 'address' => '徽县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622525 => - [ - - [ - 'address' => '两当县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622526 => - [ - - [ - 'address' => '礼县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622527 => - [ - - [ - 'address' => '西和县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622528 => - [ - - [ - 'address' => '武山县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622529 => - [ - - [ - 'address' => '甘谷县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622530 => - [ - - [ - 'address' => '秦安县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622531 => - [ - - [ - 'address' => '漳县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622600 => - [ - - [ - 'address' => '武都地区', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '陇南地区', - 'start_year' => 1985, - 'end_year' => 2003, - ], - ], - 622621 => - [ - - [ - 'address' => '武都县', - 'start_year' => '', - 'end_year' => 2003, - ], - ], - 622622 => - [ - - [ - 'address' => '岷县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 622623 => - [ - - [ - 'address' => '宕昌县', - 'start_year' => '', - 'end_year' => 2003, - ], - ], - 622624 => - [ - - [ - 'address' => '成县', - 'start_year' => '', - 'end_year' => 2003, - ], - ], - 622625 => - [ - - [ - 'address' => '康县', - 'start_year' => '', - 'end_year' => 2003, - ], - ], - 622626 => - [ - - [ - 'address' => '文县', - 'start_year' => '', - 'end_year' => 2003, - ], - ], - 622627 => - [ - - [ - 'address' => '西和县', - 'start_year' => 1985, - 'end_year' => 2003, - ], - ], - 622628 => - [ - - [ - 'address' => '礼县', - 'start_year' => 1985, - 'end_year' => 2003, - ], - ], - 622629 => - [ - - [ - 'address' => '两当县', - 'start_year' => 1985, - 'end_year' => 2003, - ], - ], - 622630 => - [ - - [ - 'address' => '徽县', - 'start_year' => 1985, - 'end_year' => 2003, - ], - ], - 622700 => - [ - - [ - 'address' => '平凉地区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622701 => - [ - - [ - 'address' => '平凉市', - 'start_year' => 1983, - 'end_year' => 2001, - ], - ], - 622721 => - [ - - [ - 'address' => '平凉县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 622722 => - [ - - [ - 'address' => '泾川县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622723 => - [ - - [ - 'address' => '灵台县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622724 => - [ - - [ - 'address' => '崇信县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622725 => - [ - - [ - 'address' => '华亭县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622726 => - [ - - [ - 'address' => '庄浪县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622727 => - [ - - [ - 'address' => '静宁县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622800 => - [ - - [ - 'address' => '庆阳地区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622801 => - [ - - [ - 'address' => '西峰市', - 'start_year' => 1985, - 'end_year' => 2001, - ], - ], - 622821 => - [ - - [ - 'address' => '庆阳县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622822 => - [ - - [ - 'address' => '环县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622823 => - [ - - [ - 'address' => '华池县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622824 => - [ - - [ - 'address' => '合水县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622825 => - [ - - [ - 'address' => '正宁县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622826 => - [ - - [ - 'address' => '宁县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622827 => - [ - - [ - 'address' => '镇原县', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 622900 => - [ - - [ - 'address' => '临夏回族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 622901 => - [ - - [ - 'address' => '临夏市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 622921 => - [ - - [ - 'address' => '临夏县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 622922 => - [ - - [ - 'address' => '康乐县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 622923 => - [ - - [ - 'address' => '永靖县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 622924 => - [ - - [ - 'address' => '广河县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 622925 => - [ - - [ - 'address' => '和政县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 622926 => - [ - - [ - 'address' => '东乡族自治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 622927 => - [ - - [ - 'address' => '积石山保安族东乡族撒拉族自治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 623000 => - [ - - [ - 'address' => '甘南藏族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 623001 => - [ - - [ - 'address' => '合作市', - 'start_year' => 1996, - 'end_year' => '', - ], - ], - 623021 => - [ - - [ - 'address' => '临潭县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 623022 => - [ - - [ - 'address' => '卓尼县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 623023 => - [ - - [ - 'address' => '舟曲县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 623024 => - [ - - [ - 'address' => '迭部县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 623025 => - [ - - [ - 'address' => '玛曲县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 623026 => - [ - - [ - 'address' => '碌曲县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 623027 => - [ - - [ - 'address' => '夏河县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 630000 => - [ - - [ - 'address' => '青海省', - 'start_year' => '', - 'end_year' => '', - ], - ], - 630100 => - [ - - [ - 'address' => '西宁市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 630102 => - [ - - [ - 'address' => '城东区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 630103 => - [ - - [ - 'address' => '城中区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 630104 => - [ - - [ - 'address' => '城西区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 630105 => - [ - - [ - 'address' => '城北区', - 'start_year' => 1986, - 'end_year' => '', - ], - ], - 630111 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1985, - ], - ], - 630121 => - [ - - [ - 'address' => '大通县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '大通回族土族自治县', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 630122 => - [ - - [ - 'address' => '湟中县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 630123 => - [ - - [ - 'address' => '湟源县', - 'start_year' => 1999, - 'end_year' => '', - ], - ], - 630200 => - [ - - [ - 'address' => '海东市', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 630202 => - [ - - [ - 'address' => '乐都区', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 630203 => - [ - - [ - 'address' => '平安区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 630221 => - [ - - [ - 'address' => '平安县', - 'start_year' => 2013, - 'end_year' => 2014, - ], - ], - 630222 => - [ - - [ - 'address' => '民和回族土族自治县', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 630223 => - [ - - [ - 'address' => '互助土族自治县', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 630224 => - [ - - [ - 'address' => '化隆回族自治县', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 630225 => - [ - - [ - 'address' => '循化撒拉族自治县', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 632100 => - [ - - [ - 'address' => '海东地区', - 'start_year' => '', - 'end_year' => 2012, - ], - ], - 632121 => - [ - - [ - 'address' => '平安县', - 'start_year' => '', - 'end_year' => 2012, - ], - ], - 632122 => - [ - - [ - 'address' => '民和县', - 'start_year' => '', - 'end_year' => 1984, - ], - - [ - 'address' => '民和回族土族自治县', - 'start_year' => 1985, - 'end_year' => 2012, - ], - ], - 632123 => - [ - - [ - 'address' => '乐都县', - 'start_year' => '', - 'end_year' => 2012, - ], - ], - 632124 => - [ - - [ - 'address' => '湟中县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 632125 => - [ - - [ - 'address' => '湟源县', - 'start_year' => '', - 'end_year' => 1998, - ], - ], - 632126 => - [ - - [ - 'address' => '互助土族自治县', - 'start_year' => '', - 'end_year' => 2012, - ], - ], - 632127 => - [ - - [ - 'address' => '化隆回族自治县', - 'start_year' => '', - 'end_year' => 2012, - ], - ], - 632128 => - [ - - [ - 'address' => '循化撒拉族自治县', - 'start_year' => '', - 'end_year' => 2012, - ], - ], - 632200 => - [ - - [ - 'address' => '海北藏族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632221 => - [ - - [ - 'address' => '门源回族自治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632222 => - [ - - [ - 'address' => '祁连县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632223 => - [ - - [ - 'address' => '海晏县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632224 => - [ - - [ - 'address' => '刚察县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632300 => - [ - - [ - 'address' => '黄南藏族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632321 => - [ - - [ - 'address' => '同仁县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632322 => - [ - - [ - 'address' => '尖扎县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632323 => - [ - - [ - 'address' => '泽库县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632324 => - [ - - [ - 'address' => '河南蒙古族自治县', - 'start_year' => 1981, - 'end_year' => '', - ], - ], - 632421 => - [ - - [ - 'address' => '河南蒙古族自治县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 632500 => - [ - - [ - 'address' => '海南藏族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632521 => - [ - - [ - 'address' => '共和县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632522 => - [ - - [ - 'address' => '同德县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632523 => - [ - - [ - 'address' => '贵德县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632524 => - [ - - [ - 'address' => '兴海县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632525 => - [ - - [ - 'address' => '贵南县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632600 => - [ - - [ - 'address' => '果洛藏族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632621 => - [ - - [ - 'address' => '玛沁县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632622 => - [ - - [ - 'address' => '班玛县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632623 => - [ - - [ - 'address' => '甘德县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632624 => - [ - - [ - 'address' => '达日县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632625 => - [ - - [ - 'address' => '久治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632626 => - [ - - [ - 'address' => '玛多县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632700 => - [ - - [ - 'address' => '玉树藏族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632701 => - [ - - [ - 'address' => '玉树市', - 'start_year' => 2013, - 'end_year' => '', - ], - ], - 632721 => - [ - - [ - 'address' => '玉树县', - 'start_year' => '', - 'end_year' => 2012, - ], - ], - 632722 => - [ - - [ - 'address' => '杂多县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632723 => - [ - - [ - 'address' => '称多县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632724 => - [ - - [ - 'address' => '治多县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632725 => - [ - - [ - 'address' => '囊谦县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632726 => - [ - - [ - 'address' => '曲麻莱县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632800 => - [ - - [ - 'address' => '海西蒙古族藏族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632801 => - [ - - [ - 'address' => '格尔木市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632802 => - [ - - [ - 'address' => '德令哈市', - 'start_year' => 1988, - 'end_year' => '', - ], - ], - 632803 => - [ - - [ - 'address' => '茫崖市', - 'start_year' => 2018, - 'end_year' => '', - ], - ], - 632821 => - [ - - [ - 'address' => '乌兰县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632822 => - [ - - [ - 'address' => '都兰县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 632823 => - [ - - [ - 'address' => '天峻县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 640000 => - [ - - [ - 'address' => '宁夏回族自治区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 640100 => - [ - - [ - 'address' => '银川市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 640102 => - [ - - [ - 'address' => '城区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 640103 => - [ - - [ - 'address' => '新城区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 640104 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 2001, - ], - - [ - 'address' => '兴庆区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 640105 => - [ - - [ - 'address' => '西夏区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 640106 => - [ - - [ - 'address' => '金凤区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 640121 => - [ - - [ - 'address' => '永宁县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 640122 => - [ - - [ - 'address' => '贺兰县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 640181 => - [ - - [ - 'address' => '灵武市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 640200 => - [ - - [ - 'address' => '石咀山市', - 'start_year' => '', - 'end_year' => 1986, - ], - - [ - 'address' => '石嘴山市', - 'start_year' => 1987, - 'end_year' => '', - ], - ], - 640202 => - [ - - [ - 'address' => '大武口区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 640204 => - [ - - [ - 'address' => '石炭井区', - 'start_year' => '', - 'end_year' => 2001, - ], - ], - 640205 => - [ - - [ - 'address' => '石咀山区', - 'start_year' => '', - 'end_year' => 1986, - ], - - [ - 'address' => '石嘴山区', - 'start_year' => 1987, - 'end_year' => 2002, - ], - - [ - 'address' => '惠农区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 640211 => - [ - - [ - 'address' => '郊区', - 'start_year' => '', - 'end_year' => 1986, - ], - ], - 640221 => - [ - - [ - 'address' => '平罗县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 640222 => - [ - - [ - 'address' => '陶乐县', - 'start_year' => '', - 'end_year' => 2002, - ], - ], - 640223 => - [ - - [ - 'address' => '惠农县', - 'start_year' => 1987, - 'end_year' => 2002, - ], - ], - 640300 => - [ - - [ - 'address' => '吴忠市', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 640302 => - [ - - [ - 'address' => '利通区', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 640303 => - [ - - [ - 'address' => '红寺堡区', - 'start_year' => 2009, - 'end_year' => '', - ], - ], - 640321 => - [ - - [ - 'address' => '中卫县', - 'start_year' => 1998, - 'end_year' => 2002, - ], - ], - 640322 => - [ - - [ - 'address' => '中宁县', - 'start_year' => 1998, - 'end_year' => 2002, - ], - ], - 640323 => - [ - - [ - 'address' => '盐池县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 640324 => - [ - - [ - 'address' => '同心县', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 640381 => - [ - - [ - 'address' => '青铜峡市', - 'start_year' => 1998, - 'end_year' => '', - ], - ], - 640382 => - [ - - [ - 'address' => '灵武市', - 'start_year' => 1998, - 'end_year' => 2001, - ], - ], - 640400 => - [ - - [ - 'address' => '固原市', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 640402 => - [ - - [ - 'address' => '原州区', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 640421 => - [ - - [ - 'address' => '海原县', - 'start_year' => 2001, - 'end_year' => 2002, - ], - ], - 640422 => - [ - - [ - 'address' => '西吉县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 640423 => - [ - - [ - 'address' => '隆德县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 640424 => - [ - - [ - 'address' => '泾源县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 640425 => - [ - - [ - 'address' => '彭阳县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 640500 => - [ - - [ - 'address' => '中卫市', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 640502 => - [ - - [ - 'address' => '沙坡头区', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 640521 => - [ - - [ - 'address' => '中宁县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 640522 => - [ - - [ - 'address' => '海原县', - 'start_year' => 2003, - 'end_year' => '', - ], - ], - 642100 => - [ - - [ - 'address' => '银南地区', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 642101 => - [ - - [ - 'address' => '吴忠市', - 'start_year' => 1983, - 'end_year' => 1997, - ], - ], - 642102 => - [ - - [ - 'address' => '青铜峡市', - 'start_year' => 1984, - 'end_year' => 1997, - ], - ], - 642103 => - [ - - [ - 'address' => '灵武市', - 'start_year' => 1996, - 'end_year' => 1997, - ], - ], - 642121 => - [ - - [ - 'address' => '吴忠县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 642122 => - [ - - [ - 'address' => '青铜峡县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 642123 => - [ - - [ - 'address' => '中卫县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 642124 => - [ - - [ - 'address' => '中宁县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 642125 => - [ - - [ - 'address' => '灵武县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 642126 => - [ - - [ - 'address' => '盐池县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 642127 => - [ - - [ - 'address' => '同心县', - 'start_year' => '', - 'end_year' => 1997, - ], - ], - 642200 => - [ - - [ - 'address' => '固原地区', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 642221 => - [ - - [ - 'address' => '固原县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 642222 => - [ - - [ - 'address' => '海原县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 642223 => - [ - - [ - 'address' => '西吉县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 642224 => - [ - - [ - 'address' => '隆德县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 642225 => - [ - - [ - 'address' => '泾源县', - 'start_year' => '', - 'end_year' => 2000, - ], - ], - 642226 => - [ - - [ - 'address' => '彭阳县', - 'start_year' => 1983, - 'end_year' => 2000, - ], - ], - 650000 => - [ - - [ - 'address' => '新疆维吾尔自治区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 650100 => - [ - - [ - 'address' => '乌鲁木齐市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 650102 => - [ - - [ - 'address' => '天山区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 650103 => - [ - - [ - 'address' => '沙依巴克区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 650104 => - [ - - [ - 'address' => '新市区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 650105 => - [ - - [ - 'address' => '水磨沟区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 650106 => - [ - - [ - 'address' => '头屯河区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 650107 => - [ - - [ - 'address' => '南山区', - 'start_year' => '', - 'end_year' => 1988, - ], - - [ - 'address' => '南山矿区', - 'start_year' => 1989, - 'end_year' => 1998, - ], - - [ - 'address' => '南泉区', - 'start_year' => 1999, - 'end_year' => 2001, - ], - - [ - 'address' => '达坂城区', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 650108 => - [ - - [ - 'address' => '东山区', - 'start_year' => 1987, - 'end_year' => 2006, - ], - ], - 650109 => - [ - - [ - 'address' => '米东区', - 'start_year' => 2007, - 'end_year' => '', - ], - ], - 650121 => - [ - - [ - 'address' => '乌鲁木齐县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 650200 => - [ - - [ - 'address' => '克拉玛依市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 650202 => - [ - - [ - 'address' => '独山子区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 650203 => - [ - - [ - 'address' => '克拉玛依区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 650204 => - [ - - [ - 'address' => '白碱滩区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 650205 => - [ - - [ - 'address' => '乌尔禾区', - 'start_year' => 1982, - 'end_year' => '', - ], - ], - 650300 => - [ - - [ - 'address' => '石河子市', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 650400 => - [ - - [ - 'address' => '吐鲁番市', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 650402 => - [ - - [ - 'address' => '高昌区', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 650421 => - [ - - [ - 'address' => '鄯善县', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 650422 => - [ - - [ - 'address' => '托克逊县', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 650500 => - [ - - [ - 'address' => '哈密市', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 650502 => - [ - - [ - 'address' => '伊州区', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 650521 => - [ - - [ - 'address' => '巴里坤哈萨克自治县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 650522 => - [ - - [ - 'address' => '伊吾县', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 652100 => - [ - - [ - 'address' => '吐鲁番地区', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 652101 => - [ - - [ - 'address' => '吐鲁番市', - 'start_year' => 1984, - 'end_year' => 2014, - ], - ], - 652121 => - [ - - [ - 'address' => '吐鲁番县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652122 => - [ - - [ - 'address' => '鄯善县', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 652123 => - [ - - [ - 'address' => '托克逊县', - 'start_year' => '', - 'end_year' => 2014, - ], - ], - 652200 => - [ - - [ - 'address' => '哈密地区', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 652201 => - [ - - [ - 'address' => '哈密市', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 652221 => - [ - - [ - 'address' => '哈密县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 652222 => - [ - - [ - 'address' => '巴里坤哈萨克自治县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 652223 => - [ - - [ - 'address' => '伊吾县', - 'start_year' => '', - 'end_year' => 2015, - ], - ], - 652300 => - [ - - [ - 'address' => '昌吉回族自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652301 => - [ - - [ - 'address' => '昌吉市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 652302 => - [ - - [ - 'address' => '阜康市', - 'start_year' => 1992, - 'end_year' => '', - ], - ], - 652303 => - [ - - [ - 'address' => '米泉市', - 'start_year' => 1996, - 'end_year' => 2006, - ], - ], - 652321 => - [ - - [ - 'address' => '昌吉县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 652322 => - [ - - [ - 'address' => '米泉县', - 'start_year' => '', - 'end_year' => 1995, - ], - ], - 652323 => - [ - - [ - 'address' => '呼图壁县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652324 => - [ - - [ - 'address' => '玛纳斯县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652325 => - [ - - [ - 'address' => '奇台县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652326 => - [ - - [ - 'address' => '阜康县', - 'start_year' => '', - 'end_year' => 1991, - ], - ], - 652327 => - [ - - [ - 'address' => '吉木萨尔县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652328 => - [ - - [ - 'address' => '木垒哈萨克自治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652400 => - [ - - [ - 'address' => '伊犁哈萨克自治州', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652401 => - [ - - [ - 'address' => '奎屯市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '伊宁市', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 652402 => - [ - - [ - 'address' => '伊宁市', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '一区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 652403 => - [ - - [ - 'address' => '一区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '二区', - 'start_year' => 1982, - 'end_year' => 1982, - ], - ], - 652404 => - [ - - [ - 'address' => '二区', - 'start_year' => '', - 'end_year' => 1981, - ], - - [ - 'address' => '奎屯市', - 'start_year' => 1982, - 'end_year' => 1983, - ], - ], - 652421 => - [ - - [ - 'address' => '伊宁县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652422 => - [ - - [ - 'address' => '察布查尔锡伯自治县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652423 => - [ - - [ - 'address' => '霍城县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652424 => - [ - - [ - 'address' => '巩留县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652425 => - [ - - [ - 'address' => '新源县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652426 => - [ - - [ - 'address' => '昭苏县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652427 => - [ - - [ - 'address' => '特克斯县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652428 => - [ - - [ - 'address' => '尼勒克县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652500 => - [ - - [ - 'address' => '塔城地区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652521 => - [ - - [ - 'address' => '塔城县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652522 => - [ - - [ - 'address' => '额敏县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652523 => - [ - - [ - 'address' => '乌苏县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652524 => - [ - - [ - 'address' => '沙湾县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652525 => - [ - - [ - 'address' => '托里县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652526 => - [ - - [ - 'address' => '裕民县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652527 => - [ - - [ - 'address' => '和布克赛尔蒙古自治县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652600 => - [ - - [ - 'address' => '阿勒泰地区', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652621 => - [ - - [ - 'address' => '阿勒泰县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652622 => - [ - - [ - 'address' => '布尔津县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652623 => - [ - - [ - 'address' => '富蕴县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652624 => - [ - - [ - 'address' => '福海县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652625 => - [ - - [ - 'address' => '哈巴河县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652626 => - [ - - [ - 'address' => '青河县', - 'start_year' => '', - 'end_year' => 1983, - ], - ], - 652627 => - [ - - [ - 'address' => '吉木乃县', - 'start_year' => '', - 'end_year' => 1983, - ], + 110000 => [ + [ + "address" => "北京市", + "start_year" => "", + "end_year" => "" + ] + ], + 110101 => [ + [ + "address" => "东城区", + "start_year" => "", + "end_year" => "" + ] + ], + 110102 => [ + [ + "address" => "西城区", + "start_year" => "", + "end_year" => "" + ] + ], + 110103 => [ + [ + "address" => "崇文区", + "start_year" => "", + "end_year" => 2009 + ] + ], + 110104 => [ + [ + "address" => "宣武区", + "start_year" => "", + "end_year" => 2009 + ] + ], + 110105 => [ + [ + "address" => "朝阳区", + "start_year" => "", + "end_year" => "" + ] + ], + 110106 => [ + [ + "address" => "丰台区", + "start_year" => "", + "end_year" => "" + ] + ], + 110107 => [ + [ + "address" => "石景山区", + "start_year" => "", + "end_year" => "" + ] + ], + 110108 => [ + [ + "address" => "海淀区", + "start_year" => "", + "end_year" => "" + ] + ], + 110109 => [ + [ + "address" => "门头沟区", + "start_year" => "", + "end_year" => "" + ] + ], + 110110 => [ + [ + "address" => "燕山区", + "start_year" => "", + "end_year" => 1985 + ] + ], + 110111 => [ + [ + "address" => "房山区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 110112 => [ + [ + "address" => "通州区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 110113 => [ + [ + "address" => "顺义区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 110114 => [ + [ + "address" => "昌平区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 110115 => [ + [ + "address" => "大兴区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 110116 => [ + [ + "address" => "怀柔区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 110117 => [ + [ + "address" => "平谷区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 110118 => [ + [ + "address" => "密云区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 110119 => [ + [ + "address" => "延庆区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 110201 => [ + [ + "address" => "昌平县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 110202 => [ + [ + "address" => "顺义县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 110203 => [ + [ + "address" => "通县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 110204 => [ + [ + "address" => "大兴县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 110205 => [ + [ + "address" => "房山县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 110206 => [ + [ + "address" => "平谷县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 110207 => [ + [ + "address" => "怀柔县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 110208 => [ + [ + "address" => "密云县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 110209 => [ + [ + "address" => "延庆县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 110221 => [ + [ + "address" => "昌平县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 110222 => [ + [ + "address" => "顺义县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 110223 => [ + [ + "address" => "通县", + "start_year" => 1982, + "end_year" => 1996 + ] + ], + 110224 => [ + [ + "address" => "大兴县", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 110225 => [ + [ + "address" => "房山县", + "start_year" => 1982, + "end_year" => 1985 + ] + ], + 110226 => [ + [ + "address" => "平谷县", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 110227 => [ + [ + "address" => "怀柔县", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 110228 => [ + [ + "address" => "密云县", + "start_year" => 1982, + "end_year" => 2014 + ] + ], + 110229 => [ + [ + "address" => "延庆县", + "start_year" => 1982, + "end_year" => 2014 + ] + ], + 120000 => [ + [ + "address" => "天津市", + "start_year" => "", + "end_year" => "" + ] + ], + 120101 => [ + [ + "address" => "和平区", + "start_year" => "", + "end_year" => "" + ] + ], + 120102 => [ + [ + "address" => "河东区", + "start_year" => "", + "end_year" => "" + ] + ], + 120103 => [ + [ + "address" => "河西区", + "start_year" => "", + "end_year" => "" + ] + ], + 120104 => [ + [ + "address" => "南开区", + "start_year" => "", + "end_year" => "" + ] + ], + 120105 => [ + [ + "address" => "河北区", + "start_year" => "", + "end_year" => "" + ] + ], + 120106 => [ + [ + "address" => "红桥区", + "start_year" => "", + "end_year" => "" + ] + ], + 120107 => [ + [ + "address" => "塘沽区", + "start_year" => "", + "end_year" => 2008 + ] + ], + 120108 => [ + [ + "address" => "汉沽区", + "start_year" => "", + "end_year" => 2008 + ] + ], + 120109 => [ + [ + "address" => "大港区", + "start_year" => "", + "end_year" => 2008 + ] + ], + 120110 => [ + [ + "address" => "东郊区", + "start_year" => "", + "end_year" => 1991 + ], + [ + "address" => "东丽区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 120111 => [ + [ + "address" => "西郊区", + "start_year" => "", + "end_year" => 1991 + ], + [ + "address" => "西青区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 120112 => [ + [ + "address" => "南郊区", + "start_year" => "", + "end_year" => 1991 + ], + [ + "address" => "津南区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 120113 => [ + [ + "address" => "北郊区", + "start_year" => "", + "end_year" => 1991 + ], + [ + "address" => "北辰区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 120114 => [ + [ + "address" => "武清区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 120115 => [ + [ + "address" => "宝坻区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 120116 => [ + [ + "address" => "滨海新区", + "start_year" => 2009, + "end_year" => "" + ] + ], + 120117 => [ + [ + "address" => "宁河区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 120118 => [ + [ + "address" => "静海区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 120119 => [ + [ + "address" => "蓟州区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 120201 => [ + [ + "address" => "宁河县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 120202 => [ + [ + "address" => "武清县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 120203 => [ + [ + "address" => "静海县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 120204 => [ + [ + "address" => "宝坻县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 120205 => [ + [ + "address" => "蓟县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 120221 => [ + [ + "address" => "宁河县", + "start_year" => 1982, + "end_year" => 2014 + ] + ], + 120222 => [ + [ + "address" => "武清县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 120223 => [ + [ + "address" => "静海县", + "start_year" => 1982, + "end_year" => 2014 + ] + ], + 120224 => [ + [ + "address" => "宝坻县", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 120225 => [ + [ + "address" => "蓟县", + "start_year" => 1982, + "end_year" => 2015 + ] + ], + 130000 => [ + [ + "address" => "河北省", + "start_year" => "", + "end_year" => "" + ] + ], + 130100 => [ + [ + "address" => "石家庄市", + "start_year" => "", + "end_year" => "" + ] + ], + 130102 => [ + [ + "address" => "长安区", + "start_year" => "", + "end_year" => "" + ] + ], + 130103 => [ + [ + "address" => "桥东区", + "start_year" => "", + "end_year" => 2014 + ] + ], + 130104 => [ + [ + "address" => "桥西区", + "start_year" => "", + "end_year" => "" + ] + ], + 130105 => [ + [ + "address" => "新华区", + "start_year" => "", + "end_year" => "" + ] + ], + 130106 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 2000 + ] + ], + 130107 => [ + [ + "address" => "井陉矿区", + "start_year" => "", + "end_year" => "" + ] + ], + 130108 => [ + [ + "address" => "裕华区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 130109 => [ + [ + "address" => "藁城区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 130110 => [ + [ + "address" => "鹿泉区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 130111 => [ + [ + "address" => "栾城区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 130121 => [ + [ + "address" => "井陉县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130122 => [ + [ + "address" => "获鹿县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 130123 => [ + [ + "address" => "栾城县", + "start_year" => 1986, + "end_year" => 1992 + ], + [ + "address" => "正定县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130124 => [ + [ + "address" => "正定县", + "start_year" => 1986, + "end_year" => 1992 + ], + [ + "address" => "栾城县", + "start_year" => 1993, + "end_year" => 2013 + ] + ], + 130125 => [ + [ + "address" => "行唐县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130126 => [ + [ + "address" => "灵寿县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130127 => [ + [ + "address" => "高邑县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130128 => [ + [ + "address" => "深泽县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130129 => [ + [ + "address" => "赞皇县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130130 => [ + [ + "address" => "无极县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130131 => [ + [ + "address" => "平山县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130132 => [ + [ + "address" => "元氏县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130133 => [ + [ + "address" => "赵县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130181 => [ + [ + "address" => "辛集市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130182 => [ + [ + "address" => "藁城市", + "start_year" => 1995, + "end_year" => 2013 + ] + ], + 130183 => [ + [ + "address" => "晋州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130184 => [ + [ + "address" => "新乐市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130185 => [ + [ + "address" => "鹿泉市", + "start_year" => 1995, + "end_year" => 2013 + ] + ], + 130200 => [ + [ + "address" => "唐山市", + "start_year" => "", + "end_year" => "" + ] + ], + 130202 => [ + [ + "address" => "路南区", + "start_year" => "", + "end_year" => "" + ] + ], + 130203 => [ + [ + "address" => "路北区", + "start_year" => "", + "end_year" => "" + ] + ], + 130204 => [ + [ + "address" => "东矿区", + "start_year" => "", + "end_year" => 1994 + ], + [ + "address" => "古冶区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130205 => [ + [ + "address" => "开平区", + "start_year" => "", + "end_year" => "" + ] + ], + 130206 => [ + [ + "address" => "新区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 130207 => [ + [ + "address" => "丰南区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 130208 => [ + [ + "address" => "丰润区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 130209 => [ + [ + "address" => "曹妃甸区", + "start_year" => 2012, + "end_year" => "" + ] + ], + 130221 => [ + [ + "address" => "丰润县", + "start_year" => 1983, + "end_year" => 2001 + ] + ], + 130222 => [ + [ + "address" => "丰南县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 130223 => [ + [ + "address" => "滦县", + "start_year" => 1983, + "end_year" => 2017 + ] + ], + 130224 => [ + [ + "address" => "滦南县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130225 => [ + [ + "address" => "乐亭县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130226 => [ + [ + "address" => "玉田县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "迁安县", + "start_year" => 1984, + "end_year" => 1995 + ] + ], + 130227 => [ + [ + "address" => "唐海县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "迁西县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 130228 => [ + [ + "address" => "迁安县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "遵化县", + "start_year" => 1984, + "end_year" => 1991 + ] + ], + 130229 => [ + [ + "address" => "迁西县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "玉田县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 130230 => [ + [ + "address" => "遵化县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "唐海县", + "start_year" => 1984, + "end_year" => 2011 + ] + ], + 130281 => [ + [ + "address" => "遵化市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130282 => [ + [ + "address" => "丰南市", + "start_year" => 1995, + "end_year" => 2001 + ] + ], + 130283 => [ + [ + "address" => "迁安市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 130284 => [ + [ + "address" => "滦州市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 130300 => [ + [ + "address" => "秦皇岛市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130302 => [ + [ + "address" => "海港区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130303 => [ + [ + "address" => "山海关区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130304 => [ + [ + "address" => "北戴河区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130305 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 130306 => [ + [ + "address" => "抚宁区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 130321 => [ + [ + "address" => "青龙县", + "start_year" => 1983, + "end_year" => 1985 + ], + [ + "address" => "青龙满族自治县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 130322 => [ + [ + "address" => "昌黎县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130323 => [ + [ + "address" => "抚宁县", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 130324 => [ + [ + "address" => "卢龙县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130400 => [ + [ + "address" => "邯郸市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130402 => [ + [ + "address" => "邯山区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130403 => [ + [ + "address" => "丛台区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130404 => [ + [ + "address" => "复兴区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130405 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 130406 => [ + [ + "address" => "峰峰矿区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130407 => [ + [ + "address" => "肥乡区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 130408 => [ + [ + "address" => "永年区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 130421 => [ + [ + "address" => "邯郸县", + "start_year" => 1983, + "end_year" => 2015 + ] + ], + 130422 => [ + [ + "address" => "武安县", + "start_year" => 1986, + "end_year" => 1987 + ] + ], + 130423 => [ + [ + "address" => "临漳县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130424 => [ + [ + "address" => "成安县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130425 => [ + [ + "address" => "大名县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130426 => [ + [ + "address" => "涉县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130427 => [ + [ + "address" => "磁县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130428 => [ + [ + "address" => "肥乡县", + "start_year" => 1993, + "end_year" => 2015 + ] + ], + 130429 => [ + [ + "address" => "永年县", + "start_year" => 1993, + "end_year" => 2015 + ] + ], + 130430 => [ + [ + "address" => "丘县", + "start_year" => 1993, + "end_year" => 1995 + ], + [ + "address" => "邱县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 130431 => [ + [ + "address" => "鸡泽县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130432 => [ + [ + "address" => "广平县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130433 => [ + [ + "address" => "馆陶县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130434 => [ + [ + "address" => "魏县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130435 => [ + [ + "address" => "曲周县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130481 => [ + [ + "address" => "武安市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130500 => [ + [ + "address" => "邢台市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130502 => [ + [ + "address" => "桥东区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130503 => [ + [ + "address" => "桥西区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130504 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 130521 => [ + [ + "address" => "邢台县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 130522 => [ + [ + "address" => "临城县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130523 => [ + [ + "address" => "内丘县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130524 => [ + [ + "address" => "柏乡县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130525 => [ + [ + "address" => "隆尧县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130526 => [ + [ + "address" => "任县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130527 => [ + [ + "address" => "南和县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130528 => [ + [ + "address" => "宁晋县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130529 => [ + [ + "address" => "巨鹿县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130530 => [ + [ + "address" => "新河县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130531 => [ + [ + "address" => "广宗县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130532 => [ + [ + "address" => "平乡县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130533 => [ + [ + "address" => "威县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130534 => [ + [ + "address" => "清河县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130535 => [ + [ + "address" => "临西县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130581 => [ + [ + "address" => "南宫市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130582 => [ + [ + "address" => "沙河市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130600 => [ + [ + "address" => "保定市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130602 => [ + [ + "address" => "新市区", + "start_year" => 1983, + "end_year" => 2014 + ], + [ + "address" => "竞秀区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 130603 => [ + [ + "address" => "北市区", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 130604 => [ + [ + "address" => "南市区", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 130605 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 130606 => [ + [ + "address" => "莲池区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 130607 => [ + [ + "address" => "满城区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 130608 => [ + [ + "address" => "清苑区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 130609 => [ + [ + "address" => "徐水区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 130621 => [ + [ + "address" => "满城县", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 130622 => [ + [ + "address" => "清苑县", + "start_year" => 1986, + "end_year" => 2014 + ] + ], + 130623 => [ + [ + "address" => "涞水县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130624 => [ + [ + "address" => "阜平县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130625 => [ + [ + "address" => "徐水县", + "start_year" => 1994, + "end_year" => 2014 + ] + ], + 130626 => [ + [ + "address" => "定兴县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130627 => [ + [ + "address" => "唐县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130628 => [ + [ + "address" => "高阳县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130629 => [ + [ + "address" => "容城县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130630 => [ + [ + "address" => "涞源县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130631 => [ + [ + "address" => "望都县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130632 => [ + [ + "address" => "安新县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130633 => [ + [ + "address" => "易县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130634 => [ + [ + "address" => "曲阳县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130635 => [ + [ + "address" => "蠡县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130636 => [ + [ + "address" => "顺平县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130637 => [ + [ + "address" => "博野县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130638 => [ + [ + "address" => "雄县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 130681 => [ + [ + "address" => "涿州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130682 => [ + [ + "address" => "定州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130683 => [ + [ + "address" => "安国市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130684 => [ + [ + "address" => "高碑店市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130700 => [ + [ + "address" => "张家口市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130702 => [ + [ + "address" => "桥东区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130703 => [ + [ + "address" => "桥西区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130704 => [ + [ + "address" => "茶坊区", + "start_year" => 1983, + "end_year" => 1988 + ] + ], + 130705 => [ + [ + "address" => "宣化区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130706 => [ + [ + "address" => "下花园区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130707 => [ + [ + "address" => "庞家堡区", + "start_year" => 1983, + "end_year" => 1988 + ] + ], + 130708 => [ + [ + "address" => "万全区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 130709 => [ + [ + "address" => "崇礼区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 130721 => [ + [ + "address" => "宣化县", + "start_year" => 1983, + "end_year" => 2015 + ] + ], + 130722 => [ + [ + "address" => "张北县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130723 => [ + [ + "address" => "康保县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130724 => [ + [ + "address" => "沽源县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130725 => [ + [ + "address" => "尚义县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130726 => [ + [ + "address" => "蔚县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130727 => [ + [ + "address" => "阳原县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130728 => [ + [ + "address" => "怀安县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130729 => [ + [ + "address" => "万全县", + "start_year" => 1993, + "end_year" => 2015 + ] + ], + 130730 => [ + [ + "address" => "怀来县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130731 => [ + [ + "address" => "涿鹿县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130732 => [ + [ + "address" => "赤城县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130733 => [ + [ + "address" => "崇礼县", + "start_year" => 1993, + "end_year" => 2015 + ] + ], + 130800 => [ + [ + "address" => "承德市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130802 => [ + [ + "address" => "双桥区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130803 => [ + [ + "address" => "双滦区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130804 => [ + [ + "address" => "鹰手营子矿区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130821 => [ + [ + "address" => "承德县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130822 => [ + [ + "address" => "兴隆县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130823 => [ + [ + "address" => "平泉县", + "start_year" => 1993, + "end_year" => 2016 + ] + ], + 130824 => [ + [ + "address" => "滦平县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130825 => [ + [ + "address" => "隆化县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130826 => [ + [ + "address" => "丰宁满族自治县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130827 => [ + [ + "address" => "宽城满族自治县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130828 => [ + [ + "address" => "围场满族蒙古族自治县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130881 => [ + [ + "address" => "平泉市", + "start_year" => 2017, + "end_year" => "" + ] + ], + 130900 => [ + [ + "address" => "沧州市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130902 => [ + [ + "address" => "新华区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130903 => [ + [ + "address" => "运河区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130904 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 130921 => [ + [ + "address" => "沧县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130922 => [ + [ + "address" => "青县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 130923 => [ + [ + "address" => "东光县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130924 => [ + [ + "address" => "海兴县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130925 => [ + [ + "address" => "盐山县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130926 => [ + [ + "address" => "肃宁县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130927 => [ + [ + "address" => "南皮县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130928 => [ + [ + "address" => "吴桥县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130929 => [ + [ + "address" => "献县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130930 => [ + [ + "address" => "孟村回族自治县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 130981 => [ + [ + "address" => "泊头市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130982 => [ + [ + "address" => "任丘市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130983 => [ + [ + "address" => "黄骅市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 130984 => [ + [ + "address" => "河间市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 131000 => [ + [ + "address" => "廊坊市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 131002 => [ + [ + "address" => "安次区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 131003 => [ + [ + "address" => "广阳区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 131021 => [ + [ + "address" => "三河县", + "start_year" => 1988, + "end_year" => 1992 + ] + ], + 131022 => [ + [ + "address" => "固安县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 131023 => [ + [ + "address" => "永清县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 131024 => [ + [ + "address" => "香河县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 131025 => [ + [ + "address" => "大城县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 131026 => [ + [ + "address" => "文安县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 131027 => [ + [ + "address" => "霸县", + "start_year" => 1988, + "end_year" => 1989 + ] + ], + 131028 => [ + [ + "address" => "大厂回族自治县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 131081 => [ + [ + "address" => "霸州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 131082 => [ + [ + "address" => "三河市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 131100 => [ + [ + "address" => "衡水市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 131102 => [ + [ + "address" => "桃城区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 131103 => [ + [ + "address" => "冀州区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 131121 => [ + [ + "address" => "枣强县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 131122 => [ + [ + "address" => "武邑县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 131123 => [ + [ + "address" => "武强县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 131124 => [ + [ + "address" => "饶阳县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 131125 => [ + [ + "address" => "安平县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 131126 => [ + [ + "address" => "故城县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 131127 => [ + [ + "address" => "景县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 131128 => [ + [ + "address" => "阜城县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 131181 => [ + [ + "address" => "冀州市", + "start_year" => 1996, + "end_year" => 2015 + ] + ], + 131182 => [ + [ + "address" => "深州市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 132100 => [ + [ + "address" => "邯郸地区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132101 => [ + [ + "address" => "邯郸市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132102 => [ + [ + "address" => "邯山区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132103 => [ + [ + "address" => "丛台区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132104 => [ + [ + "address" => "复兴区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132105 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132106 => [ + [ + "address" => "峰峰矿区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132121 => [ + [ + "address" => "大名县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132122 => [ + [ + "address" => "魏县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132123 => [ + [ + "address" => "曲周县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132124 => [ + [ + "address" => "丘县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132125 => [ + [ + "address" => "鸡泽县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132126 => [ + [ + "address" => "肥乡县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132127 => [ + [ + "address" => "广平县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132128 => [ + [ + "address" => "成安县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132129 => [ + [ + "address" => "临漳县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132130 => [ + [ + "address" => "磁县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132131 => [ + [ + "address" => "武安县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 132132 => [ + [ + "address" => "涉县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132133 => [ + [ + "address" => "永年县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132134 => [ + [ + "address" => "邯郸县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132135 => [ + [ + "address" => "馆陶县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132200 => [ + [ + "address" => "邢台地区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132201 => [ + [ + "address" => "邢台市", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "南宫市", + "start_year" => 1986, + "end_year" => 1992 + ] + ], + 132202 => [ + [ + "address" => "桥东区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "沙河市", + "start_year" => 1987, + "end_year" => 1992 + ] + ], + 132203 => [ + [ + "address" => "桥西区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132204 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132221 => [ + [ + "address" => "邢台县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 132222 => [ + [ + "address" => "沙河县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 132223 => [ + [ + "address" => "临城县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132224 => [ + [ + "address" => "内丘县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132225 => [ + [ + "address" => "柏乡县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132226 => [ + [ + "address" => "隆尧县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132227 => [ + [ + "address" => "任县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132228 => [ + [ + "address" => "南和县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132229 => [ + [ + "address" => "宁晋县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132230 => [ + [ + "address" => "南宫县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 132231 => [ + [ + "address" => "巨鹿县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132232 => [ + [ + "address" => "新河县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132233 => [ + [ + "address" => "广宗县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132234 => [ + [ + "address" => "平乡县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132235 => [ + [ + "address" => "威县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132236 => [ + [ + "address" => "清河县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132237 => [ + [ + "address" => "临西县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132300 => [ + [ + "address" => "石家庄地区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132301 => [ + [ + "address" => "辛集市", + "start_year" => 1986, + "end_year" => 1992 + ] + ], + 132302 => [ + [ + "address" => "藁城市", + "start_year" => 1989, + "end_year" => 1992 + ] + ], + 132303 => [ + [ + "address" => "晋州市", + "start_year" => 1991, + "end_year" => 1992 + ] + ], + 132304 => [ + [ + "address" => "新乐市", + "start_year" => 1992, + "end_year" => 1992 + ] + ], + 132321 => [ + [ + "address" => "束鹿县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 132322 => [ + [ + "address" => "晋县", + "start_year" => "", + "end_year" => 1990 + ] + ], + 132323 => [ + [ + "address" => "深泽县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132324 => [ + [ + "address" => "无极县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132325 => [ + [ + "address" => "藁城县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 132326 => [ + [ + "address" => "赵县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132327 => [ + [ + "address" => "栾城县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 132328 => [ + [ + "address" => "正定县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 132329 => [ + [ + "address" => "新乐县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 132330 => [ + [ + "address" => "高邑县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132331 => [ + [ + "address" => "元氏县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132332 => [ + [ + "address" => "赞皇县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132333 => [ + [ + "address" => "井陉县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132334 => [ + [ + "address" => "获鹿县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132335 => [ + [ + "address" => "平山县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132336 => [ + [ + "address" => "灵寿县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132337 => [ + [ + "address" => "行唐县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132400 => [ + [ + "address" => "保定地区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132401 => [ + [ + "address" => "保定市", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "定州市", + "start_year" => 1986, + "end_year" => 1993 + ] + ], + 132402 => [ + [ + "address" => "新市区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "涿州市", + "start_year" => 1986, + "end_year" => 1993 + ] + ], + 132403 => [ + [ + "address" => "北市区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "安国市", + "start_year" => 1991, + "end_year" => 1993 + ] + ], + 132404 => [ + [ + "address" => "南市区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "高碑店市", + "start_year" => 1993, + "end_year" => 1993 + ] + ], + 132405 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132421 => [ + [ + "address" => "易县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132422 => [ + [ + "address" => "满城县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132423 => [ + [ + "address" => "徐水县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132424 => [ + [ + "address" => "涞源县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132425 => [ + [ + "address" => "定兴县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132426 => [ + [ + "address" => "完县", + "start_year" => "", + "end_year" => 1992 + ], + [ + "address" => "顺平县", + "start_year" => 1993, + "end_year" => 1993 + ] + ], + 132427 => [ + [ + "address" => "唐县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132428 => [ + [ + "address" => "望都县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132429 => [ + [ + "address" => "涞水县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132430 => [ + [ + "address" => "涿县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 132431 => [ + [ + "address" => "清苑县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 132432 => [ + [ + "address" => "高阳县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132433 => [ + [ + "address" => "安新县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132434 => [ + [ + "address" => "雄县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132435 => [ + [ + "address" => "容城县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132436 => [ + [ + "address" => "新城县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132437 => [ + [ + "address" => "曲阳县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132438 => [ + [ + "address" => "阜平县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132439 => [ + [ + "address" => "定县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 132440 => [ + [ + "address" => "安国县", + "start_year" => "", + "end_year" => 1990 + ] + ], + 132441 => [ + [ + "address" => "博野县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132442 => [ + [ + "address" => "蠡县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 132500 => [ + [ + "address" => "张家口地区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132501 => [ + [ + "address" => "张家口市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132502 => [ + [ + "address" => "桥东区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132503 => [ + [ + "address" => "桥西区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132504 => [ + [ + "address" => "茶坊区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132505 => [ + [ + "address" => "宣化区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132506 => [ + [ + "address" => "下花园区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132507 => [ + [ + "address" => "庞家堡区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132521 => [ + [ + "address" => "张北县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132522 => [ + [ + "address" => "康保县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132523 => [ + [ + "address" => "沽源县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132524 => [ + [ + "address" => "尚义县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132525 => [ + [ + "address" => "蔚县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132526 => [ + [ + "address" => "阳原县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132527 => [ + [ + "address" => "怀安县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132528 => [ + [ + "address" => "万全县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132529 => [ + [ + "address" => "怀来县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132530 => [ + [ + "address" => "涿鹿县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132531 => [ + [ + "address" => "宣化县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132532 => [ + [ + "address" => "赤城县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132533 => [ + [ + "address" => "崇礼县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132600 => [ + [ + "address" => "承德地区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132601 => [ + [ + "address" => "承德市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132602 => [ + [ + "address" => "双桥区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132603 => [ + [ + "address" => "双滦区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132604 => [ + [ + "address" => "鹰手营子矿区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132621 => [ + [ + "address" => "青龙县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132622 => [ + [ + "address" => "宽城县", + "start_year" => "", + "end_year" => 1988 + ], + [ + "address" => "宽城满族自治县", + "start_year" => 1989, + "end_year" => 1992 + ] + ], + 132623 => [ + [ + "address" => "兴隆县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132624 => [ + [ + "address" => "平泉县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132625 => [ + [ + "address" => "承德县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132626 => [ + [ + "address" => "滦平县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132627 => [ + [ + "address" => "丰宁县", + "start_year" => "", + "end_year" => 1985 + ], + [ + "address" => "丰宁满族自治县", + "start_year" => 1986, + "end_year" => 1992 + ] + ], + 132628 => [ + [ + "address" => "隆化县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132629 => [ + [ + "address" => "围场县", + "start_year" => "", + "end_year" => 1988 + ], + [ + "address" => "围场满族蒙古族自治县", + "start_year" => 1989, + "end_year" => 1992 + ] + ], + 132700 => [ + [ + "address" => "唐山地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132701 => [ + [ + "address" => "秦皇岛市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132702 => [ + [ + "address" => "海港区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132703 => [ + [ + "address" => "山海关区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132704 => [ + [ + "address" => "北戴河区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132705 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132721 => [ + [ + "address" => "丰润县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132722 => [ + [ + "address" => "丰南县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132723 => [ + [ + "address" => "滦县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132724 => [ + [ + "address" => "滦南县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132725 => [ + [ + "address" => "乐亭县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132726 => [ + [ + "address" => "昌黎县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132727 => [ + [ + "address" => "抚宁县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132728 => [ + [ + "address" => "卢龙县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132729 => [ + [ + "address" => "迁安县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132730 => [ + [ + "address" => "迁西县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132731 => [ + [ + "address" => "遵化县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132732 => [ + [ + "address" => "玉田县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132733 => [ + [ + "address" => "唐海县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 132800 => [ + [ + "address" => "廊坊地区", + "start_year" => "", + "end_year" => 1987 + ] + ], + 132801 => [ + [ + "address" => "廊坊市", + "start_year" => 1981, + "end_year" => 1987 + ] + ], + 132821 => [ + [ + "address" => "三河县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 132822 => [ + [ + "address" => "大厂回族自治县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 132823 => [ + [ + "address" => "香河县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 132824 => [ + [ + "address" => "安次县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132825 => [ + [ + "address" => "永清县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 132826 => [ + [ + "address" => "固安县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 132827 => [ + [ + "address" => "霸县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 132828 => [ + [ + "address" => "文安县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 132829 => [ + [ + "address" => "大城县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 132900 => [ + [ + "address" => "沧州地区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132901 => [ + [ + "address" => "沧州市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132902 => [ + [ + "address" => "新华区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "泊头市", + "start_year" => 1984, + "end_year" => 1992 + ] + ], + 132903 => [ + [ + "address" => "运河区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "任丘市", + "start_year" => 1986, + "end_year" => 1992 + ] + ], + 132904 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "黄骅市", + "start_year" => 1989, + "end_year" => 1992 + ] + ], + 132905 => [ + [ + "address" => "泊头市", + "start_year" => 1982, + "end_year" => 1983 + ], + [ + "address" => "河间市", + "start_year" => 1990, + "end_year" => 1992 + ] + ], + 132921 => [ + [ + "address" => "沧县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132922 => [ + [ + "address" => "河间县", + "start_year" => "", + "end_year" => 1989 + ] + ], + 132923 => [ + [ + "address" => "肃宁县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132924 => [ + [ + "address" => "献县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132925 => [ + [ + "address" => "交河县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 132926 => [ + [ + "address" => "吴桥县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132927 => [ + [ + "address" => "东光县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132928 => [ + [ + "address" => "南皮县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132929 => [ + [ + "address" => "盐山县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132930 => [ + [ + "address" => "黄骅县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 132931 => [ + [ + "address" => "孟村回族自治县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 132932 => [ + [ + "address" => "青县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 132933 => [ + [ + "address" => "任丘县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 132934 => [ + [ + "address" => "海兴县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 133000 => [ + [ + "address" => "衡水地区", + "start_year" => "", + "end_year" => 1995 + ] + ], + 133001 => [ + [ + "address" => "衡水市", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 133002 => [ + [ + "address" => "冀州市", + "start_year" => 1993, + "end_year" => 1995 + ] + ], + 133003 => [ + [ + "address" => "深州市", + "start_year" => 1994, + "end_year" => 1995 + ] + ], + 133021 => [ + [ + "address" => "衡水县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 133022 => [ + [ + "address" => "冀县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 133023 => [ + [ + "address" => "枣强县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 133024 => [ + [ + "address" => "武邑县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 133025 => [ + [ + "address" => "深县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 133026 => [ + [ + "address" => "武强县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 133027 => [ + [ + "address" => "饶阳县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 133028 => [ + [ + "address" => "安平县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 133029 => [ + [ + "address" => "故城县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 133030 => [ + [ + "address" => "景县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 133031 => [ + [ + "address" => "阜城县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 139001 => [ + [ + "address" => "武安市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 139002 => [ + [ + "address" => "霸州市", + "start_year" => 1990, + "end_year" => 1994 + ] + ], + 139003 => [ + [ + "address" => "遵化市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 139004 => [ + [ + "address" => "辛集市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 139005 => [ + [ + "address" => "藁城市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 139006 => [ + [ + "address" => "晋州市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 139007 => [ + [ + "address" => "新乐市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 139008 => [ + [ + "address" => "泊头市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 139009 => [ + [ + "address" => "任丘市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 139010 => [ + [ + "address" => "黄骅市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 139011 => [ + [ + "address" => "河间市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 139012 => [ + [ + "address" => "三河县", + "start_year" => 1993, + "end_year" => 1993 + ], + [ + "address" => "三河市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 139013 => [ + [ + "address" => "南宫市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 139014 => [ + [ + "address" => "沙河市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 139015 => [ + [ + "address" => "定州市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 139016 => [ + [ + "address" => "涿州市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 139017 => [ + [ + "address" => "安国市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 139018 => [ + [ + "address" => "高碑店市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 139019 => [ + [ + "address" => "鹿泉市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 139020 => [ + [ + "address" => "丰南市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 140000 => [ + [ + "address" => "山西省", + "start_year" => "", + "end_year" => "" + ] + ], + 140100 => [ + [ + "address" => "太原市", + "start_year" => "", + "end_year" => "" + ] + ], + 140102 => [ + [ + "address" => "南城区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 140103 => [ + [ + "address" => "北城区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 140104 => [ + [ + "address" => "河西区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 140105 => [ + [ + "address" => "小店区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 140106 => [ + [ + "address" => "迎泽区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 140107 => [ + [ + "address" => "杏花岭区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 140108 => [ + [ + "address" => "尖草坪区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 140109 => [ + [ + "address" => "万柏林区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 140110 => [ + [ + "address" => "晋源区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 140111 => [ + [ + "address" => "古交工矿区", + "start_year" => "", + "end_year" => 1987 + ] + ], + 140112 => [ + [ + "address" => "南郊区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 140113 => [ + [ + "address" => "北郊区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 140121 => [ + [ + "address" => "清徐县", + "start_year" => "", + "end_year" => "" + ] + ], + 140122 => [ + [ + "address" => "阳曲县", + "start_year" => "", + "end_year" => "" + ] + ], + 140123 => [ + [ + "address" => "娄烦县", + "start_year" => "", + "end_year" => "" + ] + ], + 140181 => [ + [ + "address" => "古交市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 140200 => [ + [ + "address" => "大同市", + "start_year" => "", + "end_year" => "" + ] + ], + 140202 => [ + [ + "address" => "城区", + "start_year" => "", + "end_year" => 2017 + ] + ], + 140203 => [ + [ + "address" => "矿区", + "start_year" => "", + "end_year" => 2017 + ] + ], + 140211 => [ + [ + "address" => "南郊区", + "start_year" => "", + "end_year" => 2017 + ] + ], + 140212 => [ + [ + "address" => "新荣区", + "start_year" => "", + "end_year" => "" + ] + ], + 140213 => [ + [ + "address" => "平城区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 140214 => [ + [ + "address" => "云冈区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 140215 => [ + [ + "address" => "云州区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 140221 => [ + [ + "address" => "阳高县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 140222 => [ + [ + "address" => "天镇县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 140223 => [ + [ + "address" => "广灵县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 140224 => [ + [ + "address" => "灵丘县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 140225 => [ + [ + "address" => "浑源县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 140226 => [ + [ + "address" => "左云县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 140227 => [ + [ + "address" => "大同县", + "start_year" => 1993, + "end_year" => 2017 + ] + ], + 140300 => [ + [ + "address" => "阳泉市", + "start_year" => "", + "end_year" => "" + ] + ], + 140302 => [ + [ + "address" => "城区", + "start_year" => "", + "end_year" => "" + ] + ], + 140303 => [ + [ + "address" => "矿区", + "start_year" => "", + "end_year" => "" + ] + ], + 140311 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => "" + ] + ], + 140321 => [ + [ + "address" => "平定县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 140322 => [ + [ + "address" => "盂县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 140400 => [ + [ + "address" => "长治市", + "start_year" => "", + "end_year" => "" + ] + ], + 140402 => [ + [ + "address" => "城区", + "start_year" => "", + "end_year" => 2017 + ] + ], + 140403 => [ + [ + "address" => "潞州区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 140404 => [ + [ + "address" => "上党区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 140405 => [ + [ + "address" => "屯留区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 140406 => [ + [ + "address" => "潞城区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 140411 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 2017 + ] + ], + 140421 => [ + [ + "address" => "长治县", + "start_year" => 1983, + "end_year" => 2017 + ] + ], + 140422 => [ + [ + "address" => "潞城县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 140423 => [ + [ + "address" => "襄垣县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140424 => [ + [ + "address" => "屯留县", + "start_year" => 1985, + "end_year" => 2017 + ] + ], + 140425 => [ + [ + "address" => "平顺县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140426 => [ + [ + "address" => "黎城县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140427 => [ + [ + "address" => "壶关县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140428 => [ + [ + "address" => "长子县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140429 => [ + [ + "address" => "武乡县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140430 => [ + [ + "address" => "沁县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140431 => [ + [ + "address" => "沁源县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140481 => [ + [ + "address" => "潞城市", + "start_year" => 1995, + "end_year" => 2017 + ] + ], + 140500 => [ + [ + "address" => "晋城市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140502 => [ + [ + "address" => "城区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140503 => [ + [ + "address" => "郊区", + "start_year" => 1985, + "end_year" => 1995 + ] + ], + 140521 => [ + [ + "address" => "沁水县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140522 => [ + [ + "address" => "阳城县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140523 => [ + [ + "address" => "高平县", + "start_year" => 1985, + "end_year" => 1992 + ] + ], + 140524 => [ + [ + "address" => "陵川县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140525 => [ + [ + "address" => "泽州县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 140581 => [ + [ + "address" => "高平市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 140600 => [ + [ + "address" => "朔州市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 140602 => [ + [ + "address" => "朔城区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 140603 => [ + [ + "address" => "平鲁区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 140621 => [ + [ + "address" => "山阴县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 140622 => [ + [ + "address" => "应县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 140623 => [ + [ + "address" => "右玉县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 140624 => [ + [ + "address" => "怀仁县", + "start_year" => 1993, + "end_year" => 2017 + ] + ], + 140681 => [ + [ + "address" => "怀仁市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 140700 => [ + [ + "address" => "晋中市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140702 => [ + [ + "address" => "榆次区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140721 => [ + [ + "address" => "榆社县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140722 => [ + [ + "address" => "左权县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140723 => [ + [ + "address" => "和顺县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140724 => [ + [ + "address" => "昔阳县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140725 => [ + [ + "address" => "寿阳县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140726 => [ + [ + "address" => "太谷县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140727 => [ + [ + "address" => "祁县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140728 => [ + [ + "address" => "平遥县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140729 => [ + [ + "address" => "灵石县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140781 => [ + [ + "address" => "介休市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140800 => [ + [ + "address" => "运城市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140802 => [ + [ + "address" => "盐湖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140821 => [ + [ + "address" => "临猗县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140822 => [ + [ + "address" => "万荣县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140823 => [ + [ + "address" => "闻喜县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140824 => [ + [ + "address" => "稷山县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140825 => [ + [ + "address" => "新绛县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140826 => [ + [ + "address" => "绛县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140827 => [ + [ + "address" => "垣曲县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140828 => [ + [ + "address" => "夏县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140829 => [ + [ + "address" => "平陆县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140830 => [ + [ + "address" => "芮城县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140881 => [ + [ + "address" => "永济市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140882 => [ + [ + "address" => "河津市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140900 => [ + [ + "address" => "忻州市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140902 => [ + [ + "address" => "忻府区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140921 => [ + [ + "address" => "定襄县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140922 => [ + [ + "address" => "五台县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140923 => [ + [ + "address" => "代县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140924 => [ + [ + "address" => "繁峙县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140925 => [ + [ + "address" => "宁武县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140926 => [ + [ + "address" => "静乐县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140927 => [ + [ + "address" => "神池县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140928 => [ + [ + "address" => "五寨县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140929 => [ + [ + "address" => "岢岚县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140930 => [ + [ + "address" => "河曲县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140931 => [ + [ + "address" => "保德县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140932 => [ + [ + "address" => "偏关县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140981 => [ + [ + "address" => "原平市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141000 => [ + [ + "address" => "临汾市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141002 => [ + [ + "address" => "尧都区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141021 => [ + [ + "address" => "曲沃县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141022 => [ + [ + "address" => "翼城县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141023 => [ + [ + "address" => "襄汾县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141024 => [ + [ + "address" => "洪洞县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141025 => [ + [ + "address" => "古县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141026 => [ + [ + "address" => "安泽县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141027 => [ + [ + "address" => "浮山县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141028 => [ + [ + "address" => "吉县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141029 => [ + [ + "address" => "乡宁县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141030 => [ + [ + "address" => "大宁县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141031 => [ + [ + "address" => "隰县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141032 => [ + [ + "address" => "永和县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141033 => [ + [ + "address" => "蒲县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141034 => [ + [ + "address" => "汾西县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141081 => [ + [ + "address" => "侯马市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141082 => [ + [ + "address" => "霍州市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141100 => [ + [ + "address" => "吕梁市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141102 => [ + [ + "address" => "离石区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141121 => [ + [ + "address" => "文水县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141122 => [ + [ + "address" => "交城县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141123 => [ + [ + "address" => "兴县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141124 => [ + [ + "address" => "临县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141125 => [ + [ + "address" => "柳林县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141126 => [ + [ + "address" => "石楼县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141127 => [ + [ + "address" => "岚县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141128 => [ + [ + "address" => "方山县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141129 => [ + [ + "address" => "中阳县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141130 => [ + [ + "address" => "交口县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141181 => [ + [ + "address" => "孝义市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 141182 => [ + [ + "address" => "汾阳市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 142100 => [ + [ + "address" => "雁北地区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 142121 => [ + [ + "address" => "大同县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "阳高县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 142122 => [ + [ + "address" => "阳高县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "天镇县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 142123 => [ + [ + "address" => "天镇县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "广灵县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 142124 => [ + [ + "address" => "广灵县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "灵丘县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 142125 => [ + [ + "address" => "灵丘县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "浑源县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 142126 => [ + [ + "address" => "浑源县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "应县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 142127 => [ + [ + "address" => "怀仁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "山阴县", + "start_year" => 1982, + "end_year" => 1987 + ] + ], + 142128 => [ + [ + "address" => "应县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "朔县", + "start_year" => 1982, + "end_year" => 1987 + ] + ], + 142129 => [ + [ + "address" => "山阴县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "平鲁县", + "start_year" => 1982, + "end_year" => 1987 + ] + ], + 142130 => [ + [ + "address" => "朔县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "左云县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 142131 => [ + [ + "address" => "平鲁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "右玉县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 142132 => [ + [ + "address" => "左云县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "大同县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 142133 => [ + [ + "address" => "右玉县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "怀仁县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 142200 => [ + [ + "address" => "忻县地区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "忻州地区", + "start_year" => 1983, + "end_year" => 1999 + ] + ], + 142201 => [ + [ + "address" => "忻州市", + "start_year" => 1983, + "end_year" => 1999 + ] + ], + 142202 => [ + [ + "address" => "原平市", + "start_year" => 1993, + "end_year" => 1999 + ] + ], + 142221 => [ + [ + "address" => "忻县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 142222 => [ + [ + "address" => "原平县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "定襄县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142223 => [ + [ + "address" => "代县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "五台县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142224 => [ + [ + "address" => "繁峙县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "原平县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 142225 => [ + [ + "address" => "五台县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "代县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142226 => [ + [ + "address" => "定襄县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "繁峙县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142227 => [ + [ + "address" => "静乐县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宁武县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142228 => [ + [ + "address" => "岢岚县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "静乐县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142229 => [ + [ + "address" => "保德县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "神池县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142230 => [ + [ + "address" => "五寨县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 142231 => [ + [ + "address" => "河曲县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "岢岚县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142232 => [ + [ + "address" => "偏关县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "河曲县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142233 => [ + [ + "address" => "神池县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "保德县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142234 => [ + [ + "address" => "宁武县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "偏关县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142300 => [ + [ + "address" => "晋中地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "吕梁地区", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 142301 => [ + [ + "address" => "榆次市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "孝义市", + "start_year" => 1992, + "end_year" => 2002 + ] + ], + 142302 => [ + [ + "address" => "离石市", + "start_year" => 1996, + "end_year" => 2002 + ] + ], + 142303 => [ + [ + "address" => "汾阳市", + "start_year" => 1996, + "end_year" => 2002 + ] + ], + 142321 => [ + [ + "address" => "榆次县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "汾阳县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 142322 => [ + [ + "address" => "寿阳县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "文水县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 142323 => [ + [ + "address" => "盂县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "交城县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 142324 => [ + [ + "address" => "平定县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "孝义县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 142325 => [ + [ + "address" => "昔阳县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "兴县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 142326 => [ + [ + "address" => "和顺县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "临县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 142327 => [ + [ + "address" => "左权县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "柳林县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 142328 => [ + [ + "address" => "榆社县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "石楼县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 142329 => [ + [ + "address" => "太谷县", + "start_year" => "", + "end_year" => 1981 ], - 652700 => - [ - - [ - 'address' => '博尔塔拉蒙古自治州', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652701 => - [ - - [ - 'address' => '博乐市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 652702 => - [ - - [ - 'address' => '阿拉山口市', - 'start_year' => 2012, - 'end_year' => '', - ], + [ + "address" => "岚县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 142330 => [ + [ + "address" => "祁县", + "start_year" => "", + "end_year" => 1981 ], - 652721 => - [ - - [ - 'address' => '博乐县', - 'start_year' => '', - 'end_year' => 1984, - ], - ], - 652722 => - [ - - [ - 'address' => '精河县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652723 => - [ - - [ - 'address' => '温泉县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "方山县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 142331 => [ + [ + "address" => "平遥县", + "start_year" => "", + "end_year" => 1981 ], - 652800 => - [ - - [ - 'address' => '巴音郭楞蒙古自治州', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "离石县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 142332 => [ + [ + "address" => "介休县", + "start_year" => "", + "end_year" => 1981 ], - 652801 => - [ - - [ - 'address' => '库尔勒市', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "中阳县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 142333 => [ + [ + "address" => "灵石县", + "start_year" => "", + "end_year" => 1981 ], - 652821 => - [ - - [ - 'address' => '库尔勒县', - 'start_year' => '', - 'end_year' => 1982, - ], + [ + "address" => "交口县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 142400 => [ + [ + "address" => "吕梁地区", + "start_year" => "", + "end_year" => 1981 ], - 652822 => [ - - [ - 'address' => '轮台县', - 'start_year' => '', - 'end_year' => '', - ], + "address" => "晋中地区", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 142401 => [ + [ + "address" => "榆次市", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 142402 => [ + [ + "address" => "介休市", + "start_year" => 1992, + "end_year" => 1998 + ] + ], + 142421 => [ + [ + "address" => "离石县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "榆社县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 142422 => [ + [ + "address" => "孝义县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "左权县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 142423 => [ + [ + "address" => "兴县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "和顺县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 142424 => [ + [ + "address" => "交口县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "昔阳县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 142425 => [ + [ + "address" => "方山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "平定县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 142426 => [ + [ + "address" => "石楼县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "盂县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 142427 => [ + [ + "address" => "岚县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "寿阳县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 142428 => [ + [ + "address" => "中阳县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "榆次县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 142429 => [ + [ + "address" => "交城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "太谷县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 142430 => [ + [ + "address" => "临县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "祁县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 142431 => [ + [ + "address" => "文水县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "平遥县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 142432 => [ + [ + "address" => "柳林县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "介休县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 142433 => [ + [ + "address" => "汾阳县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "灵石县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 142500 => [ + [ + "address" => "晋东南地区", + "start_year" => "", + "end_year" => 1984 + ] + ], + 142501 => [ + [ + "address" => "晋城市", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 142521 => [ + [ + "address" => "长治县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 142522 => [ + [ + "address" => "潞城县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 142523 => [ + [ + "address" => "襄垣县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "屯留县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142524 => [ + [ + "address" => "武乡县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "长子县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142525 => [ + [ + "address" => "黎城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "沁水县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142526 => [ + [ + "address" => "平顺县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "阳城县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142527 => [ + [ + "address" => "壶关县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "晋城县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 142528 => [ + [ + "address" => "陵川县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "高平县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142529 => [ + [ + "address" => "高平县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "陵川县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142530 => [ + [ + "address" => "晋城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "壶关县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142531 => [ + [ + "address" => "阳城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "平顺县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142532 => [ + [ + "address" => "沁水县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "黎城县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142533 => [ + [ + "address" => "长子县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "武乡县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142534 => [ + [ + "address" => "屯留县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "襄垣县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142535 => [ + [ + "address" => "沁源县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "沁县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142536 => [ + [ + "address" => "沁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "沁源县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 142600 => [ + [ + "address" => "临汾地区", + "start_year" => "", + "end_year" => 1999 + ] + ], + 142601 => [ + [ + "address" => "临汾市", + "start_year" => "", + "end_year" => 1999 + ] + ], + 142602 => [ + [ + "address" => "侯马市", + "start_year" => "", + "end_year" => 1999 + ] + ], + 142603 => [ + [ + "address" => "霍州市", + "start_year" => 1989, + "end_year" => 1999 + ] + ], + 142621 => [ + [ + "address" => "临汾县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "曲沃县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142622 => [ + [ + "address" => "隰县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "翼城县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142623 => [ + [ + "address" => "汾西县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "襄汾县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142624 => [ + [ + "address" => "永和县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "临汾县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 142625 => [ + [ + "address" => "安泽县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "洪洞县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142626 => [ + [ + "address" => "洪洞县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "霍县", + "start_year" => 1982, + "end_year" => 1988 + ] + ], + 142627 => [ + [ + "address" => "古县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 142628 => [ + [ + "address" => "霍县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "安泽县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142629 => [ + [ + "address" => "翼城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "浮山县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142630 => [ + [ + "address" => "浮山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "吉县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142631 => [ + [ + "address" => "曲沃县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "乡宁县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142632 => [ + [ + "address" => "襄汾县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "蒲县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142633 => [ + [ + "address" => "吉县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "大宁县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142634 => [ + [ + "address" => "乡宁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "永和县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142635 => [ + [ + "address" => "大宁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "隰县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142636 => [ + [ + "address" => "蒲县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "汾西县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142700 => [ + [ + "address" => "运城地区", + "start_year" => "", + "end_year" => 1999 + ] + ], + 142701 => [ + [ + "address" => "运城市", + "start_year" => 1983, + "end_year" => 1999 + ] + ], + 142702 => [ + [ + "address" => "永济市", + "start_year" => 1994, + "end_year" => 1999 + ] + ], + 142703 => [ + [ + "address" => "河津市", + "start_year" => 1994, + "end_year" => 1999 + ] + ], + 142721 => [ + [ + "address" => "运城县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 142722 => [ + [ + "address" => "夏县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "永济县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 142723 => [ + [ + "address" => "闻喜县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "芮城县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142724 => [ + [ + "address" => "绛县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "临猗县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142725 => [ + [ + "address" => "垣曲县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "万荣县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142726 => [ + [ + "address" => "平陆县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "新绛县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142727 => [ + [ + "address" => "芮城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "稷山县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142728 => [ + [ + "address" => "永济县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "河津县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 142729 => [ + [ + "address" => "临猗县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "闻喜县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142730 => [ + [ + "address" => "万荣县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "夏县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142731 => [ + [ + "address" => "新绛县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "绛县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142732 => [ + [ + "address" => "稷山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "平陆县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 142733 => [ + [ + "address" => "河津县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "垣曲县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 149001 => [ + [ + "address" => "古交市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 149002 => [ + [ + "address" => "高平市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 149003 => [ + [ + "address" => "潞城市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 150000 => [ + [ + "address" => "内蒙古自治区", + "start_year" => "", + "end_year" => "" + ] + ], + 150100 => [ + [ + "address" => "呼和浩特市", + "start_year" => "", + "end_year" => "" + ] + ], + 150102 => [ + [ + "address" => "新城区", + "start_year" => "", + "end_year" => "" + ] + ], + 150103 => [ + [ + "address" => "回民区", + "start_year" => "", + "end_year" => "" + ] + ], + 150104 => [ + [ + "address" => "玉泉区", + "start_year" => "", + "end_year" => "" + ] + ], + 150105 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1999 + ], + [ + "address" => "赛罕区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 150121 => [ + [ + "address" => "土默特左旗", + "start_year" => "", + "end_year" => "" + ] + ], + 150122 => [ + [ + "address" => "托克托县", + "start_year" => "", + "end_year" => "" + ] + ], + 150123 => [ + [ + "address" => "和林格尔县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 150124 => [ + [ + "address" => "清水河县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 150125 => [ + [ + "address" => "武川县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 150200 => [ + [ + "address" => "包头市", + "start_year" => "", + "end_year" => "" + ] + ], + 150202 => [ + [ + "address" => "东河区", + "start_year" => "", + "end_year" => "" + ] + ], + 150203 => [ + [ + "address" => "昆都仑区", + "start_year" => "", + "end_year" => "" + ] + ], + 150204 => [ + [ + "address" => "青山区", + "start_year" => "", + "end_year" => "" + ] + ], + 150205 => [ + [ + "address" => "石拐矿区", + "start_year" => "", + "end_year" => 1998 + ], + [ + "address" => "石拐区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150206 => [ + [ + "address" => "白云矿区", + "start_year" => "", + "end_year" => 2006 + ], + [ + "address" => "白云鄂博矿区", + "start_year" => 2007, + "end_year" => "" + ] + ], + 150207 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1998 + ], + [ + "address" => "九原区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150221 => [ + [ + "address" => "土默特右旗", + "start_year" => "", + "end_year" => "" + ] + ], + 150222 => [ + [ + "address" => "固阳县", + "start_year" => "", + "end_year" => "" + ] + ], + 150223 => [ + [ + "address" => "达尔罕茂明安联合旗", + "start_year" => 1996, + "end_year" => "" + ] + ], + 150300 => [ + [ + "address" => "乌海市", + "start_year" => "", + "end_year" => "" + ] + ], + 150302 => [ + [ + "address" => "海勃湾区", + "start_year" => "", + "end_year" => "" + ] + ], + 150303 => [ + [ + "address" => "海南区", + "start_year" => "", + "end_year" => "" + ] + ], + 150304 => [ + [ + "address" => "乌达区", + "start_year" => "", + "end_year" => "" + ] + ], + 150400 => [ + [ + "address" => "赤峰市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150402 => [ + [ + "address" => "红山区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150403 => [ + [ + "address" => "元宝山区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150404 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1992 + ], + [ + "address" => "松山区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 150421 => [ + [ + "address" => "阿鲁科尔沁旗", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150422 => [ + [ + "address" => "巴林左旗", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150423 => [ + [ + "address" => "巴林右旗", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150424 => [ + [ + "address" => "林西县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150425 => [ + [ + "address" => "克什克腾旗", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150426 => [ + [ + "address" => "翁牛特旗", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150428 => [ + [ + "address" => "喀喇沁旗", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150429 => [ + [ + "address" => "宁城县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150430 => [ + [ + "address" => "敖汉旗", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150500 => [ + [ + "address" => "通辽市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150502 => [ + [ + "address" => "科尔沁区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150521 => [ + [ + "address" => "科尔沁左翼中旗", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150522 => [ + [ + "address" => "科尔沁左翼后旗", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150523 => [ + [ + "address" => "开鲁县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150524 => [ + [ + "address" => "库伦旗", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150525 => [ + [ + "address" => "奈曼旗", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150526 => [ + [ + "address" => "扎鲁特旗", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150581 => [ + [ + "address" => "霍林郭勒市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150600 => [ + [ + "address" => "鄂尔多斯市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150602 => [ + [ + "address" => "东胜区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150603 => [ + [ + "address" => "康巴什区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 150621 => [ + [ + "address" => "达拉特旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150622 => [ + [ + "address" => "准格尔旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150623 => [ + [ + "address" => "鄂托克前旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150624 => [ + [ + "address" => "鄂托克旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150625 => [ + [ + "address" => "杭锦旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150626 => [ + [ + "address" => "乌审旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150627 => [ + [ + "address" => "伊金霍洛旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150700 => [ + [ + "address" => "呼伦贝尔市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150702 => [ + [ + "address" => "海拉尔区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150703 => [ + [ + "address" => "扎赉诺尔区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 150721 => [ + [ + "address" => "阿荣旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150722 => [ + [ + "address" => "莫力达瓦达斡尔族自治旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150723 => [ + [ + "address" => "鄂伦春自治旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150724 => [ + [ + "address" => "鄂温克族自治旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150725 => [ + [ + "address" => "陈巴尔虎旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150726 => [ + [ + "address" => "新巴尔虎左旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150727 => [ + [ + "address" => "新巴尔虎右旗", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150781 => [ + [ + "address" => "满洲里市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150782 => [ + [ + "address" => "牙克石市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150783 => [ + [ + "address" => "扎兰屯市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150784 => [ + [ + "address" => "额尔古纳市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150785 => [ + [ + "address" => "根河市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150800 => [ + [ + "address" => "巴彦淖尔市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150802 => [ + [ + "address" => "临河区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150821 => [ + [ + "address" => "五原县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150822 => [ + [ + "address" => "磴口县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150823 => [ + [ + "address" => "乌拉特前旗", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150824 => [ + [ + "address" => "乌拉特中旗", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150825 => [ + [ + "address" => "乌拉特后旗", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150826 => [ + [ + "address" => "杭锦后旗", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150900 => [ + [ + "address" => "乌兰察布市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150902 => [ + [ + "address" => "集宁区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150921 => [ + [ + "address" => "卓资县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150922 => [ + [ + "address" => "化德县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150923 => [ + [ + "address" => "商都县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150924 => [ + [ + "address" => "兴和县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150925 => [ + [ + "address" => "凉城县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150926 => [ + [ + "address" => "察哈尔右翼前旗", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150927 => [ + [ + "address" => "察哈尔右翼中旗", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150928 => [ + [ + "address" => "察哈尔右翼后旗", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150929 => [ + [ + "address" => "四子王旗", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150981 => [ + [ + "address" => "丰镇市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 152100 => [ + [ + "address" => "呼伦贝尔盟", + "start_year" => "", + "end_year" => 2000 + ] + ], + 152101 => [ + [ + "address" => "海拉尔市", + "start_year" => "", + "end_year" => 2000 + ] + ], + 152102 => [ + [ + "address" => "满洲里市", + "start_year" => "", + "end_year" => 2000 + ] + ], + 152103 => [ + [ + "address" => "扎兰屯市", + "start_year" => 1983, + "end_year" => 2000 + ] + ], + 152104 => [ + [ + "address" => "牙克石市", + "start_year" => 1983, + "end_year" => 2000 + ] + ], + 152105 => [ + [ + "address" => "根河市", + "start_year" => 1994, + "end_year" => 2000 + ] + ], + 152106 => [ + [ + "address" => "额尔古纳市", + "start_year" => 1994, + "end_year" => 2000 + ] + ], + 152121 => [ + [ + "address" => "布特哈旗", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152122 => [ + [ + "address" => "阿荣旗", + "start_year" => "", + "end_year" => 2000 + ] + ], + 152123 => [ + [ + "address" => "莫力达瓦达斡尔族自治旗", + "start_year" => "", + "end_year" => 2000 + ] + ], + 152124 => [ + [ + "address" => "喜桂图旗", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152125 => [ + [ + "address" => "额尔古纳右旗", + "start_year" => "", + "end_year" => 1993 + ] + ], + 152126 => [ + [ + "address" => "额尔古纳左旗", + "start_year" => "", + "end_year" => 1993 + ] + ], + 152127 => [ + [ + "address" => "鄂伦春自治旗", + "start_year" => "", + "end_year" => 2000 + ] + ], + 152128 => [ + [ + "address" => "鄂温克族自治旗", + "start_year" => "", + "end_year" => 2000 + ] + ], + 152129 => [ + [ + "address" => "新巴尔虎右旗", + "start_year" => "", + "end_year" => 2000 + ] + ], + 152130 => [ + [ + "address" => "新巴尔虎左旗", + "start_year" => "", + "end_year" => 2000 + ] + ], + 152131 => [ + [ + "address" => "陈巴尔虎旗", + "start_year" => "", + "end_year" => 2000 + ] + ], + 152200 => [ + [ + "address" => "兴安盟", + "start_year" => "", + "end_year" => "" + ] + ], + 152201 => [ + [ + "address" => "乌兰浩特市", + "start_year" => "", + "end_year" => "" + ] + ], + 152202 => [ + [ + "address" => "阿尔山市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 152221 => [ + [ + "address" => "科尔沁右翼前旗", + "start_year" => "", + "end_year" => "" + ] + ], + 152222 => [ + [ + "address" => "科尔沁右翼中旗", + "start_year" => "", + "end_year" => "" + ] + ], + 152223 => [ + [ + "address" => "扎赉特旗", + "start_year" => "", + "end_year" => "" + ] + ], + 152224 => [ + [ + "address" => "突泉县", + "start_year" => "", + "end_year" => "" + ] + ], + 152300 => [ + [ + "address" => "哲里木盟", + "start_year" => "", + "end_year" => 1998 + ] + ], + 152301 => [ + [ + "address" => "通辽市", + "start_year" => "", + "end_year" => 1998 + ] + ], + 152302 => [ + [ + "address" => "霍林郭勒市", + "start_year" => 1985, + "end_year" => 1998 + ] + ], + 152321 => [ + [ + "address" => "通辽县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 152322 => [ + [ + "address" => "科尔沁左翼中旗", + "start_year" => "", + "end_year" => 1998 + ] + ], + 152323 => [ + [ + "address" => "科尔沁左翼后旗", + "start_year" => "", + "end_year" => 1998 + ] + ], + 152324 => [ + [ + "address" => "开鲁县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 152325 => [ + [ + "address" => "库伦旗", + "start_year" => "", + "end_year" => 1998 + ] + ], + 152326 => [ + [ + "address" => "奈曼旗", + "start_year" => "", + "end_year" => 1998 + ] + ], + 152327 => [ + [ + "address" => "扎鲁特旗", + "start_year" => "", + "end_year" => 1998 + ] + ], + 152400 => [ + [ + "address" => "昭乌达盟", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152401 => [ + [ + "address" => "赤峰市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152421 => [ + [ + "address" => "赤峰县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "阿鲁科尔沁旗", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 152422 => [ + [ + "address" => "巴林左旗", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152423 => [ + [ + "address" => "巴林右旗", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152424 => [ + [ + "address" => "林西县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152425 => [ + [ + "address" => "克什克腾旗", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152426 => [ + [ + "address" => "翁牛特旗", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152427 => [ + [ + "address" => "赤峰县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 152428 => [ + [ + "address" => "喀喇沁旗", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152429 => [ + [ + "address" => "宁城县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152430 => [ + [ + "address" => "敖汉旗", + "start_year" => "", + "end_year" => 1982 + ] + ], + 152431 => [ + [ + "address" => "阿鲁科尔沁旗", + "start_year" => "", + "end_year" => 1981 + ] + ], + 152500 => [ + [ + "address" => "伊克昭盟", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "锡林郭勒盟", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152501 => [ + [ + "address" => "二连浩特市", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152502 => [ + [ + "address" => "锡林浩特市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 152521 => [ + [ + "address" => "东胜县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "阿巴哈纳尔旗", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 152522 => [ + [ + "address" => "达拉特旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "阿巴嘎旗", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152523 => [ + [ + "address" => "准格尔旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "苏尼特左旗", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152524 => [ + [ + "address" => "鄂托克前旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "苏尼特右旗", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152525 => [ + [ + "address" => "鄂托克旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "东乌珠穆沁旗", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152526 => [ + [ + "address" => "杭锦旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "西乌珠穆沁旗", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152527 => [ + [ + "address" => "乌审旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "太仆寺旗", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152528 => [ + [ + "address" => "伊金霍洛旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "镶黄旗", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152529 => [ + [ + "address" => "正镶白旗", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152530 => [ + [ + "address" => "正蓝旗", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152531 => [ + [ + "address" => "多伦县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 152600 => [ + [ + "address" => "锡林郭勒盟", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "乌兰察布盟", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152601 => [ + [ + "address" => "二连浩特市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "集宁市", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152602 => [ + [ + "address" => "丰镇市", + "start_year" => 1990, + "end_year" => 2002 + ] + ], + 152621 => [ + [ + "address" => "阿巴哈纳尔旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "武川县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 152622 => [ + [ + "address" => "阿巴嘎旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "和林格尔县", + "start_year" => 1982, + "end_year" => 1994 + ] + ], + 152623 => [ + [ + "address" => "苏尼特左旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "清水河县", + "start_year" => 1982, + "end_year" => 1994 + ] + ], + 152624 => [ + [ + "address" => "苏尼特右旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "卓资县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152625 => [ + [ + "address" => "东乌珠穆沁旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "化德县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152626 => [ + [ + "address" => "西乌珠穆沁旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "商都县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152627 => [ + [ + "address" => "太仆寺旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "兴和县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152628 => [ + [ + "address" => "镶黄旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "丰镇县", + "start_year" => 1982, + "end_year" => 1989 + ] + ], + 152629 => [ + [ + "address" => "正镶白旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "凉城县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152630 => [ + [ + "address" => "正蓝旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "察哈尔右翼前旗", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152631 => [ + [ + "address" => "多伦县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "察哈尔右翼中旗", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152632 => [ + [ + "address" => "察哈尔右翼后旗", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152633 => [ + [ + "address" => "达尔罕茂明安联合旗", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 152634 => [ + [ + "address" => "四子王旗", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152700 => [ + [ + "address" => "巴彦淖尔盟", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "伊克昭盟", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 152701 => [ + [ + "address" => "东胜市", + "start_year" => 1983, + "end_year" => 2000 + ] + ], + 152721 => [ + [ + "address" => "临河县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "东胜县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 152722 => [ + [ + "address" => "五原县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "达拉特旗", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 152723 => [ + [ + "address" => "磴口县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "准格尔旗", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 152724 => [ + [ + "address" => "乌拉特前旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "鄂托克前旗", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 152725 => [ + [ + "address" => "乌拉特中后联合旗", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "乌拉特中旗", + "start_year" => 1981, + "end_year" => 1981 + ], + [ + "address" => "鄂托克旗", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 152726 => [ + [ + "address" => "杭锦后旗", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "杭锦旗", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 152727 => [ + [ + "address" => "潮格旗", + "start_year" => "", + "end_year" => 1980 ], - 652823 => [ - - [ - 'address' => '尉犁县', - 'start_year' => '', - 'end_year' => '', - ], + "address" => "乌拉特后旗", + "start_year" => 1981, + "end_year" => 1981 ], - 652824 => [ - - [ - 'address' => '若羌县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652825 => + "address" => "乌审旗", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 152728 => [ + [ + "address" => "伊金霍洛旗", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 152800 => [ [ - - [ - 'address' => '且末县', - 'start_year' => '', - 'end_year' => '', - ], + "address" => "乌兰察布盟", + "start_year" => "", + "end_year" => 1981 ], - 652826 => [ - - [ - 'address' => '焉耆回族自治县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652827 => + "address" => "巴彦淖尔盟", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152801 => [ [ - - [ - 'address' => '和静县', - 'start_year' => '', - 'end_year' => '', - ], + "address" => "集宁市", + "start_year" => "", + "end_year" => 1981 ], - 652828 => - [ - - [ - 'address' => '和硕县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "临河市", + "start_year" => 1984, + "end_year" => 2002 + ] + ], + 152821 => [ + [ + "address" => "武川县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "临河县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 152822 => [ + [ + "address" => "和林格尔县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "五原县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152823 => [ + [ + "address" => "清水河县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "磴口县", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152824 => [ + [ + "address" => "卓资县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "乌拉特前旗", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152825 => [ + [ + "address" => "化德县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "乌拉特中旗", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152826 => [ + [ + "address" => "商都县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "乌拉特后旗", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152827 => [ + [ + "address" => "兴和县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "杭锦后旗", + "start_year" => 1982, + "end_year" => 2002 + ] + ], + 152828 => [ + [ + "address" => "丰镇县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 152829 => [ + [ + "address" => "凉城县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 152830 => [ + [ + "address" => "察哈尔右翼前旗", + "start_year" => "", + "end_year" => 1981 + ] + ], + 152831 => [ + [ + "address" => "察哈尔右翼中旗", + "start_year" => "", + "end_year" => 1981 + ] + ], + 152832 => [ + [ + "address" => "察哈尔右翼后旗", + "start_year" => "", + "end_year" => 1981 + ] + ], + 152833 => [ + [ + "address" => "达尔罕茂明安联合旗", + "start_year" => "", + "end_year" => 1981 + ] + ], + 152834 => [ + [ + "address" => "四子王旗", + "start_year" => "", + "end_year" => 1981 + ] + ], + 152900 => [ + [ + "address" => "阿拉善盟", + "start_year" => "", + "end_year" => "" + ] + ], + 152921 => [ + [ + "address" => "阿拉善左旗", + "start_year" => "", + "end_year" => "" + ] + ], + 152922 => [ + [ + "address" => "阿拉善右旗", + "start_year" => "", + "end_year" => "" + ] + ], + 152923 => [ + [ + "address" => "额济纳旗", + "start_year" => "", + "end_year" => "" + ] + ], + 210000 => [ + [ + "address" => "辽宁省", + "start_year" => "", + "end_year" => "" + ] + ], + 210100 => [ + [ + "address" => "沈阳市", + "start_year" => "", + "end_year" => "" + ] + ], + 210102 => [ + [ + "address" => "和平区", + "start_year" => "", + "end_year" => "" + ] + ], + 210103 => [ + [ + "address" => "沈河区", + "start_year" => "", + "end_year" => "" + ] + ], + 210104 => [ + [ + "address" => "大东区", + "start_year" => "", + "end_year" => "" + ] + ], + 210105 => [ + [ + "address" => "皇姑区", + "start_year" => "", + "end_year" => "" + ] + ], + 210106 => [ + [ + "address" => "铁西区", + "start_year" => "", + "end_year" => "" + ] + ], + 210111 => [ + [ + "address" => "苏家屯区", + "start_year" => "", + "end_year" => "" + ] + ], + 210112 => [ + [ + "address" => "东陵区", + "start_year" => "", + "end_year" => 2015 + ], + [ + "address" => "浑南区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 210113 => [ + [ + "address" => "新城子区", + "start_year" => "", + "end_year" => 2005 + ], + [ + "address" => "沈北新区", + "start_year" => 2006, + "end_year" => "" + ] + ], + 210114 => [ + [ + "address" => "于洪区", + "start_year" => "", + "end_year" => "" + ] + ], + 210115 => [ + [ + "address" => "辽中区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 210121 => [ + [ + "address" => "新民县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 210122 => [ + [ + "address" => "辽中县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 210123 => [ + [ + "address" => "康平县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 210124 => [ + [ + "address" => "法库县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 210181 => [ + [ + "address" => "新民市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 210200 => [ + [ + "address" => "旅大市", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "大连市", + "start_year" => 1981, + "end_year" => "" + ] + ], + 210202 => [ + [ + "address" => "中山区", + "start_year" => "", + "end_year" => "" + ] + ], + 210203 => [ + [ + "address" => "西岗区", + "start_year" => "", + "end_year" => "" + ] + ], + 210204 => [ + [ + "address" => "沙河口区", + "start_year" => "", + "end_year" => "" + ] + ], + 210211 => [ + [ + "address" => "甘井子区", + "start_year" => "", + "end_year" => "" + ] + ], + 210212 => [ + [ + "address" => "旅顺口区", + "start_year" => "", + "end_year" => "" + ] + ], + 210213 => [ + [ + "address" => "金州区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 210214 => [ + [ + "address" => "普兰店区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 210219 => [ + [ + "address" => "瓦房店市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 210221 => [ + [ + "address" => "金县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 210222 => [ + [ + "address" => "新金县", + "start_year" => "", + "end_year" => 1990 + ] + ], + 210223 => [ + [ + "address" => "复县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 210224 => [ + [ + "address" => "长海县", + "start_year" => "", + "end_year" => "" + ] + ], + 210225 => [ + [ + "address" => "庄河县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 210281 => [ + [ + "address" => "瓦房店市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 210282 => [ + [ + "address" => "普兰店市", + "start_year" => 1995, + "end_year" => 2014 + ] + ], + 210283 => [ + [ + "address" => "庄河市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 210300 => [ + [ + "address" => "鞍山市", + "start_year" => "", + "end_year" => "" + ] + ], + 210302 => [ + [ + "address" => "铁东区", + "start_year" => "", + "end_year" => "" + ] + ], + 210303 => [ + [ + "address" => "铁西区", + "start_year" => "", + "end_year" => "" + ] + ], + 210304 => [ + [ + "address" => "立山区", + "start_year" => "", + "end_year" => "" + ] + ], + 210311 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "旧堡区", + "start_year" => 1984, + "end_year" => 1995 + ], + [ + "address" => "千山区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 210319 => [ + [ + "address" => "海城市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 210321 => [ + [ + "address" => "台安县", + "start_year" => "", + "end_year" => "" + ] + ], + 210322 => [ + [ + "address" => "海城县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 210323 => [ + [ + "address" => "岫岩满族自治县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 210381 => [ + [ + "address" => "海城市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 210400 => [ + [ + "address" => "抚顺市", + "start_year" => "", + "end_year" => "" + ] + ], + 210402 => [ + [ + "address" => "新抚区", + "start_year" => "", + "end_year" => "" + ] + ], + 210403 => [ + [ + "address" => "露天区", + "start_year" => "", + "end_year" => 1998 + ], + [ + "address" => "东洲区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 210404 => [ + [ + "address" => "望花区", + "start_year" => "", + "end_year" => "" + ] + ], + 210411 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1987 + ], + [ + "address" => "顺城区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 210421 => [ + [ + "address" => "抚顺县", + "start_year" => "", + "end_year" => "" + ] + ], + 210422 => [ + [ + "address" => "新宾县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "新宾满族自治县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 210423 => [ + [ + "address" => "清原县", + "start_year" => "", + "end_year" => 1988 + ], + [ + "address" => "清原满族自治县", + "start_year" => 1989, + "end_year" => "" + ] + ], + 210500 => [ + [ + "address" => "本溪市", + "start_year" => "", + "end_year" => "" + ] + ], + 210502 => [ + [ + "address" => "平山区", + "start_year" => "", + "end_year" => "" + ] + ], + 210503 => [ + [ + "address" => "溪湖区", + "start_year" => "", + "end_year" => "" + ] + ], + 210504 => [ + [ + "address" => "明山区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 210505 => [ + [ + "address" => "南芬区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 210511 => [ + [ + "address" => "立新区", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "南芬区", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 210521 => [ + [ + "address" => "本溪县", + "start_year" => "", + "end_year" => 1988 + ], + [ + "address" => "本溪满族自治县", + "start_year" => 1989, + "end_year" => "" + ] + ], + 210522 => [ + [ + "address" => "桓仁县", + "start_year" => "", + "end_year" => 1988 + ], + [ + "address" => "桓仁满族自治县", + "start_year" => 1989, + "end_year" => "" + ] + ], + 210600 => [ + [ + "address" => "丹东市", + "start_year" => "", + "end_year" => "" + ] + ], + 210602 => [ + [ + "address" => "元宝区", + "start_year" => "", + "end_year" => "" + ] + ], + 210603 => [ + [ + "address" => "振兴区", + "start_year" => "", + "end_year" => "" + ] + ], + 210604 => [ + [ + "address" => "振安区", + "start_year" => "", + "end_year" => "" + ] + ], + 210621 => [ + [ + "address" => "凤城县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "凤城满族自治县", + "start_year" => 1985, + "end_year" => 1993 + ] + ], + 210622 => [ + [ + "address" => "岫岩县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "岫岩满族自治县", + "start_year" => 1985, + "end_year" => 1991 + ] + ], + 210623 => [ + [ + "address" => "东沟县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 210624 => [ + [ + "address" => "宽甸县", + "start_year" => "", + "end_year" => 1988 + ], + [ + "address" => "宽甸满族自治县", + "start_year" => 1989, + "end_year" => "" + ] + ], + 210681 => [ + [ + "address" => "东港市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 210682 => [ + [ + "address" => "凤城市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 210700 => [ + [ + "address" => "锦州市", + "start_year" => "", + "end_year" => "" + ] + ], + 210702 => [ + [ + "address" => "古塔区", + "start_year" => "", + "end_year" => "" + ] + ], + 210703 => [ + [ + "address" => "凌河区", + "start_year" => "", + "end_year" => "" + ] + ], + 210704 => [ + [ + "address" => "南票区", + "start_year" => 1982, + "end_year" => 1988 + ] + ], + 210705 => [ + [ + "address" => "葫芦岛区", + "start_year" => 1982, + "end_year" => 1988 + ] + ], + 210706 => [ + [ + "address" => "太和区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 210711 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "太和区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 210719 => [ + [ + "address" => "锦西市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 210721 => [ + [ + "address" => "锦西县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 210722 => [ + [ + "address" => "兴城县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 210723 => [ + [ + "address" => "绥中县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 210724 => [ + [ + "address" => "锦县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 210725 => [ + [ + "address" => "北镇县", + "start_year" => "", + "end_year" => 1988 + ], + [ + "address" => "北镇满族自治县", + "start_year" => 1989, + "end_year" => 1994 + ] + ], + 210726 => [ + [ + "address" => "黑山县", + "start_year" => "", + "end_year" => "" + ] + ], + 210727 => [ + [ + "address" => "义县", + "start_year" => "", + "end_year" => "" + ] + ], + 210781 => [ + [ + "address" => "凌海市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 210782 => [ + [ + "address" => "北宁市", + "start_year" => 1995, + "end_year" => 2005 + ], + [ + "address" => "北镇市", + "start_year" => 2006, + "end_year" => "" + ] + ], + 210800 => [ + [ + "address" => "营口市", + "start_year" => "", + "end_year" => "" + ] + ], + 210802 => [ + [ + "address" => "站前区", + "start_year" => "", + "end_year" => "" + ] + ], + 210803 => [ + [ + "address" => "西市区", + "start_year" => "", + "end_year" => "" + ] + ], + 210804 => [ + [ + "address" => "鲅鱼圈区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 210811 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "老边区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 210821 => [ + [ + "address" => "营口县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 210822 => [ + [ + "address" => "盘山县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 210823 => [ + [ + "address" => "大洼县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 210824 => [ + [ + "address" => "盖县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 210881 => [ + [ + "address" => "盖州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 210882 => [ + [ + "address" => "大石桥市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 210900 => [ + [ + "address" => "阜新市", + "start_year" => "", + "end_year" => "" + ] + ], + 210902 => [ + [ + "address" => "海州区", + "start_year" => "", + "end_year" => "" + ] + ], + 210903 => [ + [ + "address" => "新邱区", + "start_year" => "", + "end_year" => "" + ] + ], + 210904 => [ + [ + "address" => "太平区", + "start_year" => "", + "end_year" => "" + ] + ], + 210905 => [ + [ + "address" => "清河门区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 210911 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "细河区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 210921 => [ + [ + "address" => "阜新蒙古族自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 210922 => [ + [ + "address" => "彰武县", + "start_year" => "", + "end_year" => "" + ] + ], + 211000 => [ + [ + "address" => "辽阳市", + "start_year" => "", + "end_year" => "" + ] + ], + 211002 => [ + [ + "address" => "白塔区", + "start_year" => "", + "end_year" => "" + ] + ], + 211003 => [ + [ + "address" => "文圣区", + "start_year" => "", + "end_year" => "" + ] + ], + 211004 => [ + [ + "address" => "宏伟区", + "start_year" => "", + "end_year" => "" + ] + ], + 211005 => [ + [ + "address" => "弓长岭区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211011 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "太子河区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211021 => [ + [ + "address" => "辽阳县", + "start_year" => "", + "end_year" => "" + ] + ], + 211022 => [ + [ + "address" => "灯塔县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 211081 => [ + [ + "address" => "灯塔市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 211100 => [ + [ + "address" => "盘锦市", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211102 => [ + [ + "address" => "盘山区", + "start_year" => 1984, + "end_year" => 1985 + ], + [ + "address" => "双台子区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 211103 => [ + [ + "address" => "兴隆台区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211104 => [ + [ + "address" => "大洼区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 211111 => [ + [ + "address" => "郊区", + "start_year" => 1984, + "end_year" => 1985 + ] + ], + 211121 => [ + [ + "address" => "大洼县", + "start_year" => 1984, + "end_year" => 2015 + ] + ], + 211122 => [ + [ + "address" => "盘山县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 211200 => [ + [ + "address" => "铁岭市", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211202 => [ + [ + "address" => "银州区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211203 => [ + [ + "address" => "铁法区", + "start_year" => 1984, + "end_year" => 1985 + ] + ], + 211204 => [ + [ + "address" => "清河区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211221 => [ + [ + "address" => "铁岭县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211222 => [ + [ + "address" => "开原县", + "start_year" => 1984, + "end_year" => 1987 + ] + ], + 211223 => [ + [ + "address" => "西丰县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211224 => [ + [ + "address" => "昌图县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211225 => [ + [ + "address" => "康平县", + "start_year" => 1984, + "end_year" => 1991 + ] + ], + 211226 => [ + [ + "address" => "法库县", + "start_year" => 1984, + "end_year" => 1991 + ] + ], + 211281 => [ + [ + "address" => "铁法市", + "start_year" => 1995, + "end_year" => 2001 + ], + [ + "address" => "调兵山市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 211282 => [ + [ + "address" => "开原市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 211300 => [ + [ + "address" => "朝阳市", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211302 => [ + [ + "address" => "双塔区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211303 => [ + [ + "address" => "龙城区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211319 => [ + [ + "address" => "北票市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 211321 => [ + [ + "address" => "朝阳县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211322 => [ + [ + "address" => "建平县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211323 => [ + [ + "address" => "凌源县", + "start_year" => 1984, + "end_year" => 1990 + ] + ], + 211324 => [ + [ + "address" => "喀喇沁左翼蒙古族自治县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211325 => [ + [ + "address" => "建昌县", + "start_year" => 1984, + "end_year" => 1988 + ] + ], + 211326 => [ + [ + "address" => "北票县", + "start_year" => 1984, + "end_year" => 1984 + ] + ], + 211381 => [ + [ + "address" => "北票市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 211382 => [ + [ + "address" => "凌源市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 211400 => [ + [ + "address" => "锦西市", + "start_year" => 1989, + "end_year" => 1993 + ], + [ + "address" => "葫芦岛市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 211402 => [ + [ + "address" => "连山区", + "start_year" => 1989, + "end_year" => "" + ] + ], + 211403 => [ + [ + "address" => "龙港区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 211404 => [ + [ + "address" => "南票区", + "start_year" => 1989, + "end_year" => "" + ] + ], + 211405 => [ + [ + "address" => "葫芦岛区", + "start_year" => 1989, + "end_year" => 1993 + ] + ], + 211421 => [ + [ + "address" => "绥中县", + "start_year" => 1989, + "end_year" => "" + ] + ], + 211422 => [ + [ + "address" => "建昌县", + "start_year" => 1989, + "end_year" => "" + ] + ], + 211481 => [ + [ + "address" => "兴城市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 212100 => [ + [ + "address" => "铁岭地区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212101 => [ + [ + "address" => "铁岭市", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212102 => [ + [ + "address" => "铁法市", + "start_year" => 1981, + "end_year" => 1983 + ] + ], + 212121 => [ + [ + "address" => "铁岭县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212122 => [ + [ + "address" => "开原县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212123 => [ + [ + "address" => "西丰县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212124 => [ + [ + "address" => "昌图县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212125 => [ + [ + "address" => "康平县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212126 => [ + [ + "address" => "法库县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212200 => [ + [ + "address" => "朝阳地区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212201 => [ + [ + "address" => "朝阳市", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212221 => [ + [ + "address" => "朝阳县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212222 => [ + [ + "address" => "建平县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212223 => [ + [ + "address" => "凌源县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212224 => [ + [ + "address" => "喀喇沁左翼蒙古族自治县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212225 => [ + [ + "address" => "建昌县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 212226 => [ + [ + "address" => "北票县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 219001 => [ + [ + "address" => "瓦房店市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 219002 => [ + [ + "address" => "海城市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 219003 => [ + [ + "address" => "锦西市", + "start_year" => 1986, + "end_year" => 1988 + ] + ], + 219004 => [ + [ + "address" => "兴城市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 219005 => [ + [ + "address" => "铁法市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 219006 => [ + [ + "address" => "北票市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 219007 => [ + [ + "address" => "开原市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 219008 => [ + [ + "address" => "普兰店市", + "start_year" => 1991, + "end_year" => 1994 + ] + ], + 219009 => [ + [ + "address" => "凌源市", + "start_year" => 1991, + "end_year" => 1994 + ] + ], + 219010 => [ + [ + "address" => "庄河市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 219011 => [ + [ + "address" => "大石桥市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 219012 => [ + [ + "address" => "盖州市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 219013 => [ + [ + "address" => "新民市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 219014 => [ + [ + "address" => "东港市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 219015 => [ + [ + "address" => "凌海市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 219016 => [ + [ + "address" => "凤城市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 220000 => [ + [ + "address" => "吉林省", + "start_year" => "", + "end_year" => "" + ] + ], + 220100 => [ + [ + "address" => "长春市", + "start_year" => "", + "end_year" => "" + ] + ], + 220102 => [ + [ + "address" => "南关区", + "start_year" => "", + "end_year" => "" + ] + ], + 220103 => [ + [ + "address" => "宽城区", + "start_year" => "", + "end_year" => "" + ] + ], + 220104 => [ + [ + "address" => "朝阳区", + "start_year" => "", + "end_year" => "" + ] + ], + 220105 => [ + [ + "address" => "二道河子区", + "start_year" => "", + "end_year" => 1994 + ], + [ + "address" => "二道区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220106 => [ + [ + "address" => "绿园区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220111 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1994 + ] + ], + 220112 => [ + [ + "address" => "双阳区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220113 => [ + [ + "address" => "九台区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 220121 => [ + [ + "address" => "榆树县", + "start_year" => "", + "end_year" => 1989 + ] + ], + 220122 => [ + [ + "address" => "农安县", + "start_year" => "", + "end_year" => "" + ] + ], + 220123 => [ + [ + "address" => "九台县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 220124 => [ + [ + "address" => "德惠县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 220125 => [ + [ + "address" => "双阳县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 220181 => [ + [ + "address" => "九台市", + "start_year" => 1995, + "end_year" => 2013 + ] + ], + 220182 => [ + [ + "address" => "榆树市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220183 => [ + [ + "address" => "德惠市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220200 => [ + [ + "address" => "吉林市", + "start_year" => "", + "end_year" => "" + ] + ], + 220202 => [ + [ + "address" => "昌邑区", + "start_year" => "", + "end_year" => "" + ] + ], + 220203 => [ + [ + "address" => "龙潭区", + "start_year" => "", + "end_year" => "" + ] + ], + 220204 => [ + [ + "address" => "船营区", + "start_year" => "", + "end_year" => "" + ] + ], + 220211 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1991 + ], + [ + "address" => "丰满区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 220221 => [ + [ + "address" => "永吉县", + "start_year" => "", + "end_year" => "" + ] + ], + 220222 => [ + [ + "address" => "舒兰县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 220223 => [ + [ + "address" => "磐石县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 220224 => [ + [ + "address" => "蛟河县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 220225 => [ + [ + "address" => "桦甸县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 220281 => [ + [ + "address" => "蛟河市", + "start_year" => 1995, + "end_year" => "" + ], + [ + "address" => "桦甸市", + "start_year" => 2003, + "end_year" => 2003 + ] + ], + 220282 => [ + [ + "address" => "桦甸市", + "start_year" => 1995, + "end_year" => "" + ], + [ + "address" => "蛟河市", + "start_year" => 2003, + "end_year" => 2003 + ] + ], + 220283 => [ + [ + "address" => "舒兰市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220284 => [ + [ + "address" => "磐石市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220300 => [ + [ + "address" => "四平市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 220301 => [ + [ + "address" => "铁西区", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 220302 => [ + [ + "address" => "铁东区", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "铁西区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 220303 => [ + [ + "address" => "铁东区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 220319 => [ + [ + "address" => "公主岭市", + "start_year" => 1985, + "end_year" => 1987 + ] + ], + 220321 => [ + [ + "address" => "怀德县", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 220322 => [ + [ + "address" => "梨树县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 220323 => [ + [ + "address" => "伊通县", + "start_year" => 1983, + "end_year" => 1987 + ], + [ + "address" => "伊通满族自治县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 220324 => [ + [ + "address" => "双辽县", + "start_year" => 1983, + "end_year" => 1995 + ] + ], + 220381 => [ + [ + "address" => "公主岭市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220382 => [ + [ + "address" => "双辽市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 220400 => [ + [ + "address" => "辽源市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 220401 => [ + [ + "address" => "龙山区", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 220402 => [ + [ + "address" => "西安区", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "龙山区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 220403 => [ + [ + "address" => "西安区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 220421 => [ + [ + "address" => "东丰县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 220422 => [ + [ + "address" => "东辽县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 220500 => [ + [ + "address" => "通化市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 220502 => [ + [ + "address" => "东昌区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 220503 => [ + [ + "address" => "二道江区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 220519 => [ + [ + "address" => "梅河口市", + "start_year" => 1985, + "end_year" => 1987 + ] + ], + 220521 => [ + [ + "address" => "通化县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 220522 => [ + [ + "address" => "集安县", + "start_year" => 1985, + "end_year" => 1987 + ] + ], + 220523 => [ + [ + "address" => "辉南县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 220524 => [ + [ + "address" => "柳河县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 220581 => [ + [ + "address" => "梅河口市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220582 => [ + [ + "address" => "集安市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220600 => [ + [ + "address" => "浑江市", + "start_year" => 1985, + "end_year" => 1993 + ], + [ + "address" => "白山市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 220602 => [ + [ + "address" => "八道江区", + "start_year" => 1986, + "end_year" => 2009 + ], + [ + "address" => "浑江区", + "start_year" => 2010, + "end_year" => "" + ] + ], + 220603 => [ + [ + "address" => "三岔子区", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 220604 => [ + [ + "address" => "临江区", + "start_year" => 1986, + "end_year" => 1991 + ] + ], + 220605 => [ + [ + "address" => "江源区", + "start_year" => 2006, + "end_year" => "" + ] + ], + 220621 => [ + [ + "address" => "抚松县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 220622 => [ + [ + "address" => "靖宇县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 220623 => [ + [ + "address" => "长白朝鲜族自治县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 220624 => [ + [ + "address" => "临江县", + "start_year" => 1992, + "end_year" => 1992 + ] + ], + 220625 => [ + [ + "address" => "江源县", + "start_year" => 1995, + "end_year" => 2005 + ] + ], + 220681 => [ + [ + "address" => "临江市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220700 => [ + [ + "address" => "松原市", + "start_year" => 1992, + "end_year" => "" + ] + ], + 220702 => [ + [ + "address" => "扶余区", + "start_year" => 1992, + "end_year" => 1994 + ], + [ + "address" => "宁江区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220721 => [ + [ + "address" => "前郭尔罗斯蒙古族自治县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 220722 => [ + [ + "address" => "长岭县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 220723 => [ + [ + "address" => "乾安县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 220724 => [ + [ + "address" => "扶余县", + "start_year" => 1995, + "end_year" => 2012 + ] + ], + 220781 => [ + [ + "address" => "扶余市", + "start_year" => 2013, + "end_year" => "" + ] + ], + 220800 => [ + [ + "address" => "白城市", + "start_year" => 1993, + "end_year" => "" + ] + ], + 220802 => [ + [ + "address" => "洮北区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 220821 => [ + [ + "address" => "镇赉县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 220822 => [ + [ + "address" => "通榆县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 220881 => [ + [ + "address" => "洮南市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 220882 => [ + [ + "address" => "大安市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 222100 => [ + [ + "address" => "四平地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 222101 => [ + [ + "address" => "四平市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 222102 => [ + [ + "address" => "辽源市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 222121 => [ + [ + "address" => "怀德县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 222122 => [ + [ + "address" => "梨树县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 222123 => [ + [ + "address" => "伊通县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 222124 => [ + [ + "address" => "东丰县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 222125 => [ + [ + "address" => "双辽县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 222200 => [ + [ + "address" => "通化地区", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222201 => [ + [ + "address" => "通化市", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222202 => [ + [ + "address" => "浑江市", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222221 => [ + [ + "address" => "海龙县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222222 => [ + [ + "address" => "通化县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222223 => [ + [ + "address" => "柳河县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222224 => [ + [ + "address" => "辉南县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222225 => [ + [ + "address" => "集安县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222226 => [ + [ + "address" => "抚松县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222227 => [ + [ + "address" => "靖宇县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222228 => [ + [ + "address" => "长白朝鲜族自治县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222300 => [ + [ + "address" => "白城地区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 222301 => [ + [ + "address" => "白城市", + "start_year" => "", + "end_year" => 1992 + ] + ], + 222302 => [ + [ + "address" => "洮南市", + "start_year" => 1987, + "end_year" => 1992 + ] + ], + 222303 => [ + [ + "address" => "扶余市", + "start_year" => 1987, + "end_year" => 1991 + ] + ], + 222304 => [ + [ + "address" => "大安市", + "start_year" => 1988, + "end_year" => 1992 + ] + ], + 222321 => [ + [ + "address" => "扶余县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 222322 => [ + [ + "address" => "洮安县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 222323 => [ + [ + "address" => "长岭县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 222324 => [ + [ + "address" => "前郭尔罗斯蒙古族自治县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 222325 => [ + [ + "address" => "大安县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 222326 => [ + [ + "address" => "镇赉县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 222327 => [ + [ + "address" => "通榆县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 222328 => [ + [ + "address" => "乾安县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 222400 => [ + [ + "address" => "延边朝鲜族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 222401 => [ + [ + "address" => "延吉市", + "start_year" => "", + "end_year" => "" + ] + ], + 222402 => [ + [ + "address" => "图们市", + "start_year" => "", + "end_year" => "" + ] + ], + 222403 => [ + [ + "address" => "敦化市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 222404 => [ + [ + "address" => "珲春市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 222405 => [ + [ + "address" => "龙井市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 222406 => [ + [ + "address" => "和龙市", + "start_year" => 1993, + "end_year" => "" + ] + ], + 222421 => [ + [ + "address" => "延吉县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "龙井县", + "start_year" => 1984, + "end_year" => 1987 + ] + ], + 222422 => [ + [ + "address" => "敦化县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 222423 => [ + [ + "address" => "和龙县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 222424 => [ + [ + "address" => "汪清县", + "start_year" => "", + "end_year" => "" + ] + ], + 222425 => [ + [ + "address" => "珲春县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 222426 => [ + [ + "address" => "安图县", + "start_year" => "", + "end_year" => "" + ] + ], + 222427 => [ + [ + "address" => "龙井县", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 222500 => [ + [ + "address" => "德惠地区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 222521 => [ + [ + "address" => "榆树县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 222522 => [ + [ + "address" => "农安县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 222523 => [ + [ + "address" => "九台县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 222524 => [ + [ + "address" => "德惠县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 222525 => [ + [ + "address" => "双阳县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 222600 => [ + [ + "address" => "永吉地区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 222621 => [ + [ + "address" => "永吉县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 222622 => [ + [ + "address" => "舒兰县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 222623 => [ + [ + "address" => "磐石县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 222624 => [ + [ + "address" => "蛟河县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 222625 => [ + [ + "address" => "桦甸县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 229001 => [ + [ + "address" => "公主岭市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 229002 => [ + [ + "address" => "梅河口市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 229003 => [ + [ + "address" => "集安市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 229004 => [ + [ + "address" => "桦甸市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 229005 => [ + [ + "address" => "九台市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 229006 => [ + [ + "address" => "蛟河市", + "start_year" => 1989, + "end_year" => 1994 + ] + ], + 229007 => [ + [ + "address" => "榆树市", + "start_year" => 1990, + "end_year" => 1994 + ] + ], + 229008 => [ + [ + "address" => "舒兰市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 229009 => [ + [ + "address" => "大安市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 229010 => [ + [ + "address" => "洮南市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 229011 => [ + [ + "address" => "临江市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 229012 => [ + [ + "address" => "德惠市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 230000 => [ + [ + "address" => "黑龙江省", + "start_year" => "", + "end_year" => "" + ] + ], + 230100 => [ + [ + "address" => "哈尔滨市", + "start_year" => "", + "end_year" => "" + ] + ], + 230102 => [ + [ + "address" => "道里区", + "start_year" => "", + "end_year" => "" + ] + ], + 230103 => [ + [ + "address" => "南岗区", + "start_year" => "", + "end_year" => "" + ] + ], + 230104 => [ + [ + "address" => "道外区", + "start_year" => "", + "end_year" => "" + ] + ], + 230105 => [ + [ + "address" => "太平区", + "start_year" => "", + "end_year" => 2003 + ] + ], + 230106 => [ + [ + "address" => "香坊区", + "start_year" => "", + "end_year" => 2003 + ] + ], + 230107 => [ + [ + "address" => "动力区", + "start_year" => "", + "end_year" => 2005 + ] + ], + 230108 => [ + [ + "address" => "平房区", + "start_year" => "", + "end_year" => "" + ] + ], + 230109 => [ + [ + "address" => "松北区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 230110 => [ + [ + "address" => "香坊区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 230111 => [ + [ + "address" => "呼兰区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 230112 => [ + [ + "address" => "阿城区", + "start_year" => 2006, + "end_year" => "" + ] + ], + 230113 => [ + [ + "address" => "双城区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 230121 => [ + [ + "address" => "阿城县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "呼兰县", + "start_year" => 1984, + "end_year" => 2003 + ] + ], + 230122 => [ + [ + "address" => "呼兰县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "阿城县", + "start_year" => 1984, + "end_year" => 1986 + ] + ], + 230123 => [ + [ + "address" => "依兰县", + "start_year" => 1991, + "end_year" => "" + ] + ], + 230124 => [ + [ + "address" => "方正县", + "start_year" => 1991, + "end_year" => "" + ] + ], + 230125 => [ + [ + "address" => "宾县", + "start_year" => 1991, + "end_year" => "" + ] + ], + 230126 => [ + [ + "address" => "巴彦县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 230127 => [ + [ + "address" => "木兰县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 230128 => [ + [ + "address" => "通河县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 230129 => [ + [ + "address" => "延寿县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 230181 => [ + [ + "address" => "阿城市", + "start_year" => 1995, + "end_year" => 2005 + ] + ], + 230182 => [ + [ + "address" => "双城市", + "start_year" => 1996, + "end_year" => 2013 + ] + ], + 230183 => [ + [ + "address" => "尚志市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 230184 => [ + [ + "address" => "五常市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 230200 => [ + [ + "address" => "齐齐哈尔市", + "start_year" => "", + "end_year" => "" + ] + ], + 230202 => [ + [ + "address" => "龙沙区", + "start_year" => "", + "end_year" => "" + ] + ], + 230203 => [ + [ + "address" => "建华区", + "start_year" => "", + "end_year" => "" + ] + ], + 230204 => [ + [ + "address" => "铁锋区", + "start_year" => "", + "end_year" => "" + ] + ], + 230205 => [ + [ + "address" => "昂昂溪区", + "start_year" => "", + "end_year" => "" + ] + ], + 230206 => [ + [ + "address" => "富拉尔基区", + "start_year" => "", + "end_year" => "" + ] + ], + 230207 => [ + [ + "address" => "华安区", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "碾子山区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230208 => [ + [ + "address" => "梅里斯区", + "start_year" => "", + "end_year" => 1987 + ], + [ + "address" => "梅里斯达斡尔族区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 230221 => [ + [ + "address" => "龙江县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230222 => [ + [ + "address" => "讷河县", + "start_year" => 1984, + "end_year" => 1991 + ] + ], + 230223 => [ + [ + "address" => "依安县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230224 => [ + [ + "address" => "泰来县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230225 => [ + [ + "address" => "甘南县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230226 => [ + [ + "address" => "杜尔伯特蒙古族自治县", + "start_year" => 1984, + "end_year" => 1991 + ] + ], + 230227 => [ + [ + "address" => "富裕县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230228 => [ + [ + "address" => "林甸县", + "start_year" => 1984, + "end_year" => 1991 + ] + ], + 230229 => [ + [ + "address" => "克山县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230230 => [ + [ + "address" => "克东县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230231 => [ + [ + "address" => "拜泉县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230281 => [ + [ + "address" => "讷河市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 230300 => [ + [ + "address" => "鸡西市", + "start_year" => "", + "end_year" => "" + ] + ], + 230302 => [ + [ + "address" => "鸡冠区", + "start_year" => "", + "end_year" => "" + ] + ], + 230303 => [ + [ + "address" => "恒山区", + "start_year" => "", + "end_year" => "" + ] + ], + 230304 => [ + [ + "address" => "滴道区", + "start_year" => "", + "end_year" => "" + ] + ], + 230305 => [ + [ + "address" => "梨树区", + "start_year" => "", + "end_year" => "" + ] + ], + 230306 => [ + [ + "address" => "城子河区", + "start_year" => "", + "end_year" => "" + ] + ], + 230307 => [ + [ + "address" => "麻山区", + "start_year" => "", + "end_year" => "" + ] + ], + 230321 => [ + [ + "address" => "鸡东县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230322 => [ + [ + "address" => "虎林县", + "start_year" => 1993, + "end_year" => 1995 + ] + ], + 230381 => [ + [ + "address" => "虎林市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 230382 => [ + [ + "address" => "密山市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 230400 => [ + [ + "address" => "大庆市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "鹤岗市", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230402 => [ + [ + "address" => "萨尔图区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "向阳区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230403 => [ + [ + "address" => "龙凤区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "工农区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230404 => [ + [ + "address" => "让胡路区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "南山区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230405 => [ + [ + "address" => "红岗区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "兴安区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230406 => [ + [ + "address" => "大同区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "东山区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230407 => [ + [ + "address" => "兴山区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230421 => [ + [ + "address" => "萝北县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 230422 => [ + [ + "address" => "绥滨县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 230500 => [ + [ + "address" => "鹤岗市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "双鸭山市", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230502 => [ + [ + "address" => "向阳区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "尖山区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230503 => [ + [ + "address" => "工农区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "岭东区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230504 => [ + [ + "address" => "南山区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "岭西区", + "start_year" => 1982, + "end_year" => 1986 + ] + ], + 230505 => [ + [ + "address" => "兴安区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "四方台区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230506 => [ + [ + "address" => "东山区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宝山区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230507 => [ + [ + "address" => "兴山区", + "start_year" => "", + "end_year" => 1981 + ] + ], + 230521 => [ + [ + "address" => "集贤县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 230522 => [ + [ + "address" => "友谊县", + "start_year" => 1991, + "end_year" => "" + ] + ], + 230523 => [ + [ + "address" => "宝清县", + "start_year" => 1991, + "end_year" => "" + ] + ], + 230524 => [ + [ + "address" => "饶河县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 230600 => [ + [ + "address" => "双鸭山市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "大庆市", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230602 => [ + [ + "address" => "尖山区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "萨尔图区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230603 => [ + [ + "address" => "岭东区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "龙凤区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230604 => [ + [ + "address" => "岭西区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "让胡路区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230605 => [ + [ + "address" => "四方台区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "红岗区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230606 => [ + [ + "address" => "宝山区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "大同区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 230621 => [ + [ + "address" => "肇州县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 230622 => [ + [ + "address" => "肇源县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 230623 => [ + [ + "address" => "林甸县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 230624 => [ + [ + "address" => "杜尔伯特蒙古族自治县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 230700 => [ + [ + "address" => "伊春市", + "start_year" => "", + "end_year" => "" + ] + ], + 230702 => [ + [ + "address" => "伊春区", + "start_year" => "", + "end_year" => "" + ] + ], + 230703 => [ + [ + "address" => "南岔区", + "start_year" => "", + "end_year" => "" + ] + ], + 230704 => [ + [ + "address" => "友好区", + "start_year" => "", + "end_year" => "" + ] + ], + 230705 => [ + [ + "address" => "西林区", + "start_year" => "", + "end_year" => "" + ] + ], + 230706 => [ + [ + "address" => "翠峦区", + "start_year" => "", + "end_year" => "" + ] + ], + 230707 => [ + [ + "address" => "新青区", + "start_year" => "", + "end_year" => "" + ] + ], + 230708 => [ + [ + "address" => "美溪区", + "start_year" => "", + "end_year" => "" + ] + ], + 230709 => [ + [ + "address" => "大丰区", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "金山屯区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230710 => [ + [ + "address" => "五营区", + "start_year" => "", + "end_year" => "" + ] + ], + 230711 => [ + [ + "address" => "乌敏河区", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "乌马河区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230712 => [ + [ + "address" => "东风区", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "汤旺河区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230713 => [ + [ + "address" => "带岭区", + "start_year" => "", + "end_year" => "" + ] + ], + 230714 => [ + [ + "address" => "乌伊岭区", + "start_year" => "", + "end_year" => "" + ] + ], + 230715 => [ + [ + "address" => "红星区", + "start_year" => "", + "end_year" => "" + ] + ], + 230716 => [ + [ + "address" => "上甘岭区", + "start_year" => "", + "end_year" => "" + ] + ], + 230721 => [ + [ + "address" => "铁力县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 230722 => [ + [ + "address" => "嘉荫县", + "start_year" => "", + "end_year" => "" + ] + ], + 230781 => [ + [ + "address" => "铁力市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 230800 => [ + [ + "address" => "佳木斯市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230802 => [ + [ + "address" => "永红区", + "start_year" => 1983, + "end_year" => 2005 + ] + ], + 230803 => [ + [ + "address" => "向阳区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230804 => [ + [ + "address" => "前进区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230805 => [ + [ + "address" => "东风区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230811 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230821 => [ + [ + "address" => "富锦县", + "start_year" => 1984, + "end_year" => 1987 + ] + ], + 230822 => [ + [ + "address" => "桦南县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230823 => [ + [ + "address" => "依兰县", + "start_year" => 1984, + "end_year" => 1990 + ] + ], + 230824 => [ + [ + "address" => "友谊县", + "start_year" => 1984, + "end_year" => 1990 + ] + ], + 230825 => [ + [ + "address" => "集贤县", + "start_year" => 1984, + "end_year" => 1986 + ] + ], + 230826 => [ + [ + "address" => "桦川县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230827 => [ + [ + "address" => "宝清县", + "start_year" => 1984, + "end_year" => 1990 + ] + ], + 230828 => [ + [ + "address" => "汤原县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230829 => [ + [ + "address" => "绥滨县", + "start_year" => 1984, + "end_year" => 1986 + ] + ], + 230830 => [ + [ + "address" => "萝北县", + "start_year" => 1984, + "end_year" => 1986 + ] + ], + 230831 => [ + [ + "address" => "同江县", + "start_year" => 1984, + "end_year" => 1986 + ] + ], + 230832 => [ + [ + "address" => "饶河县", + "start_year" => 1984, + "end_year" => 1992 + ] + ], + 230833 => [ + [ + "address" => "抚远县", + "start_year" => 1984, + "end_year" => 2015 + ] + ], + 230881 => [ + [ + "address" => "同江市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 230882 => [ + [ + "address" => "富锦市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 230883 => [ + [ + "address" => "抚远市", + "start_year" => 2016, + "end_year" => "" + ] + ], + 230900 => [ + [ + "address" => "七台河市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230902 => [ + [ + "address" => "新兴区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230903 => [ + [ + "address" => "桃山区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230904 => [ + [ + "address" => "茄子河区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 230921 => [ + [ + "address" => "勃利县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 231000 => [ + [ + "address" => "牡丹江市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 231002 => [ + [ + "address" => "东安区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 231003 => [ + [ + "address" => "阳明区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 231004 => [ + [ + "address" => "爱民区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 231005 => [ + [ + "address" => "西安区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 231006 => [ + [ + "address" => "爱民区", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 231007 => [ + [ + "address" => "阳明区", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 231011 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 231020 => [ + [ + "address" => "绥芬河市", + "start_year" => 1984, + "end_year" => 1985 + ] + ], + 231021 => [ + [ + "address" => "宁安县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 231022 => [ + [ + "address" => "海林县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 231023 => [ + [ + "address" => "穆棱县", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 231024 => [ + [ + "address" => "东宁县", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 231025 => [ + [ + "address" => "林口县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 231026 => [ + [ + "address" => "密山县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 231027 => [ + [ + "address" => "虎林县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 231081 => [ + [ + "address" => "绥芬河市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 231083 => [ + [ + "address" => "海林市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 231084 => [ + [ + "address" => "宁安市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 231085 => [ + [ + "address" => "穆棱市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 231086 => [ + [ + "address" => "东宁市", + "start_year" => 2015, + "end_year" => "" + ] + ], + 231100 => [ + [ + "address" => "黑河市", + "start_year" => 1993, + "end_year" => "" + ] + ], + 231101 => [ + [ + "address" => "绥芬河市", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 231102 => [ + [ + "address" => "爱辉区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 231121 => [ + [ + "address" => "嫩江县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 231122 => [ + [ + "address" => "德都县", + "start_year" => 1993, + "end_year" => 1995 + ] + ], + 231123 => [ + [ + "address" => "逊克县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 231124 => [ + [ + "address" => "孙吴县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 231181 => [ + [ + "address" => "北安市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 231182 => [ + [ + "address" => "五大连池市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 231200 => [ + [ + "address" => "绥化市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 231202 => [ + [ + "address" => "北林区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 231221 => [ + [ + "address" => "望奎县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 231222 => [ + [ + "address" => "兰西县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 231223 => [ + [ + "address" => "青冈县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 231224 => [ + [ + "address" => "庆安县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 231225 => [ + [ + "address" => "明水县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 231226 => [ + [ + "address" => "绥棱县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 231281 => [ + [ + "address" => "安达市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 231282 => [ + [ + "address" => "肇东市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 231283 => [ + [ + "address" => "海伦市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 232100 => [ + [ + "address" => "绥化地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "松花江地区", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 232101 => [ + [ + "address" => "双城市", + "start_year" => 1988, + "end_year" => 1995 + ] + ], + 232102 => [ + [ + "address" => "尚志市", + "start_year" => 1988, + "end_year" => 1995 + ] + ], + 232103 => [ + [ + "address" => "五常市", + "start_year" => 1993, + "end_year" => 1995 + ] + ], + 232121 => [ + [ + "address" => "海伦县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "阿城县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232122 => [ + [ + "address" => "肇东县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宾县", + "start_year" => 1982, + "end_year" => 1990 + ] + ], + 232123 => [ + [ + "address" => "绥化县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "呼兰县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232124 => [ + [ + "address" => "安达县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "双城县", + "start_year" => 1982, + "end_year" => 1987 + ] + ], + 232125 => [ + [ + "address" => "望奎县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "五常县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 232126 => [ + [ + "address" => "兰西县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "巴彦县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 232127 => [ + [ + "address" => "青冈县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "木兰县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 232128 => [ + [ + "address" => "肇源县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "通河县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 232129 => [ + [ + "address" => "肇州县", + "start_year" => "", + "end_year" => 1981 ], - 652829 => - [ - - [ - 'address' => '博湖县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "尚志县", + "start_year" => 1982, + "end_year" => 1987 + ] + ], + 232130 => [ + [ + "address" => "庆安县", + "start_year" => "", + "end_year" => 1981 ], - 652900 => - [ - - [ - 'address' => '阿克苏地区', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "方正县", + "start_year" => 1982, + "end_year" => 1990 + ] + ], + 232131 => [ + [ + "address" => "明水县", + "start_year" => "", + "end_year" => 1981 ], - 652901 => [ - - [ - 'address' => '阿克苏市', - 'start_year' => 1983, - 'end_year' => '', - ], - ], - 652921 => + "address" => "延寿县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 232132 => [ + [ + "address" => "绥棱县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 232200 => [ + [ + "address" => "松花江地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "嫩江地区", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232221 => [ [ - - [ - 'address' => '阿克苏县', - 'start_year' => '', - 'end_year' => 1982, - ], - ], - 652922 => + "address" => "五常县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "龙江县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232222 => [ [ - - [ - 'address' => '温宿县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652923 => + "address" => "双城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "讷河县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232223 => [ [ - - [ - 'address' => '库车县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 652924 => + "address" => "巴彦县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "依安县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232224 => [ [ - - [ - 'address' => '沙雅县', - 'start_year' => '', - 'end_year' => '', - ], + "address" => "呼兰县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "泰来县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232225 => [ + [ + "address" => "宾县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "甘南县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232226 => [ + [ + "address" => "阿城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "杜尔伯特蒙古族自治县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232227 => [ + [ + "address" => "尚志县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "富裕县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232228 => [ + [ + "address" => "木兰县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "林甸县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232229 => [ + [ + "address" => "延寿县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "克山县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232230 => [ + [ + "address" => "通河县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "克东县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232231 => [ + [ + "address" => "方正县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "拜泉县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232300 => [ + [ + "address" => "嫩江地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "绥化地区", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 232301 => [ + [ + "address" => "绥化市", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 232302 => [ + [ + "address" => "安达市", + "start_year" => 1984, + "end_year" => 1998 + ] + ], + 232303 => [ + [ + "address" => "肇东市", + "start_year" => 1986, + "end_year" => 1998 + ] + ], + 232304 => [ + [ + "address" => "海伦市", + "start_year" => 1989, + "end_year" => 1998 + ] + ], + 232321 => [ + [ + "address" => "讷河县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "海伦县", + "start_year" => 1982, + "end_year" => 1988 + ] + ], + 232322 => [ + [ + "address" => "拜泉县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "肇东县", + "start_year" => 1982, + "end_year" => 1985 + ] + ], + 232323 => [ + [ + "address" => "龙江县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 232324 => [ + [ + "address" => "依安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "望奎县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 232325 => [ + [ + "address" => "克山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "兰西县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 232326 => [ + [ + "address" => "甘南县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "青冈县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 232327 => [ + [ + "address" => "泰来县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "安达县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232328 => [ + [ + "address" => "克东县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "肇源县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 232329 => [ + [ + "address" => "富裕县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "肇州县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 232330 => [ + [ + "address" => "林甸县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "庆安县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 232331 => [ + [ + "address" => "杜尔伯特蒙古族自治县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "明水县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 232332 => [ + [ + "address" => "绥棱县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 232400 => [ + [ + "address" => "合江地区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 232401 => [ + [ + "address" => "佳木斯市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 232402 => [ + [ + "address" => "七台河市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 232403 => [ + [ + "address" => "永红区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 232404 => [ + [ + "address" => "向阳区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 232405 => [ + [ + "address" => "前进区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 232406 => [ + [ + "address" => "东风区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 232411 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 232421 => [ + [ + "address" => "桦南县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "富锦县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232422 => [ + [ + "address" => "集贤县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "桦南县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232423 => [ + [ + "address" => "宝清县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "依兰县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232424 => [ + [ + "address" => "富锦县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "勃利县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232425 => [ + [ + "address" => "依兰县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "集贤县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232426 => [ + [ + "address" => "勃利县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "桦川县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232427 => [ + [ + "address" => "汤原县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宝清县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232428 => [ + [ + "address" => "桦川县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "汤原县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232429 => [ + [ + "address" => "萝北县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "绥滨县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232430 => [ + [ + "address" => "绥滨县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "萝北县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232431 => [ + [ + "address" => "饶河县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "同江县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232432 => [ + [ + "address" => "同江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "饶河县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 232433 => [ + [ + "address" => "抚远县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 232500 => [ + [ + "address" => "牡丹江地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 232501 => [ + [ + "address" => "牡丹江市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 232502 => [ + [ + "address" => "东凤区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "绥芬河市", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232503 => [ + [ + "address" => "先锋区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "东凤区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232504 => [ + [ + "address" => "爱民区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "先锋区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232505 => [ + [ + "address" => "阳明区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "爱民区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232506 => [ + [ + "address" => "阳明区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232511 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 232521 => [ + [ + "address" => "海林县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宁安县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232522 => [ + [ + "address" => "宁安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "海林县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232523 => [ + [ + "address" => "林口县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "穆棱县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232524 => [ + [ + "address" => "密山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "东宁县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232525 => [ + [ + "address" => "穆棱县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "林口县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232526 => [ + [ + "address" => "虎林县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "鸡东县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232527 => [ + [ + "address" => "鸡东县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "密山县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232528 => [ + [ + "address" => "东宁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "虎林县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232581 => [ + [ + "address" => "绥芬河市", + "start_year" => "", + "end_year" => 1981 + ] + ], + 232600 => [ + [ + "address" => "黑河地区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 232601 => [ + [ + "address" => "黑河市", + "start_year" => "", + "end_year" => 1992 + ] + ], + 232602 => [ + [ + "address" => "北安市", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 232603 => [ + [ + "address" => "五大连池市", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 232621 => [ + [ + "address" => "嫩江县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 232622 => [ + [ + "address" => "北安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "嫩江县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 232623 => [ + [ + "address" => "德都县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 232624 => [ + [ + "address" => "爱辉县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 232625 => [ + [ + "address" => "逊克县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 232626 => [ + [ + "address" => "孙吴县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 232627 => [ + [ + "address" => "通北县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 232700 => [ + [ + "address" => "大兴安岭地区", + "start_year" => "", + "end_year" => "" + ] + ], + 232701 => [ + [ + "address" => "漠河市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 232721 => [ + [ + "address" => "呼玛县", + "start_year" => "", + "end_year" => "" + ] + ], + 232722 => [ + [ + "address" => "塔河县", + "start_year" => 1981, + "end_year" => "" + ] + ], + 232723 => [ + [ + "address" => "漠河县", + "start_year" => 1981, + "end_year" => 2017 + ] + ], + 239001 => [ + [ + "address" => "绥芬河市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 239002 => [ + [ + "address" => "镜泊湖市", + "start_year" => 1986, + "end_year" => 1986 + ], + [ + "address" => "阿城市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 239003 => [ + [ + "address" => "同江市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 239004 => [ + [ + "address" => "富锦市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 239005 => [ + [ + "address" => "铁力市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 239006 => [ + [ + "address" => "密山市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 239007 => [ + [ + "address" => "海林市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 239008 => [ + [ + "address" => "讷河市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 239009 => [ + [ + "address" => "北安市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 239010 => [ + [ + "address" => "五大连池市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 239011 => [ + [ + "address" => "宁安市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 310000 => [ + [ + "address" => "上海市", + "start_year" => "", + "end_year" => "" + ] + ], + 310101 => [ + [ + "address" => "黄浦区", + "start_year" => "", + "end_year" => "" + ] + ], + 310102 => [ + [ + "address" => "南市区", + "start_year" => "", + "end_year" => 1999 + ] + ], + 310103 => [ + [ + "address" => "卢湾区", + "start_year" => "", + "end_year" => 2010 + ] + ], + 310104 => [ + [ + "address" => "徐汇区", + "start_year" => "", + "end_year" => "" + ] + ], + 310105 => [ + [ + "address" => "长宁区", + "start_year" => "", + "end_year" => "" + ] + ], + 310106 => [ + [ + "address" => "静安区", + "start_year" => "", + "end_year" => "" + ] + ], + 310107 => [ + [ + "address" => "普陀区", + "start_year" => "", + "end_year" => "" + ] + ], + 310108 => [ + [ + "address" => "闸北区", + "start_year" => "", + "end_year" => 2014 + ] + ], + 310109 => [ + [ + "address" => "虹口区", + "start_year" => "", + "end_year" => "" + ] + ], + 310110 => [ + [ + "address" => "杨浦区", + "start_year" => "", + "end_year" => "" + ] + ], + 310111 => [ + [ + "address" => "吴淞区", + "start_year" => "", + "end_year" => 1987 + ] + ], + 310112 => [ + [ + "address" => "闵行区", + "start_year" => 1981, + "end_year" => "" + ] + ], + 310113 => [ + [ + "address" => "宝山区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 310114 => [ + [ + "address" => "嘉定区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 310115 => [ + [ + "address" => "浦东新区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 310116 => [ + [ + "address" => "金山区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 310117 => [ + [ + "address" => "松江区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 310118 => [ + [ + "address" => "青浦区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 310119 => [ + [ + "address" => "南汇区", + "start_year" => 2001, + "end_year" => 2008 + ] + ], + 310120 => [ + [ + "address" => "奉贤区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 310151 => [ + [ + "address" => "崇明区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 310201 => [ + [ + "address" => "上海县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 310202 => [ + [ + "address" => "嘉定县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 310203 => [ + [ + "address" => "宝山县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 310204 => [ + [ + "address" => "川沙县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 310205 => [ + [ + "address" => "南汇县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 310206 => [ + [ + "address" => "奉贤县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 310207 => [ + [ + "address" => "松江县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 310208 => [ + [ + "address" => "金山县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 310209 => [ + [ + "address" => "青浦县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 310210 => [ + [ + "address" => "崇明县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 310221 => [ + [ + "address" => "上海县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 310222 => [ + [ + "address" => "嘉定县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 310223 => [ + [ + "address" => "宝山县", + "start_year" => 1982, + "end_year" => 1987 + ] + ], + 310224 => [ + [ + "address" => "川沙县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 310225 => [ + [ + "address" => "南汇县", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 310226 => [ + [ + "address" => "奉贤县", + "start_year" => 1982, + "end_year" => 2000 + ] + ], + 310227 => [ + [ + "address" => "松江县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 310228 => [ + [ + "address" => "金山县", + "start_year" => 1982, + "end_year" => 1996 + ] + ], + 310229 => [ + [ + "address" => "青浦县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 310230 => [ + [ + "address" => "崇明县", + "start_year" => 1982, + "end_year" => 2015 + ] + ], + 320000 => [ + [ + "address" => "江苏省", + "start_year" => "", + "end_year" => "" + ] + ], + 320100 => [ + [ + "address" => "南京市", + "start_year" => "", + "end_year" => "" + ] + ], + 320102 => [ + [ + "address" => "玄武区", + "start_year" => "", + "end_year" => "" + ] + ], + 320103 => [ + [ + "address" => "白下区", + "start_year" => "", + "end_year" => 2012 + ] + ], + 320104 => [ + [ + "address" => "秦淮区", + "start_year" => "", + "end_year" => "" + ] + ], + 320105 => [ + [ + "address" => "建邺区", + "start_year" => "", + "end_year" => "" + ] + ], + 320106 => [ + [ + "address" => "鼓楼区", + "start_year" => "", + "end_year" => "" + ] + ], + 320107 => [ + [ + "address" => "下关区", + "start_year" => "", + "end_year" => 2012 + ] + ], + 320111 => [ + [ + "address" => "浦口区", + "start_year" => "", + "end_year" => "" + ] + ], + 320112 => [ + [ + "address" => "大厂区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 320113 => [ + [ + "address" => "栖霞区", + "start_year" => "", + "end_year" => "" + ] + ], + 320114 => [ + [ + "address" => "雨花区", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "雨花台区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 320115 => [ + [ + "address" => "江宁区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 320116 => [ + [ + "address" => "六合区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 320117 => [ + [ + "address" => "溧水区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 320118 => [ + [ + "address" => "高淳区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 320121 => [ + [ + "address" => "江宁县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 320122 => [ + [ + "address" => "江浦县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 320123 => [ + [ + "address" => "六合县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 320124 => [ + [ + "address" => "溧水县", + "start_year" => 1983, + "end_year" => 2012 + ] + ], + 320125 => [ + [ + "address" => "高淳县", + "start_year" => 1983, + "end_year" => 2012 + ] + ], + 320200 => [ + [ + "address" => "无锡市", + "start_year" => "", + "end_year" => "" + ] + ], + 320202 => [ + [ + "address" => "崇安区", + "start_year" => "", + "end_year" => 2014 + ] + ], + 320203 => [ + [ + "address" => "南长区", + "start_year" => "", + "end_year" => 2014 + ] + ], + 320204 => [ + [ + "address" => "北塘区", + "start_year" => "", + "end_year" => 2014 + ] + ], + 320205 => [ + [ + "address" => "马山区", + "start_year" => 1987, + "end_year" => 1999 + ], + [ + "address" => "锡山区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 320206 => [ + [ + "address" => "惠山区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 320211 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1999 + ], + [ + "address" => "滨湖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 320213 => [ + [ + "address" => "梁溪区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 320214 => [ + [ + "address" => "新吴区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 320221 => [ + [ + "address" => "江阴县", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 320222 => [ + [ + "address" => "无锡县", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 320223 => [ + [ + "address" => "宜兴县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 320281 => [ + [ + "address" => "江阴市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320282 => [ + [ + "address" => "宜兴市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320283 => [ + [ + "address" => "锡山市", + "start_year" => 1995, + "end_year" => 1999 + ] + ], + 320300 => [ + [ + "address" => "徐州市", + "start_year" => "", + "end_year" => "" + ] + ], + 320302 => [ + [ + "address" => "鼓楼区", + "start_year" => "", + "end_year" => "" + ] + ], + 320303 => [ + [ + "address" => "云龙区", + "start_year" => "", + "end_year" => "" + ] + ], + 320304 => [ + [ + "address" => "矿区", + "start_year" => "", + "end_year" => 1994 + ], + [ + "address" => "九里区", + "start_year" => 1995, + "end_year" => 2009 + ] + ], + 320305 => [ + [ + "address" => "贾汪区", + "start_year" => "", + "end_year" => "" + ] + ], + 320311 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1992 + ], + [ + "address" => "泉山区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 320312 => [ + [ + "address" => "铜山区", + "start_year" => 2010, + "end_year" => "" + ] + ], + 320321 => [ + [ + "address" => "丰县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320322 => [ + [ + "address" => "沛县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320323 => [ + [ + "address" => "铜山县", + "start_year" => 1983, + "end_year" => 2009 + ] + ], + 320324 => [ + [ + "address" => "睢宁县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320325 => [ + [ + "address" => "邳县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 320326 => [ + [ + "address" => "新沂县", + "start_year" => 1983, + "end_year" => 1989 + ] + ], + 320381 => [ + [ + "address" => "新沂市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320382 => [ + [ + "address" => "邳州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320400 => [ + [ + "address" => "常州市", + "start_year" => "", + "end_year" => "" + ] + ], + 320402 => [ + [ + "address" => "天宁区", + "start_year" => "", + "end_year" => "" + ] + ], + 320403 => [ + [ + "address" => "广化区", + "start_year" => "", + "end_year" => 1985 + ] + ], + 320404 => [ + [ + "address" => "钟楼区", + "start_year" => "", + "end_year" => "" + ] + ], + 320405 => [ + [ + "address" => "戚墅堰区", + "start_year" => "", + "end_year" => 2014 + ] + ], + 320411 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 2001 + ], + [ + "address" => "新北区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 320412 => [ + [ + "address" => "武进区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 320413 => [ + [ + "address" => "金坛区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 320421 => [ + [ + "address" => "武进县", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 320422 => [ + [ + "address" => "金坛县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 320423 => [ + [ + "address" => "溧阳县", + "start_year" => 1983, + "end_year" => 1989 + ] + ], + 320481 => [ + [ + "address" => "溧阳市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320482 => [ + [ + "address" => "金坛市", + "start_year" => 1995, + "end_year" => 2014 + ] + ], + 320483 => [ + [ + "address" => "武进市", + "start_year" => 1995, + "end_year" => 2001 + ] + ], + 320500 => [ + [ + "address" => "苏州市", + "start_year" => "", + "end_year" => "" + ] + ], + 320502 => [ + [ + "address" => "沧浪区", + "start_year" => "", + "end_year" => 2011 + ] + ], + 320503 => [ + [ + "address" => "平江区", + "start_year" => "", + "end_year" => 2011 + ] + ], + 320504 => [ + [ + "address" => "金阊区", + "start_year" => "", + "end_year" => 2011 + ] + ], + 320505 => [ + [ + "address" => "虎丘区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 320506 => [ + [ + "address" => "吴中区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 320507 => [ + [ + "address" => "相城区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 320508 => [ + [ + "address" => "姑苏区", + "start_year" => 2012, + "end_year" => "" + ] + ], + 320509 => [ + [ + "address" => "吴江区", + "start_year" => 2012, + "end_year" => "" + ] + ], + 320511 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1999 + ] + ], + 320521 => [ + [ + "address" => "沙洲县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 320522 => [ + [ + "address" => "太仓县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 320523 => [ + [ + "address" => "昆山县", + "start_year" => 1983, + "end_year" => 1988 + ] + ], + 320524 => [ + [ + "address" => "吴县", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 320525 => [ + [ + "address" => "吴江县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 320581 => [ + [ + "address" => "常熟市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320582 => [ + [ + "address" => "张家港市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320583 => [ + [ + "address" => "昆山市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320584 => [ + [ + "address" => "吴江市", + "start_year" => 1995, + "end_year" => 2011 + ] + ], + 320585 => [ + [ + "address" => "太仓市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320586 => [ + [ + "address" => "吴县市", + "start_year" => 1995, + "end_year" => 1999 + ] + ], + 320600 => [ + [ + "address" => "南通市", + "start_year" => "", + "end_year" => "" + ] + ], + 320602 => [ + [ + "address" => "城中区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "城区", + "start_year" => 1983, + "end_year" => 1990 + ], + [ + "address" => "崇川区", + "start_year" => 1991, + "end_year" => "" + ] + ], + 320603 => [ + [ + "address" => "港闸区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 320611 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1990 + ], + [ + "address" => "港闸区", + "start_year" => 1991, + "end_year" => "" + ] + ], + 320612 => [ + [ + "address" => "通州区", + "start_year" => 2009, + "end_year" => "" + ] + ], + 320621 => [ + [ + "address" => "海安县", + "start_year" => 1983, + "end_year" => 2017 + ] + ], + 320622 => [ + [ + "address" => "如皋县", + "start_year" => 1983, + "end_year" => 1990 + ] + ], + 320623 => [ + [ + "address" => "如东县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320624 => [ + [ + "address" => "南通县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 320625 => [ + [ + "address" => "海门县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 320626 => [ + [ + "address" => "启东县", + "start_year" => 1983, + "end_year" => 1988 + ] + ], + 320681 => [ + [ + "address" => "启东市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320682 => [ + [ + "address" => "如皋市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320683 => [ + [ + "address" => "通州市", + "start_year" => 1995, + "end_year" => 2008 + ] + ], + 320684 => [ + [ + "address" => "海门市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320685 => [ + [ + "address" => "海安市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 320700 => [ + [ + "address" => "连云港市", + "start_year" => "", + "end_year" => "" + ] + ], + 320702 => [ + [ + "address" => "连云港区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "新海区", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 320703 => [ + [ + "address" => "盐区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "连云区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320704 => [ + [ + "address" => "新浦区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "云台区", + "start_year" => 1983, + "end_year" => 2000 + ] + ], + 320705 => [ + [ + "address" => "海州区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "新浦区", + "start_year" => 1986, + "end_year" => 2013 + ] + ], + 320706 => [ + [ + "address" => "海州区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 320707 => [ + [ + "address" => "赣榆区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 320711 => [ + [ + "address" => "郊区", + "start_year" => 1981, + "end_year" => 1982 + ] + ], + 320721 => [ + [ + "address" => "赣榆县", + "start_year" => 1983, + "end_year" => 2013 + ] + ], + 320722 => [ + [ + "address" => "东海县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320723 => [ + [ + "address" => "灌云县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320724 => [ + [ + "address" => "灌南县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 320800 => [ + [ + "address" => "淮阴市", + "start_year" => 1983, + "end_year" => 1999 + ], + [ + "address" => "淮安市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 320802 => [ + [ + "address" => "清河区", + "start_year" => 1983, + "end_year" => 2015 + ] + ], + 320803 => [ + [ + "address" => "楚州区", + "start_year" => 2000, + "end_year" => 2010 + ], + [ + "address" => "淮安区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 320804 => [ + [ + "address" => "淮阴区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 320811 => [ + [ + "address" => "清浦区", + "start_year" => 1983, + "end_year" => 2015 + ] + ], + 320812 => [ + [ + "address" => "清江浦区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 320813 => [ + [ + "address" => "洪泽区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 320821 => [ + [ + "address" => "淮阴县", + "start_year" => 1983, + "end_year" => 1999 + ] + ], + 320822 => [ + [ + "address" => "灌南县", + "start_year" => 1983, + "end_year" => 1995 + ] + ], + 320823 => [ + [ + "address" => "沭阳县", + "start_year" => 1983, + "end_year" => 1995 + ] + ], + 320824 => [ + [ + "address" => "宿迁县", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 320825 => [ + [ + "address" => "泗阳县", + "start_year" => 1983, + "end_year" => 1995 + ] + ], + 320826 => [ + [ + "address" => "涟水县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320827 => [ + [ + "address" => "泗洪县", + "start_year" => 1983, + "end_year" => 1995 + ] + ], + 320828 => [ + [ + "address" => "淮安县", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 320829 => [ + [ + "address" => "洪泽县", + "start_year" => 1983, + "end_year" => 2015 + ] + ], + 320830 => [ + [ + "address" => "盱眙县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320831 => [ + [ + "address" => "金湖县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320881 => [ + [ + "address" => "宿迁市", + "start_year" => 1995, + "end_year" => 1995 + ] + ], + 320882 => [ + [ + "address" => "淮安市", + "start_year" => 1995, + "end_year" => 1999 + ] + ], + 320900 => [ + [ + "address" => "盐城市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320902 => [ + [ + "address" => "城区", + "start_year" => 1983, + "end_year" => 2002 + ], + [ + "address" => "亭湖区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 320903 => [ + [ + "address" => "盐都区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 320904 => [ + [ + "address" => "大丰区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 320911 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1995 + ] + ], + 320921 => [ + [ + "address" => "响水县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320922 => [ + [ + "address" => "滨海县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320923 => [ + [ + "address" => "阜宁县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320924 => [ + [ + "address" => "射阳县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320925 => [ + [ + "address" => "建湖县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320926 => [ + [ + "address" => "大丰县", + "start_year" => 1983, + "end_year" => 1995 + ] + ], + 320927 => [ + [ + "address" => "东台县", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 320928 => [ + [ + "address" => "盐都县", + "start_year" => 1996, + "end_year" => 2002 + ] + ], + 320981 => [ + [ + "address" => "东台市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 320982 => [ + [ + "address" => "大丰市", + "start_year" => 1996, + "end_year" => 2014 + ] + ], + 321000 => [ + [ + "address" => "扬州市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 321002 => [ + [ + "address" => "广陵区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 321003 => [ + [ + "address" => "邗江区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 321011 => [ + [ + "address" => "郊区", + "start_year" => 1984, + "end_year" => 2001 + ], + [ + "address" => "维扬区", + "start_year" => 2002, + "end_year" => 2010 + ] + ], + 321012 => [ + [ + "address" => "江都区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 321021 => [ + [ + "address" => "兴化县", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 321022 => [ + [ + "address" => "高邮县", + "start_year" => 1983, + "end_year" => 1990 + ] + ], + 321023 => [ + [ + "address" => "宝应县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 321024 => [ + [ + "address" => "靖江县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 321025 => [ + [ + "address" => "泰兴县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 321026 => [ + [ + "address" => "江都县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 321027 => [ + [ + "address" => "邗江县", + "start_year" => 1983, + "end_year" => 1999 + ] + ], + 321028 => [ + [ + "address" => "泰县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 321029 => [ + [ + "address" => "仪征县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 321081 => [ + [ + "address" => "仪征市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 321082 => [ + [ + "address" => "泰州市", + "start_year" => 1995, + "end_year" => 1995 + ] + ], + 321083 => [ + [ + "address" => "兴化市", + "start_year" => 1995, + "end_year" => 1995 + ] + ], + 321084 => [ + [ + "address" => "高邮市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 321085 => [ + [ + "address" => "靖江市", + "start_year" => 1995, + "end_year" => 1995 + ] + ], + 321086 => [ + [ + "address" => "泰兴市", + "start_year" => 1995, + "end_year" => 1995 + ] + ], + 321087 => [ + [ + "address" => "姜堰市", + "start_year" => 1995, + "end_year" => 1995 + ] + ], + 321088 => [ + [ + "address" => "江都市", + "start_year" => 1995, + "end_year" => 2010 + ] + ], + 321100 => [ + [ + "address" => "镇江市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 321102 => [ + [ + "address" => "城区", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "京口区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 321111 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "润州区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 321112 => [ + [ + "address" => "丹徒区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 321121 => [ + [ + "address" => "丹徒县", + "start_year" => 1983, + "end_year" => 2001 + ] + ], + 321122 => [ + [ + "address" => "丹阳县", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 321123 => [ + [ + "address" => "句容县", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 321124 => [ + [ + "address" => "扬中县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 321181 => [ + [ + "address" => "丹阳市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 321182 => [ + [ + "address" => "扬中市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 321183 => [ + [ + "address" => "句容市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 321200 => [ + [ + "address" => "泰州市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 321201 => [ + [ + "address" => "泰州市", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 321202 => [ + [ + "address" => "海陵区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 321203 => [ + [ + "address" => "高港区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 321204 => [ + [ + "address" => "姜堰区", + "start_year" => 2012, + "end_year" => "" + ] + ], + 321281 => [ + [ + "address" => "兴化市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 321282 => [ + [ + "address" => "靖江市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 321283 => [ + [ + "address" => "泰兴市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 321284 => [ + [ + "address" => "姜堰市", + "start_year" => 1996, + "end_year" => 2011 + ] + ], + 321300 => [ + [ + "address" => "宿迁市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 321301 => [ + [ + "address" => "常熟市", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 321302 => [ + [ + "address" => "宿城区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 321311 => [ + [ + "address" => "宿豫区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 321321 => [ + [ + "address" => "宿豫县", + "start_year" => 1996, + "end_year" => 2003 + ] + ], + 321322 => [ + [ + "address" => "沭阳县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 321323 => [ + [ + "address" => "泗阳县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 321324 => [ + [ + "address" => "泗洪县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 322100 => [ + [ + "address" => "徐州地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322121 => [ + [ + "address" => "丰县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322122 => [ + [ + "address" => "沛县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322123 => [ + [ + "address" => "铜山县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322124 => [ + [ + "address" => "睢宁县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322125 => [ + [ + "address" => "邳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322126 => [ + [ + "address" => "新沂县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322127 => [ + [ + "address" => "东海县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322128 => [ + [ + "address" => "赣榆县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322200 => [ + [ + "address" => "淮阴地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322201 => [ + [ + "address" => "清江市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322221 => [ + [ + "address" => "淮阴县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322222 => [ + [ + "address" => "灌云县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322223 => [ + [ + "address" => "灌南县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322224 => [ + [ + "address" => "沭阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322225 => [ + [ + "address" => "宿迁县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322226 => [ + [ + "address" => "泗阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322227 => [ + [ + "address" => "涟水县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322228 => [ + [ + "address" => "泗洪县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322229 => [ + [ + "address" => "淮安县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322230 => [ + [ + "address" => "洪泽县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322231 => [ + [ + "address" => "盱眙县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322232 => [ + [ + "address" => "金湖县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322300 => [ + [ + "address" => "盐城地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322321 => [ + [ + "address" => "响水县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322322 => [ + [ + "address" => "滨海县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322323 => [ + [ + "address" => "阜宁县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322324 => [ + [ + "address" => "射阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322325 => [ + [ + "address" => "建湖县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322326 => [ + [ + "address" => "盐城县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322327 => [ + [ + "address" => "大丰县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322328 => [ + [ + "address" => "东台县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322400 => [ + [ + "address" => "扬州地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322401 => [ + [ + "address" => "扬州市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322402 => [ + [ + "address" => "泰州市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322421 => [ + [ + "address" => "兴化县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322422 => [ + [ + "address" => "高邮县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322423 => [ + [ + "address" => "宝应县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322424 => [ + [ + "address" => "靖江县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322425 => [ + [ + "address" => "泰兴县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322426 => [ + [ + "address" => "江都县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322427 => [ + [ + "address" => "邗江县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322428 => [ + [ + "address" => "泰县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322429 => [ + [ + "address" => "仪征县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322500 => [ + [ + "address" => "南通地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322521 => [ + [ + "address" => "海安县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322522 => [ + [ + "address" => "如皋县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322523 => [ + [ + "address" => "如东县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322524 => [ + [ + "address" => "南通县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322525 => [ + [ + "address" => "海门县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322526 => [ + [ + "address" => "启东县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322600 => [ + [ + "address" => "镇江地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322601 => [ + [ + "address" => "镇江市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322621 => [ + [ + "address" => "丹徒县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322622 => [ + [ + "address" => "武进县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322623 => [ + [ + "address" => "丹阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322624 => [ + [ + "address" => "句容县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322625 => [ + [ + "address" => "金坛县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322626 => [ + [ + "address" => "溧水县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322627 => [ + [ + "address" => "高淳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322628 => [ + [ + "address" => "溧阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322629 => [ + [ + "address" => "宜兴县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322630 => [ + [ + "address" => "扬中县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322700 => [ + [ + "address" => "苏州地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322721 => [ + [ + "address" => "江阴县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322722 => [ + [ + "address" => "无锡县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322723 => [ + [ + "address" => "沙洲县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322724 => [ + [ + "address" => "常熟县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322725 => [ + [ + "address" => "太仓县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322726 => [ + [ + "address" => "昆山县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322727 => [ + [ + "address" => "吴县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 322728 => [ + [ + "address" => "吴江县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 329001 => [ + [ + "address" => "泰州市", + "start_year" => 1984, + "end_year" => 1994 + ] + ], + 329002 => [ + [ + "address" => "仪征市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 329003 => [ + [ + "address" => "常熟市", + "start_year" => 1984, + "end_year" => 1994 + ] + ], + 329004 => [ + [ + "address" => "张家港市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 329005 => [ + [ + "address" => "江阴市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 329006 => [ + [ + "address" => "宿迁市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 329007 => [ + [ + "address" => "丹阳市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 329008 => [ + [ + "address" => "东台市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 329009 => [ + [ + "address" => "兴化市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 329010 => [ + [ + "address" => "淮安市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 329011 => [ + [ + "address" => "宜兴市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 329012 => [ + [ + "address" => "昆山市", + "start_year" => 1989, + "end_year" => 1994 + ] + ], + 329013 => [ + [ + "address" => "启东市", + "start_year" => 1989, + "end_year" => 1994 + ] + ], + 329014 => [ + [ + "address" => "新沂市", + "start_year" => 1990, + "end_year" => 1994 + ] + ], + 329015 => [ + [ + "address" => "溧阳市", + "start_year" => 1990, + "end_year" => 1994 + ] + ], + 329016 => [ + [ + "address" => "如皋市", + "start_year" => 1991, + "end_year" => 1994 + ] + ], + 329017 => [ + [ + "address" => "高邮市", + "start_year" => 1991, + "end_year" => 1994 + ] + ], + 329018 => [ + [ + "address" => "吴江市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 329019 => [ + [ + "address" => "邳州市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 329020 => [ + [ + "address" => "泰兴市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 329021 => [ + [ + "address" => "通州市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 329022 => [ + [ + "address" => "太仓市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 329023 => [ + [ + "address" => "靖江市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 329024 => [ + [ + "address" => "金坛市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 329025 => [ + [ + "address" => "江都市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 329026 => [ + [ + "address" => "海门市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 329027 => [ + [ + "address" => "扬中市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 329028 => [ + [ + "address" => "姜堰市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 330000 => [ + [ + "address" => "浙江省", + "start_year" => "", + "end_year" => "" + ] + ], + 330100 => [ + [ + "address" => "杭州市", + "start_year" => "", + "end_year" => "" + ] + ], + 330102 => [ + [ + "address" => "上城区", + "start_year" => "", + "end_year" => "" + ] + ], + 330103 => [ + [ + "address" => "下城区", + "start_year" => "", + "end_year" => "" + ] + ], + 330104 => [ + [ + "address" => "江干区", + "start_year" => "", + "end_year" => "" + ] + ], + 330105 => [ + [ + "address" => "拱墅区", + "start_year" => "", + "end_year" => "" + ] + ], + 330106 => [ + [ + "address" => "西湖区", + "start_year" => "", + "end_year" => "" + ] + ], + 330107 => [ + [ + "address" => "半山区", + "start_year" => "", + "end_year" => 1989 + ] + ], + 330108 => [ + [ + "address" => "滨江区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 330109 => [ + [ + "address" => "萧山区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 330110 => [ + [ + "address" => "余杭区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 330111 => [ + [ + "address" => "富阳区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 330112 => [ + [ + "address" => "临安区", + "start_year" => 2017, + "end_year" => "" + ] + ], + 330121 => [ + [ + "address" => "萧山县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 330122 => [ + [ + "address" => "桐庐县", + "start_year" => "", + "end_year" => "" + ] + ], + 330123 => [ + [ + "address" => "富阳县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 330124 => [ + [ + "address" => "临安县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 330125 => [ + [ + "address" => "余杭县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 330126 => [ + [ + "address" => "建德县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 330127 => [ + [ + "address" => "淳安县", + "start_year" => "", + "end_year" => "" + ] + ], + 330181 => [ + [ + "address" => "萧山市", + "start_year" => 1995, + "end_year" => 2000 + ] + ], + 330182 => [ + [ + "address" => "建德市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330183 => [ + [ + "address" => "富阳市", + "start_year" => 1995, + "end_year" => 2013 + ] + ], + 330184 => [ + [ + "address" => "余杭市", + "start_year" => 1995, + "end_year" => 2000 + ] + ], + 330185 => [ + [ + "address" => "临安市", + "start_year" => 1996, + "end_year" => 2016 + ] + ], + 330200 => [ + [ + "address" => "宁波市", + "start_year" => "", + "end_year" => "" + ] + ], + 330202 => [ + [ + "address" => "镇明区", + "start_year" => "", + "end_year" => 1984 + ] + ], + 330203 => [ + [ + "address" => "海曙区", + "start_year" => "", + "end_year" => "" + ] + ], + 330204 => [ + [ + "address" => "江东区", + "start_year" => "", + "end_year" => 2015 + ] + ], + 330205 => [ + [ + "address" => "江北区", + "start_year" => "", + "end_year" => "" + ] + ], + 330206 => [ + [ + "address" => "滨海区", + "start_year" => 1985, + "end_year" => 1986 + ], + [ + "address" => "北仑区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 330211 => [ + [ + "address" => "镇海区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330212 => [ + [ + "address" => "鄞州区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 330213 => [ + [ + "address" => "奉化区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 330219 => [ + [ + "address" => "余姚市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 330221 => [ + [ + "address" => "镇海县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 330222 => [ + [ + "address" => "慈溪县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 330223 => [ + [ + "address" => "余姚县", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 330224 => [ + [ + "address" => "奉化县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 330225 => [ + [ + "address" => "象山县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330226 => [ + [ + "address" => "宁海县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330227 => [ + [ + "address" => "鄞县", + "start_year" => 1983, + "end_year" => 2001 + ] + ], + 330281 => [ + [ + "address" => "余姚市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330282 => [ + [ + "address" => "慈溪市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330283 => [ + [ + "address" => "奉化市", + "start_year" => 1995, + "end_year" => 2015 + ] + ], + 330300 => [ + [ + "address" => "温州市", + "start_year" => "", + "end_year" => "" + ] + ], + 330301 => [ + [ + "address" => "东城区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 330302 => [ + [ + "address" => "南城区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "城区", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "鹿城区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 330303 => [ + [ + "address" => "西城区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "龙湾区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 330304 => [ + [ + "address" => "瓯海区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 330305 => [ + [ + "address" => "洞头区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 330321 => [ + [ + "address" => "洞头县", + "start_year" => 1981, + "end_year" => 1981 + ], + [ + "address" => "瓯海县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 330322 => [ + [ + "address" => "永嘉县", + "start_year" => 1981, + "end_year" => 1981 + ], + [ + "address" => "洞头县", + "start_year" => 1982, + "end_year" => 2014 + ] + ], + 330323 => [ + [ + "address" => "瑞安县", + "start_year" => 1981, + "end_year" => 1981 + ], + [ + "address" => "乐清县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 330324 => [ + [ + "address" => "文成县", + "start_year" => 1981, + "end_year" => 1981 + ], + [ + "address" => "永嘉县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 330325 => [ + [ + "address" => "平阳县", + "start_year" => 1981, + "end_year" => 1981 + ], + [ + "address" => "瑞安县", + "start_year" => 1982, + "end_year" => 1986 + ] + ], + 330326 => [ + [ + "address" => "乐清县", + "start_year" => 1981, + "end_year" => 1981 + ], + [ + "address" => "平阳县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 330327 => [ + [ + "address" => "泰顺县", + "start_year" => 1981, + "end_year" => 1981 + ], + [ + "address" => "苍南县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 330328 => [ + [ + "address" => "瓯海县", + "start_year" => 1981, + "end_year" => 1981 + ], + [ + "address" => "文成县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 330329 => [ + [ + "address" => "苍南县", + "start_year" => 1981, + "end_year" => 1981 + ], + [ + "address" => "泰顺县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 330381 => [ + [ + "address" => "瑞安市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330382 => [ + [ + "address" => "乐清市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330400 => [ + [ + "address" => "嘉兴市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330402 => [ + [ + "address" => "城区", + "start_year" => 1983, + "end_year" => 1992 + ], + [ + "address" => "秀城区", + "start_year" => 1993, + "end_year" => 2004 + ], + [ + "address" => "南湖区", + "start_year" => 2005, + "end_year" => "" + ] + ], + 330411 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1998 + ], + [ + "address" => "秀洲区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 330421 => [ + [ + "address" => "嘉善县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330422 => [ + [ + "address" => "平湖县", + "start_year" => 1983, + "end_year" => 1990 + ] + ], + 330423 => [ + [ + "address" => "海宁县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 330424 => [ + [ + "address" => "海盐县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330425 => [ + [ + "address" => "桐乡县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 330481 => [ + [ + "address" => "海宁市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330482 => [ + [ + "address" => "平湖市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330483 => [ + [ + "address" => "桐乡市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330500 => [ + [ + "address" => "湖州市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330502 => [ + [ + "address" => "城区", + "start_year" => 1983, + "end_year" => 1987 + ], + [ + "address" => "吴兴区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 330503 => [ + [ + "address" => "南浔区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 330511 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 330521 => [ + [ + "address" => "德清县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330522 => [ + [ + "address" => "长兴县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330523 => [ + [ + "address" => "安吉县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330600 => [ + [ + "address" => "绍兴市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330602 => [ + [ + "address" => "越城区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330603 => [ + [ + "address" => "柯桥区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 330604 => [ + [ + "address" => "上虞区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 330621 => [ + [ + "address" => "绍兴县", + "start_year" => 1983, + "end_year" => 2012 + ] + ], + 330622 => [ + [ + "address" => "上虞县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 330623 => [ + [ + "address" => "嵊县", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 330624 => [ + [ + "address" => "新昌县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330625 => [ + [ + "address" => "诸暨县", + "start_year" => 1983, + "end_year" => 1988 + ] + ], + 330681 => [ + [ + "address" => "诸暨市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330682 => [ + [ + "address" => "上虞市", + "start_year" => 1995, + "end_year" => 2012 + ] + ], + 330683 => [ + [ + "address" => "嵊州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330700 => [ + [ + "address" => "金华市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330701 => [ + [ + "address" => "兰溪市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 330702 => [ + [ + "address" => "婺城区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330703 => [ + [ + "address" => "金东区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 330721 => [ + [ + "address" => "金华县", + "start_year" => 1985, + "end_year" => 1999 + ] + ], + 330722 => [ + [ + "address" => "永康县", + "start_year" => 1985, + "end_year" => 1991 + ] + ], + 330723 => [ + [ + "address" => "武义县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330724 => [ + [ + "address" => "东阳县", + "start_year" => 1985, + "end_year" => 1987 + ] + ], + 330725 => [ + [ + "address" => "义乌县", + "start_year" => 1985, + "end_year" => 1987 + ] + ], + 330726 => [ + [ + "address" => "浦江县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330727 => [ + [ + "address" => "磐安县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330781 => [ + [ + "address" => "兰溪市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330782 => [ + [ + "address" => "义乌市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330783 => [ + [ + "address" => "东阳市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330784 => [ + [ + "address" => "永康市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330800 => [ + [ + "address" => "衢州市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330802 => [ + [ + "address" => "柯城区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330803 => [ + [ + "address" => "衢江区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 330821 => [ + [ + "address" => "衢县", + "start_year" => 1985, + "end_year" => 2000 + ] + ], + 330822 => [ + [ + "address" => "常山县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330823 => [ + [ + "address" => "江山县", + "start_year" => 1985, + "end_year" => 1986 + ] + ], + 330824 => [ + [ + "address" => "开化县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330825 => [ + [ + "address" => "龙游县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330881 => [ + [ + "address" => "江山市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 330900 => [ + [ + "address" => "舟山市", + "start_year" => 1987, + "end_year" => "" + ] + ], + 330902 => [ + [ + "address" => "定海区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 330903 => [ + [ + "address" => "普陀区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 330921 => [ + [ + "address" => "岱山县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 330922 => [ + [ + "address" => "嵊泗县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 331000 => [ + [ + "address" => "台州市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 331002 => [ + [ + "address" => "椒江区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 331003 => [ + [ + "address" => "黄岩区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 331004 => [ + [ + "address" => "路桥区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 331021 => [ + [ + "address" => "玉环县", + "start_year" => 1994, + "end_year" => 2016 + ] + ], + 331022 => [ + [ + "address" => "三门县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 331023 => [ + [ + "address" => "天台县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 331024 => [ + [ + "address" => "仙居县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 331081 => [ + [ + "address" => "温岭市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 331082 => [ + [ + "address" => "临海市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 331083 => [ + [ + "address" => "玉环市", + "start_year" => 2017, + "end_year" => "" + ] + ], + 331100 => [ + [ + "address" => "丽水市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 331102 => [ + [ + "address" => "莲都区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 331121 => [ + [ + "address" => "青田县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 331122 => [ + [ + "address" => "缙云县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 331123 => [ + [ + "address" => "遂昌县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 331124 => [ + [ + "address" => "松阳县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 331125 => [ + [ + "address" => "云和县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 331126 => [ + [ + "address" => "庆元县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 331127 => [ + [ + "address" => "景宁畲族自治县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 331181 => [ + [ + "address" => "龙泉市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 332100 => [ + [ + "address" => "嘉兴地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332101 => [ + [ + "address" => "湖州市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332102 => [ + [ + "address" => "嘉兴市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332121 => [ + [ + "address" => "嘉兴县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "嘉善县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332122 => [ + [ + "address" => "嘉善县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "平湖县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332123 => [ + [ + "address" => "平湖县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "海宁县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332124 => [ + [ + "address" => "海宁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "海盐县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332125 => [ + [ + "address" => "海盐县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "桐乡县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332126 => [ + [ + "address" => "桐乡县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "德清县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332127 => [ + [ + "address" => "德清县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "长兴县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332128 => [ + [ + "address" => "吴兴县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "安吉县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332129 => [ + [ + "address" => "长兴县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332130 => [ + [ + "address" => "安吉县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332200 => [ + [ + "address" => "宁波地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332221 => [ + [ + "address" => "慈溪县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332222 => [ + [ + "address" => "余姚县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332223 => [ + [ + "address" => "奉化县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332224 => [ + [ + "address" => "象山县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332225 => [ + [ + "address" => "宁海县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332226 => [ + [ + "address" => "鄞县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332227 => [ + [ + "address" => "镇海县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332300 => [ + [ + "address" => "绍兴地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332301 => [ + [ + "address" => "绍兴市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 332321 => [ + [ + "address" => "绍兴县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "上虞县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332322 => [ + [ + "address" => "上虞县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "嵊县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332323 => [ + [ + "address" => "嵊县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "新昌县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332324 => [ + [ + "address" => "新昌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "诸暨县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 332325 => [ + [ + "address" => "诸暨县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332400 => [ + [ + "address" => "温州地区", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "金华地区", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332401 => [ + [ + "address" => "金华市", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332402 => [ + [ + "address" => "衢州市", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332421 => [ + [ + "address" => "洞头县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "兰溪县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332422 => [ + [ + "address" => "永嘉县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "永康县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332423 => [ + [ + "address" => "瑞安县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "武义县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332424 => [ + [ + "address" => "文成县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "东阳县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332425 => [ + [ + "address" => "平阳县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "义乌县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332426 => [ + [ + "address" => "乐清县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "浦江县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332427 => [ + [ + "address" => "泰顺县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "常山县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332428 => [ + [ + "address" => "江山县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332429 => [ + [ + "address" => "开化县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 332430 => [ + [ + "address" => "龙游县", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 332431 => [ + [ + "address" => "磐安县", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 332500 => [ + [ + "address" => "金华地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "丽水地区", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 332501 => [ + [ + "address" => "金华市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "丽水市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 332502 => [ + [ + "address" => "衢州市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "龙泉市", + "start_year" => 1990, + "end_year" => 1994 + ] + ], + 332521 => [ + [ + "address" => "金华县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "丽水县", + "start_year" => 1982, + "end_year" => 1985 + ] + ], + 332522 => [ + [ + "address" => "兰溪县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "青田县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 332523 => [ + [ + "address" => "永康县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "云和县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 332524 => [ + [ + "address" => "武义县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "龙泉县", + "start_year" => 1982, + "end_year" => 1989 + ] + ], + 332525 => [ + [ + "address" => "东阳县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "庆元县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 332526 => [ + [ + "address" => "义乌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "缙云县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 332527 => [ + [ + "address" => "浦江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "遂昌县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 332528 => [ + [ + "address" => "衢县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "松阳县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 332529 => [ + [ + "address" => "常山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "景宁畲族自治县", + "start_year" => 1984, + "end_year" => 1999 + ] + ], + 332530 => [ + [ + "address" => "江山县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332531 => [ + [ + "address" => "开化县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332581 => [ + [ + "address" => "龙泉市", + "start_year" => 1995, + "end_year" => 1999 + ] + ], + 332582 => [ + [ + "address" => "丽水市", + "start_year" => 1995, + "end_year" => 1999 + ] + ], + 332600 => [ + [ + "address" => "丽水地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "台州地区", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 332601 => [ + [ + "address" => "椒江市", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 332602 => [ + [ + "address" => "临海市", + "start_year" => 1986, + "end_year" => 1993 + ] + ], + 332603 => [ + [ + "address" => "黄岩市", + "start_year" => 1989, + "end_year" => 1993 + ] + ], + 332621 => [ + [ + "address" => "丽水县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "临海县", + "start_year" => 1982, + "end_year" => 1985 + ] + ], + 332622 => [ + [ + "address" => "青田县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "黄岩县", + "start_year" => 1982, + "end_year" => 1988 + ] + ], + 332623 => [ + [ + "address" => "云和县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "温岭县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 332624 => [ + [ + "address" => "龙泉县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "仙居县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 332625 => [ + [ + "address" => "庆元县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "天台县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 332626 => [ + [ + "address" => "缙云县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "三门县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 332627 => [ + [ + "address" => "遂昌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "玉环县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 332700 => [ + [ + "address" => "台州地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "舟山地区", + "start_year" => 1982, + "end_year" => 1986 + ] + ], + 332701 => [ + [ + "address" => "椒江市", + "start_year" => 1981, + "end_year" => 1981 + ] + ], + 332721 => [ + [ + "address" => "临海县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "定海县", + "start_year" => 1982, + "end_year" => 1986 + ] + ], + 332722 => [ + [ + "address" => "黄岩县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "普陀县", + "start_year" => 1982, + "end_year" => 1986 + ] + ], + 332723 => [ + [ + "address" => "温岭县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "岱山县", + "start_year" => 1982, + "end_year" => 1986 + ] + ], + 332724 => [ + [ + "address" => "仙居县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "嵊泗县", + "start_year" => 1982, + "end_year" => 1986 + ] + ], + 332725 => [ + [ + "address" => "天台县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332726 => [ + [ + "address" => "三门县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332727 => [ + [ + "address" => "玉环县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332800 => [ + [ + "address" => "舟山地区", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332821 => [ + [ + "address" => "定海县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332822 => [ + [ + "address" => "普陀县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332823 => [ + [ + "address" => "岱山县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 332824 => [ + [ + "address" => "嵊泗县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 339001 => [ + [ + "address" => "余姚市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 339002 => [ + [ + "address" => "海宁市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 339003 => [ + [ + "address" => "兰溪市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 339004 => [ + [ + "address" => "瑞安市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 339005 => [ + [ + "address" => "萧山市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 339006 => [ + [ + "address" => "江山市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 339007 => [ + [ + "address" => "安徽省", + "start_year" => 1987, + "end_year" => 1987 + ], + [ + "address" => "义乌市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 339008 => [ + [ + "address" => "合肥市", + "start_year" => 1987, + "end_year" => 1987 + ], + [ + "address" => "东阳市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 339009 => [ + [ + "address" => "慈溪市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 339010 => [ + [ + "address" => "奉化市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 339011 => [ + [ + "address" => "诸暨市", + "start_year" => 1989, + "end_year" => 1994 + ] + ], + 339012 => [ + [ + "address" => "平湖市", + "start_year" => 1991, + "end_year" => 1994 + ] + ], + 339013 => [ + [ + "address" => "建德市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 339014 => [ + [ + "address" => "永康市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 339015 => [ + [ + "address" => "上虞市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 339016 => [ + [ + "address" => "桐乡市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 339017 => [ + [ + "address" => "乐清市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 339018 => [ + [ + "address" => "临海市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 339019 => [ + [ + "address" => "富阳市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 339020 => [ + [ + "address" => "温岭市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 339021 => [ + [ + "address" => "余杭市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 340000 => [ + [ + "address" => "安徽省", + "start_year" => "", + "end_year" => "" + ] + ], + 340100 => [ + [ + "address" => "合肥市", + "start_year" => "", + "end_year" => "" + ] + ], + 340102 => [ + [ + "address" => "东市区", + "start_year" => "", + "end_year" => 2001 + ], + [ + "address" => "瑶海区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 340103 => [ + [ + "address" => "中市区", + "start_year" => "", + "end_year" => 2001 + ], + [ + "address" => "庐阳区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 340104 => [ + [ + "address" => "西市区", + "start_year" => "", + "end_year" => 2001 + ], + [ + "address" => "蜀山区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 340111 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 2001 + ], + [ + "address" => "包河区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 340121 => [ + [ + "address" => "长丰县", + "start_year" => "", + "end_year" => "" + ] + ], + 340122 => [ + [ + "address" => "肥东县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340123 => [ + [ + "address" => "肥西县", + "start_year" => "", + "end_year" => "" + ] + ], + 340124 => [ + [ + "address" => "庐江县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 340181 => [ + [ + "address" => "巢湖市", + "start_year" => 2011, + "end_year" => "" + ] + ], + 340200 => [ + [ + "address" => "芜湖市", + "start_year" => "", + "end_year" => "" + ] + ], + 340202 => [ + [ + "address" => "镜湖区", + "start_year" => "", + "end_year" => "" + ] + ], + 340203 => [ + [ + "address" => "马塘区", + "start_year" => "", + "end_year" => 2004 + ], + [ + "address" => "弋江区", + "start_year" => 2005, + "end_year" => "" + ] + ], + 340204 => [ + [ + "address" => "新芜区", + "start_year" => "", + "end_year" => 2004 + ] + ], + 340205 => [ + [ + "address" => "裕溪口区", + "start_year" => "", + "end_year" => 1989 + ], + [ + "address" => "鸠江区", + "start_year" => 1990, + "end_year" => 2004 + ] + ], + 340206 => [ + [ + "address" => "四褐山区", + "start_year" => "", + "end_year" => 1989 + ] + ], + 340207 => [ + [ + "address" => "鸠江区", + "start_year" => 2005, + "end_year" => "" + ] + ], + 340208 => [ + [ + "address" => "三山区", + "start_year" => 2005, + "end_year" => "" + ] + ], + 340211 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1989 + ] + ], + 340221 => [ + [ + "address" => "芜湖县", + "start_year" => "", + "end_year" => "" + ] + ], + 340222 => [ + [ + "address" => "繁昌县", + "start_year" => "", + "end_year" => "" + ] + ], + 340223 => [ + [ + "address" => "南陵县", + "start_year" => "", + "end_year" => "" + ] + ], + 340224 => [ + [ + "address" => "青阳县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 340225 => [ + [ + "address" => "无为县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 340300 => [ + [ + "address" => "蚌埠市", + "start_year" => "", + "end_year" => "" + ] + ], + 340302 => [ + [ + "address" => "东市区", + "start_year" => "", + "end_year" => 2003 + ], + [ + "address" => "龙子湖区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 340303 => [ + [ + "address" => "中市区", + "start_year" => "", + "end_year" => 2003 + ], + [ + "address" => "蚌山区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 340304 => [ + [ + "address" => "西市区", + "start_year" => "", + "end_year" => 2003 + ], + [ + "address" => "禹会区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 340311 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 2003 + ], + [ + "address" => "淮上区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 340321 => [ + [ + "address" => "怀远县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340322 => [ + [ + "address" => "五河县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340323 => [ + [ + "address" => "固镇县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340400 => [ + [ + "address" => "淮南市", + "start_year" => "", + "end_year" => "" + ] + ], + 340402 => [ + [ + "address" => "大通区", + "start_year" => "", + "end_year" => "" + ] + ], + 340403 => [ + [ + "address" => "田家庵区", + "start_year" => "", + "end_year" => "" + ] + ], + 340404 => [ + [ + "address" => "谢家集区", + "start_year" => "", + "end_year" => "" + ] + ], + 340405 => [ + [ + "address" => "八公山区", + "start_year" => "", + "end_year" => "" + ] + ], + 340406 => [ + [ + "address" => "潘集区", + "start_year" => "", + "end_year" => "" + ] + ], + 340421 => [ + [ + "address" => "凤台县", + "start_year" => "", + "end_year" => "" + ] + ], + 340422 => [ + [ + "address" => "寿县", + "start_year" => 2015, + "end_year" => "" + ] + ], + 340500 => [ + [ + "address" => "马鞍山市", + "start_year" => "", + "end_year" => "" + ] + ], + 340502 => [ + [ + "address" => "金家庄区", + "start_year" => "", + "end_year" => 2011 + ] + ], + 340503 => [ + [ + "address" => "花山区", + "start_year" => "", + "end_year" => "" + ] + ], + 340504 => [ + [ + "address" => "雨山区", + "start_year" => "", + "end_year" => "" + ] + ], + 340505 => [ + [ + "address" => "向山区", + "start_year" => "", + "end_year" => 2000 + ] + ], + 340506 => [ + [ + "address" => "博望区", + "start_year" => 2012, + "end_year" => "" + ] + ], + 340511 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 340521 => [ + [ + "address" => "当涂县", + "start_year" => "", + "end_year" => "" + ] + ], + 340522 => [ + [ + "address" => "含山县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 340523 => [ + [ + "address" => "和县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 340600 => [ + [ + "address" => "淮北市", + "start_year" => "", + "end_year" => "" + ] + ], + 340602 => [ + [ + "address" => "杜集区", + "start_year" => "", + "end_year" => "" + ] + ], + 340603 => [ + [ + "address" => "相山区", + "start_year" => "", + "end_year" => "" + ] + ], + 340604 => [ + [ + "address" => "烈山区", + "start_year" => "", + "end_year" => "" + ] + ], + 340611 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 340621 => [ + [ + "address" => "濉溪县", + "start_year" => "", + "end_year" => "" + ] + ], + 340700 => [ + [ + "address" => "铜陵市", + "start_year" => "", + "end_year" => "" + ] + ], + 340702 => [ + [ + "address" => "铜官山区", + "start_year" => "", + "end_year" => 2014 + ] + ], + 340703 => [ + [ + "address" => "狮子山区", + "start_year" => "", + "end_year" => 2014 + ] + ], + 340704 => [ + [ + "address" => "铜山区", + "start_year" => "", + "end_year" => 1986 + ] + ], + 340705 => [ + [ + "address" => "铜官区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 340706 => [ + [ + "address" => "义安区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 340711 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => "" + ] + ], + 340721 => [ + [ + "address" => "铜陵县", + "start_year" => "", + "end_year" => 2014 + ] + ], + 340722 => [ + [ + "address" => "枞阳县", + "start_year" => 2015, + "end_year" => "" + ] + ], + 340800 => [ + [ + "address" => "安庆市", + "start_year" => "", + "end_year" => "" + ] + ], + 340802 => [ + [ + "address" => "迎江区", + "start_year" => "", + "end_year" => "" + ] + ], + 340803 => [ + [ + "address" => "大观区", + "start_year" => "", + "end_year" => "" + ] + ], + 340811 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 2004 + ], + [ + "address" => "宜秀区", + "start_year" => 2005, + "end_year" => "" + ] + ], + 340821 => [ + [ + "address" => "桐城县", + "start_year" => 1988, + "end_year" => 1995 + ] + ], + 340822 => [ + [ + "address" => "怀宁县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 340823 => [ + [ + "address" => "枞阳县", + "start_year" => 1988, + "end_year" => 2014 + ] + ], + 340824 => [ + [ + "address" => "潜山县", + "start_year" => 1988, + "end_year" => 2017 + ] + ], + 340825 => [ + [ + "address" => "太湖县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 340826 => [ + [ + "address" => "宿松县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 340827 => [ + [ + "address" => "望江县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 340828 => [ + [ + "address" => "岳西县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 340881 => [ + [ + "address" => "桐城市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 340882 => [ + [ + "address" => "潜山市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 340901 => [ + [ + "address" => "黄山市", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 341000 => [ + [ + "address" => "黄山市", + "start_year" => 1987, + "end_year" => "" + ] + ], + 341002 => [ + [ + "address" => "屯溪区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 341003 => [ + [ + "address" => "黄山区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 341004 => [ + [ + "address" => "徽州区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 341021 => [ + [ + "address" => "歙县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 341022 => [ + [ + "address" => "休宁县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 341023 => [ + [ + "address" => "黟县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 341024 => [ + [ + "address" => "祁门县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 341100 => [ + [ + "address" => "滁州市", + "start_year" => 1992, + "end_year" => "" + ] + ], + 341102 => [ + [ + "address" => "琅琊区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 341103 => [ + [ + "address" => "南谯区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 341121 => [ + [ + "address" => "天长县", + "start_year" => 1992, + "end_year" => 1992 + ] + ], + 341122 => [ + [ + "address" => "来安县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 341124 => [ + [ + "address" => "全椒县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 341125 => [ + [ + "address" => "定远县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 341126 => [ + [ + "address" => "凤阳县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 341127 => [ + [ + "address" => "嘉山县", + "start_year" => 1992, + "end_year" => 1993 + ] + ], + 341181 => [ + [ + "address" => "天长市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 341182 => [ + [ + "address" => "明光市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 341200 => [ + [ + "address" => "阜阳市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 341202 => [ + [ + "address" => "颍州区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 341203 => [ + [ + "address" => "颍东区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 341204 => [ + [ + "address" => "颍泉区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 341221 => [ + [ + "address" => "临泉县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 341222 => [ + [ + "address" => "太和县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 341223 => [ + [ + "address" => "涡阳县", + "start_year" => 1996, + "end_year" => 1999 + ] + ], + 341224 => [ + [ + "address" => "蒙城县", + "start_year" => 1996, + "end_year" => 1999 + ] + ], + 341225 => [ + [ + "address" => "阜南县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 341226 => [ + [ + "address" => "颍上县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 341227 => [ + [ + "address" => "利辛县", + "start_year" => 1996, + "end_year" => 1999 + ] + ], + 341281 => [ + [ + "address" => "亳州市", + "start_year" => 1996, + "end_year" => 1999 + ] + ], + 341282 => [ + [ + "address" => "界首市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 341300 => [ + [ + "address" => "宿州市", + "start_year" => 1998, + "end_year" => "" + ] + ], + 341302 => [ + [ + "address" => "埇桥区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 341321 => [ + [ + "address" => "砀山县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 341322 => [ + [ + "address" => "萧县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 341323 => [ + [ + "address" => "灵璧县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 341324 => [ + [ + "address" => "泗县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 341400 => [ + [ + "address" => "巢湖市", + "start_year" => 1999, + "end_year" => 2010 + ] + ], + 341402 => [ + [ + "address" => "居巢区", + "start_year" => 1999, + "end_year" => 2010 + ] + ], + 341421 => [ + [ + "address" => "庐江县", + "start_year" => 1999, + "end_year" => 2010 + ] + ], + 341422 => [ + [ + "address" => "无为县", + "start_year" => 1999, + "end_year" => 2010 + ] + ], + 341423 => [ + [ + "address" => "含山县", + "start_year" => 1999, + "end_year" => 2010 + ] + ], + 341424 => [ + [ + "address" => "和县", + "start_year" => 1999, + "end_year" => 2010 + ] + ], + 341500 => [ + [ + "address" => "六安市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 341502 => [ + [ + "address" => "金安区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 341503 => [ + [ + "address" => "裕安区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 341504 => [ + [ + "address" => "叶集区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 341521 => [ + [ + "address" => "寿县", + "start_year" => 1999, + "end_year" => 2014 + ] + ], + 341522 => [ + [ + "address" => "霍邱县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 341523 => [ + [ + "address" => "舒城县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 341524 => [ + [ + "address" => "金寨县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 341525 => [ + [ + "address" => "霍山县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 341600 => [ + [ + "address" => "亳州市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341602 => [ + [ + "address" => "谯城区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341621 => [ + [ + "address" => "涡阳县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341622 => [ + [ + "address" => "蒙城县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341623 => [ + [ + "address" => "利辛县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341700 => [ + [ + "address" => "池州市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341702 => [ + [ + "address" => "贵池区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341721 => [ + [ + "address" => "东至县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341722 => [ + [ + "address" => "石台县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341723 => [ + [ + "address" => "青阳县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341800 => [ + [ + "address" => "宣城市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341802 => [ + [ + "address" => "宣州区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341821 => [ + [ + "address" => "郎溪县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341822 => [ + [ + "address" => "广德县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341823 => [ + [ + "address" => "泾县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341824 => [ + [ + "address" => "绩溪县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341825 => [ + [ + "address" => "旌德县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341881 => [ + [ + "address" => "宁国市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 342100 => [ + [ + "address" => "阜阳地区", + "start_year" => "", + "end_year" => 1995 + ] + ], + 342101 => [ + [ + "address" => "阜阳市", + "start_year" => "", + "end_year" => 1995 + ] + ], + 342102 => [ + [ + "address" => "亳州市", + "start_year" => 1986, + "end_year" => 1995 + ] + ], + 342103 => [ + [ + "address" => "界首市", + "start_year" => 1989, + "end_year" => 1995 + ] + ], + 342121 => [ + [ + "address" => "阜阳县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 342122 => [ + [ + "address" => "临泉县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 342123 => [ + [ + "address" => "太和县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 342124 => [ + [ + "address" => "涡阳县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 342125 => [ + [ + "address" => "蒙城县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 342126 => [ + [ + "address" => "亳县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 342127 => [ + [ + "address" => "阜南县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 342128 => [ + [ + "address" => "颍上县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 342129 => [ + [ + "address" => "界首县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 342130 => [ + [ + "address" => "利辛县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 342200 => [ + [ + "address" => "宿县地区", + "start_year" => "", + "end_year" => 1997 + ] + ], + 342201 => [ + [ + "address" => "宿州市", + "start_year" => "", + "end_year" => 1997 + ] + ], + 342221 => [ + [ + "address" => "砀山县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 342222 => [ + [ + "address" => "萧县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 342223 => [ + [ + "address" => "宿县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 342224 => [ + [ + "address" => "灵璧县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 342225 => [ + [ + "address" => "泗县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 342226 => [ + [ + "address" => "怀远县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 342227 => [ + [ + "address" => "五河县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 342228 => [ + [ + "address" => "固镇县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 342300 => [ + [ + "address" => "滁县地区", + "start_year" => "", + "end_year" => 1991 + ] + ], + 342301 => [ + [ + "address" => "滁州市", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 342321 => [ + [ + "address" => "天长县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 342322 => [ + [ + "address" => "来安县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 342323 => [ + [ + "address" => "滁县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 342324 => [ + [ + "address" => "全椒县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 342325 => [ + [ + "address" => "定远县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 342326 => [ + [ + "address" => "凤阳县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 342327 => [ + [ + "address" => "嘉山县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 342400 => [ + [ + "address" => "六安地区", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342401 => [ + [ + "address" => "六安市", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342421 => [ + [ + "address" => "六安县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 342422 => [ + [ + "address" => "寿县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342423 => [ + [ + "address" => "霍邱县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342424 => [ + [ + "address" => "肥西县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 342425 => [ + [ + "address" => "舒城县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342426 => [ + [ + "address" => "金寨县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342427 => [ + [ + "address" => "霍山县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342500 => [ + [ + "address" => "宣城地区", + "start_year" => "", + "end_year" => 1999 + ] + ], + 342501 => [ + [ + "address" => "宣城市", + "start_year" => 1987, + "end_year" => 1999 + ] + ], + 342502 => [ + [ + "address" => "宁国市", + "start_year" => 1997, + "end_year" => 1999 + ] + ], + 342521 => [ + [ + "address" => "宣城县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 342522 => [ + [ + "address" => "郎溪县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 342523 => [ + [ + "address" => "广德县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 342524 => [ + [ + "address" => "宁国县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 342525 => [ + [ + "address" => "当涂县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 342526 => [ + [ + "address" => "繁昌县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 342527 => [ + [ + "address" => "南陵县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 342528 => [ + [ + "address" => "青阳县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 342529 => [ + [ + "address" => "泾县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 342530 => [ + [ + "address" => "旌德县", + "start_year" => 1987, + "end_year" => 1999 + ] + ], + 342531 => [ + [ + "address" => "绩溪县", + "start_year" => 1987, + "end_year" => 1999 + ] + ], + 342600 => [ + [ + "address" => "巢湖地区", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342601 => [ + [ + "address" => "巢湖市", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 342621 => [ + [ + "address" => "肥东县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 342622 => [ + [ + "address" => "庐江县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342623 => [ + [ + "address" => "无为县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342624 => [ + [ + "address" => "巢县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 342625 => [ + [ + "address" => "含山县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342626 => [ + [ + "address" => "和县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 342700 => [ + [ + "address" => "徽州地区", + "start_year" => "", + "end_year" => 1986 + ] + ], + 342701 => [ + [ + "address" => "屯溪市", + "start_year" => "", + "end_year" => 1986 + ] + ], + 342721 => [ + [ + "address" => "绩溪县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 342722 => [ + [ + "address" => "旌德县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 342723 => [ + [ + "address" => "歙县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 342724 => [ + [ + "address" => "休宁县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 342725 => [ + [ + "address" => "黟县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 342726 => [ + [ + "address" => "祁门县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 342727 => [ + [ + "address" => "太平县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 342728 => [ + [ + "address" => "石台县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 342800 => [ + [ + "address" => "安庆地区", + "start_year" => "", + "end_year" => 1987 + ] + ], + 342821 => [ + [ + "address" => "怀宁县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 342822 => [ + [ + "address" => "桐城县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 342823 => [ + [ + "address" => "枞阳县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 342824 => [ + [ + "address" => "潜山县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 342825 => [ + [ + "address" => "太湖县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 342826 => [ + [ + "address" => "宿松县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 342827 => [ + [ + "address" => "望江县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 342828 => [ + [ + "address" => "岳西县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 342829 => [ + [ + "address" => "东至县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 342830 => [ + [ + "address" => "贵池县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 342831 => [ + [ + "address" => "石台县", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 342900 => [ + [ + "address" => "池州地区", + "start_year" => 1988, + "end_year" => 1999 + ] + ], + 342901 => [ + [ + "address" => "贵池市", + "start_year" => 1988, + "end_year" => 1999 + ] + ], + 342921 => [ + [ + "address" => "东至县", + "start_year" => 1988, + "end_year" => 1999 + ] + ], + 342922 => [ + [ + "address" => "石台县", + "start_year" => 1988, + "end_year" => 1999 + ] + ], + 342923 => [ + [ + "address" => "青阳县", + "start_year" => 1988, + "end_year" => 1999 + ] + ], + 349001 => [ + [ + "address" => "天长市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 349002 => [ + [ + "address" => "明光市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 350000 => [ + [ + "address" => "福建省", + "start_year" => "", + "end_year" => "" + ] + ], + 350100 => [ + [ + "address" => "福州市", + "start_year" => "", + "end_year" => "" + ] + ], + 350102 => [ + [ + "address" => "鼓楼区", + "start_year" => "", + "end_year" => "" + ] + ], + 350103 => [ + [ + "address" => "台江区", + "start_year" => "", + "end_year" => "" + ] + ], + 350104 => [ + [ + "address" => "仓山区", + "start_year" => "", + "end_year" => "" + ] + ], + 350105 => [ + [ + "address" => "马尾区", + "start_year" => "", + "end_year" => "" + ] + ], + 350111 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1994 + ], + [ + "address" => "晋安区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 350112 => [ + [ + "address" => "长乐区", + "start_year" => 2017, + "end_year" => "" + ] + ], + 350121 => [ + [ + "address" => "闽侯县", + "start_year" => "", + "end_year" => "" + ] + ], + 350122 => [ + [ + "address" => "连江县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350123 => [ + [ + "address" => "罗源县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350124 => [ + [ + "address" => "闽清县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350125 => [ + [ + "address" => "永泰县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350126 => [ + [ + "address" => "长乐县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 350127 => [ + [ + "address" => "福清县", + "start_year" => 1983, + "end_year" => 1989 + ] + ], + 350128 => [ + [ + "address" => "平潭县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350181 => [ + [ + "address" => "福清市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 350182 => [ + [ + "address" => "长乐市", + "start_year" => 1995, + "end_year" => 2016 + ] + ], + 350200 => [ + [ + "address" => "厦门市", + "start_year" => "", + "end_year" => "" + ] + ], + 350202 => [ + [ + "address" => "鼓浪屿区", + "start_year" => "", + "end_year" => 2002 + ] + ], + 350203 => [ + [ + "address" => "思明区", + "start_year" => "", + "end_year" => "" + ] + ], + 350204 => [ + [ + "address" => "开元区", + "start_year" => "", + "end_year" => 2002 + ] + ], + 350205 => [ + [ + "address" => "杏林区", + "start_year" => "", + "end_year" => 2002 + ], + [ + "address" => "海沧区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 350206 => [ + [ + "address" => "湖里区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 350211 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1986 + ], + [ + "address" => "集美区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 350212 => [ + [ + "address" => "同安区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 350213 => [ + [ + "address" => "翔安区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 350221 => [ + [ + "address" => "同安县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 350300 => [ + [ + "address" => "莆田市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350302 => [ + [ + "address" => "城厢区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350303 => [ + [ + "address" => "涵江区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350304 => [ + [ + "address" => "荔城区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 350305 => [ + [ + "address" => "秀屿区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 350321 => [ + [ + "address" => "莆田县", + "start_year" => 1983, + "end_year" => 2001 + ] + ], + 350322 => [ + [ + "address" => "仙游县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350400 => [ + [ + "address" => "三明市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350402 => [ + [ + "address" => "梅列区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350403 => [ + [ + "address" => "三元区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350420 => [ + [ + "address" => "永安市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 350421 => [ + [ + "address" => "明溪县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350422 => [ + [ + "address" => "永安县", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 350423 => [ + [ + "address" => "清流县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350424 => [ + [ + "address" => "宁化县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350425 => [ + [ + "address" => "大田县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350426 => [ + [ + "address" => "尤溪县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350427 => [ + [ + "address" => "沙县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350428 => [ + [ + "address" => "将乐县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350429 => [ + [ + "address" => "泰宁县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350430 => [ + [ + "address" => "建宁县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350481 => [ + [ + "address" => "永安市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 350500 => [ + [ + "address" => "泉州市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350501 => [ + [ + "address" => "永安市", + "start_year" => 1984, + "end_year" => 1984 + ] + ], + 350502 => [ + [ + "address" => "鲤城区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350503 => [ + [ + "address" => "丰泽区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 350504 => [ + [ + "address" => "洛江区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 350505 => [ + [ + "address" => "泉港区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 350521 => [ + [ + "address" => "惠安县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350522 => [ + [ + "address" => "晋江县", + "start_year" => 1985, + "end_year" => 1991 + ] + ], + 350523 => [ + [ + "address" => "南安县", + "start_year" => 1985, + "end_year" => 1992 + ] + ], + 350524 => [ + [ + "address" => "安溪县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350525 => [ + [ + "address" => "永春县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350526 => [ + [ + "address" => "德化县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350527 => [ + [ + "address" => "金门县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350581 => [ + [ + "address" => "石狮市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 350582 => [ + [ + "address" => "晋江市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 350583 => [ + [ + "address" => "南安市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 350600 => [ + [ + "address" => "漳州市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350602 => [ + [ + "address" => "芗城区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350603 => [ + [ + "address" => "龙文区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 350621 => [ + [ + "address" => "龙海县", + "start_year" => 1985, + "end_year" => 1992 + ] + ], + 350622 => [ + [ + "address" => "云霄县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350623 => [ + [ + "address" => "漳浦县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350624 => [ + [ + "address" => "诏安县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350625 => [ + [ + "address" => "长泰县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350626 => [ + [ + "address" => "东山县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350627 => [ + [ + "address" => "南靖县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350628 => [ + [ + "address" => "平和县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350629 => [ + [ + "address" => "华安县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350681 => [ + [ + "address" => "龙海市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 350700 => [ + [ + "address" => "南平市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 350702 => [ + [ + "address" => "延平区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 350703 => [ + [ + "address" => "建阳区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 350721 => [ + [ + "address" => "顺昌县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 350722 => [ + [ + "address" => "浦城县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 350723 => [ + [ + "address" => "光泽县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 350724 => [ + [ + "address" => "松溪县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 350725 => [ + [ + "address" => "政和县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 350781 => [ + [ + "address" => "邵武市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 350782 => [ + [ + "address" => "武夷山市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 350783 => [ + [ + "address" => "建瓯市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 350784 => [ + [ + "address" => "建阳市", + "start_year" => 1995, + "end_year" => 2013 + ] + ], + 350800 => [ + [ + "address" => "龙岩市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 350802 => [ + [ + "address" => "新罗区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 350803 => [ + [ + "address" => "永定区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 350821 => [ + [ + "address" => "长汀县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 350822 => [ + [ + "address" => "永定县", + "start_year" => 1996, + "end_year" => 2013 + ] + ], + 350823 => [ + [ + "address" => "上杭县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 350824 => [ + [ + "address" => "武平县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 350825 => [ + [ + "address" => "连城县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 350881 => [ + [ + "address" => "漳平市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 350900 => [ + [ + "address" => "宁德市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 350902 => [ + [ + "address" => "蕉城区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 350921 => [ + [ + "address" => "霞浦县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 350922 => [ + [ + "address" => "古田县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 350923 => [ + [ + "address" => "屏南县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 350924 => [ + [ + "address" => "寿宁县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 350925 => [ + [ + "address" => "周宁县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 350926 => [ + [ + "address" => "柘荣县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 350981 => [ + [ + "address" => "福安市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 350982 => [ + [ + "address" => "福鼎市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 352100 => [ + [ + "address" => "建阳地区", + "start_year" => 1982, + "end_year" => 1987 + ], + [ + "address" => "南平地区", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 352101 => [ + [ + "address" => "南平市", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 352102 => [ + [ + "address" => "邵武市", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 352103 => [ + [ + "address" => "武夷山市", + "start_year" => 1989, + "end_year" => 1993 + ] + ], + 352104 => [ + [ + "address" => "建瓯市", + "start_year" => 1992, + "end_year" => 1993 + ] + ], + 352121 => [ + [ + "address" => "顺昌县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 352122 => [ + [ + "address" => "建阳县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 352123 => [ + [ + "address" => "建瓯县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 352124 => [ + [ + "address" => "浦城县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 352125 => [ + [ + "address" => "邵武县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352126 => [ + [ + "address" => "崇安县", + "start_year" => 1982, + "end_year" => 1988 + ] + ], + 352127 => [ + [ + "address" => "光泽县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 352128 => [ + [ + "address" => "松溪县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 352129 => [ + [ + "address" => "政和县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 352200 => [ + [ + "address" => "建阳地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宁德地区", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 352201 => [ + [ + "address" => "南平市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宁德市", + "start_year" => 1988, + "end_year" => 1998 + ] + ], + 352202 => [ + [ + "address" => "福安市", + "start_year" => 1989, + "end_year" => 1998 + ] + ], + 352203 => [ + [ + "address" => "福鼎市", + "start_year" => 1995, + "end_year" => 1998 + ] + ], + 352221 => [ + [ + "address" => "顺昌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宁德县", + "start_year" => 1982, + "end_year" => 1987 + ] + ], + 352222 => [ + [ + "address" => "建阳县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "连江县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352223 => [ + [ + "address" => "建瓯县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "罗源县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352224 => [ + [ + "address" => "浦城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "福鼎县", + "start_year" => 1982, + "end_year" => 1994 + ] + ], + 352225 => [ + [ + "address" => "邵武县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "霞浦县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 352226 => [ + [ + "address" => "崇安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "福安县", + "start_year" => 1982, + "end_year" => 1988 + ] + ], + 352227 => [ + [ + "address" => "光泽县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "古田县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 352228 => [ + [ + "address" => "松溪县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "屏南县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 352229 => [ + [ + "address" => "政和县", + "start_year" => "", + "end_year" => 1981 ], - 652925 => [ - - [ - 'address' => '新和县', - 'start_year' => '', - 'end_year' => '', - ], + "address" => "寿宁县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 352230 => [ + [ + "address" => "周宁县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 352231 => [ + [ + "address" => "柘荣县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 352300 => [ + [ + "address" => "宁德地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "莆田地区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352321 => [ + [ + "address" => "宁德县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "闽清县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352322 => [ + [ + "address" => "连江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "永泰县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352323 => [ + [ + "address" => "罗源县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "长乐县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352324 => [ + [ + "address" => "福鼎县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "福清县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352325 => [ + [ + "address" => "霞浦县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "平潭县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352326 => [ + [ + "address" => "福安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "莆田县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352327 => [ + [ + "address" => "古田县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "仙游县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352328 => [ + [ + "address" => "屏南县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352329 => [ + [ + "address" => "寿宁县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352330 => [ + [ + "address" => "周宁县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352331 => [ + [ + "address" => "柘荣县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352400 => [ + [ + "address" => "莆田地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "晋江地区", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352401 => [ + [ + "address" => "泉州市", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352421 => [ + [ + "address" => "闽清县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "惠安县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352422 => [ + [ + "address" => "永泰县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "晋江县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352423 => [ + [ + "address" => "长乐县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "南安县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352424 => [ + [ + "address" => "福清县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "安溪县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352425 => [ + [ + "address" => "平潭县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "永春县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352426 => [ + [ + "address" => "莆田县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "德化县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352427 => [ + [ + "address" => "仙游县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "金门县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352500 => [ + [ + "address" => "晋江地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "龙溪地区", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352501 => [ + [ + "address" => "泉州市", + "start_year" => "", + "end_year" => 1981 ], - 652926 => - [ - - [ - 'address' => '拜城县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "漳州市", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352521 => [ + [ + "address" => "惠安县", + "start_year" => "", + "end_year" => 1981 ], - 652927 => - [ - - [ - 'address' => '乌什县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "龙海县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352522 => [ + [ + "address" => "晋江县", + "start_year" => "", + "end_year" => 1981 ], - 652928 => - [ - - [ - 'address' => '阿瓦提县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "云霄县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352523 => [ + [ + "address" => "南安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "漳浦县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352524 => [ + [ + "address" => "安溪县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "诏安县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352525 => [ + [ + "address" => "永春县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "长泰县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352526 => [ + [ + "address" => "德化县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "东山县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352527 => [ + [ + "address" => "金门县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "南靖县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352528 => [ + [ + "address" => "平和县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352529 => [ + [ + "address" => "华安县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 352600 => [ + [ + "address" => "龙溪地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "龙岩地区", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 352601 => [ + [ + "address" => "漳州市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "龙岩市", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 352602 => [ + [ + "address" => "漳平市", + "start_year" => 1990, + "end_year" => 1995 + ] + ], + 352621 => [ + [ + "address" => "龙海县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352622 => [ + [ + "address" => "云霄县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "长汀县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 352623 => [ + [ + "address" => "漳浦县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "永定县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 352624 => [ + [ + "address" => "诏安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "上杭县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 352625 => [ + [ + "address" => "长泰县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "武平县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 352626 => [ + [ + "address" => "东山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "漳平县", + "start_year" => 1982, + "end_year" => 1989 + ] + ], + 352627 => [ + [ + "address" => "南靖县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "连城县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 352628 => [ + [ + "address" => "平和县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352629 => [ + [ + "address" => "华安县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352700 => [ + [ + "address" => "龙岩地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "三明地区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352701 => [ + [ + "address" => "龙岩市", + "start_year" => 1981, + "end_year" => 1981 + ], + [ + "address" => "三明市", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352721 => [ + [ + "address" => "龙岩县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "明溪县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352722 => [ + [ + "address" => "长汀县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "永安县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352723 => [ + [ + "address" => "永定县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "清流县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352724 => [ + [ + "address" => "上杭县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宁化县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352725 => [ + [ + "address" => "武平县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "大田县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352726 => [ + [ + "address" => "漳平县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "尤溪县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352727 => [ + [ + "address" => "连城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "沙县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352728 => [ + [ + "address" => "将乐县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352729 => [ + [ + "address" => "泰宁县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352730 => [ + [ + "address" => "建宁县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 352800 => [ + [ + "address" => "三明地区", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352801 => [ + [ + "address" => "三明市", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352821 => [ + [ + "address" => "明溪县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352822 => [ + [ + "address" => "永安县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352823 => [ + [ + "address" => "清流县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352824 => [ + [ + "address" => "宁化县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352825 => [ + [ + "address" => "大田县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352826 => [ + [ + "address" => "尤溪县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352827 => [ + [ + "address" => "沙县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352828 => [ + [ + "address" => "将乐县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352829 => [ + [ + "address" => "泰宁县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 352830 => [ + [ + "address" => "建宁县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 359001 => [ + [ + "address" => "永安市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 359002 => [ + [ + "address" => "石狮市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 359003 => [ + [ + "address" => "福清市", + "start_year" => 1990, + "end_year" => 1994 + ] + ], + 359004 => [ + [ + "address" => "晋江市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 359005 => [ + [ + "address" => "南安市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 359006 => [ + [ + "address" => "龙海市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 359007 => [ + [ + "address" => "邵武市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 359008 => [ + [ + "address" => "武夷山市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 359009 => [ + [ + "address" => "建瓯市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 359010 => [ + [ + "address" => "建阳市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 359011 => [ + [ + "address" => "长乐市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 360000 => [ + [ + "address" => "江西省", + "start_year" => "", + "end_year" => "" + ] + ], + 360100 => [ + [ + "address" => "南昌市", + "start_year" => "", + "end_year" => "" + ] + ], + 360102 => [ + [ + "address" => "东湖区", + "start_year" => "", + "end_year" => "" + ] + ], + 360103 => [ + [ + "address" => "西湖区", + "start_year" => "", + "end_year" => "" + ] + ], + 360104 => [ + [ + "address" => "青云谱区", + "start_year" => "", + "end_year" => "" + ] + ], + 360105 => [ + [ + "address" => "湾里区", + "start_year" => "", + "end_year" => "" + ] + ], + 360111 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 2001 + ], + [ + "address" => "青山湖区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 360112 => [ + [ + "address" => "新建区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 360121 => [ + [ + "address" => "新建县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "南昌县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 360122 => [ + [ + "address" => "南昌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "新建县", + "start_year" => 1982, + "end_year" => 2014 + ] + ], + 360123 => [ + [ + "address" => "安义县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360124 => [ + [ + "address" => "进贤县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360200 => [ + [ + "address" => "景德镇市", + "start_year" => "", + "end_year" => "" + ] + ], + 360202 => [ + [ + "address" => "昌江区", + "start_year" => "", + "end_year" => "" + ] + ], + 360203 => [ + [ + "address" => "珠山区", + "start_year" => "", + "end_year" => "" + ] + ], + 360211 => [ + [ + "address" => "鹅湖区", + "start_year" => "", + "end_year" => 1987 + ] + ], + 360212 => [ + [ + "address" => "蛟潭区", + "start_year" => "", + "end_year" => 1987 + ] + ], + 360221 => [ + [ + "address" => "乐平县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 360222 => [ + [ + "address" => "浮梁县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 360281 => [ + [ + "address" => "乐平市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 360300 => [ + [ + "address" => "萍乡市", + "start_year" => "", + "end_year" => "" + ] + ], + 360302 => [ + [ + "address" => "城关区", + "start_year" => "", + "end_year" => 1992 + ], + [ + "address" => "安源区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 360311 => [ + [ + "address" => "上栗区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 360312 => [ + [ + "address" => "芦溪区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 360313 => [ + [ + "address" => "湘东区", + "start_year" => "", + "end_year" => "" + ] + ], + 360321 => [ + [ + "address" => "莲花县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 360322 => [ + [ + "address" => "上栗县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 360323 => [ + [ + "address" => "芦溪县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 360400 => [ + [ + "address" => "九江市", + "start_year" => "", + "end_year" => "" + ] + ], + 360402 => [ + [ + "address" => "庐山区", + "start_year" => "", + "end_year" => 2015 + ], + [ + "address" => "濂溪区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 360403 => [ + [ + "address" => "浔阳区", + "start_year" => "", + "end_year" => "" + ] + ], + 360404 => [ + [ + "address" => "柴桑区", + "start_year" => 2017, + "end_year" => "" + ] + ], + 360411 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 360421 => [ + [ + "address" => "九江县", + "start_year" => 1983, + "end_year" => 2016 + ] + ], + 360422 => [ + [ + "address" => "瑞昌县", + "start_year" => 1983, + "end_year" => 1988 + ] + ], + 360423 => [ + [ + "address" => "武宁县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360424 => [ + [ + "address" => "修水县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360425 => [ + [ + "address" => "永修县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360426 => [ + [ + "address" => "德安县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360427 => [ + [ + "address" => "星子县", + "start_year" => 1983, + "end_year" => 2015 + ] + ], + 360428 => [ + [ + "address" => "都昌县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360429 => [ + [ + "address" => "湖口县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360430 => [ + [ + "address" => "彭泽县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360481 => [ + [ + "address" => "瑞昌市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 360482 => [ + [ + "address" => "共青城市", + "start_year" => 2010, + "end_year" => "" + ] + ], + 360483 => [ + [ + "address" => "庐山市", + "start_year" => 2016, + "end_year" => "" + ] + ], + 360500 => [ + [ + "address" => "新余市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360502 => [ + [ + "address" => "渝水区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360521 => [ + [ + "address" => "井冈山", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "分宜县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360600 => [ + [ + "address" => "鹰潭市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360602 => [ + [ + "address" => "月湖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360603 => [ + [ + "address" => "余江区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 360621 => [ + [ + "address" => "贵溪县", + "start_year" => 1983, + "end_year" => 1995 + ] + ], + 360622 => [ + [ + "address" => "余江县", + "start_year" => 1983, + "end_year" => 2017 + ] + ], + 360681 => [ + [ + "address" => "贵溪市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 360700 => [ + [ + "address" => "赣州市", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360702 => [ + [ + "address" => "章贡区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360703 => [ + [ + "address" => "南康区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 360704 => [ + [ + "address" => "赣县区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 360721 => [ + [ + "address" => "赣县", + "start_year" => 1998, + "end_year" => 2015 + ] + ], + 360722 => [ + [ + "address" => "信丰县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360723 => [ + [ + "address" => "大余县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360724 => [ + [ + "address" => "上犹县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360725 => [ + [ + "address" => "崇义县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360726 => [ + [ + "address" => "安远县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360727 => [ + [ + "address" => "龙南县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360728 => [ + [ + "address" => "定南县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360729 => [ + [ + "address" => "全南县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360730 => [ + [ + "address" => "宁都县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360731 => [ + [ + "address" => "于都县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360732 => [ + [ + "address" => "兴国县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360733 => [ + [ + "address" => "会昌县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360734 => [ + [ + "address" => "寻乌县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360735 => [ + [ + "address" => "石城县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360781 => [ + [ + "address" => "瑞金市", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360782 => [ + [ + "address" => "南康市", + "start_year" => 1998, + "end_year" => 2012 + ] + ], + 360800 => [ + [ + "address" => "吉安市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360802 => [ + [ + "address" => "吉州区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360803 => [ + [ + "address" => "青原区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360821 => [ + [ + "address" => "吉安县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360822 => [ + [ + "address" => "吉水县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360823 => [ + [ + "address" => "峡江县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360824 => [ + [ + "address" => "新干县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360825 => [ + [ + "address" => "永丰县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360826 => [ + [ + "address" => "泰和县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360827 => [ + [ + "address" => "遂川县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360828 => [ + [ + "address" => "万安县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360829 => [ + [ + "address" => "安福县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360830 => [ + [ + "address" => "永新县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360881 => [ + [ + "address" => "井冈山市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360900 => [ + [ + "address" => "宜春市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360902 => [ + [ + "address" => "袁州区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360921 => [ + [ + "address" => "奉新县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360922 => [ + [ + "address" => "万载县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360923 => [ + [ + "address" => "上高县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360924 => [ + [ + "address" => "宜丰县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360925 => [ + [ + "address" => "靖安县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360926 => [ + [ + "address" => "铜鼓县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360981 => [ + [ + "address" => "丰城市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360982 => [ + [ + "address" => "樟树市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360983 => [ + [ + "address" => "高安市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361000 => [ + [ + "address" => "抚州市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361002 => [ + [ + "address" => "临川区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361003 => [ + [ + "address" => "东乡区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 361021 => [ + [ + "address" => "南城县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361022 => [ + [ + "address" => "黎川县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361023 => [ + [ + "address" => "南丰县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361024 => [ + [ + "address" => "崇仁县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361025 => [ + [ + "address" => "乐安县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361026 => [ + [ + "address" => "宜黄县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361027 => [ + [ + "address" => "金溪县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361028 => [ + [ + "address" => "资溪县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361029 => [ + [ + "address" => "东乡县", + "start_year" => 2000, + "end_year" => 2015 + ] + ], + 361030 => [ + [ + "address" => "广昌县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361100 => [ + [ + "address" => "上饶市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361102 => [ + [ + "address" => "信州区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361103 => [ + [ + "address" => "广丰区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 361121 => [ + [ + "address" => "上饶县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361122 => [ + [ + "address" => "广丰县", + "start_year" => 2000, + "end_year" => 2014 + ] + ], + 361123 => [ + [ + "address" => "玉山县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361124 => [ + [ + "address" => "铅山县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361125 => [ + [ + "address" => "横峰县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361126 => [ + [ + "address" => "弋阳县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361127 => [ + [ + "address" => "余干县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361128 => [ + [ + "address" => "波阳县", + "start_year" => 2000, + "end_year" => 2002 + ], + [ + "address" => "鄱阳县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 361129 => [ + [ + "address" => "万年县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361130 => [ + [ + "address" => "婺源县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361181 => [ + [ + "address" => "德兴市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 362100 => [ + [ + "address" => "九江地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "赣州地区", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362101 => [ + [ + "address" => "赣州市", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362102 => [ + [ + "address" => "瑞金市", + "start_year" => 1994, + "end_year" => 1997 + ] + ], + 362103 => [ + [ + "address" => "南康市", + "start_year" => 1995, + "end_year" => 1997 + ] + ], + 362121 => [ + [ + "address" => "九江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "赣县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362122 => [ + [ + "address" => "永修县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "南康县", + "start_year" => 1982, + "end_year" => 1994 + ] + ], + 362123 => [ + [ + "address" => "彭泽县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "信丰县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362124 => [ + [ + "address" => "德安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "大余县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362125 => [ + [ + "address" => "湖口县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "上犹县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362126 => [ + [ + "address" => "瑞昌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "崇义县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362127 => [ + [ + "address" => "都昌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "安远县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362128 => [ + [ + "address" => "武宁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "龙南县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362129 => [ + [ + "address" => "星子县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "定南县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362130 => [ + [ + "address" => "修水县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "全南县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362131 => [ + [ + "address" => "宁都县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362132 => [ + [ + "address" => "于都县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362133 => [ + [ + "address" => "兴国县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362134 => [ + [ + "address" => "瑞金县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 362135 => [ + [ + "address" => "会昌县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362136 => [ + [ + "address" => "寻乌县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362137 => [ + [ + "address" => "石城县", + "start_year" => 1982, + "end_year" => 1997 + ] + ], + 362138 => [ + [ + "address" => "广昌县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362200 => [ + [ + "address" => "上饶地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宜春地区", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362201 => [ + [ + "address" => "上饶市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宜春市", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362202 => [ + [ + "address" => "鹰潭市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "丰城市", + "start_year" => 1988, + "end_year" => 1999 + ] + ], + 362203 => [ + [ + "address" => "樟树市", + "start_year" => 1988, + "end_year" => 1999 + ] + ], + 362204 => [ + [ + "address" => "高安市", + "start_year" => 1993, + "end_year" => 1999 + ] + ], + 362221 => [ + [ + "address" => "上饶县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "丰城县", + "start_year" => 1982, + "end_year" => 1987 + ] + ], + 362222 => [ + [ + "address" => "贵溪县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "高安县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 362223 => [ + [ + "address" => "婺源县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "清江县", + "start_year" => 1982, + "end_year" => 1987 + ] + ], + 362224 => [ + [ + "address" => "余江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "新余县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362225 => [ + [ + "address" => "德兴县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宜春县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 362226 => [ + [ + "address" => "万年县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "奉新县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362227 => [ + [ + "address" => "玉山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "万载县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362228 => [ + [ + "address" => "乐平县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "上高县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362229 => [ + [ + "address" => "广丰县", + "start_year" => "", + "end_year" => 1981 ], - 652929 => - [ - - [ - 'address' => '柯坪县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "宜丰县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362230 => [ + [ + "address" => "波阳县", + "start_year" => "", + "end_year" => 1981 ], - 653000 => - [ - - [ - 'address' => '克孜勒苏柯尔克孜自治州', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "分宜县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362231 => [ + [ + "address" => "铅山县", + "start_year" => "", + "end_year" => 1981 ], - 653001 => - [ - - [ - 'address' => '阿图什市', - 'start_year' => 1986, - 'end_year' => '', - ], + [ + "address" => "安义县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362232 => [ + [ + "address" => "余干县", + "start_year" => "", + "end_year" => 1981 ], - 653021 => - [ - - [ - 'address' => '阿图什县', - 'start_year' => '', - 'end_year' => 1985, - ], + [ + "address" => "靖安县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362233 => [ + [ + "address" => "横峰县", + "start_year" => "", + "end_year" => 1981 ], - 653022 => [ - - [ - 'address' => '阿克陶县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653023 => + "address" => "铜鼓县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362234 => [ + [ + "address" => "弋阳县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 362300 => [ + [ + "address" => "宜春地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "上饶地区", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362301 => [ [ - - [ - 'address' => '阿合奇县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653024 => + "address" => "宜春市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "上饶市", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362302 => [ [ - - [ - 'address' => '乌恰县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653100 => + "address" => "鹰潭市", + "start_year" => 1982, + "end_year" => 1982 + ], + [ + "address" => "德兴市", + "start_year" => 1990, + "end_year" => 1999 + ] + ], + 362321 => [ [ - - [ - 'address' => '喀什地区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653101 => + "address" => "宜春县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "上饶县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362322 => [ [ - - [ - 'address' => '喀什市', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653121 => + "address" => "高安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "广丰县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362323 => [ [ - - [ - 'address' => '疏附县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653122 => + "address" => "万载县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "玉山县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362324 => [ [ - - [ - 'address' => '疏勒县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653123 => + "address" => "丰城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "铅山县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362325 => [ [ - - [ - 'address' => '英吉沙县', - 'start_year' => '', - 'end_year' => '', - ], + "address" => "铜鼓县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "横峰县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362326 => [ + [ + "address" => "清江县", + "start_year" => "", + "end_year" => 1981 ], - 653124 => - [ - - [ - 'address' => '泽普县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "弋阳县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362327 => [ + [ + "address" => "宜丰县", + "start_year" => "", + "end_year" => 1981 ], - 653125 => - [ - - [ - 'address' => '莎车县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "贵溪县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362328 => [ + [ + "address" => "新余县", + "start_year" => "", + "end_year" => 1981 ], - 653126 => - [ - - [ - 'address' => '叶城县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "余江县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362329 => [ + [ + "address" => "上高县", + "start_year" => "", + "end_year" => 1981 ], - 653127 => - [ - - [ - 'address' => '麦盖提县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "余干县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362330 => [ + [ + "address" => "分宜县", + "start_year" => "", + "end_year" => 1981 ], - 653128 => - [ - - [ - 'address' => '岳普湖县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "波阳县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362331 => [ + [ + "address" => "安义县", + "start_year" => "", + "end_year" => 1981 ], - 653129 => - [ - - [ - 'address' => '伽师县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "万年县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362332 => [ + [ + "address" => "靖安县", + "start_year" => "", + "end_year" => 1981 ], - 653130 => - [ - - [ - 'address' => '巴楚县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "乐平县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362333 => [ + [ + "address" => "奉新县", + "start_year" => "", + "end_year" => 1981 ], - 653131 => - [ - - [ - 'address' => '塔什库尔干塔吉克自治县', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "德兴县", + "start_year" => 1982, + "end_year" => 1989 + ] + ], + 362334 => [ + [ + "address" => "婺源县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362400 => [ + [ + "address" => "抚州地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "吉安地区", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362401 => [ + [ + "address" => "抚州市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "吉安市", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362402 => [ + [ + "address" => "井冈山市", + "start_year" => 1984, + "end_year" => 1999 + ] + ], + 362421 => [ + [ + "address" => "临川县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "吉安县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362422 => [ + [ + "address" => "宜黄县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "吉水县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362423 => [ + [ + "address" => "金溪县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "峡江县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362424 => [ + [ + "address" => "崇仁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "新干县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362425 => [ + [ + "address" => "资溪县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "永丰县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362426 => [ + [ + "address" => "乐安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "泰和县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362427 => [ + [ + "address" => "黎川县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "遂川县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362428 => [ + [ + "address" => "东乡县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "万安县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362429 => [ + [ + "address" => "南丰县", + "start_year" => "", + "end_year" => 1981 ], - 653200 => - [ - - [ - 'address' => '和田地区', - 'start_year' => '', - 'end_year' => '', - ], + [ + "address" => "安福县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362430 => [ + [ + "address" => "进贤县", + "start_year" => "", + "end_year" => 1981 ], - 653201 => - [ - - [ - 'address' => '和田市', - 'start_year' => 1983, - 'end_year' => '', - ], + [ + "address" => "永新县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362431 => [ + [ + "address" => "南城县", + "start_year" => "", + "end_year" => 1981 ], - 653221 => [ - - [ - 'address' => '和田县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653222 => + "address" => "莲花县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 362432 => [ + [ + "address" => "宁冈县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362433 => [ + [ + "address" => "井冈山县", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 362500 => [ + [ + "address" => "吉安地区", + "start_year" => "", + "end_year" => 1981 + ], [ - - [ - 'address' => '墨玉县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653223 => + "address" => "抚州地区", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362501 => [ + [ + "address" => "吉安市", + "start_year" => "", + "end_year" => 1981 + ], [ - - [ - 'address' => '皮山县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653224 => + "address" => "抚州市", + "start_year" => 1982, + "end_year" => 1986 + ], + [ + "address" => "临川市", + "start_year" => 1987, + "end_year" => 1999 + ] + ], + 362521 => [ [ - - [ - 'address' => '洛浦县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653225 => + "address" => "吉安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "临川县", + "start_year" => 1982, + "end_year" => 1986 + ] + ], + 362522 => [ [ - - [ - 'address' => '策勒县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653226 => + "address" => "万安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "南城县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362523 => [ [ - - [ - 'address' => '于田县', - 'start_year' => '', - 'end_year' => '', - ], - ], - 653227 => + "address" => "新干县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "黎川县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362524 => [ [ - - [ - 'address' => '民丰县', - 'start_year' => '', - 'end_year' => '', - ], + "address" => "遂川县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "南丰县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362525 => [ + [ + "address" => "峡江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "崇仁县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362526 => [ + [ + "address" => "宁冈县", + "start_year" => "", + "end_year" => 1981 ], - 654000 => - [ - - [ - 'address' => '伊犁哈萨克自治州', - 'start_year' => 1984, - 'end_year' => '', - ], + [ + "address" => "乐安县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362527 => [ + [ + "address" => "吉水县", + "start_year" => "", + "end_year" => 1981 ], - 654001 => - [ - - [ - 'address' => '奎屯市', - 'start_year' => 1984, - 'end_year' => 2000, - ], + [ + "address" => "宜黄县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362528 => [ + [ + "address" => "永新县", + "start_year" => "", + "end_year" => 1981 ], - 654002 => - [ - - [ - 'address' => '伊宁市', - 'start_year' => 2001, - 'end_year' => '', - ], + [ + "address" => "金溪县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362529 => [ + [ + "address" => "永丰县", + "start_year" => "", + "end_year" => 1981 ], - 654003 => - [ - - [ - 'address' => '奎屯市', - 'start_year' => 2001, - 'end_year' => '', - ], + [ + "address" => "资溪县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362530 => [ + [ + "address" => "莲花县", + "start_year" => "", + "end_year" => 1981 ], - 654004 => - [ - - [ - 'address' => '霍尔果斯市', - 'start_year' => 2014, - 'end_year' => '', - ], + [ + "address" => "进贤县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362531 => [ + [ + "address" => "泰和县", + "start_year" => "", + "end_year" => 1981 ], - 654021 => - [ - - [ - 'address' => '伊宁县', - 'start_year' => 2001, - 'end_year' => '', - ], + [ + "address" => "东乡县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 362532 => [ + [ + "address" => "安福县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "广昌县", + "start_year" => 1983, + "end_year" => 1999 + ] + ], + 362533 => [ + [ + "address" => "井冈山县", + "start_year" => 1981, + "end_year" => 1981 + ] + ], + 362600 => [ + [ + "address" => "赣州地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "九江地区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362601 => [ + [ + "address" => "赣州市", + "start_year" => "", + "end_year" => 1981 + ] + ], + 362621 => [ + [ + "address" => "广昌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "九江县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362622 => [ + [ + "address" => "定南县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "瑞昌县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362623 => [ + [ + "address" => "石城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "武宁县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362624 => [ + [ + "address" => "龙南县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "修水县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362625 => [ + [ + "address" => "宁都县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "永修县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362626 => [ + [ + "address" => "全南县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "德安县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362627 => [ + [ + "address" => "兴国县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "星子县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362628 => [ + [ + "address" => "信丰县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "都昌县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362629 => [ + [ + "address" => "于都县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "湖口县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362630 => [ + [ + "address" => "赣县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "彭泽县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 362631 => [ + [ + "address" => "瑞金县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 362632 => [ + [ + "address" => "南康县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 362633 => [ + [ + "address" => "会昌县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 362634 => [ + [ + "address" => "上犹县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 362635 => [ + [ + "address" => "安远县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 362636 => [ + [ + "address" => "崇义县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 362637 => [ + [ + "address" => "寻乌县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 362638 => [ + [ + "address" => "大余县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 369001 => [ + [ + "address" => "瑞昌市", + "start_year" => 1989, + "end_year" => 1994 + ] + ], + 369002 => [ + [ + "address" => "乐平市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 370000 => [ + [ + "address" => "山东省", + "start_year" => "", + "end_year" => "" + ] + ], + 370100 => [ + [ + "address" => "济南市", + "start_year" => "", + "end_year" => "" + ] + ], + 370102 => [ + [ + "address" => "历下区", + "start_year" => "", + "end_year" => "" + ] + ], + 370103 => [ + [ + "address" => "市中区", + "start_year" => "", + "end_year" => "" + ] + ], + 370104 => [ + [ + "address" => "槐荫区", + "start_year" => "", + "end_year" => "" + ] + ], + 370105 => [ + [ + "address" => "天桥区", + "start_year" => "", + "end_year" => "" + ] + ], + 370111 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1986 + ] + ], + 370112 => [ + [ + "address" => "历城区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 370113 => [ + [ + "address" => "长清区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 370114 => [ + [ + "address" => "章丘区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 370115 => [ + [ + "address" => "济阳区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 370116 => [ + [ + "address" => "莱芜区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 370117 => [ + [ + "address" => "钢城区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 370121 => [ + [ + "address" => "历城县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 370122 => [ + [ + "address" => "章丘县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 370123 => [ + [ + "address" => "长清县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 370124 => [ + [ + "address" => "平阴县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 370125 => [ + [ + "address" => "济阳县", + "start_year" => 1989, + "end_year" => 2017 + ] + ], + 370126 => [ + [ + "address" => "商河县", + "start_year" => 1989, + "end_year" => "" + ] + ], + 370181 => [ + [ + "address" => "章丘市", + "start_year" => 1995, + "end_year" => 2015 + ] + ], + 370200 => [ + [ + "address" => "青岛市", + "start_year" => "", + "end_year" => "" + ] + ], + 370202 => [ + [ + "address" => "市南区", + "start_year" => "", + "end_year" => "" + ] + ], + 370203 => [ + [ + "address" => "市北区", + "start_year" => "", + "end_year" => "" + ] + ], + 370204 => [ + [ + "address" => "台东区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 370205 => [ + [ + "address" => "四方区", + "start_year" => "", + "end_year" => 2011 + ] + ], + 370206 => [ + [ + "address" => "沧口区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 370211 => [ + [ + "address" => "黄岛区", + "start_year" => "", + "end_year" => "" + ] + ], + 370212 => [ + [ + "address" => "崂山区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 370213 => [ + [ + "address" => "李沧区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 370214 => [ + [ + "address" => "城阳区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 370215 => [ + [ + "address" => "即墨区", + "start_year" => 2017, + "end_year" => "" + ] + ], + 370221 => [ + [ + "address" => "崂山县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 370222 => [ + [ + "address" => "即墨县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 370223 => [ + [ + "address" => "胶南县", + "start_year" => "", + "end_year" => 1989 + ] + ], + 370224 => [ + [ + "address" => "胶县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 370225 => [ + [ + "address" => "莱西县", + "start_year" => 1983, + "end_year" => 1989 + ] + ], + 370226 => [ + [ + "address" => "平度县", + "start_year" => 1983, + "end_year" => 1988 + ] + ], + 370281 => [ + [ + "address" => "胶州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370282 => [ + [ + "address" => "即墨市", + "start_year" => 1995, + "end_year" => 2016 + ] + ], + 370283 => [ + [ + "address" => "平度市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370284 => [ + [ + "address" => "胶南市", + "start_year" => 1995, + "end_year" => 2011 + ] + ], + 370285 => [ + [ + "address" => "莱西市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370300 => [ + [ + "address" => "淄博市", + "start_year" => "", + "end_year" => "" + ] + ], + 370302 => [ + [ + "address" => "淄川区", + "start_year" => "", + "end_year" => "" + ] + ], + 370303 => [ + [ + "address" => "张店区", + "start_year" => "", + "end_year" => "" + ] + ], + 370304 => [ + [ + "address" => "博山区", + "start_year" => "", + "end_year" => "" + ] + ], + 370305 => [ + [ + "address" => "临淄区", + "start_year" => "", + "end_year" => "" + ] + ], + 370306 => [ + [ + "address" => "周村区", + "start_year" => "", + "end_year" => "" + ] + ], + 370321 => [ + [ + "address" => "桓台县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370322 => [ + [ + "address" => "高青县", + "start_year" => 1989, + "end_year" => "" + ] + ], + 370323 => [ + [ + "address" => "沂源县", + "start_year" => 1989, + "end_year" => "" + ] + ], + 370400 => [ + [ + "address" => "枣庄市", + "start_year" => "", + "end_year" => "" + ] + ], + 370402 => [ + [ + "address" => "市中区", + "start_year" => "", + "end_year" => "" + ] + ], + 370403 => [ + [ + "address" => "薛城区", + "start_year" => "", + "end_year" => "" + ] + ], + 370404 => [ + [ + "address" => "峄城区", + "start_year" => "", + "end_year" => "" + ] + ], + 370405 => [ + [ + "address" => "台儿庄区", + "start_year" => "", + "end_year" => "" + ] + ], + 370406 => [ + [ + "address" => "齐村区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "山亭区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370421 => [ + [ + "address" => "滕县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 370481 => [ + [ + "address" => "滕州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370500 => [ + [ + "address" => "东营市", + "start_year" => 1982, + "end_year" => "" + ] + ], + 370502 => [ + [ + "address" => "东营区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 370503 => [ + [ + "address" => "河口区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 370504 => [ + [ + "address" => "牛庄区", + "start_year" => 1982, + "end_year" => 1986 + ] + ], + 370505 => [ + [ + "address" => "垦利区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 370521 => [ + [ + "address" => "垦利县", + "start_year" => 1982, + "end_year" => 2015 + ] + ], + 370522 => [ + [ + "address" => "利津县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 370523 => [ + [ + "address" => "广饶县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370600 => [ + [ + "address" => "烟台市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370602 => [ + [ + "address" => "芝罘区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370611 => [ + [ + "address" => "福山区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370612 => [ + [ + "address" => "牟平区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 370613 => [ + [ + "address" => "莱山区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 370620 => [ + [ + "address" => "威海市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 370622 => [ + [ + "address" => "蓬莱县", + "start_year" => 1983, + "end_year" => 1990 + ] + ], + 370623 => [ + [ + "address" => "黄县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 370624 => [ + [ + "address" => "招远县", + "start_year" => 1983, + "end_year" => 1990 + ] + ], + 370625 => [ + [ + "address" => "掖县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 370627 => [ + [ + "address" => "莱阳县", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 370628 => [ + [ + "address" => "栖霞县", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 370629 => [ + [ + "address" => "海阳县", + "start_year" => 1983, + "end_year" => 1995 + ] + ], + 370630 => [ + [ + "address" => "乳山县", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 370631 => [ + [ + "address" => "牟平县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 370632 => [ + [ + "address" => "文登县", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 370633 => [ + [ + "address" => "荣成县", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 370634 => [ + [ + "address" => "长岛县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370681 => [ + [ + "address" => "龙口市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370682 => [ + [ + "address" => "莱阳市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370683 => [ + [ + "address" => "莱州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370684 => [ + [ + "address" => "蓬莱市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370685 => [ + [ + "address" => "招远市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370686 => [ + [ + "address" => "栖霞市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370687 => [ + [ + "address" => "海阳市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 370700 => [ + [ + "address" => "潍坊市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370702 => [ + [ + "address" => "潍城区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370703 => [ + [ + "address" => "寒亭区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370704 => [ + [ + "address" => "坊子区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370705 => [ + [ + "address" => "奎文区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 370721 => [ + [ + "address" => "益都县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 370722 => [ + [ + "address" => "安丘县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 370723 => [ + [ + "address" => "寿光县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 370724 => [ + [ + "address" => "临朐县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370725 => [ + [ + "address" => "昌乐县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370726 => [ + [ + "address" => "昌邑县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 370727 => [ + [ + "address" => "高密县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 370728 => [ + [ + "address" => "诸城县", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 370729 => [ + [ + "address" => "五莲县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 370781 => [ + [ + "address" => "青州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370782 => [ + [ + "address" => "诸城市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370783 => [ + [ + "address" => "寿光市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370784 => [ + [ + "address" => "安丘市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370785 => [ + [ + "address" => "高密市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370786 => [ + [ + "address" => "昌邑市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370800 => [ + [ + "address" => "济宁市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370802 => [ + [ + "address" => "市中区", + "start_year" => 1983, + "end_year" => 2012 + ] + ], + 370811 => [ + [ + "address" => "市郊区", + "start_year" => 1983, + "end_year" => 1992 + ], + [ + "address" => "任城区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 370812 => [ + [ + "address" => "兖州区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 370822 => [ + [ + "address" => "兖州县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 370823 => [ + [ + "address" => "曲阜县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 370825 => [ + [ + "address" => "邹县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 370826 => [ + [ + "address" => "微山县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370827 => [ + [ + "address" => "鱼台县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370828 => [ + [ + "address" => "金乡县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370829 => [ + [ + "address" => "嘉祥县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370830 => [ + [ + "address" => "汶上县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 370831 => [ + [ + "address" => "泗水县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 370832 => [ + [ + "address" => "梁山县", + "start_year" => 1989, + "end_year" => "" + ] + ], + 370881 => [ + [ + "address" => "曲阜市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370882 => [ + [ + "address" => "兖州市", + "start_year" => 1995, + "end_year" => 2012 + ] + ], + 370883 => [ + [ + "address" => "邹城市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 370900 => [ + [ + "address" => "泰安市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 370901 => [ + [ + "address" => "威海市", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 370902 => [ + [ + "address" => "泰山区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 370911 => [ + [ + "address" => "郊区", + "start_year" => 1985, + "end_year" => 1999 + ], + [ + "address" => "岱岳区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 370921 => [ + [ + "address" => "宁阳县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 370922 => [ + [ + "address" => "肥城县", + "start_year" => 1985, + "end_year" => 1991 + ] + ], + 370923 => [ + [ + "address" => "东平县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 370981 => [ + [ + "address" => "莱芜市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 370982 => [ + [ + "address" => "新泰市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 370983 => [ + [ + "address" => "肥城市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 371000 => [ + [ + "address" => "威海市", + "start_year" => 1987, + "end_year" => "" + ] + ], + 371002 => [ + [ + "address" => "环翠区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 371003 => [ + [ + "address" => "文登区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 371021 => [ + [ + "address" => "乳山县", + "start_year" => 1987, + "end_year" => 1992 + ] + ], + 371022 => [ + [ + "address" => "文登县", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 371023 => [ + [ + "address" => "荣成县", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 371081 => [ + [ + "address" => "文登市", + "start_year" => 1995, + "end_year" => 2013 + ] + ], + 371082 => [ + [ + "address" => "荣成市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 371083 => [ + [ + "address" => "乳山市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 371100 => [ + [ + "address" => "日照市", + "start_year" => 1989, + "end_year" => "" + ] + ], + 371102 => [ + [ + "address" => "东港区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 371103 => [ + [ + "address" => "岚山区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 371121 => [ + [ + "address" => "五莲县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 371122 => [ + [ + "address" => "莒县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 371200 => [ + [ + "address" => "莱芜市", + "start_year" => 1992, + "end_year" => 2017 + ] + ], + 371202 => [ + [ + "address" => "莱城区", + "start_year" => 1992, + "end_year" => 2017 + ] + ], + 371203 => [ + [ + "address" => "钢城区", + "start_year" => 1992, + "end_year" => 2017 + ] + ], + 371300 => [ + [ + "address" => "临沂市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371302 => [ + [ + "address" => "兰山区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371311 => [ + [ + "address" => "罗庄区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371312 => [ + [ + "address" => "河东区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371321 => [ + [ + "address" => "沂南县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371322 => [ + [ + "address" => "郯城县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371323 => [ + [ + "address" => "沂水县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371324 => [ + [ + "address" => "苍山县", + "start_year" => 1994, + "end_year" => 2013 + ], + [ + "address" => "兰陵县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 371325 => [ + [ + "address" => "费县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371326 => [ + [ + "address" => "平邑县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371327 => [ + [ + "address" => "莒南县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371328 => [ + [ + "address" => "蒙阴县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371329 => [ + [ + "address" => "临沭县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371400 => [ + [ + "address" => "德州市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371402 => [ + [ + "address" => "德城区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371403 => [ + [ + "address" => "陵城区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 371421 => [ + [ + "address" => "陵县", + "start_year" => 1994, + "end_year" => 2013 + ] + ], + 371422 => [ + [ + "address" => "宁津县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371423 => [ + [ + "address" => "庆云县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371424 => [ + [ + "address" => "临邑县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371425 => [ + [ + "address" => "齐河县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371426 => [ + [ + "address" => "平原县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371427 => [ + [ + "address" => "夏津县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371428 => [ + [ + "address" => "武城县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371481 => [ + [ + "address" => "乐陵市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 371482 => [ + [ + "address" => "禹城市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 371500 => [ + [ + "address" => "聊城市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 371502 => [ + [ + "address" => "东昌府区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 371521 => [ + [ + "address" => "阳谷县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 371522 => [ + [ + "address" => "莘县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 371523 => [ + [ + "address" => "茌平县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 371524 => [ + [ + "address" => "东阿县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 371525 => [ + [ + "address" => "冠县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 371526 => [ + [ + "address" => "高唐县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 371581 => [ + [ + "address" => "临清市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 371600 => [ + [ + "address" => "滨州市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371602 => [ + [ + "address" => "滨城区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371603 => [ + [ + "address" => "沾化区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 371621 => [ + [ + "address" => "惠民县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371622 => [ + [ + "address" => "阳信县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371623 => [ + [ + "address" => "无棣县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371624 => [ + [ + "address" => "沾化县", + "start_year" => 2000, + "end_year" => 2013 + ] + ], + 371625 => [ + [ + "address" => "博兴县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371626 => [ + [ + "address" => "邹平县", + "start_year" => 2000, + "end_year" => 2017 + ] + ], + 371681 => [ + [ + "address" => "邹平市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 371700 => [ + [ + "address" => "菏泽市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371702 => [ + [ + "address" => "牡丹区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371703 => [ + [ + "address" => "定陶区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 371721 => [ + [ + "address" => "曹县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371722 => [ + [ + "address" => "单县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371723 => [ + [ + "address" => "成武县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371724 => [ + [ + "address" => "巨野县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371725 => [ + [ + "address" => "郓城县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371726 => [ + [ + "address" => "鄄城县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371727 => [ + [ + "address" => "定陶县", + "start_year" => 2000, + "end_year" => 2015 + ] + ], + 371728 => [ + [ + "address" => "东明县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 372100 => [ + [ + "address" => "烟台地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372101 => [ + [ + "address" => "烟台市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372102 => [ + [ + "address" => "威海市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372121 => [ + [ + "address" => "福山县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372122 => [ + [ + "address" => "蓬莱县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372123 => [ + [ + "address" => "黄县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372124 => [ + [ + "address" => "招远县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372125 => [ + [ + "address" => "掖县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372126 => [ + [ + "address" => "莱西县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372127 => [ + [ + "address" => "莱阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372128 => [ + [ + "address" => "栖霞县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372129 => [ + [ + "address" => "海阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372130 => [ + [ + "address" => "乳山县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372131 => [ + [ + "address" => "牟平县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372132 => [ + [ + "address" => "文登县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372133 => [ + [ + "address" => "荣成县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372134 => [ + [ + "address" => "长岛县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372200 => [ + [ + "address" => "昌潍地区", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "潍坊地区", + "start_year" => 1981, + "end_year" => 1982 + ] + ], + 372201 => [ + [ + "address" => "潍坊市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372221 => [ + [ + "address" => "益都县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372222 => [ + [ + "address" => "安丘县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372223 => [ + [ + "address" => "寿光县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372224 => [ + [ + "address" => "临朐县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372225 => [ + [ + "address" => "昌乐县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372226 => [ + [ + "address" => "昌邑县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372227 => [ + [ + "address" => "高密县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372228 => [ + [ + "address" => "诸城县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372229 => [ + [ + "address" => "五莲县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372230 => [ + [ + "address" => "平度县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372231 => [ + [ + "address" => "潍县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372300 => [ + [ + "address" => "惠民地区", + "start_year" => "", + "end_year" => 1991 + ], + [ + "address" => "滨州地区", + "start_year" => 1992, + "end_year" => 1999 + ] + ], + 372301 => [ + [ + "address" => "滨州市", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 372321 => [ + [ + "address" => "惠民县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372322 => [ + [ + "address" => "滨县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 372323 => [ + [ + "address" => "阳信县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372324 => [ + [ + "address" => "无棣县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372325 => [ + [ + "address" => "沾化县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372326 => [ + [ + "address" => "利津县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 372327 => [ + [ + "address" => "广饶县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372328 => [ + [ + "address" => "博兴县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372329 => [ + [ + "address" => "桓台县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372330 => [ + [ + "address" => "邹平县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372331 => [ + [ + "address" => "高青县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 372332 => [ + [ + "address" => "垦利县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 372400 => [ + [ + "address" => "德州地区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372401 => [ + [ + "address" => "德州市", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372402 => [ + [ + "address" => "乐陵市", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 372403 => [ + [ + "address" => "禹城市", + "start_year" => 1993, + "end_year" => 1993 + ] + ], + 372421 => [ + [ + "address" => "陵县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372422 => [ + [ + "address" => "平原县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372423 => [ + [ + "address" => "夏津县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372424 => [ + [ + "address" => "武城县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372425 => [ + [ + "address" => "齐河县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372426 => [ + [ + "address" => "禹城县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 372427 => [ + [ + "address" => "乐陵县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 372428 => [ + [ + "address" => "临邑县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372429 => [ + [ + "address" => "商河县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 372430 => [ + [ + "address" => "济阳县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 372431 => [ + [ + "address" => "宁津县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372432 => [ + [ + "address" => "庆云县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372500 => [ + [ + "address" => "聊城地区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 372501 => [ + [ + "address" => "聊城市", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 372502 => [ + [ + "address" => "临清市", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 372521 => [ + [ + "address" => "阳谷县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "聊城县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 372522 => [ + [ + "address" => "莘县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "阳谷县", + "start_year" => 1982, + "end_year" => 1996 + ] + ], + 372523 => [ + [ + "address" => "茌平县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "莘县", + "start_year" => 1982, + "end_year" => 1996 + ] + ], + 372524 => [ + [ + "address" => "东阿县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "茌平县", + "start_year" => 1982, + "end_year" => 1996 + ] + ], + 372525 => [ + [ + "address" => "冠县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "东阿县", + "start_year" => 1982, + "end_year" => 1996 + ] + ], + 372526 => [ + [ + "address" => "高唐县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "冠县", + "start_year" => 1982, + "end_year" => 1996 + ] + ], + 372527 => [ + [ + "address" => "临清县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "高唐县", + "start_year" => 1982, + "end_year" => 1996 + ] + ], + 372528 => [ + [ + "address" => "聊城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "临清县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 372600 => [ + [ + "address" => "泰安地区", + "start_year" => "", + "end_year" => 1984 + ] + ], + 372601 => [ + [ + "address" => "泰安市", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 372602 => [ + [ + "address" => "新汶市", + "start_year" => 1982, + "end_year" => 1982 + ], + [ + "address" => "莱芜市", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 372603 => [ + [ + "address" => "新泰市", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 372621 => [ + [ + "address" => "泰安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "莱芜县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 372622 => [ + [ + "address" => "莱芜县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "新泰县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 372623 => [ + [ + "address" => "新泰县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 372624 => [ + [ + "address" => "宁阳县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 372625 => [ + [ + "address" => "肥城县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 372626 => [ + [ + "address" => "东平县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 372627 => [ + [ + "address" => "平阴县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 372628 => [ + [ + "address" => "新汶县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 372629 => [ + [ + "address" => "汶上县", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 372630 => [ + [ + "address" => "泗水县", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 372700 => [ + [ + "address" => "济宁地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372701 => [ + [ + "address" => "济宁市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372721 => [ + [ + "address" => "济宁县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372722 => [ + [ + "address" => "兖州县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372723 => [ + [ + "address" => "曲阜县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372724 => [ + [ + "address" => "泗水县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372725 => [ + [ + "address" => "邹县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372726 => [ + [ + "address" => "微山县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372727 => [ + [ + "address" => "鱼台县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372728 => [ + [ + "address" => "金乡县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372729 => [ + [ + "address" => "嘉祥县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372730 => [ + [ + "address" => "汶上县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372800 => [ + [ + "address" => "临沂地区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372801 => [ + [ + "address" => "临沂市", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 372821 => [ + [ + "address" => "临沂县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372822 => [ + [ + "address" => "郯城县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372823 => [ + [ + "address" => "苍山县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372824 => [ + [ + "address" => "莒南县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372825 => [ + [ + "address" => "日照县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 372826 => [ + [ + "address" => "莒县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 372827 => [ + [ + "address" => "沂水县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372828 => [ + [ + "address" => "沂源县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 372829 => [ + [ + "address" => "蒙阴县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372830 => [ + [ + "address" => "平邑县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372831 => [ + [ + "address" => "费县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372832 => [ + [ + "address" => "沂南县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372833 => [ + [ + "address" => "临沭县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 372900 => [ + [ + "address" => "菏泽地区", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372901 => [ + [ + "address" => "菏泽市", + "start_year" => 1983, + "end_year" => 1999 + ] + ], + 372921 => [ + [ + "address" => "菏泽县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 372922 => [ + [ + "address" => "曹县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372923 => [ + [ + "address" => "定陶县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372924 => [ + [ + "address" => "成武县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372925 => [ + [ + "address" => "单县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372926 => [ + [ + "address" => "巨野县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372927 => [ + [ + "address" => "梁山县", + "start_year" => "", + "end_year" => 1988 + ] + ], + 372928 => [ + [ + "address" => "郓城县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372929 => [ + [ + "address" => "鄄城县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 372930 => [ + [ + "address" => "东明县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 379001 => [ + [ + "address" => "青州市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 379002 => [ + [ + "address" => "龙口市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 379003 => [ + [ + "address" => "曲阜市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 379004 => [ + [ + "address" => "莱芜市", + "start_year" => 1986, + "end_year" => 1991 + ] + ], + 379005 => [ + [ + "address" => "新泰市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 379006 => [ + [ + "address" => "威海市", + "start_year" => 1986, + "end_year" => 1986 + ], + [ + "address" => "胶州市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 379007 => [ + [ + "address" => "诸城市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 379008 => [ + [ + "address" => "莱阳市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 379009 => [ + [ + "address" => "莱州市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 379010 => [ + [ + "address" => "滕州市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 379011 => [ + [ + "address" => "文登市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 379012 => [ + [ + "address" => "荣成市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 379013 => [ + [ + "address" => "即墨市", + "start_year" => 1989, + "end_year" => 1994 + ] + ], + 379014 => [ + [ + "address" => "平度市", + "start_year" => 1989, + "end_year" => 1994 + ] + ], + 379015 => [ + [ + "address" => "莱西市", + "start_year" => 1990, + "end_year" => 1994 + ] + ], + 379016 => [ + [ + "address" => "胶南市", + "start_year" => 1990, + "end_year" => 1994 + ] + ], + 379017 => [ + [ + "address" => "蓬莱市", + "start_year" => 1991, + "end_year" => 1994 + ] + ], + 379018 => [ + [ + "address" => "招远市", + "start_year" => 1991, + "end_year" => 1994 + ] + ], + 379019 => [ + [ + "address" => "肥城市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 379020 => [ + [ + "address" => "章丘市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 379021 => [ + [ + "address" => "兖州市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 379022 => [ + [ + "address" => "邹城市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 379023 => [ + [ + "address" => "寿光市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 379024 => [ + [ + "address" => "乳山市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 379025 => [ + [ + "address" => "乐陵市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 379026 => [ + [ + "address" => "禹城市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 379027 => [ + [ + "address" => "安丘市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 379028 => [ + [ + "address" => "昌邑市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 379029 => [ + [ + "address" => "高密市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 410000 => [ + [ + "address" => "河南省", + "start_year" => "", + "end_year" => "" + ] + ], + 410100 => [ + [ + "address" => "郑州市", + "start_year" => "", + "end_year" => "" + ] + ], + 410102 => [ + [ + "address" => "中原区", + "start_year" => "", + "end_year" => "" + ] + ], + 410103 => [ + [ + "address" => "二七区", + "start_year" => "", + "end_year" => "" + ] + ], + 410104 => [ + [ + "address" => "向阳回族区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "管城回族区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410105 => [ + [ + "address" => "金水区", + "start_year" => "", + "end_year" => "" + ] + ], + 410106 => [ + [ + "address" => "上街区", + "start_year" => "", + "end_year" => "" + ] + ], + 410107 => [ + [ + "address" => "新密区", + "start_year" => 1982, + "end_year" => 1986 + ] + ], + 410108 => [ + [ + "address" => "邙山区", + "start_year" => 1987, + "end_year" => 2002 + ], + [ + "address" => "惠济区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 410111 => [ + [ + "address" => "金海区", + "start_year" => 1981, + "end_year" => 1986 + ] + ], + 410112 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1986 + ] + ], + 410121 => [ + [ + "address" => "荥阳县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 410122 => [ + [ + "address" => "中牟县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410123 => [ + [ + "address" => "新郑县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 410124 => [ + [ + "address" => "巩县", + "start_year" => 1983, + "end_year" => 1990 + ] + ], + 410125 => [ + [ + "address" => "登封县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 410126 => [ + [ + "address" => "密县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 410181 => [ + [ + "address" => "巩义市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410182 => [ + [ + "address" => "荥阳市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410183 => [ + [ + "address" => "新密市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410184 => [ + [ + "address" => "新郑市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410185 => [ + [ + "address" => "登封市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410200 => [ + [ + "address" => "开封市", + "start_year" => "", + "end_year" => "" + ] + ], + 410202 => [ + [ + "address" => "龙亭区", + "start_year" => "", + "end_year" => "" + ] + ], + 410203 => [ + [ + "address" => "顺河回族区", + "start_year" => "", + "end_year" => "" + ] + ], + 410204 => [ + [ + "address" => "古楼区", + "start_year" => "", + "end_year" => 1988 + ], + [ + "address" => "鼓楼区", + "start_year" => 1989, + "end_year" => "" + ] + ], + 410205 => [ + [ + "address" => "南关区", + "start_year" => "", + "end_year" => 2004 + ], + [ + "address" => "禹王台区", + "start_year" => 2005, + "end_year" => "" + ] + ], + 410211 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 2004 + ], + [ + "address" => "金明区", + "start_year" => 2005, + "end_year" => 2013 + ] + ], + 410212 => [ + [ + "address" => "祥符区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 410221 => [ + [ + "address" => "杞县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410222 => [ + [ + "address" => "通许县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410223 => [ + [ + "address" => "尉氏县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410224 => [ + [ + "address" => "开封县", + "start_year" => 1983, + "end_year" => 2013 + ] + ], + 410225 => [ + [ + "address" => "兰考县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410300 => [ + [ + "address" => "洛阳市", + "start_year" => "", + "end_year" => "" + ] + ], + 410302 => [ + [ + "address" => "洛北区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "老城区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410303 => [ + [ + "address" => "西工区", + "start_year" => "", + "end_year" => "" + ] + ], + 410304 => [ + [ + "address" => "瀍河回族区", + "start_year" => "", + "end_year" => "" + ] + ], + 410305 => [ + [ + "address" => "涧西区", + "start_year" => "", + "end_year" => "" + ] + ], + 410306 => [ + [ + "address" => "吉利区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 410311 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1999 + ], + [ + "address" => "洛龙区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 410321 => [ + [ + "address" => "偃师县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 410322 => [ + [ + "address" => "孟津县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410323 => [ + [ + "address" => "新安县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410324 => [ + [ + "address" => "栾川县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410325 => [ + [ + "address" => "嵩县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410326 => [ + [ + "address" => "汝阳县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410327 => [ + [ + "address" => "宜阳县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410328 => [ + [ + "address" => "洛宁县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410329 => [ + [ + "address" => "伊川县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410381 => [ + [ + "address" => "偃师市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410400 => [ + [ + "address" => "平顶山市", + "start_year" => "", + "end_year" => "" + ] + ], + 410402 => [ + [ + "address" => "新华区", + "start_year" => "", + "end_year" => "" + ] + ], + 410403 => [ + [ + "address" => "卫东区", + "start_year" => "", + "end_year" => "" + ] + ], + 410404 => [ + [ + "address" => "石龙区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 410411 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1993 + ], + [ + "address" => "湛河区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 410412 => [ + [ + "address" => "舞钢区", + "start_year" => 1982, + "end_year" => 1989 + ] + ], + 410421 => [ + [ + "address" => "宝丰县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410422 => [ + [ + "address" => "叶县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410423 => [ + [ + "address" => "鲁山县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410424 => [ + [ + "address" => "临汝县", + "start_year" => 1986, + "end_year" => 1987 + ] + ], + 410425 => [ + [ + "address" => "郏县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410426 => [ + [ + "address" => "襄城县", + "start_year" => 1986, + "end_year" => 1996 + ] + ], + 410481 => [ + [ + "address" => "舞钢市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410482 => [ + [ + "address" => "汝州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410500 => [ + [ + "address" => "鹤壁市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "安阳市", + "start_year" => 1984, + "end_year" => "" + ] + ], + 410502 => [ + [ + "address" => "鹤山区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "文峰区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 410503 => [ + [ + "address" => "山城区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "北关区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 410504 => [ + [ + "address" => "铁西区", + "start_year" => 1984, + "end_year" => 2001 + ] + ], + 410505 => [ + [ + "address" => "殷都区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 410506 => [ + [ + "address" => "龙安区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 410511 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 410521 => [ + [ + "address" => "林县", + "start_year" => 1984, + "end_year" => 1993 + ] + ], + 410522 => [ + [ + "address" => "安阳县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 410523 => [ + [ + "address" => "汤阴县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 410524 => [ + [ + "address" => "淇县", + "start_year" => 1984, + "end_year" => 1985 + ] + ], + 410525 => [ + [ + "address" => "浚县", + "start_year" => 1984, + "end_year" => 1985 + ] + ], + 410526 => [ + [ + "address" => "滑县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410527 => [ + [ + "address" => "内黄县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410581 => [ + [ + "address" => "林州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410600 => [ + [ + "address" => "焦作市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "鹤壁市", + "start_year" => 1982, + "end_year" => "" + ] + ], + 410602 => [ + [ + "address" => "解放区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "鹤山区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 410603 => [ + [ + "address" => "中站区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "山城区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 410604 => [ + [ + "address" => "马村区", + "start_year" => "", + "end_year" => 1981 + ] + ], + 410611 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 2000 + ], + [ + "address" => "淇滨区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 410621 => [ + [ + "address" => "浚县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410622 => [ + [ + "address" => "淇县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410700 => [ + [ + "address" => "新乡市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410702 => [ + [ + "address" => "红旗区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410703 => [ + [ + "address" => "新华区", + "start_year" => 1983, + "end_year" => 2002 + ], + [ + "address" => "卫滨区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 410704 => [ + [ + "address" => "北站区", + "start_year" => 1983, + "end_year" => 2002 + ], + [ + "address" => "凤泉区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 410711 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 2002 + ], + [ + "address" => "牧野区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 410721 => [ + [ + "address" => "新乡县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410722 => [ + [ + "address" => "汲县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 410723 => [ + [ + "address" => "辉县", + "start_year" => 1986, + "end_year" => 1987 + ] + ], + 410724 => [ + [ + "address" => "获嘉县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410725 => [ + [ + "address" => "原阳县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410726 => [ + [ + "address" => "延津县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410727 => [ + [ + "address" => "封丘县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410728 => [ + [ + "address" => "长垣县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410781 => [ + [ + "address" => "卫辉市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410782 => [ + [ + "address" => "辉县市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410800 => [ + [ + "address" => "焦作市", + "start_year" => 1982, + "end_year" => "" + ] + ], + 410802 => [ + [ + "address" => "解放区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 410803 => [ + [ + "address" => "中站区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 410804 => [ + [ + "address" => "马村区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 410811 => [ + [ + "address" => "郊区", + "start_year" => 1982, + "end_year" => 1989 + ], + [ + "address" => "山阳区", + "start_year" => 1990, + "end_year" => "" + ] + ], + 410821 => [ + [ + "address" => "修武县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410822 => [ + [ + "address" => "博爱县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410823 => [ + [ + "address" => "武陟县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410824 => [ + [ + "address" => "沁阳县", + "start_year" => 1986, + "end_year" => 1988 + ] + ], + 410825 => [ + [ + "address" => "温县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 410826 => [ + [ + "address" => "孟县", + "start_year" => 1986, + "end_year" => 1995 + ] + ], + 410827 => [ + [ + "address" => "济源县", + "start_year" => 1986, + "end_year" => 1987 + ] + ], + 410881 => [ + [ + "address" => "济源市", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 410882 => [ + [ + "address" => "沁阳市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 410883 => [ + [ + "address" => "孟州市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 410900 => [ + [ + "address" => "濮阳市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410902 => [ + [ + "address" => "市区", + "start_year" => 1985, + "end_year" => 2001 + ], + [ + "address" => "华龙区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 410911 => [ + [ + "address" => "郊区", + "start_year" => 1984, + "end_year" => 1986 + ] + ], + 410921 => [ + [ + "address" => "滑县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 410922 => [ + [ + "address" => "清丰县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410923 => [ + [ + "address" => "南乐县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410924 => [ + [ + "address" => "内黄县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 410925 => [ + [ + "address" => "长垣县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 410926 => [ + [ + "address" => "范县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410927 => [ + [ + "address" => "台前县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410928 => [ + [ + "address" => "濮阳县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 411000 => [ + [ + "address" => "许昌市", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411002 => [ + [ + "address" => "魏都区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411003 => [ + [ + "address" => "建安区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 411021 => [ + [ + "address" => "禹县", + "start_year" => 1986, + "end_year" => 1987 + ] + ], + 411022 => [ + [ + "address" => "长葛县", + "start_year" => 1986, + "end_year" => 1992 + ] + ], + 411023 => [ + [ + "address" => "许昌县", + "start_year" => 1986, + "end_year" => 2015 + ] + ], + 411024 => [ + [ + "address" => "鄢陵县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411025 => [ + [ + "address" => "襄城县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411081 => [ + [ + "address" => "禹州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 411082 => [ + [ + "address" => "长葛市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 411100 => [ + [ + "address" => "漯河市", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411102 => [ + [ + "address" => "源汇区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411103 => [ + [ + "address" => "郾城区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 411104 => [ + [ + "address" => "召陵区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 411121 => [ + [ + "address" => "舞阳县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411122 => [ + [ + "address" => "临颍县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411123 => [ + [ + "address" => "郾城县", + "start_year" => 1986, + "end_year" => 2003 + ] + ], + 411200 => [ + [ + "address" => "三门峡市", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411202 => [ + [ + "address" => "湖滨区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411203 => [ + [ + "address" => "陕州区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 411221 => [ + [ + "address" => "渑池县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411222 => [ + [ + "address" => "陕县", + "start_year" => 1986, + "end_year" => 2014 + ] + ], + 411223 => [ + [ + "address" => "灵宝县", + "start_year" => 1986, + "end_year" => 1992 + ] + ], + 411224 => [ + [ + "address" => "卢氏县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411281 => [ + [ + "address" => "义马市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 411282 => [ + [ + "address" => "灵宝市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 411300 => [ + [ + "address" => "南阳市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411302 => [ + [ + "address" => "宛城区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411303 => [ + [ + "address" => "卧龙区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411321 => [ + [ + "address" => "南召县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411322 => [ + [ + "address" => "方城县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411323 => [ + [ + "address" => "西峡县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411324 => [ + [ + "address" => "镇平县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411325 => [ + [ + "address" => "内乡县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411326 => [ + [ + "address" => "淅川县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411327 => [ + [ + "address" => "社旗县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411328 => [ + [ + "address" => "唐河县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411329 => [ + [ + "address" => "新野县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411330 => [ + [ + "address" => "桐柏县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411381 => [ + [ + "address" => "邓州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 411400 => [ + [ + "address" => "商丘市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411402 => [ + [ + "address" => "梁园区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411403 => [ + [ + "address" => "睢阳区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411421 => [ + [ + "address" => "民权县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411422 => [ + [ + "address" => "睢县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411423 => [ + [ + "address" => "宁陵县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411424 => [ + [ + "address" => "柘城县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411425 => [ + [ + "address" => "虞城县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411426 => [ + [ + "address" => "夏邑县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411481 => [ + [ + "address" => "永城市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411500 => [ + [ + "address" => "信阳市", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411502 => [ + [ + "address" => "浉河区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411503 => [ + [ + "address" => "平桥区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411521 => [ + [ + "address" => "罗山县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411522 => [ + [ + "address" => "光山县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411523 => [ + [ + "address" => "新县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411524 => [ + [ + "address" => "商城县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411525 => [ + [ + "address" => "固始县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411526 => [ + [ + "address" => "潢川县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411527 => [ + [ + "address" => "淮滨县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411528 => [ + [ + "address" => "息县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411600 => [ + [ + "address" => "周口市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411602 => [ + [ + "address" => "川汇区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411621 => [ + [ + "address" => "扶沟县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411622 => [ + [ + "address" => "西华县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411623 => [ + [ + "address" => "商水县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411624 => [ + [ + "address" => "沈丘县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411625 => [ + [ + "address" => "郸城县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411626 => [ + [ + "address" => "淮阳县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411627 => [ + [ + "address" => "太康县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411628 => [ + [ + "address" => "鹿邑县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411681 => [ + [ + "address" => "项城市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411700 => [ + [ + "address" => "驻马店市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411702 => [ + [ + "address" => "驿城区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411721 => [ + [ + "address" => "西平县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411722 => [ + [ + "address" => "上蔡县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411723 => [ + [ + "address" => "平舆县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411724 => [ + [ + "address" => "正阳县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411725 => [ + [ + "address" => "确山县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411726 => [ + [ + "address" => "泌阳县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411727 => [ + [ + "address" => "汝南县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411728 => [ + [ + "address" => "遂平县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411729 => [ + [ + "address" => "新蔡县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 412100 => [ + [ + "address" => "安阳地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412101 => [ + [ + "address" => "安阳市", + "start_year" => "", + "end_year" => 1983 + ] + ], + 412102 => [ + [ + "address" => "文峰区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 412103 => [ + [ + "address" => "北关区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 412104 => [ + [ + "address" => "铁西区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 412111 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 412121 => [ + [ + "address" => "林县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 412122 => [ + [ + "address" => "安阳县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 412123 => [ + [ + "address" => "汤阴县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 412124 => [ + [ + "address" => "淇县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 412125 => [ + [ + "address" => "浚县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 412126 => [ + [ + "address" => "濮阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412127 => [ + [ + "address" => "滑县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412128 => [ + [ + "address" => "清丰县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412129 => [ + [ + "address" => "南乐县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412130 => [ + [ + "address" => "内黄县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412131 => [ + [ + "address" => "长垣县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412132 => [ + [ + "address" => "范县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412133 => [ + [ + "address" => "台前县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412200 => [ + [ + "address" => "新乡地区", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412201 => [ + [ + "address" => "新乡市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412202 => [ + [ + "address" => "红旗区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412203 => [ + [ + "address" => "新华区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412204 => [ + [ + "address" => "北站区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 412211 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412221 => [ + [ + "address" => "沁阳县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412222 => [ + [ + "address" => "博爱县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412223 => [ + [ + "address" => "济源县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412224 => [ + [ + "address" => "孟县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412225 => [ + [ + "address" => "温县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412226 => [ + [ + "address" => "武陟县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412227 => [ + [ + "address" => "修武县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412228 => [ + [ + "address" => "获嘉县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412229 => [ + [ + "address" => "新乡县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412230 => [ + [ + "address" => "辉县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412231 => [ + [ + "address" => "汲县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412232 => [ + [ + "address" => "原阳县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412233 => [ + [ + "address" => "延津县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412234 => [ + [ + "address" => "封丘县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412300 => [ + [ + "address" => "商丘地区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 412301 => [ + [ + "address" => "商丘市", + "start_year" => "", + "end_year" => 1996 + ] + ], + 412302 => [ + [ + "address" => "永城市", + "start_year" => 1996, + "end_year" => 1996 + ] + ], + 412321 => [ + [ + "address" => "虞城县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 412322 => [ + [ + "address" => "商丘县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 412323 => [ + [ + "address" => "民权县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 412324 => [ + [ + "address" => "宁陵县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 412325 => [ + [ + "address" => "睢县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 412326 => [ + [ + "address" => "夏邑县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 412327 => [ + [ + "address" => "柘城县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 412328 => [ + [ + "address" => "永城县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 412400 => [ + [ + "address" => "开封地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412421 => [ + [ + "address" => "杞县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412422 => [ + [ + "address" => "通许县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412423 => [ + [ + "address" => "尉氏县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412424 => [ + [ + "address" => "开封县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412425 => [ + [ + "address" => "中牟县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412426 => [ + [ + "address" => "新郑县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "巩县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 412427 => [ + [ + "address" => "巩县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "登封县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 412428 => [ + [ + "address" => "登封县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "新郑县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 412429 => [ + [ + "address" => "密县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412430 => [ + [ + "address" => "兰考县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412500 => [ + [ + "address" => "洛阳地区", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412501 => [ + [ + "address" => "三门峡市", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412502 => [ + [ + "address" => "义马市", + "start_year" => 1981, + "end_year" => 1985 + ] + ], + 412521 => [ + [ + "address" => "偃师县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412522 => [ + [ + "address" => "孟津县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412523 => [ + [ + "address" => "新安县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412524 => [ + [ + "address" => "渑池县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412525 => [ + [ + "address" => "陕县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412526 => [ + [ + "address" => "灵宝县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412527 => [ + [ + "address" => "伊川县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412528 => [ + [ + "address" => "汝阳县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412529 => [ + [ + "address" => "嵩县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412530 => [ + [ + "address" => "洛宁县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412531 => [ + [ + "address" => "卢氏县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412532 => [ + [ + "address" => "栾川县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412533 => [ + [ + "address" => "临汝县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412534 => [ + [ + "address" => "宜阳县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412600 => [ + [ + "address" => "许昌地区", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412601 => [ + [ + "address" => "许昌市", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412602 => [ + [ + "address" => "漯河市", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412621 => [ + [ + "address" => "长葛县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412622 => [ + [ + "address" => "禹县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412623 => [ + [ + "address" => "鄢陵县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412624 => [ + [ + "address" => "许昌县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412625 => [ + [ + "address" => "郏县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412626 => [ + [ + "address" => "临颍县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412627 => [ + [ + "address" => "襄城县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412628 => [ + [ + "address" => "宝丰县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412629 => [ + [ + "address" => "郾城县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412630 => [ + [ + "address" => "叶县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412631 => [ + [ + "address" => "鲁山县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 412632 => [ + [ + "address" => "舞阳县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 412700 => [ + [ + "address" => "周口地区", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412701 => [ + [ + "address" => "周口市", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412702 => [ + [ + "address" => "项城市", + "start_year" => 1993, + "end_year" => 1999 + ] + ], + 412721 => [ + [ + "address" => "扶沟县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412722 => [ + [ + "address" => "西华县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412723 => [ + [ + "address" => "商水县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412724 => [ + [ + "address" => "太康县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412725 => [ + [ + "address" => "鹿邑县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412726 => [ + [ + "address" => "郸城县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412727 => [ + [ + "address" => "淮阳县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412728 => [ + [ + "address" => "沈丘县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412729 => [ + [ + "address" => "项城县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 412800 => [ + [ + "address" => "驻马店地区", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412801 => [ + [ + "address" => "驻马店市", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412821 => [ + [ + "address" => "确山县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412822 => [ + [ + "address" => "泌阳县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412823 => [ + [ + "address" => "遂平县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412824 => [ + [ + "address" => "西平县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412825 => [ + [ + "address" => "上蔡县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412826 => [ + [ + "address" => "汝南县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412827 => [ + [ + "address" => "平舆县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412828 => [ + [ + "address" => "新蔡县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412829 => [ + [ + "address" => "正阳县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 412900 => [ + [ + "address" => "南阳地区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412901 => [ + [ + "address" => "南阳市", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412902 => [ + [ + "address" => "邓州市", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 412921 => [ + [ + "address" => "南召县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412922 => [ + [ + "address" => "方城县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412923 => [ + [ + "address" => "西峡县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412924 => [ + [ + "address" => "南阳县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412925 => [ + [ + "address" => "镇平县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412926 => [ + [ + "address" => "内乡县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412927 => [ + [ + "address" => "淅川县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412928 => [ + [ + "address" => "社旗县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412929 => [ + [ + "address" => "唐河县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412930 => [ + [ + "address" => "邓县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 412931 => [ + [ + "address" => "新野县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 412932 => [ + [ + "address" => "桐柏县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 413000 => [ + [ + "address" => "信阳地区", + "start_year" => "", + "end_year" => 1997 + ] + ], + 413001 => [ + [ + "address" => "信阳市", + "start_year" => "", + "end_year" => 1997 + ] + ], + 413021 => [ + [ + "address" => "息县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 413022 => [ + [ + "address" => "淮滨县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 413023 => [ + [ + "address" => "信阳县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 413024 => [ + [ + "address" => "潢川县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 413025 => [ + [ + "address" => "光山县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 413026 => [ + [ + "address" => "固始县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 413027 => [ + [ + "address" => "商城县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 413028 => [ + [ + "address" => "罗山县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 413029 => [ + [ + "address" => "新县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 419001 => [ + [ + "address" => "义马市", + "start_year" => 1986, + "end_year" => 1994 + ], + [ + "address" => "济源市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 419002 => [ + [ + "address" => "汝州市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 419003 => [ + [ + "address" => "济源市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 419004 => [ + [ + "address" => "禹州市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 419005 => [ + [ + "address" => "卫辉市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 419006 => [ + [ + "address" => "辉县市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 419007 => [ + [ + "address" => "沁阳市", + "start_year" => 1989, + "end_year" => 1994 + ] + ], + 419008 => [ + [ + "address" => "舞钢市", + "start_year" => 1990, + "end_year" => 1994 + ] + ], + 419009 => [ + [ + "address" => "巩义市", + "start_year" => 1991, + "end_year" => 1994 + ] + ], + 419010 => [ + [ + "address" => "灵宝市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 419011 => [ + [ + "address" => "长葛市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 419012 => [ + [ + "address" => "偃师市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 419013 => [ + [ + "address" => "邓州市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 419014 => [ + [ + "address" => "林州市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 419015 => [ + [ + "address" => "新密市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 419016 => [ + [ + "address" => "荥阳市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 419017 => [ + [ + "address" => "新郑市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 419018 => [ + [ + "address" => "登封市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 420000 => [ + [ + "address" => "湖北省", + "start_year" => "", + "end_year" => "" + ] + ], + 420100 => [ + [ + "address" => "武汉市", + "start_year" => "", + "end_year" => "" + ] + ], + 420102 => [ + [ + "address" => "江岸区", + "start_year" => "", + "end_year" => "" + ] + ], + 420103 => [ + [ + "address" => "江汉区", + "start_year" => "", + "end_year" => "" + ] + ], + 420104 => [ + [ + "address" => "硚口区", + "start_year" => "", + "end_year" => "" + ] + ], + 420105 => [ + [ + "address" => "汉阳区", + "start_year" => "", + "end_year" => "" + ] + ], + 420106 => [ + [ + "address" => "武昌区", + "start_year" => "", + "end_year" => "" + ] + ], + 420107 => [ + [ + "address" => "青山区", + "start_year" => "", + "end_year" => "" + ] + ], + 420111 => [ + [ + "address" => "洪山区", + "start_year" => "", + "end_year" => "" + ] + ], + 420112 => [ + [ + "address" => "东西湖区", + "start_year" => "", + "end_year" => "" + ] + ], + 420113 => [ + [ + "address" => "汉南区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 420114 => [ + [ + "address" => "蔡甸区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 420115 => [ + [ + "address" => "江夏区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 420116 => [ + [ + "address" => "黄陂区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 420117 => [ + [ + "address" => "新洲区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 420121 => [ + [ + "address" => "汉阳县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 420122 => [ + [ + "address" => "武昌县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 420123 => [ + [ + "address" => "黄陂县", + "start_year" => 1983, + "end_year" => 1997 + ] + ], + 420124 => [ + [ + "address" => "新洲县", + "start_year" => 1983, + "end_year" => 1997 + ] + ], + 420200 => [ + [ + "address" => "黄石市", + "start_year" => "", + "end_year" => "" + ] + ], + 420202 => [ + [ + "address" => "黄石港区", + "start_year" => "", + "end_year" => "" + ] + ], + 420203 => [ + [ + "address" => "石灰窑区", + "start_year" => "", + "end_year" => 2000 + ], + [ + "address" => "西塞山区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 420204 => [ + [ + "address" => "下陆区", + "start_year" => "", + "end_year" => "" + ] + ], + 420205 => [ + [ + "address" => "铁山区", + "start_year" => "", + "end_year" => "" + ] + ], + 420211 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 420221 => [ + [ + "address" => "大冶县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 420222 => [ + [ + "address" => "阳新县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 420281 => [ + [ + "address" => "大冶市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 420300 => [ + [ + "address" => "十堰市", + "start_year" => "", + "end_year" => "" + ] + ], + 420302 => [ + [ + "address" => "茅箭区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 420303 => [ + [ + "address" => "张湾区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 420304 => [ + [ + "address" => "郧阳区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 420321 => [ + [ + "address" => "郧县", + "start_year" => 1994, + "end_year" => 2013 + ] + ], + 420322 => [ + [ + "address" => "郧西县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 420323 => [ + [ + "address" => "竹山县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 420324 => [ + [ + "address" => "竹溪县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 420325 => [ + [ + "address" => "房县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 420381 => [ + [ + "address" => "丹江口市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 420400 => [ + [ + "address" => "沙市市", + "start_year" => "", + "end_year" => 1993 + ] + ], + 420500 => [ + [ + "address" => "宜昌市", + "start_year" => "", + "end_year" => "" + ] + ], + 420502 => [ + [ + "address" => "西陵区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 420503 => [ + [ + "address" => "伍家岗区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 420504 => [ + [ + "address" => "点军区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 420505 => [ + [ + "address" => "猇亭区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 420506 => [ + [ + "address" => "夷陵区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 420521 => [ + [ + "address" => "宜昌县", + "start_year" => 1992, + "end_year" => 2000 + ] + ], + 420523 => [ + [ + "address" => "枝江县", + "start_year" => 1992, + "end_year" => 1995 + ] + ], + 420525 => [ + [ + "address" => "远安县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 420526 => [ + [ + "address" => "兴山县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 420527 => [ + [ + "address" => "秭归县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 420528 => [ + [ + "address" => "长阳土家族自治县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 420529 => [ + [ + "address" => "五峰土家族自治县", + "start_year" => 1992, + "end_year" => "" + ] + ], + 420581 => [ + [ + "address" => "枝城市", + "start_year" => 1996, + "end_year" => 1997 + ], + [ + "address" => "宜都市", + "start_year" => 1998, + "end_year" => "" + ] + ], + 420582 => [ + [ + "address" => "当阳市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 420583 => [ + [ + "address" => "枝城市", + "start_year" => 1995, + "end_year" => 1995 + ], + [ + "address" => "枝江市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 420600 => [ + [ + "address" => "襄樊市", + "start_year" => "", + "end_year" => 2009 + ], + [ + "address" => "襄阳市", + "start_year" => 2010, + "end_year" => "" + ] + ], + 420602 => [ + [ + "address" => "襄城区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 420603 => [ + [ + "address" => "樊东区", + "start_year" => 1984, + "end_year" => 1994 + ] + ], + 420604 => [ + [ + "address" => "樊西区", + "start_year" => 1984, + "end_year" => 1994 + ] + ], + 420606 => [ + [ + "address" => "樊城区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 420607 => [ + [ + "address" => "襄阳区", + "start_year" => 2001, + "end_year" => 2009 + ], + [ + "address" => "襄州区", + "start_year" => 2010, + "end_year" => "" + ] + ], + 420611 => [ + [ + "address" => "郊区", + "start_year" => 1984, + "end_year" => 1994 + ] + ], + 420621 => [ + [ + "address" => "襄阳县", + "start_year" => 1983, + "end_year" => 2000 + ] + ], + 420622 => [ + [ + "address" => "枣阳县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 420623 => [ + [ + "address" => "宜城县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 420624 => [ + [ + "address" => "南漳县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 420625 => [ + [ + "address" => "谷城县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 420626 => [ + [ + "address" => "保康县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 420682 => [ + [ + "address" => "老河口市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 420683 => [ + [ + "address" => "枣阳市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 420684 => [ + [ + "address" => "宜城市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 420700 => [ + [ + "address" => "鄂州市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 420702 => [ + [ + "address" => "梁子湖区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 420703 => [ + [ + "address" => "黄州区", + "start_year" => 1984, + "end_year" => 1986 + ], + [ + "address" => "华容区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 420704 => [ + [ + "address" => "鄂城区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 420800 => [ + [ + "address" => "荆门市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 420802 => [ + [ + "address" => "东宝区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 420803 => [ + [ + "address" => "沙洋区", + "start_year" => 1985, + "end_year" => 1997 + ] + ], + 420804 => [ + [ + "address" => "掇刀区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 420821 => [ + [ + "address" => "京山县", + "start_year" => 1996, + "end_year" => 2017 + ] + ], + 420822 => [ + [ + "address" => "沙洋县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 420881 => [ + [ + "address" => "钟祥市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 420882 => [ + [ + "address" => "京山市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 420900 => [ + [ + "address" => "孝感市", + "start_year" => 1993, + "end_year" => "" + ] + ], + 420901 => [ + [ + "address" => "随州市", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 420902 => [ + [ + "address" => "孝南区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 420921 => [ + [ + "address" => "孝昌县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 420922 => [ + [ + "address" => "大悟县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 420923 => [ + [ + "address" => "云梦县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 420924 => [ + [ + "address" => "汉川县", + "start_year" => 1993, + "end_year" => 1996 + ] + ], + 420981 => [ + [ + "address" => "应城市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 420982 => [ + [ + "address" => "安陆市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 420983 => [ + [ + "address" => "广水市", + "start_year" => 1995, + "end_year" => 1999 + ] + ], + 420984 => [ + [ + "address" => "汉川市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 421000 => [ + [ + "address" => "荆沙市", + "start_year" => 1994, + "end_year" => 1995 + ], + [ + "address" => "荆州市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 421001 => [ + [ + "address" => "老河口市", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 421002 => [ + [ + "address" => "沙市区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 421003 => [ + [ + "address" => "荆州区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 421004 => [ + [ + "address" => "江陵区", + "start_year" => 1994, + "end_year" => 1997 + ] + ], + 421022 => [ + [ + "address" => "公安县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 421023 => [ + [ + "address" => "监利县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 421024 => [ + [ + "address" => "松滋县", + "start_year" => 1994, + "end_year" => 1994 + ], + [ + "address" => "江陵县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 421025 => [ + [ + "address" => "京山县", + "start_year" => 1994, + "end_year" => 1995 + ] + ], + 421081 => [ + [ + "address" => "石首市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421082 => [ + [ + "address" => "钟祥市", + "start_year" => 1995, + "end_year" => 1995 + ] + ], + 421083 => [ + [ + "address" => "洪湖市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421087 => [ + [ + "address" => "松滋市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421100 => [ + [ + "address" => "黄冈市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421102 => [ + [ + "address" => "黄州区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421121 => [ + [ + "address" => "团风县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421122 => [ + [ + "address" => "红安县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421123 => [ + [ + "address" => "罗田县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421124 => [ + [ + "address" => "英山县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421125 => [ + [ + "address" => "浠水县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421126 => [ + [ + "address" => "蕲春县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421127 => [ + [ + "address" => "黄梅县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421181 => [ + [ + "address" => "麻城市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421182 => [ + [ + "address" => "武穴市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421200 => [ + [ + "address" => "咸宁市", + "start_year" => 1998, + "end_year" => "" + ] + ], + 421202 => [ + [ + "address" => "咸安区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 421221 => [ + [ + "address" => "嘉鱼县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 421222 => [ + [ + "address" => "通城县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 421223 => [ + [ + "address" => "崇阳县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 421224 => [ + [ + "address" => "通山县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 421281 => [ + [ + "address" => "赤壁市", + "start_year" => 1998, + "end_year" => "" + ] + ], + 421300 => [ + [ + "address" => "随州市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 421303 => [ + [ + "address" => "曾都区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 421321 => [ + [ + "address" => "随县", + "start_year" => 2009, + "end_year" => "" + ] + ], + 421381 => [ + [ + "address" => "广水市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 422100 => [ + [ + "address" => "黄冈地区", + "start_year" => "", + "end_year" => 1994 + ] + ], + 422101 => [ + [ + "address" => "鄂城市", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "麻城市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 422102 => [ + [ + "address" => "武穴市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 422103 => [ + [ + "address" => "黄州市", + "start_year" => 1990, + "end_year" => 1994 + ] + ], + 422121 => [ + [ + "address" => "黄冈县", + "start_year" => "", + "end_year" => 1989 + ] + ], + 422122 => [ + [ + "address" => "新洲县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422123 => [ + [ + "address" => "红安县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 422124 => [ + [ + "address" => "麻城县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 422125 => [ + [ + "address" => "罗田县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 422126 => [ + [ + "address" => "英山县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 422127 => [ + [ + "address" => "浠水县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 422128 => [ + [ + "address" => "蕲春县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 422129 => [ + [ + "address" => "广济县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 422130 => [ + [ + "address" => "黄梅县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 422131 => [ + [ + "address" => "鄂城县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422200 => [ + [ + "address" => "孝感地区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 422201 => [ + [ + "address" => "孝感市", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 422202 => [ + [ + "address" => "应城市", + "start_year" => 1986, + "end_year" => 1992 + ] + ], + 422203 => [ + [ + "address" => "安陆市", + "start_year" => 1987, + "end_year" => 1992 + ] + ], + 422204 => [ + [ + "address" => "广水市", + "start_year" => 1988, + "end_year" => 1992 + ] + ], + 422221 => [ + [ + "address" => "孝感县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422222 => [ + [ + "address" => "黄陂县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422223 => [ + [ + "address" => "大悟县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 422224 => [ + [ + "address" => "应山县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 422225 => [ + [ + "address" => "安陆县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 422226 => [ + [ + "address" => "云梦县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 422227 => [ + [ + "address" => "应城县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 422228 => [ + [ + "address" => "汉川县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 422300 => [ + [ + "address" => "咸宁地区", + "start_year" => "", + "end_year" => 1997 + ] + ], + 422301 => [ + [ + "address" => "咸宁市", + "start_year" => 1983, + "end_year" => 1997 + ] + ], + 422302 => [ + [ + "address" => "蒲圻市", + "start_year" => 1986, + "end_year" => 1997 + ] + ], + 422321 => [ + [ + "address" => "咸宁县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422322 => [ + [ + "address" => "嘉鱼县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 422323 => [ + [ + "address" => "蒲圻县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 422324 => [ + [ + "address" => "通城县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 422325 => [ + [ + "address" => "崇阳县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 422326 => [ + [ + "address" => "通山县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 422327 => [ + [ + "address" => "阳新县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 422400 => [ + [ + "address" => "荆州地区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422401 => [ + [ + "address" => "荆门市", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "仙桃市", + "start_year" => 1986, + "end_year" => 1993 + ] + ], + 422402 => [ + [ + "address" => "石首市", + "start_year" => 1986, + "end_year" => 1993 + ] + ], + 422403 => [ + [ + "address" => "洪湖市", + "start_year" => 1987, + "end_year" => 1993 + ] + ], + 422404 => [ + [ + "address" => "天门市", + "start_year" => 1987, + "end_year" => 1993 + ] + ], + 422405 => [ + [ + "address" => "潜江市", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 422406 => [ + [ + "address" => "钟祥市", + "start_year" => 1992, + "end_year" => 1993 + ] + ], + 422421 => [ + [ + "address" => "江陵县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422422 => [ + [ + "address" => "松滋县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422423 => [ + [ + "address" => "公安县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422424 => [ + [ + "address" => "石首县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 422425 => [ + [ + "address" => "监利县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422426 => [ + [ + "address" => "洪湖县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 422427 => [ + [ + "address" => "沔阳县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 422428 => [ + [ + "address" => "天门县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 422429 => [ + [ + "address" => "潜江县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 422430 => [ + [ + "address" => "荆门县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422431 => [ + [ + "address" => "钟祥县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 422432 => [ + [ + "address" => "京山县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422500 => [ + [ + "address" => "襄阳地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422501 => [ + [ + "address" => "随州市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422502 => [ + [ + "address" => "老河口市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422521 => [ + [ + "address" => "樊阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422522 => [ + [ + "address" => "枣阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422523 => [ + [ + "address" => "随县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422524 => [ + [ + "address" => "宜城县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422525 => [ + [ + "address" => "南漳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422526 => [ + [ + "address" => "光化县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422527 => [ + [ + "address" => "谷城县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422528 => [ + [ + "address" => "保康县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422600 => [ + [ + "address" => "郧阳地区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422601 => [ + [ + "address" => "丹江口市", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 422621 => [ + [ + "address" => "均县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422622 => [ + [ + "address" => "郧县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422623 => [ + [ + "address" => "郧西县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422624 => [ + [ + "address" => "竹山县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422625 => [ + [ + "address" => "竹溪县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422626 => [ + [ + "address" => "房县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 422627 => [ + [ + "address" => "神农架林区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422700 => [ + [ + "address" => "宜昌地区", + "start_year" => "", + "end_year" => 1991 + ] + ], + 422701 => [ + [ + "address" => "枝城市", + "start_year" => 1987, + "end_year" => 1991 + ] + ], + 422702 => [ + [ + "address" => "当阳市", + "start_year" => 1988, + "end_year" => 1991 + ] + ], + 422721 => [ + [ + "address" => "宜昌县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 422722 => [ + [ + "address" => "宜都县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 422723 => [ + [ + "address" => "枝江县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 422724 => [ + [ + "address" => "当阳县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 422725 => [ + [ + "address" => "远安县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 422726 => [ + [ + "address" => "兴山县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 422727 => [ + [ + "address" => "秭归县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 422728 => [ + [ + "address" => "长阳县", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "长阳土家族自治县", + "start_year" => 1984, + "end_year" => 1991 + ] + ], + 422729 => [ + [ + "address" => "五峰县", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "五峰土家族自治县", + "start_year" => 1984, + "end_year" => 1991 + ] + ], + 422800 => [ + [ + "address" => "恩施地区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "鄂西土家族苗族自治州", + "start_year" => 1983, + "end_year" => 1992 + ], + [ + "address" => "恩施土家族苗族自治州", + "start_year" => 1993, + "end_year" => "" + ] + ], + 422801 => [ + [ + "address" => "恩施市", + "start_year" => 1981, + "end_year" => "" + ] + ], + 422802 => [ + [ + "address" => "利川市", + "start_year" => 1986, + "end_year" => "" + ] + ], + 422821 => [ + [ + "address" => "恩施县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 422822 => [ + [ + "address" => "建始县", + "start_year" => "", + "end_year" => "" + ] + ], + 422823 => [ + [ + "address" => "巴东县", + "start_year" => "", + "end_year" => "" + ] + ], + 422824 => [ + [ + "address" => "利川县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 422825 => [ + [ + "address" => "宣恩县", + "start_year" => "", + "end_year" => "" + ] + ], + 422826 => [ + [ + "address" => "咸丰县", + "start_year" => "", + "end_year" => "" + ] + ], + 422827 => [ + [ + "address" => "来凤土家族自治县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "来凤县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 422828 => [ + [ + "address" => "鹤峰土家族自治县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "鹤峰县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 422921 => [ + [ + "address" => "神农架林区", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 429001 => [ + [ + "address" => "随州市", + "start_year" => 1984, + "end_year" => 1999 + ] + ], + 429002 => [ + [ + "address" => "老河口市", + "start_year" => 1984, + "end_year" => 1994 + ] + ], + 429003 => [ + [ + "address" => "枣阳市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 429004 => [ + [ + "address" => "仙桃市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 429005 => [ + [ + "address" => "潜江市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 429006 => [ + [ + "address" => "天门市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 429007 => [ + [ + "address" => "枝城市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 429008 => [ + [ + "address" => "当阳市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 429009 => [ + [ + "address" => "应城市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 429010 => [ + [ + "address" => "安陆市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 429011 => [ + [ + "address" => "广水市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 429012 => [ + [ + "address" => "石首市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 429013 => [ + [ + "address" => "洪湖市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 429014 => [ + [ + "address" => "钟祥市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 429015 => [ + [ + "address" => "丹江口市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 429016 => [ + [ + "address" => "大冶市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 429017 => [ + [ + "address" => "宜城市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 429021 => [ + [ + "address" => "神农架林区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 430000 => [ + [ + "address" => "湖南省", + "start_year" => "", + "end_year" => "" + ] + ], + 430100 => [ + [ + "address" => "长沙市", + "start_year" => "", + "end_year" => "" + ] + ], + 430102 => [ + [ + "address" => "城东区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "东区", + "start_year" => 1983, + "end_year" => 1995 + ], + [ + "address" => "芙蓉区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 430103 => [ + [ + "address" => "城南区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "南区", + "start_year" => 1983, + "end_year" => 1995 + ], + [ + "address" => "天心区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 430104 => [ + [ + "address" => "城西区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "西区", + "start_year" => 1983, + "end_year" => 1995 + ], + [ + "address" => "岳麓区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 430105 => [ + [ + "address" => "城北区", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "北区", + "start_year" => 1983, + "end_year" => 1995 + ], + [ + "address" => "开福区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 430111 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1995 + ], + [ + "address" => "雨花区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 430112 => [ + [ + "address" => "望城区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 430121 => [ + [ + "address" => "长沙县", + "start_year" => "", + "end_year" => "" + ] + ], + 430122 => [ + [ + "address" => "望城县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 430123 => [ + [ + "address" => "浏阳县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 430124 => [ + [ + "address" => "宁乡县", + "start_year" => 1983, + "end_year" => 2016 + ] + ], + 430181 => [ + [ + "address" => "浏阳市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 430182 => [ + [ + "address" => "宁乡市", + "start_year" => 2017, + "end_year" => "" + ] + ], + 430200 => [ + [ + "address" => "株洲市", + "start_year" => "", + "end_year" => "" + ] + ], + 430202 => [ + [ + "address" => "东区", + "start_year" => "", + "end_year" => 1996 + ], + [ + "address" => "荷塘区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 430203 => [ + [ + "address" => "北区", + "start_year" => "", + "end_year" => 1996 + ], + [ + "address" => "芦淞区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 430204 => [ + [ + "address" => "南区", + "start_year" => "", + "end_year" => 1996 + ], + [ + "address" => "石峰区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 430211 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1996 + ], + [ + "address" => "天元区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 430212 => [ + [ + "address" => "渌口区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 430219 => [ + [ + "address" => "醴陵市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 430221 => [ + [ + "address" => "株洲县", + "start_year" => "", + "end_year" => 2017 + ] + ], + 430222 => [ + [ + "address" => "醴陵县", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 430223 => [ + [ + "address" => "攸县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 430224 => [ + [ + "address" => "茶陵县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 430225 => [ + [ + "address" => "酃县", + "start_year" => 1983, + "end_year" => 1993 + ], + [ + "address" => "炎陵县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 430281 => [ + [ + "address" => "醴陵市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 430300 => [ + [ + "address" => "湘潭市", + "start_year" => "", + "end_year" => "" + ], + [ + "address" => "邵阳市", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 430302 => [ + [ + "address" => "雨湖区", + "start_year" => "", + "end_year" => "" + ], + [ + "address" => "东区", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 430303 => [ + [ + "address" => "湘江区", + "start_year" => "", + "end_year" => 1991 + ], + [ + "address" => "西区", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 430304 => [ + [ + "address" => "岳塘区", + "start_year" => "", + "end_year" => "" + ], + [ + "address" => "桥头区", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 430305 => [ + [ + "address" => "板塘区", + "start_year" => "", + "end_year" => 1991 + ] + ], + 430306 => [ + [ + "address" => "韶山区", + "start_year" => 1988, + "end_year" => 1989 + ] + ], + 430311 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1991 + ] + ], + 430321 => [ + [ + "address" => "邵东县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "湘潭县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 430322 => [ + [ + "address" => "新邵县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "湘乡县", + "start_year" => 1984, + "end_year" => 1985 + ] + ], + 430381 => [ + [ + "address" => "湘乡市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 430382 => [ + [ + "address" => "韶山市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 430400 => [ + [ + "address" => "衡阳市", + "start_year" => "", + "end_year" => "" + ], + [ + "address" => "湘潭市", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 430402 => [ + [ + "address" => "江东区", + "start_year" => "", + "end_year" => 2000 + ], + [ + "address" => "雨湖区", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 430403 => [ + [ + "address" => "城南区", + "start_year" => "", + "end_year" => 2000 + ], + [ + "address" => "湘江区", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 430404 => [ + [ + "address" => "城北区", + "start_year" => "", + "end_year" => 2000 + ], + [ + "address" => "岳塘区", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 430405 => [ + [ + "address" => "板塘区", + "start_year" => 1982, + "end_year" => 1983 + ], + [ + "address" => "珠晖区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 430406 => [ + [ + "address" => "雁峰区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 430407 => [ + [ + "address" => "石鼓区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 430408 => [ + [ + "address" => "蒸湘区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 430411 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 2000 + ] + ], + 430412 => [ + [ + "address" => "南岳区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430421 => [ + [ + "address" => "湘潭县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "衡阳县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 430422 => [ + [ + "address" => "湘乡县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "衡南县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 430423 => [ + [ + "address" => "衡山县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 430424 => [ + [ + "address" => "衡东县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 430425 => [ + [ + "address" => "常宁县", + "start_year" => 1984, + "end_year" => 1995 + ] + ], + 430426 => [ + [ + "address" => "祁东县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 430427 => [ + [ + "address" => "耒阳县", + "start_year" => 1984, + "end_year" => 1985 + ] + ], + 430481 => [ + [ + "address" => "耒阳市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 430482 => [ + [ + "address" => "常宁市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 430500 => [ + [ + "address" => "邵阳市", + "start_year" => "", + "end_year" => "" + ], + [ + "address" => "衡阳市", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 430502 => [ + [ + "address" => "东区", + "start_year" => "", + "end_year" => 1996 + ], + [ + "address" => "江东区", + "start_year" => 1982, + "end_year" => 1983 + ], + [ + "address" => "双清区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 430503 => [ + [ + "address" => "西区", + "start_year" => "", + "end_year" => 1996 + ], + [ + "address" => "城南区", + "start_year" => 1982, + "end_year" => 1983 + ], + [ + "address" => "大祥区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 430504 => [ + [ + "address" => "桥头区", + "start_year" => "", + "end_year" => 1986 + ], + [ + "address" => "城北区", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 430511 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1996 + ], + [ + "address" => "北塔区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 430521 => [ + [ + "address" => "衡阳县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "邵东县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 430522 => [ + [ + "address" => "衡南县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "新邵县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 430523 => [ + [ + "address" => "衡山县", + "start_year" => 1983, + "end_year" => 1983 ], - 654022 => [ - - [ - 'address' => '察布查尔锡伯自治县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 654023 => + "address" => "邵阳县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 430524 => [ + [ + "address" => "衡东县", + "start_year" => 1983, + "end_year" => 1983 + ], [ - - [ - 'address' => '霍城县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 654024 => + "address" => "隆回县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 430525 => [ + [ + "address" => "常宁县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "洞口县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 430526 => [ + [ + "address" => "祁东县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "武冈县", + "start_year" => 1986, + "end_year" => 1993 + ] + ], + 430527 => [ + [ + "address" => "耒阳县", + "start_year" => 1983, + "end_year" => 1983 + ], + [ + "address" => "绥宁县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 430528 => [ + [ + "address" => "新宁县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 430529 => [ + [ + "address" => "城步苗族自治县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 430581 => [ + [ + "address" => "武冈市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 430600 => [ + [ + "address" => "岳阳市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 430602 => [ + [ + "address" => "南区", + "start_year" => 1984, + "end_year" => 1995 + ], + [ + "address" => "岳阳楼区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 430603 => [ + [ + "address" => "北区", + "start_year" => 1984, + "end_year" => 1995 + ], + [ + "address" => "云溪区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 430611 => [ + [ + "address" => "郊区", + "start_year" => 1984, + "end_year" => 1995 + ], + [ + "address" => "君山区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 430621 => [ + [ + "address" => "岳阳县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 430622 => [ + [ + "address" => "临湘县", + "start_year" => 1986, + "end_year" => 1991 + ] + ], + 430623 => [ + [ + "address" => "华容县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 430624 => [ + [ + "address" => "湘阴县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 430626 => [ + [ + "address" => "平江县", + "start_year" => 1986, + "end_year" => "" + ] + ], + 430627 => [ + [ + "address" => "汨罗县", + "start_year" => 1986, + "end_year" => 1986 + ] + ], + 430681 => [ + [ + "address" => "汨罗市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 430682 => [ + [ + "address" => "临湘市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 430700 => [ + [ + "address" => "常德市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430702 => [ + [ + "address" => "武陵区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430703 => [ + [ + "address" => "鼎城区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430721 => [ + [ + "address" => "安乡县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430722 => [ + [ + "address" => "汉寿县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430723 => [ + [ + "address" => "澧县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430724 => [ + [ + "address" => "临澧县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430725 => [ + [ + "address" => "桃源县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430726 => [ + [ + "address" => "石门县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430781 => [ + [ + "address" => "津市市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 430800 => [ + [ + "address" => "大庸市", + "start_year" => 1988, + "end_year" => 1993 + ], + [ + "address" => "张家界市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 430802 => [ + [ + "address" => "永定区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430811 => [ + [ + "address" => "武陵源区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430821 => [ + [ + "address" => "慈利县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430822 => [ + [ + "address" => "桑植县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430900 => [ + [ + "address" => "益阳市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 430902 => [ + [ + "address" => "资阳区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 430903 => [ + [ + "address" => "赫山区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 430921 => [ + [ + "address" => "南县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 430922 => [ + [ + "address" => "桃江县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 430923 => [ + [ + "address" => "安化县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 430981 => [ + [ + "address" => "沅江市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431000 => [ + [ + "address" => "郴州市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431002 => [ + [ + "address" => "北湖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431003 => [ + [ + "address" => "苏仙区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431021 => [ + [ + "address" => "桂阳县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431022 => [ + [ + "address" => "宜章县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431023 => [ + [ + "address" => "永兴县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431024 => [ + [ + "address" => "嘉禾县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431025 => [ + [ + "address" => "临武县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431026 => [ + [ + "address" => "汝城县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431027 => [ + [ + "address" => "桂东县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431028 => [ + [ + "address" => "安仁县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431081 => [ + [ + "address" => "资兴市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431100 => [ + [ + "address" => "永州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431102 => [ + [ + "address" => "芝山区", + "start_year" => 1995, + "end_year" => 2004 + ], + [ + "address" => "零陵区", + "start_year" => 2005, + "end_year" => "" + ] + ], + 431103 => [ + [ + "address" => "冷水滩区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431121 => [ + [ + "address" => "祁阳县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431122 => [ + [ + "address" => "东安县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431123 => [ + [ + "address" => "双牌县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431124 => [ + [ + "address" => "道县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431125 => [ + [ + "address" => "江永县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431126 => [ + [ + "address" => "宁远县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431127 => [ + [ + "address" => "蓝山县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431128 => [ + [ + "address" => "新田县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431129 => [ + [ + "address" => "江华瑶族自治县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431200 => [ + [ + "address" => "怀化市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431202 => [ + [ + "address" => "鹤城区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431221 => [ + [ + "address" => "中方县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431222 => [ + [ + "address" => "沅陵县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431223 => [ + [ + "address" => "辰溪县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431224 => [ + [ + "address" => "溆浦县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431225 => [ + [ + "address" => "会同县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431226 => [ + [ + "address" => "麻阳苗族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431227 => [ + [ + "address" => "新晃侗族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431228 => [ + [ + "address" => "芷江侗族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431229 => [ + [ + "address" => "靖州苗族侗族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431230 => [ + [ + "address" => "通道侗族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431281 => [ + [ + "address" => "洪江市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431300 => [ + [ + "address" => "娄底市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 431302 => [ + [ + "address" => "娄星区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 431321 => [ + [ + "address" => "双峰县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 431322 => [ + [ + "address" => "新化县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 431381 => [ + [ + "address" => "冷水江市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 431382 => [ + [ + "address" => "涟源市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 432100 => [ + [ + "address" => "湘潭地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432121 => [ + [ + "address" => "湘潭县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432122 => [ + [ + "address" => "湘乡县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432123 => [ + [ + "address" => "醴陵县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432124 => [ + [ + "address" => "浏阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432125 => [ + [ + "address" => "攸县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432126 => [ + [ + "address" => "茶陵县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432127 => [ + [ + "address" => "酃县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432200 => [ + [ + "address" => "岳阳地区", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432201 => [ + [ + "address" => "岳阳市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432221 => [ + [ + "address" => "岳阳县", + "start_year" => "", + "end_year" => 1980 + ] + ], + 432222 => [ + [ + "address" => "平江县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432223 => [ + [ + "address" => "湘阴县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432224 => [ + [ + "address" => "汨罗县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432225 => [ + [ + "address" => "临湘县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432226 => [ + [ + "address" => "华容县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432300 => [ + [ + "address" => "益阳地区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432301 => [ + [ + "address" => "益阳市", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432302 => [ + [ + "address" => "沅江市", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 432321 => [ + [ + "address" => "益阳县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432322 => [ + [ + "address" => "南县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432323 => [ + [ + "address" => "沅江县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432324 => [ + [ + "address" => "宁乡县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432325 => [ + [ + "address" => "桃江县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432326 => [ + [ + "address" => "安化县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432400 => [ + [ + "address" => "常德地区", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432401 => [ + [ + "address" => "常德市", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432402 => [ + [ + "address" => "津市市", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432421 => [ + [ + "address" => "常德县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432422 => [ + [ + "address" => "安乡县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432423 => [ + [ + "address" => "汉寿县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432424 => [ + [ + "address" => "澧县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432425 => [ + [ + "address" => "临澧县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432426 => [ + [ + "address" => "桃源县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432427 => [ + [ + "address" => "石门县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432428 => [ + [ + "address" => "慈利县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 432500 => [ + [ + "address" => "涟源地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "娄底地区", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 432501 => [ + [ + "address" => "娄底市", + "start_year" => "", + "end_year" => 1998 + ] + ], + 432502 => [ + [ + "address" => "冷水江市", + "start_year" => "", + "end_year" => 1998 + ] + ], + 432503 => [ + [ + "address" => "涟源市", + "start_year" => 1987, + "end_year" => 1998 + ] + ], + 432521 => [ + [ + "address" => "涟源县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 432522 => [ + [ + "address" => "双峰县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 432523 => [ + [ + "address" => "邵东县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432524 => [ + [ + "address" => "新化县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 432525 => [ + [ + "address" => "新邵县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432600 => [ + [ + "address" => "邵阳地区", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432621 => [ + [ + "address" => "邵阳县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432622 => [ + [ + "address" => "隆回县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432623 => [ + [ + "address" => "武冈县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432624 => [ + [ + "address" => "洞口县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432625 => [ + [ + "address" => "新宁县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432626 => [ + [ + "address" => "绥宁县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432627 => [ + [ + "address" => "城步苗族自治县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 432700 => [ + [ + "address" => "衡阳地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432721 => [ + [ + "address" => "衡阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432722 => [ + [ + "address" => "衡南县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432723 => [ + [ + "address" => "衡山县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432724 => [ + [ + "address" => "衡东县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432725 => [ + [ + "address" => "常宁县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432726 => [ + [ + "address" => "祁东县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432727 => [ + [ + "address" => "祁阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432800 => [ + [ + "address" => "郴州地区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432801 => [ + [ + "address" => "郴州市", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432802 => [ + [ + "address" => "资兴市", + "start_year" => 1984, + "end_year" => 1993 + ] + ], + 432821 => [ + [ + "address" => "郴县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432822 => [ + [ + "address" => "桂阳县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432823 => [ + [ + "address" => "永兴县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432824 => [ + [ + "address" => "宜章县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432825 => [ + [ + "address" => "资兴县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 432826 => [ + [ + "address" => "嘉禾县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432827 => [ + [ + "address" => "临武县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432828 => [ + [ + "address" => "汝城县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432829 => [ + [ + "address" => "桂东县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432830 => [ + [ + "address" => "耒阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 432831 => [ + [ + "address" => "安仁县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 432900 => [ + [ + "address" => "零陵地区", + "start_year" => "", + "end_year" => 1994 + ] + ], + 432901 => [ + [ + "address" => "永州市", + "start_year" => 1982, + "end_year" => 1994 + ] + ], + 432902 => [ + [ + "address" => "冷水滩市", + "start_year" => 1984, + "end_year" => 1994 + ] + ], + 432921 => [ + [ + "address" => "零陵县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 432922 => [ + [ + "address" => "东安县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 432923 => [ + [ + "address" => "道县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 432924 => [ + [ + "address" => "宁远县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 432925 => [ + [ + "address" => "江永县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 432926 => [ + [ + "address" => "江华瑶族自治县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 432927 => [ + [ + "address" => "蓝山县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 432928 => [ + [ + "address" => "新田县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 432929 => [ + [ + "address" => "双牌县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 432930 => [ + [ + "address" => "祁阳县", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 433000 => [ + [ + "address" => "黔阳地区", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "怀化地区", + "start_year" => 1981, + "end_year" => 1996 + ] + ], + 433001 => [ + [ + "address" => "洪江市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "怀化市", + "start_year" => 1982, + "end_year" => 1996 + ] + ], + 433002 => [ + [ + "address" => "怀化市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "洪江市", + "start_year" => 1982, + "end_year" => 1996 + ] + ], + 433021 => [ + [ + "address" => "黔阳县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 433022 => [ + [ + "address" => "沅陵县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 433023 => [ + [ + "address" => "辰溪县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 433024 => [ + [ + "address" => "溆浦县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 433025 => [ + [ + "address" => "麻阳县", + "start_year" => "", + "end_year" => 1987 + ], + [ + "address" => "麻阳苗族自治县", + "start_year" => 1988, + "end_year" => 1996 + ] + ], + 433026 => [ + [ + "address" => "新晃侗族自治县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 433027 => [ + [ + "address" => "芷江县", + "start_year" => "", + "end_year" => 1985 + ], + [ + "address" => "芷江侗族自治县", + "start_year" => 1986, + "end_year" => 1996 + ] + ], + 433028 => [ + [ + "address" => "怀化县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 433029 => [ + [ + "address" => "会同县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 433030 => [ + [ + "address" => "靖县", + "start_year" => "", + "end_year" => 1986 + ], + [ + "address" => "靖州苗族侗族自治县", + "start_year" => 1987, + "end_year" => 1996 + ] + ], + 433031 => [ + [ + "address" => "通道侗族自治县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 433100 => [ + [ + "address" => "湘西土家族苗族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 433101 => [ + [ + "address" => "吉首市", + "start_year" => 1982, + "end_year" => "" + ] + ], + 433102 => [ + [ + "address" => "大庸市", + "start_year" => 1985, + "end_year" => 1987 + ] + ], + 433121 => [ + [ + "address" => "吉首县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 433122 => [ + [ + "address" => "泸溪县", + "start_year" => "", + "end_year" => "" + ] + ], + 433123 => [ + [ + "address" => "凤凰县", + "start_year" => "", + "end_year" => "" + ] + ], + 433124 => [ + [ + "address" => "花垣县", + "start_year" => "", + "end_year" => "" + ] + ], + 433125 => [ + [ + "address" => "保靖县", + "start_year" => "", + "end_year" => "" + ] + ], + 433126 => [ + [ + "address" => "古丈县", + "start_year" => "", + "end_year" => "" + ] + ], + 433127 => [ + [ + "address" => "永顺县", + "start_year" => "", + "end_year" => "" + ] + ], + 433128 => [ + [ + "address" => "大庸县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 433129 => [ + [ + "address" => "桑植县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 433130 => [ + [ + "address" => "龙山县", + "start_year" => "", + "end_year" => "" + ] + ], + 439001 => [ + [ + "address" => "醴陵市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 439002 => [ + [ + "address" => "湘乡市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 439003 => [ + [ + "address" => "耒阳市", + "start_year" => 1986, + "end_year" => 1994 + ] + ], + 439004 => [ + [ + "address" => "汨罗市", + "start_year" => 1987, + "end_year" => 1994 + ] + ], + 439005 => [ + [ + "address" => "津市市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 439006 => [ + [ + "address" => "韶山市", + "start_year" => 1990, + "end_year" => 1994 + ] + ], + 439007 => [ + [ + "address" => "临湘市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 439008 => [ + [ + "address" => "浏阳市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 439009 => [ + [ + "address" => "资兴市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 439010 => [ + [ + "address" => "沅江市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 439011 => [ + [ + "address" => "武冈市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 440000 => [ + [ + "address" => "广东省", + "start_year" => "", + "end_year" => "" + ] + ], + 440100 => [ + [ + "address" => "广州市", + "start_year" => "", + "end_year" => "" + ] + ], + 440102 => [ + [ + "address" => "东山区", + "start_year" => "", + "end_year" => 2004 + ] + ], + 440103 => [ + [ + "address" => "荔湾区", + "start_year" => "", + "end_year" => "" + ] + ], + 440104 => [ + [ + "address" => "越秀区", + "start_year" => "", + "end_year" => "" + ] + ], + 440105 => [ + [ + "address" => "海珠区", + "start_year" => "", + "end_year" => "" + ] + ], + 440106 => [ + [ + "address" => "芳村区", + "start_year" => 1985, + "end_year" => 1987 + ], + [ + "address" => "天河区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 440107 => [ + [ + "address" => "天河区", + "start_year" => 1985, + "end_year" => 1987 + ], + [ + "address" => "芳村区", + "start_year" => 1988, + "end_year" => 2004 + ] + ], + 440111 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1986 + ], + [ + "address" => "白云区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 440112 => [ + [ + "address" => "黄埔区", + "start_year" => "", + "end_year" => "" + ] + ], + 440113 => [ + [ + "address" => "番禺区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 440114 => [ + [ + "address" => "花都区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 440115 => [ + [ + "address" => "南沙区", + "start_year" => 2005, + "end_year" => "" + ] + ], + 440116 => [ + [ + "address" => "萝岗区", + "start_year" => 2005, + "end_year" => 2013 + ] + ], + 440117 => [ + [ + "address" => "从化区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 440118 => [ + [ + "address" => "增城区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 440121 => [ + [ + "address" => "花县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 440122 => [ + [ + "address" => "从化县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 440123 => [ + [ + "address" => "新丰县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 440124 => [ + [ + "address" => "龙门县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 440125 => [ + [ + "address" => "增城县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 440126 => [ + [ + "address" => "番禺县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 440127 => [ + [ + "address" => "清远县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 440128 => [ + [ + "address" => "佛冈县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 440181 => [ + [ + "address" => "番禺市", + "start_year" => 1995, + "end_year" => 1999 + ] + ], + 440182 => [ + [ + "address" => "花都市", + "start_year" => 1995, + "end_year" => 1999 + ] + ], + 440183 => [ + [ + "address" => "增城市", + "start_year" => 1995, + "end_year" => 2013 + ] + ], + 440184 => [ + [ + "address" => "从化市", + "start_year" => 1995, + "end_year" => 2013 + ] + ], + 440200 => [ + [ + "address" => "韶关市", + "start_year" => "", + "end_year" => "" + ] + ], + 440202 => [ + [ + "address" => "北江区", + "start_year" => 1984, + "end_year" => 2003 + ] + ], + 440203 => [ + [ + "address" => "浈江区", + "start_year" => 1984, + "end_year" => 2002 + ], + [ + "address" => "武江区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 440204 => [ + [ + "address" => "武江区", + "start_year" => 1984, + "end_year" => 2002 + ], + [ + "address" => "浈江区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 440205 => [ + [ + "address" => "曲江区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 440221 => [ + [ + "address" => "曲江县", + "start_year" => "", + "end_year" => 2003 + ] + ], + 440222 => [ + [ + "address" => "始兴县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 440223 => [ + [ + "address" => "南雄县", + "start_year" => 1983, + "end_year" => 1995 + ] + ], + 440224 => [ + [ + "address" => "仁化县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 440225 => [ + [ + "address" => "乐昌县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 440226 => [ + [ + "address" => "连县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 440227 => [ + [ + "address" => "阳山县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 440228 => [ + [ + "address" => "英德县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 440229 => [ + [ + "address" => "翁源县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 440230 => [ + [ + "address" => "连山壮族瑶族自治县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 440231 => [ + [ + "address" => "连南瑶族自治县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 440232 => [ + [ + "address" => "乳源瑶族自治县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 440233 => [ + [ + "address" => "新丰县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 440281 => [ + [ + "address" => "乐昌市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 440282 => [ + [ + "address" => "南雄市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 440300 => [ + [ + "address" => "深圳市", + "start_year" => "", + "end_year" => "" + ] + ], + 440303 => [ + [ + "address" => "罗湖区", + "start_year" => 1990, + "end_year" => "" + ] + ], + 440304 => [ + [ + "address" => "福田区", + "start_year" => 1990, + "end_year" => "" + ] + ], + 440305 => [ + [ + "address" => "南山区", + "start_year" => 1990, + "end_year" => "" + ] + ], + 440306 => [ + [ + "address" => "宝安区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 440307 => [ + [ + "address" => "龙岗区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 440308 => [ + [ + "address" => "盐田区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 440309 => [ + [ + "address" => "龙华区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 440310 => [ + [ + "address" => "坪山区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 440311 => [ + [ + "address" => "光明区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 440321 => [ + [ + "address" => "宝安县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 440400 => [ + [ + "address" => "珠海市", + "start_year" => "", + "end_year" => "" + ] + ], + 440402 => [ + [ + "address" => "香洲区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 440403 => [ + [ + "address" => "斗门区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 440404 => [ + [ + "address" => "金湾区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 440421 => [ + [ + "address" => "斗门县", + "start_year" => 1983, + "end_year" => 2000 + ] + ], + 440500 => [ + [ + "address" => "汕头市", + "start_year" => "", + "end_year" => "" + ] + ], + 440502 => [ + [ + "address" => "同平区", + "start_year" => "", + "end_year" => 1990 + ], + [ + "address" => "龙湖区", + "start_year" => 1991, + "end_year" => 1993 + ] + ], + 440503 => [ + [ + "address" => "安平区", + "start_year" => "", + "end_year" => 1990 + ], + [ + "address" => "金园区", + "start_year" => 1991, + "end_year" => 1993 + ] + ], + 440504 => [ + [ + "address" => "公园区", + "start_year" => "", + "end_year" => 1990 + ], + [ + "address" => "升平区", + "start_year" => 1991, + "end_year" => 1993 + ] + ], + 440505 => [ + [ + "address" => "金沙区", + "start_year" => "", + "end_year" => 1990 + ] + ], + 440506 => [ + [ + "address" => "达豪区", + "start_year" => 1984, + "end_year" => 2002 + ] + ], + 440507 => [ + [ + "address" => "龙湖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 440508 => [ + [ + "address" => "金园区", + "start_year" => 1994, + "end_year" => 2002 + ] + ], + 440509 => [ + [ + "address" => "升平区", + "start_year" => 1994, + "end_year" => 2002 + ] + ], + 440510 => [ + [ + "address" => "河浦区", + "start_year" => 1994, + "end_year" => 2002 + ] + ], + 440511 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1990 + ], + [ + "address" => "金平区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 440512 => [ + [ + "address" => "濠江区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 440513 => [ + [ + "address" => "潮阳区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 440514 => [ + [ + "address" => "潮南区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 440515 => [ + [ + "address" => "澄海区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 440521 => [ + [ + "address" => "澄海县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 440522 => [ + [ + "address" => "饶平县", + "start_year" => 1983, + "end_year" => 1990 + ] + ], + 440523 => [ + [ + "address" => "南澳县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 440524 => [ + [ + "address" => "潮阳县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 440525 => [ + [ + "address" => "揭阳县", + "start_year" => 1983, + "end_year" => 1990 + ] + ], + 440526 => [ + [ + "address" => "揭西县", + "start_year" => 1983, + "end_year" => 1990 + ] + ], + 440527 => [ + [ + "address" => "普宁县", + "start_year" => 1983, + "end_year" => 1990 + ] + ], + 440528 => [ + [ + "address" => "惠来县", + "start_year" => 1983, + "end_year" => 1990 + ] + ], + 440582 => [ + [ + "address" => "潮阳市", + "start_year" => 1995, + "end_year" => 2002 + ] + ], + 440583 => [ + [ + "address" => "澄海市", + "start_year" => 1995, + "end_year" => 2002 + ] + ], + 440600 => [ + [ + "address" => "佛山市", + "start_year" => "", + "end_year" => "" + ] + ], + 440602 => [ + [ + "address" => "汾江区", + "start_year" => 1984, + "end_year" => 1986 + ], + [ + "address" => "城区", + "start_year" => 1987, + "end_year" => 2001 + ] + ], + 440603 => [ + [ + "address" => "石湾区", + "start_year" => 1984, + "end_year" => 2001 + ] + ], + 440604 => [ + [ + "address" => "禅城区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 440605 => [ + [ + "address" => "南海区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 440606 => [ + [ + "address" => "顺德区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 440607 => [ + [ + "address" => "三水区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 440608 => [ + [ + "address" => "高明区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 440620 => [ + [ + "address" => "中山市", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 440621 => [ + [ + "address" => "三水县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 440622 => [ + [ + "address" => "南海县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 440623 => [ + [ + "address" => "顺德县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 440624 => [ + [ + "address" => "高明县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 440681 => [ + [ + "address" => "顺德市", + "start_year" => 1995, + "end_year" => 2001 + ] + ], + 440682 => [ + [ + "address" => "南海市", + "start_year" => 1995, + "end_year" => 2001 + ] + ], + 440683 => [ + [ + "address" => "三水市", + "start_year" => 1995, + "end_year" => 2001 + ] + ], + 440684 => [ + [ + "address" => "高明市", + "start_year" => 1995, + "end_year" => 2001 + ] + ], + 440700 => [ + [ + "address" => "江门市", + "start_year" => "", + "end_year" => "" + ] + ], + 440702 => [ + [ + "address" => "城区", + "start_year" => 1984, + "end_year" => 1993 + ] + ], + 440703 => [ + [ + "address" => "蓬江区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 440704 => [ + [ + "address" => "江海区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 440705 => [ + [ + "address" => "新会区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 440711 => [ + [ + "address" => "郊区", + "start_year" => 1984, + "end_year" => 1993 + ] + ], + 440721 => [ + [ + "address" => "新会县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 440722 => [ + [ + "address" => "台山县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 440723 => [ + [ + "address" => "恩平县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 440724 => [ + [ + "address" => "开平县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 440725 => [ + [ + "address" => "鹤山县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 440726 => [ + [ + "address" => "阳江县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 440727 => [ + [ + "address" => "阳春县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 440781 => [ + [ + "address" => "台山市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 440782 => [ + [ + "address" => "新会市", + "start_year" => 1995, + "end_year" => 2001 + ] + ], + 440783 => [ + [ + "address" => "开平市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 440784 => [ + [ + "address" => "鹤山市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 440785 => [ + [ + "address" => "恩平市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 440800 => [ + [ + "address" => "湛江市", + "start_year" => "", + "end_year" => "" + ] + ], + 440802 => [ + [ + "address" => "赤坎区", + "start_year" => "", + "end_year" => "" + ] + ], + 440803 => [ + [ + "address" => "霞山区", + "start_year" => "", + "end_year" => "" + ] + ], + 440804 => [ + [ + "address" => "坡头区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 440811 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1993 + ], + [ + "address" => "麻章区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 440821 => [ + [ + "address" => "吴川县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 440822 => [ + [ + "address" => "廉江县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 440823 => [ + [ + "address" => "遂溪县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 440824 => [ + [ + "address" => "海康县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 440825 => [ + [ + "address" => "徐闻县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 440881 => [ + [ + "address" => "廉江市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 440882 => [ + [ + "address" => "雷州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 440883 => [ + [ + "address" => "吴川市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 440900 => [ + [ + "address" => "茂名市", + "start_year" => "", + "end_year" => "" + ] + ], + 440902 => [ + [ + "address" => "茂南区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 440903 => [ + [ + "address" => "茂港区", + "start_year" => 2001, + "end_year" => 2013 + ] + ], + 440904 => [ + [ + "address" => "电白区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 440921 => [ + [ + "address" => "信宜县", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 440922 => [ + [ + "address" => "高州县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 440923 => [ + [ + "address" => "电白县", + "start_year" => 1983, + "end_year" => 2013 + ] + ], + 440924 => [ + [ + "address" => "化州县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 440981 => [ + [ + "address" => "高州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 440982 => [ + [ + "address" => "化州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 440983 => [ + [ + "address" => "信宜市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 441000 => [ + [ + "address" => "海口市", + "start_year" => "", + "end_year" => 1987 + ] + ], + 441001 => [ + [ + "address" => "潮州市", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 441002 => [ + [ + "address" => "新华区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 441003 => [ + [ + "address" => "立新区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 441004 => [ + [ + "address" => "东方红区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 441005 => [ + [ + "address" => "秀英区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 441100 => [ + [ + "address" => "三亚市", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 441200 => [ + [ + "address" => "肇庆市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441202 => [ + [ + "address" => "端州区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441203 => [ + [ + "address" => "鼎湖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441204 => [ + [ + "address" => "高要区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 441221 => [ + [ + "address" => "高要县", + "start_year" => 1988, + "end_year" => 1992 + ] + ], + 441222 => [ + [ + "address" => "四会县", + "start_year" => 1988, + "end_year" => 1992 + ] + ], + 441223 => [ + [ + "address" => "广宁县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441224 => [ + [ + "address" => "怀集县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441225 => [ + [ + "address" => "封开县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441226 => [ + [ + "address" => "德庆县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441227 => [ + [ + "address" => "云浮县", + "start_year" => 1988, + "end_year" => 1991 + ] + ], + 441228 => [ + [ + "address" => "新兴县", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 441229 => [ + [ + "address" => "郁南县", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 441230 => [ + [ + "address" => "罗定县", + "start_year" => 1988, + "end_year" => 1992 + ] + ], + 441283 => [ + [ + "address" => "高要市", + "start_year" => 1995, + "end_year" => 2014 + ] + ], + 441284 => [ + [ + "address" => "四会市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 441300 => [ + [ + "address" => "惠州市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441302 => [ + [ + "address" => "惠城区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441303 => [ + [ + "address" => "惠阳区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 441321 => [ + [ + "address" => "惠阳县", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 441322 => [ + [ + "address" => "博罗县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441323 => [ + [ + "address" => "惠东县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441324 => [ + [ + "address" => "龙门县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441381 => [ + [ + "address" => "惠阳市", + "start_year" => 1995, + "end_year" => 2002 + ] + ], + 441400 => [ + [ + "address" => "梅州市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441402 => [ + [ + "address" => "梅江区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441403 => [ + [ + "address" => "梅县区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 441421 => [ + [ + "address" => "梅县", + "start_year" => 1988, + "end_year" => 2012 + ] + ], + 441422 => [ + [ + "address" => "大埔县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441423 => [ + [ + "address" => "丰顺县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441424 => [ + [ + "address" => "五华县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441425 => [ + [ + "address" => "兴宁县", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 441426 => [ + [ + "address" => "平远县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441427 => [ + [ + "address" => "蕉岭县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441481 => [ + [ + "address" => "兴宁市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 441500 => [ + [ + "address" => "汕尾市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441502 => [ + [ + "address" => "城区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441521 => [ + [ + "address" => "海丰县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441522 => [ + [ + "address" => "陆丰县", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 441523 => [ + [ + "address" => "陆河县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441581 => [ + [ + "address" => "陆丰市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 441600 => [ + [ + "address" => "河源市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441602 => [ + [ + "address" => "源城区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441611 => [ + [ + "address" => "郊区", + "start_year" => 1988, + "end_year" => 1992 + ] + ], + 441621 => [ + [ + "address" => "紫金县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441622 => [ + [ + "address" => "龙川县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441623 => [ + [ + "address" => "连平县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441624 => [ + [ + "address" => "和平县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441625 => [ + [ + "address" => "东源县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 441700 => [ + [ + "address" => "阳江市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441702 => [ + [ + "address" => "江城区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441703 => [ + [ + "address" => "阳东区", + "start_year" => 1988, + "end_year" => 1990 + ] + ], + 441704 => [ + [ + "address" => "阳东区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 441721 => [ + [ + "address" => "阳西县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441722 => [ + [ + "address" => "阳春县", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 441723 => [ + [ + "address" => "阳东县", + "start_year" => 1991, + "end_year" => 2013 + ] + ], + 441781 => [ + [ + "address" => "阳春市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 441800 => [ + [ + "address" => "清远市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441802 => [ + [ + "address" => "清城区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441803 => [ + [ + "address" => "清新区", + "start_year" => 2012, + "end_year" => "" + ] + ], + 441811 => [ + [ + "address" => "清郊区", + "start_year" => 1988, + "end_year" => 1991 + ] + ], + 441821 => [ + [ + "address" => "佛冈县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441822 => [ + [ + "address" => "英德县", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 441823 => [ + [ + "address" => "阳山县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441824 => [ + [ + "address" => "连县", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 441825 => [ + [ + "address" => "连山壮族瑶族自治县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441826 => [ + [ + "address" => "连南瑶族自治县", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441827 => [ + [ + "address" => "清新县", + "start_year" => 1992, + "end_year" => 2011 + ] + ], + 441881 => [ + [ + "address" => "英德市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 441882 => [ + [ + "address" => "连州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 441900 => [ + [ + "address" => "东莞市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 442000 => [ + [ + "address" => "中山市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 442100 => [ + [ + "address" => "海南行政区", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442101 => [ + [ + "address" => "海口市", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 442102 => [ + [ + "address" => "通什市", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 442121 => [ + [ + "address" => "琼山县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442122 => [ + [ + "address" => "文昌县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442123 => [ + [ + "address" => "琼海县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442124 => [ + [ + "address" => "万宁县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442125 => [ + [ + "address" => "定安县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442126 => [ + [ + "address" => "屯昌县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442127 => [ + [ + "address" => "澄迈县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442128 => [ + [ + "address" => "临高县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442129 => [ + [ + "address" => "儋县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442130 => [ + [ + "address" => "东方黎族自治县", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 442131 => [ + [ + "address" => "乐东黎族自治县", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 442132 => [ + [ + "address" => "琼中黎族苗族自治县", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 442133 => [ + [ + "address" => "保亭黎族苗族自治县", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 442134 => [ + [ + "address" => "陵水黎族自治县", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 442135 => [ + [ + "address" => "白沙黎族自治县", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 442136 => [ + [ + "address" => "昌江黎族自治县", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 442200 => [ + [ + "address" => "海南黎族苗族自治州", + "start_year" => "", + "end_year" => 1986 + ] + ], + 442201 => [ + [ + "address" => "三亚市", + "start_year" => 1984, + "end_year" => 1986 + ] + ], + 442202 => [ + [ + "address" => "通什市", + "start_year" => 1986, + "end_year" => 1986 + ] + ], + 442221 => [ + [ + "address" => "崖县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 442222 => [ + [ + "address" => "东方县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 442223 => [ + [ + "address" => "乐东县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 442224 => [ + [ + "address" => "琼中县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 442225 => [ + [ + "address" => "保亭县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 442226 => [ + [ + "address" => "陵水县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 442227 => [ + [ + "address" => "白沙县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 442228 => [ + [ + "address" => "昌江县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 442300 => [ + [ + "address" => "汕头地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442301 => [ + [ + "address" => "潮州市", + "start_year" => "", + "end_year" => 1981 + ] + ], + 442302 => [ + [ + "address" => "潮州市", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442321 => [ + [ + "address" => "潮安县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442322 => [ + [ + "address" => "澄海县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442323 => [ + [ + "address" => "饶平县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442324 => [ + [ + "address" => "南澳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442325 => [ + [ + "address" => "潮阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442326 => [ + [ + "address" => "揭阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442327 => [ + [ + "address" => "揭西县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442328 => [ + [ + "address" => "普宁县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442329 => [ + [ + "address" => "惠来县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442330 => [ + [ + "address" => "陆丰县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442331 => [ + [ + "address" => "海丰县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442400 => [ + [ + "address" => "梅县地区", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442401 => [ + [ + "address" => "梅州市", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "梅县市", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 442421 => [ + [ + "address" => "梅县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442422 => [ + [ + "address" => "大埔县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442423 => [ + [ + "address" => "丰顺县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442424 => [ + [ + "address" => "五华县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442425 => [ + [ + "address" => "兴宁县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442426 => [ + [ + "address" => "平远县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442427 => [ + [ + "address" => "蕉岭县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442500 => [ + [ + "address" => "惠阳地区", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442501 => [ + [ + "address" => "惠州市", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442502 => [ + [ + "address" => "东莞市", + "start_year" => 1985, + "end_year" => 1987 + ] + ], + 442521 => [ + [ + "address" => "惠阳县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442522 => [ + [ + "address" => "紫金县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442523 => [ + [ + "address" => "和平县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442524 => [ + [ + "address" => "连平县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442525 => [ + [ + "address" => "河源县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442526 => [ + [ + "address" => "博罗县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442527 => [ + [ + "address" => "东莞县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 442528 => [ + [ + "address" => "惠东县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442529 => [ + [ + "address" => "龙川县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442530 => [ + [ + "address" => "陆丰县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 442531 => [ + [ + "address" => "海丰县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 442600 => [ + [ + "address" => "韶关地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442621 => [ + [ + "address" => "始兴县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "三水县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442622 => [ + [ + "address" => "南雄县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "南海县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442623 => [ + [ + "address" => "仁化县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "顺德县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442624 => [ + [ + "address" => "乐昌县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "中山县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442625 => [ + [ + "address" => "连县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "斗门县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442626 => [ + [ + "address" => "阳山县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "新会县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442627 => [ + [ + "address" => "英德县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "台山县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442628 => [ + [ + "address" => "清远县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "恩平县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442629 => [ + [ + "address" => "佛冈县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "开平县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442630 => [ + [ + "address" => "翁源县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442631 => [ + [ + "address" => "连山壮族瑶族自治县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "鹤山县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442632 => [ + [ + "address" => "连南瑶族自治县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "高明县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 442633 => [ + [ + "address" => "乳源瑶族自治县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442700 => [ + [ + "address" => "佛山地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442721 => [ + [ + "address" => "三水县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 442722 => [ + [ + "address" => "南海县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 442723 => [ + [ + "address" => "顺德县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 442724 => [ + [ + "address" => "中山县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 442725 => [ + [ + "address" => "斗门县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 442726 => [ + [ + "address" => "新会县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 442727 => [ + [ + "address" => "台山县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 442728 => [ + [ + "address" => "恩平县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 442729 => [ + [ + "address" => "开平县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 442730 => [ + [ + "address" => "高鹤县", + "start_year" => "", + "end_year" => 1980 + ] + ], + 442731 => [ + [ + "address" => "鹤山县", + "start_year" => 1981, + "end_year" => 1981 + ] + ], + 442732 => [ + [ + "address" => "高明县", + "start_year" => 1981, + "end_year" => 1981 + ] + ], + 442800 => [ + [ + "address" => "肇庆地区", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442801 => [ + [ + "address" => "肇庆市", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442821 => [ + [ + "address" => "高要县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442822 => [ + [ + "address" => "四会县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442823 => [ + [ + "address" => "广宁县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442824 => [ + [ + "address" => "怀集县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442825 => [ + [ + "address" => "封开县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442826 => [ + [ + "address" => "德庆县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442827 => [ + [ + "address" => "云浮县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442828 => [ + [ + "address" => "新兴县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442829 => [ + [ + "address" => "郁南县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442830 => [ + [ + "address" => "罗定县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 442900 => [ + [ + "address" => "湛江地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442921 => [ + [ + "address" => "阳江县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442922 => [ + [ + "address" => "阳春县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442923 => [ + [ + "address" => "信宜县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442924 => [ + [ + "address" => "高州县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442925 => [ + [ + "address" => "电白县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442926 => [ + [ + "address" => "吴川县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442927 => [ + [ + "address" => "化州县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442928 => [ + [ + "address" => "廉江县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442929 => [ + [ + "address" => "遂溪县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442930 => [ + [ + "address" => "海康县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442931 => [ + [ + "address" => "徐闻县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 445100 => [ + [ + "address" => "潮州市", + "start_year" => 1991, + "end_year" => "" + ] + ], + 445102 => [ + [ + "address" => "湘桥区", + "start_year" => 1991, + "end_year" => "" + ] + ], + 445103 => [ + [ + "address" => "潮安区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 445121 => [ + [ + "address" => "潮安县", + "start_year" => 1991, + "end_year" => 2012 + ] + ], + 445122 => [ + [ + "address" => "饶平县", + "start_year" => 1991, + "end_year" => "" + ] + ], + 445200 => [ + [ + "address" => "揭阳市", + "start_year" => 1991, + "end_year" => "" + ] + ], + 445202 => [ + [ + "address" => "榕城区", + "start_year" => 1991, + "end_year" => "" + ] + ], + 445203 => [ + [ + "address" => "揭东区", + "start_year" => 2012, + "end_year" => "" + ] + ], + 445221 => [ + [ + "address" => "揭东县", + "start_year" => 1991, + "end_year" => 2011 + ] + ], + 445222 => [ + [ + "address" => "揭西县", + "start_year" => 1991, + "end_year" => "" + ] + ], + 445223 => [ + [ + "address" => "普宁县", + "start_year" => 1991, + "end_year" => 1992 + ] + ], + 445224 => [ + [ + "address" => "惠来县", + "start_year" => 1991, + "end_year" => "" + ] + ], + 445281 => [ + [ + "address" => "普宁市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 445300 => [ + [ + "address" => "云浮市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 445302 => [ + [ + "address" => "云城区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 445303 => [ + [ + "address" => "云安区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 445321 => [ + [ + "address" => "新兴县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 445322 => [ + [ + "address" => "郁南县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 445323 => [ + [ + "address" => "云安县", + "start_year" => 1996, + "end_year" => 2013 + ] + ], + 445381 => [ + [ + "address" => "罗定市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 449001 => [ + [ + "address" => "潮州市", + "start_year" => 1984, + "end_year" => 1990 + ], + [ + "address" => "顺德市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 449002 => [ + [ + "address" => "中山市", + "start_year" => 1984, + "end_year" => 1987 + ], + [ + "address" => "台山市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 449003 => [ + [ + "address" => "海口市", + "start_year" => 1986, + "end_year" => 1986 + ], + [ + "address" => "番禺市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 449004 => [ + [ + "address" => "南海市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 449005 => [ + [ + "address" => "云浮市", + "start_year" => 1992, + "end_year" => 1993 + ] + ], + 449006 => [ + [ + "address" => "新会市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 449007 => [ + [ + "address" => "开平市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449008 => [ + [ + "address" => "三水市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449009 => [ + [ + "address" => "普宁市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449010 => [ + [ + "address" => "罗定市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449011 => [ + [ + "address" => "潮阳市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449012 => [ + [ + "address" => "高州市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449013 => [ + [ + "address" => "花都市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449014 => [ + [ + "address" => "高要市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449015 => [ + [ + "address" => "鹤山市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449016 => [ + [ + "address" => "四会市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449017 => [ + [ + "address" => "增城市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449018 => [ + [ + "address" => "廉江市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 449019 => [ + [ + "address" => "英德市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449020 => [ + [ + "address" => "恩平市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449021 => [ + [ + "address" => "从化市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449022 => [ + [ + "address" => "澄海市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449023 => [ + [ + "address" => "高明市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449024 => [ + [ + "address" => "连州市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449025 => [ + [ + "address" => "雷州市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449026 => [ + [ + "address" => "乐昌市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449027 => [ + [ + "address" => "阳春市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449028 => [ + [ + "address" => "惠阳市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449029 => [ + [ + "address" => "吴川市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449030 => [ + [ + "address" => "兴宁市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 449031 => [ + [ + "address" => "化州市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 450000 => [ + [ + "address" => "广西壮族自治区", + "start_year" => "", + "end_year" => "" + ] + ], + 450100 => [ + [ + "address" => "南宁市", + "start_year" => "", + "end_year" => "" + ] + ], + 450102 => [ + [ + "address" => "兴宁区", + "start_year" => "", + "end_year" => "" + ] + ], + 450103 => [ + [ + "address" => "新城区", + "start_year" => "", + "end_year" => 2003 + ], + [ + "address" => "青秀区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 450104 => [ + [ + "address" => "城北区", + "start_year" => "", + "end_year" => 2003 + ] + ], + 450105 => [ + [ + "address" => "江南区", + "start_year" => "", + "end_year" => "" + ] + ], + 450106 => [ + [ + "address" => "永新区", + "start_year" => "", + "end_year" => 2003 + ] + ], + 450107 => [ + [ + "address" => "市郊区", + "start_year" => 1984, + "end_year" => 2000 + ], + [ + "address" => "西乡塘区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 450108 => [ + [ + "address" => "良庆区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 450109 => [ + [ + "address" => "邕宁区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 450110 => [ + [ + "address" => "武鸣区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 450121 => [ + [ + "address" => "邕宁县", + "start_year" => 1983, + "end_year" => 2003 + ] + ], + 450122 => [ + [ + "address" => "武鸣县", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 450123 => [ + [ + "address" => "隆安县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 450124 => [ + [ + "address" => "马山县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 450125 => [ + [ + "address" => "上林县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 450126 => [ + [ + "address" => "宾阳县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 450127 => [ + [ + "address" => "横县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 450200 => [ + [ + "address" => "柳州市", + "start_year" => "", + "end_year" => "" + ] + ], + 450202 => [ + [ + "address" => "城中区", + "start_year" => "", + "end_year" => "" + ] + ], + 450203 => [ + [ + "address" => "鱼峰区", + "start_year" => "", + "end_year" => "" + ] + ], + 450204 => [ + [ + "address" => "柳南区", + "start_year" => "", + "end_year" => "" + ] + ], + 450205 => [ + [ + "address" => "柳北区", + "start_year" => "", + "end_year" => "" + ] + ], + 450206 => [ + [ + "address" => "市郊区", + "start_year" => 1984, + "end_year" => 2001 + ], + [ + "address" => "柳江区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 450221 => [ + [ + "address" => "柳江县", + "start_year" => 1983, + "end_year" => 2015 + ] + ], + 450222 => [ + [ + "address" => "柳城县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 450223 => [ + [ + "address" => "鹿寨县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 450224 => [ + [ + "address" => "融安县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 450225 => [ + [ + "address" => "融水苗族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 450226 => [ + [ + "address" => "三江侗族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 450300 => [ + [ + "address" => "桂林市", + "start_year" => "", + "end_year" => "" + ] + ], + 450302 => [ + [ + "address" => "秀峰区", + "start_year" => "", + "end_year" => "" + ] + ], + 450303 => [ + [ + "address" => "叠彩区", + "start_year" => "", + "end_year" => "" + ] + ], + 450304 => [ + [ + "address" => "象山区", + "start_year" => "", + "end_year" => "" + ] + ], + 450305 => [ + [ + "address" => "七星区", + "start_year" => "", + "end_year" => "" + ] + ], + 450306 => [ + [ + "address" => "市郊区", + "start_year" => 1984, + "end_year" => 1995 + ] + ], + 450311 => [ + [ + "address" => "雁山区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 450312 => [ + [ + "address" => "临桂区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 450321 => [ + [ + "address" => "阳朔县", + "start_year" => 1981, + "end_year" => "" + ] + ], + 450322 => [ + [ + "address" => "临桂县", + "start_year" => 1983, + "end_year" => 2012 + ] + ], + 450323 => [ + [ + "address" => "灵川县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 450324 => [ + [ + "address" => "全州县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 450325 => [ + [ + "address" => "兴安县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 450326 => [ + [ + "address" => "永福县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 450327 => [ + [ + "address" => "灌阳县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 450328 => [ + [ + "address" => "龙胜各族自治县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 450329 => [ + [ + "address" => "资源县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 450330 => [ + [ + "address" => "平乐县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 450331 => [ + [ + "address" => "荔浦县", + "start_year" => 1998, + "end_year" => 2017 + ] + ], + 450332 => [ + [ + "address" => "恭城瑶族自治县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 450381 => [ + [ + "address" => "荔浦市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 450400 => [ + [ + "address" => "梧州市", + "start_year" => "", + "end_year" => "" + ] + ], + 450402 => [ + [ + "address" => "白云区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 450403 => [ + [ + "address" => "万秀区", + "start_year" => "", + "end_year" => "" + ] + ], + 450404 => [ + [ + "address" => "蝶山区", + "start_year" => "", + "end_year" => 2012 + ] + ], + 450405 => [ + [ + "address" => "鸳江区", + "start_year" => "", + "end_year" => 1983 + ], + [ + "address" => "市郊区", + "start_year" => 1984, + "end_year" => 2002 + ], + [ + "address" => "长洲区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 450406 => [ + [ + "address" => "龙圩区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 450421 => [ + [ + "address" => "苍梧县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 450422 => [ + [ + "address" => "藤县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 450423 => [ + [ + "address" => "蒙山县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 450481 => [ + [ + "address" => "岑溪市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 450500 => [ + [ + "address" => "北海市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 450502 => [ + [ + "address" => "海城区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 450503 => [ + [ + "address" => "市郊区", + "start_year" => 1984, + "end_year" => 1993 + ], + [ + "address" => "银海区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 450512 => [ + [ + "address" => "铁山港区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 450521 => [ + [ + "address" => "合浦县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 450600 => [ + [ + "address" => "防城港市", + "start_year" => 1993, + "end_year" => "" + ] + ], + 450602 => [ + [ + "address" => "港口区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 450603 => [ + [ + "address" => "防城区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 450621 => [ + [ + "address" => "上思县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 450681 => [ + [ + "address" => "东兴市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 450700 => [ + [ + "address" => "钦州市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 450702 => [ + [ + "address" => "钦南区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 450703 => [ + [ + "address" => "钦北区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 450721 => [ + [ + "address" => "灵山县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 450722 => [ + [ + "address" => "浦北县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 450800 => [ + [ + "address" => "贵港市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 450802 => [ + [ + "address" => "港北区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 450803 => [ + [ + "address" => "港南区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 450804 => [ + [ + "address" => "覃塘区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 450821 => [ + [ + "address" => "平南县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 450881 => [ + [ + "address" => "桂平市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 450900 => [ + [ + "address" => "玉林市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 450902 => [ + [ + "address" => "玉州区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 450903 => [ + [ + "address" => "福绵区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 450921 => [ + [ + "address" => "容县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 450922 => [ + [ + "address" => "陆川县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 450923 => [ + [ + "address" => "博白县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 450924 => [ + [ + "address" => "兴业县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 450981 => [ + [ + "address" => "北流市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 451000 => [ + [ + "address" => "百色市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451002 => [ + [ + "address" => "右江区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451021 => [ + [ + "address" => "田阳县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451022 => [ + [ + "address" => "田东县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451023 => [ + [ + "address" => "平果县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451024 => [ + [ + "address" => "德保县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451025 => [ + [ + "address" => "靖西县", + "start_year" => 2002, + "end_year" => 2014 + ] + ], + 451026 => [ + [ + "address" => "那坡县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451027 => [ + [ + "address" => "凌云县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451028 => [ + [ + "address" => "乐业县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451029 => [ + [ + "address" => "田林县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451030 => [ + [ + "address" => "西林县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451031 => [ + [ + "address" => "隆林各族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451081 => [ + [ + "address" => "靖西市", + "start_year" => 2015, + "end_year" => "" + ] + ], + 451100 => [ + [ + "address" => "贺州市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451102 => [ + [ + "address" => "八步区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451103 => [ + [ + "address" => "平桂区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 451121 => [ + [ + "address" => "昭平县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451122 => [ + [ + "address" => "钟山县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451123 => [ + [ + "address" => "富川瑶族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451200 => [ + [ + "address" => "河池市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451202 => [ + [ + "address" => "金城江区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451203 => [ + [ + "address" => "宜州区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 451221 => [ + [ + "address" => "南丹县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451222 => [ + [ + "address" => "天峨县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451223 => [ + [ + "address" => "凤山县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451224 => [ + [ + "address" => "东兰县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451225 => [ + [ + "address" => "罗城仫佬族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451226 => [ + [ + "address" => "环江毛南族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451227 => [ + [ + "address" => "巴马瑶族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451228 => [ + [ + "address" => "都安瑶族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451229 => [ + [ + "address" => "大化瑶族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451281 => [ + [ + "address" => "宜州市", + "start_year" => 2002, + "end_year" => 2015 + ] + ], + 451300 => [ + [ + "address" => "来宾市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451302 => [ + [ + "address" => "兴宾区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451321 => [ + [ + "address" => "忻城县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451322 => [ + [ + "address" => "象州县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451323 => [ + [ + "address" => "武宣县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451324 => [ + [ + "address" => "金秀瑶族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451381 => [ + [ + "address" => "合山市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451400 => [ + [ + "address" => "崇左市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451402 => [ + [ + "address" => "江州区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451421 => [ + [ + "address" => "扶绥县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451422 => [ + [ + "address" => "宁明县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451423 => [ + [ + "address" => "龙州县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451424 => [ + [ + "address" => "大新县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451425 => [ + [ + "address" => "天等县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451481 => [ + [ + "address" => "凭祥市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 452100 => [ + [ + "address" => "南宁地区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452101 => [ + [ + "address" => "凭祥市", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452121 => [ + [ + "address" => "邕宁县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 452122 => [ + [ + "address" => "横县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452123 => [ + [ + "address" => "宾阳县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452124 => [ + [ + "address" => "上林县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452125 => [ + [ + "address" => "武鸣县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 452126 => [ + [ + "address" => "隆安县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452127 => [ + [ + "address" => "马山县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452128 => [ + [ + "address" => "扶绥县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452129 => [ + [ + "address" => "崇左县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452130 => [ + [ + "address" => "大新县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452131 => [ + [ + "address" => "天等县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452132 => [ + [ + "address" => "宁明县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452133 => [ + [ + "address" => "龙州县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452200 => [ + [ + "address" => "柳州地区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452201 => [ + [ + "address" => "合山市", + "start_year" => 1981, + "end_year" => 2001 + ] + ], + 452221 => [ + [ + "address" => "柳江县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 452222 => [ + [ + "address" => "柳城县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 452223 => [ + [ + "address" => "鹿寨县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452224 => [ + [ + "address" => "象州县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452225 => [ + [ + "address" => "武宣县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452226 => [ + [ + "address" => "来宾县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452227 => [ + [ + "address" => "融安县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452228 => [ + [ + "address" => "三江侗族自治县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452229 => [ + [ + "address" => "融水苗族自治县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452230 => [ + [ + "address" => "金秀瑶族自治县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452231 => [ + [ + "address" => "忻城县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452300 => [ + [ + "address" => "桂林地区", + "start_year" => "", + "end_year" => 1997 + ] + ], + 452321 => [ + [ + "address" => "临桂县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 452322 => [ + [ + "address" => "灵川县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 452323 => [ + [ + "address" => "全州县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 452324 => [ + [ + "address" => "兴安县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 452325 => [ + [ + "address" => "永福县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 452326 => [ + [ + "address" => "阳朔县", + "start_year" => "", + "end_year" => 1980 + ] + ], + 452327 => [ + [ + "address" => "灌阳县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 452328 => [ + [ + "address" => "龙胜各族自治县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 452329 => [ + [ + "address" => "资源县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 452330 => [ + [ + "address" => "平乐县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 452331 => [ + [ + "address" => "荔浦县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 452332 => [ + [ + "address" => "恭城县", + "start_year" => "", + "end_year" => 1989 + ], + [ + "address" => "恭城瑶族自治县", + "start_year" => 1990, + "end_year" => 1997 + ] + ], + 452400 => [ + [ + "address" => "梧州地区", + "start_year" => "", + "end_year" => 1996 + ], + [ + "address" => "贺州地区", + "start_year" => 1997, + "end_year" => 2001 + ] + ], + 452401 => [ + [ + "address" => "岑溪市", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 452402 => [ + [ + "address" => "贺州市", + "start_year" => 1997, + "end_year" => 2001 + ] + ], + 452421 => [ + [ + "address" => "岑溪县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 452422 => [ + [ + "address" => "苍梧县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 452423 => [ + [ + "address" => "藤县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 452424 => [ + [ + "address" => "昭平县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452425 => [ + [ + "address" => "蒙山县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 452426 => [ + [ + "address" => "贺县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 452427 => [ + [ + "address" => "钟山县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452428 => [ + [ + "address" => "富川县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "富川瑶族自治县", + "start_year" => 1983, + "end_year" => 2001 + ] + ], + 452500 => [ + [ + "address" => "玉林地区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 452501 => [ + [ + "address" => "玉林市", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 452502 => [ + [ + "address" => "贵港市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 452503 => [ + [ + "address" => "桂平市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 452504 => [ + [ + "address" => "北流市", + "start_year" => 1994, + "end_year" => 1996 + ] + ], + 452521 => [ + [ + "address" => "玉林县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 452522 => [ + [ + "address" => "贵县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 452523 => [ + [ + "address" => "桂平县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 452524 => [ + [ + "address" => "平南县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 452525 => [ + [ + "address" => "容县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 452526 => [ + [ + "address" => "北流县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 452527 => [ + [ + "address" => "陆川县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 452528 => [ + [ + "address" => "博白县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 452600 => [ + [ + "address" => "百色地区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452601 => [ + [ + "address" => "百色市", + "start_year" => 1983, + "end_year" => 2001 + ] + ], + 452621 => [ + [ + "address" => "百色县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 452622 => [ + [ + "address" => "田阳县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452623 => [ + [ + "address" => "田东县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452624 => [ + [ + "address" => "平果县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452625 => [ + [ + "address" => "德保县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452626 => [ + [ + "address" => "靖西县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452627 => [ + [ + "address" => "那坡县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452628 => [ + [ + "address" => "凌云县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452629 => [ + [ + "address" => "乐业县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452630 => [ + [ + "address" => "田林县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452631 => [ + [ + "address" => "隆林各族自治县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452632 => [ + [ + "address" => "西林县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452700 => [ + [ + "address" => "河池地区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452701 => [ + [ + "address" => "河池市", + "start_year" => 1983, + "end_year" => 2001 + ] + ], + 452702 => [ + [ + "address" => "宜州市", + "start_year" => 1993, + "end_year" => 2001 + ] + ], + 452721 => [ + [ + "address" => "河池县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 452722 => [ + [ + "address" => "宜山县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 452723 => [ + [ + "address" => "罗城县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "罗城仫佬族自治县", + "start_year" => 1983, + "end_year" => 2001 + ] + ], + 452724 => [ + [ + "address" => "环江县", + "start_year" => "", + "end_year" => 1985 + ], + [ + "address" => "环江毛南族自治县", + "start_year" => 1986, + "end_year" => 2001 + ] + ], + 452725 => [ + [ + "address" => "南丹县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452726 => [ + [ + "address" => "天峨县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452727 => [ + [ + "address" => "凤山县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452728 => [ + [ + "address" => "东兰县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452729 => [ + [ + "address" => "巴马瑶族自治县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452730 => [ + [ + "address" => "都安瑶族自治县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 452731 => [ + [ + "address" => "大化瑶族自治县", + "start_year" => 1987, + "end_year" => 2001 + ] + ], + 452800 => [ + [ + "address" => "钦州地区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 452801 => [ + [ + "address" => "北海市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 452802 => [ + [ + "address" => "钦州市", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 452821 => [ + [ + "address" => "上思县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 452822 => [ + [ + "address" => "防城各族自治县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 452823 => [ + [ + "address" => "钦州县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 452824 => [ + [ + "address" => "灵山县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 452825 => [ + [ + "address" => "合浦县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 452826 => [ + [ + "address" => "浦北县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 460000 => [ + [ + "address" => "海南省", + "start_year" => 1988, + "end_year" => "" + ] + ], + 460001 => [ + [ + "address" => "通什市", + "start_year" => 1988, + "end_year" => 2000 + ], + [ + "address" => "五指山市", + "start_year" => 2001, + "end_year" => 2002 + ] + ], + 460002 => [ + [ + "address" => "琼海市", + "start_year" => 1992, + "end_year" => 2002 + ] + ], + 460003 => [ + [ + "address" => "儋州市", + "start_year" => 1993, + "end_year" => 2002 + ] + ], + 460004 => [ + [ + "address" => "琼山市", + "start_year" => 1994, + "end_year" => 2001 + ] + ], + 460005 => [ + [ + "address" => "文昌市", + "start_year" => 1995, + "end_year" => 2002 + ] + ], + 460006 => [ + [ + "address" => "万宁市", + "start_year" => 1996, + "end_year" => 2002 + ] + ], + 460007 => [ + [ + "address" => "东方市", + "start_year" => 1997, + "end_year" => 2002 + ] + ], + 460021 => [ + [ + "address" => "琼山县", + "start_year" => 1988, + "end_year" => 1993 + ] + ], + 460022 => [ + [ + "address" => "文昌县", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 460023 => [ + [ + "address" => "琼海县", + "start_year" => 1988, + "end_year" => 1991 + ] + ], + 460024 => [ + [ + "address" => "万宁县", + "start_year" => 1988, + "end_year" => 1995 + ] + ], + 460025 => [ + [ + "address" => "定安县", + "start_year" => 1988, + "end_year" => 2002 + ] + ], + 460026 => [ + [ + "address" => "屯昌县", + "start_year" => 1988, + "end_year" => 2002 + ] + ], + 460027 => [ + [ + "address" => "澄迈县", + "start_year" => 1988, + "end_year" => 2002 + ] + ], + 460028 => [ + [ + "address" => "临高县", + "start_year" => 1988, + "end_year" => 2002 + ] + ], + 460029 => [ + [ + "address" => "儋县", + "start_year" => 1988, + "end_year" => 1992 + ] + ], + 460030 => [ + [ + "address" => "白沙黎族自治县", + "start_year" => 1988, + "end_year" => 2002 + ] + ], + 460031 => [ + [ + "address" => "昌江黎族自治县", + "start_year" => 1988, + "end_year" => 2002 + ] + ], + 460032 => [ + [ + "address" => "东方黎族自治县", + "start_year" => 1988, + "end_year" => 1996 + ] + ], + 460033 => [ + [ + "address" => "乐东黎族自治县", + "start_year" => 1988, + "end_year" => 2002 + ] + ], + 460034 => [ + [ + "address" => "陵水黎族自治县", + "start_year" => 1988, + "end_year" => 2002 + ] + ], + 460035 => [ + [ + "address" => "保亭黎族苗族自治县", + "start_year" => 1988, + "end_year" => 2002 + ] + ], + 460036 => [ + [ + "address" => "琼中黎族苗族自治县", + "start_year" => 1988, + "end_year" => 2002 + ] + ], + 460100 => [ + [ + "address" => "海口市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 460102 => [ + [ + "address" => "振东区", + "start_year" => 1990, + "end_year" => 2001 + ] + ], + 460103 => [ + [ + "address" => "新华区", + "start_year" => 1990, + "end_year" => 2001 + ] + ], + 460104 => [ + [ + "address" => "秀英区", + "start_year" => 1990, + "end_year" => 2001 + ] + ], + 460105 => [ + [ + "address" => "秀英区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 460106 => [ + [ + "address" => "龙华区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 460107 => [ + [ + "address" => "琼山区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 460108 => [ + [ + "address" => "美兰区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 460200 => [ + [ + "address" => "三亚市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 460202 => [ + [ + "address" => "海棠区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 460203 => [ + [ + "address" => "吉阳区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 460204 => [ + [ + "address" => "天涯区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 460205 => [ + [ + "address" => "崖州区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 460300 => [ + [ + "address" => "三沙市", + "start_year" => 2012, + "end_year" => "" + ] + ], + 460400 => [ + [ + "address" => "儋州市", + "start_year" => 2015, + "end_year" => "" + ] + ], + 469001 => [ + [ + "address" => "五指山市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469002 => [ + [ + "address" => "琼海市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469003 => [ + [ + "address" => "儋州市", + "start_year" => 2003, + "end_year" => 2014 + ] + ], + 469005 => [ + [ + "address" => "文昌市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469006 => [ + [ + "address" => "万宁市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469007 => [ + [ + "address" => "东方市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469021 => [ + [ + "address" => "定安县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469022 => [ + [ + "address" => "屯昌县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469023 => [ + [ + "address" => "澄迈县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469024 => [ + [ + "address" => "临高县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469025 => [ + [ + "address" => "白沙黎族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469026 => [ + [ + "address" => "昌江黎族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469027 => [ + [ + "address" => "乐东黎族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469028 => [ + [ + "address" => "陵水黎族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469029 => [ + [ + "address" => "保亭黎族苗族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 469030 => [ + [ + "address" => "琼中黎族苗族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 500000 => [ + [ + "address" => "重庆市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500101 => [ + [ + "address" => "万县区", + "start_year" => 1997, + "end_year" => 1997 + ], + [ + "address" => "万州区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 500102 => [ + [ + "address" => "涪陵区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500103 => [ + [ + "address" => "渝中区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500104 => [ + [ + "address" => "大渡口区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500105 => [ + [ + "address" => "江北区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500106 => [ + [ + "address" => "沙坪坝区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500107 => [ + [ + "address" => "九龙坡区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500108 => [ + [ + "address" => "南岸区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500109 => [ + [ + "address" => "北碚区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500110 => [ + [ + "address" => "万盛区", + "start_year" => 1997, + "end_year" => 2010 + ], + [ + "address" => "綦江区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 500111 => [ + [ + "address" => "双桥区", + "start_year" => 1997, + "end_year" => 2010 + ], + [ + "address" => "大足区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 500112 => [ + [ + "address" => "渝北区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500113 => [ + [ + "address" => "巴南区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500114 => [ + [ + "address" => "黔江区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 500115 => [ + [ + "address" => "长寿区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 500116 => [ + [ + "address" => "江津区", + "start_year" => 2006, + "end_year" => "" + ] + ], + 500117 => [ + [ + "address" => "合川区", + "start_year" => 2006, + "end_year" => "" + ] + ], + 500118 => [ + [ + "address" => "永川区", + "start_year" => 2006, + "end_year" => "" + ] + ], + 500119 => [ + [ + "address" => "南川区", + "start_year" => 2006, + "end_year" => "" + ] + ], + 500120 => [ + [ + "address" => "璧山区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 500151 => [ + [ + "address" => "铜梁区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 500152 => [ + [ + "address" => "潼南区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 500153 => [ + [ + "address" => "荣昌区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 500154 => [ + [ + "address" => "开州区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 500155 => [ + [ + "address" => "梁平区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 500156 => [ + [ + "address" => "武隆区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 500221 => [ + [ + "address" => "长寿县", + "start_year" => 1997, + "end_year" => 2000 + ] + ], + 500222 => [ + [ + "address" => "綦江县", + "start_year" => 1997, + "end_year" => 2010 + ] + ], + 500223 => [ + [ + "address" => "潼南县", + "start_year" => 1997, + "end_year" => 2014 + ] + ], + 500224 => [ + [ + "address" => "铜梁县", + "start_year" => 1997, + "end_year" => 2013 + ] + ], + 500225 => [ + [ + "address" => "大足县", + "start_year" => 1997, + "end_year" => 2010 + ] + ], + 500226 => [ + [ + "address" => "荣昌县", + "start_year" => 1997, + "end_year" => 2014 + ] + ], + 500227 => [ + [ + "address" => "璧山县", + "start_year" => 1997, + "end_year" => 2013 + ] + ], + 500228 => [ + [ + "address" => "梁平县", + "start_year" => 1997, + "end_year" => 2015 + ] + ], + 500229 => [ + [ + "address" => "城口县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500230 => [ + [ + "address" => "丰都县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500231 => [ + [ + "address" => "垫江县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500232 => [ + [ + "address" => "武隆县", + "start_year" => 1997, + "end_year" => 2015 + ] + ], + 500233 => [ + [ + "address" => "忠县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500234 => [ + [ + "address" => "开县", + "start_year" => 1997, + "end_year" => 2015 + ] + ], + 500235 => [ + [ + "address" => "云阳县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500236 => [ + [ + "address" => "奉节县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500237 => [ + [ + "address" => "巫山县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500238 => [ + [ + "address" => "巫溪县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500239 => [ + [ + "address" => "黔江土家族苗族自治县", + "start_year" => 1997, + "end_year" => 1999 + ] + ], + 500240 => [ + [ + "address" => "石柱土家族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500241 => [ + [ + "address" => "秀山土家族苗族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500242 => [ + [ + "address" => "酉阳土家族苗族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500243 => [ + [ + "address" => "彭水苗族土家族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500381 => [ + [ + "address" => "江津市", + "start_year" => 1997, + "end_year" => 2005 + ] + ], + 500382 => [ + [ + "address" => "合川市", + "start_year" => 1997, + "end_year" => 2005 + ] + ], + 500383 => [ + [ + "address" => "永川市", + "start_year" => 1997, + "end_year" => 2005 + ] + ], + 500384 => [ + [ + "address" => "南川市", + "start_year" => 1997, + "end_year" => 2005 + ] + ], + 510000 => [ + [ + "address" => "四川省", + "start_year" => "", + "end_year" => "" + ] + ], + 510100 => [ + [ + "address" => "成都市", + "start_year" => "", + "end_year" => "" + ] + ], + 510102 => [ + [ + "address" => "东城区", + "start_year" => "", + "end_year" => 1989 + ] + ], + 510103 => [ + [ + "address" => "西城区", + "start_year" => "", + "end_year" => 1989 + ] + ], + 510104 => [ + [ + "address" => "锦江区", + "start_year" => 1990, + "end_year" => "" + ] + ], + 510105 => [ + [ + "address" => "青羊区", + "start_year" => 1990, + "end_year" => "" + ] + ], + 510106 => [ + [ + "address" => "金牛区", + "start_year" => 1990, + "end_year" => "" + ] + ], + 510107 => [ + [ + "address" => "武侯区", + "start_year" => 1990, + "end_year" => "" + ] + ], + 510108 => [ + [ + "address" => "成华区", + "start_year" => 1990, + "end_year" => "" + ] + ], + 510111 => [ + [ + "address" => "金牛区", + "start_year" => "", + "end_year" => 1989 + ] + ], + 510112 => [ + [ + "address" => "龙泉驿区", + "start_year" => "", + "end_year" => "" + ] + ], + 510113 => [ + [ + "address" => "青白江区", + "start_year" => "", + "end_year" => "" + ] + ], + 510114 => [ + [ + "address" => "新都区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 510115 => [ + [ + "address" => "温江区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 510116 => [ + [ + "address" => "双流区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 510117 => [ + [ + "address" => "郫都区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 510121 => [ + [ + "address" => "金堂县", + "start_year" => "", + "end_year" => "" + ] + ], + 510122 => [ + [ + "address" => "双流县", + "start_year" => "", + "end_year" => 2014 + ] + ], + 510123 => [ + [ + "address" => "温江县", + "start_year" => 1983, + "end_year" => 2001 + ] + ], + 510124 => [ + [ + "address" => "郫县", + "start_year" => 1983, + "end_year" => 2015 + ] + ], + 510125 => [ + [ + "address" => "新都县", + "start_year" => 1983, + "end_year" => 2000 + ] + ], + 510126 => [ + [ + "address" => "彭县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 510127 => [ + [ + "address" => "灌县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 510128 => [ + [ + "address" => "崇庆县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 510129 => [ + [ + "address" => "大邑县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510130 => [ + [ + "address" => "邛崃县", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 510131 => [ + [ + "address" => "蒲江县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510132 => [ + [ + "address" => "新津县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510181 => [ + [ + "address" => "都江堰市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 510182 => [ + [ + "address" => "彭州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 510183 => [ + [ + "address" => "邛崃市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 510184 => [ + [ + "address" => "崇州市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 510185 => [ + [ + "address" => "简阳市", + "start_year" => 2016, + "end_year" => "" + ] + ], + 510200 => [ + [ + "address" => "重庆市", + "start_year" => "", + "end_year" => 1996 + ] + ], + 510202 => [ + [ + "address" => "市中区", + "start_year" => "", + "end_year" => 1993 + ], + [ + "address" => "渝中区", + "start_year" => 1994, + "end_year" => 1996 + ] + ], + 510203 => [ + [ + "address" => "大渡口区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 510211 => [ + [ + "address" => "江北区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 510212 => [ + [ + "address" => "沙坪坝区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 510213 => [ + [ + "address" => "九龙坡区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 510214 => [ + [ + "address" => "南岸区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 510215 => [ + [ + "address" => "北碚区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 510216 => [ + [ + "address" => "南桐矿区", + "start_year" => "", + "end_year" => 1992 + ], + [ + "address" => "万盛区", + "start_year" => 1993, + "end_year" => 1996 + ] + ], + 510217 => [ + [ + "address" => "双桥区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 510218 => [ + [ + "address" => "渝北区", + "start_year" => 1994, + "end_year" => 1996 + ] + ], + 510219 => [ + [ + "address" => "巴南区", + "start_year" => 1994, + "end_year" => 1996 + ] + ], + 510221 => [ + [ + "address" => "长寿县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 510222 => [ + [ + "address" => "巴县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 510223 => [ + [ + "address" => "綦江县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 510224 => [ + [ + "address" => "江北县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 510225 => [ + [ + "address" => "江津县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 510226 => [ + [ + "address" => "合川县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 510227 => [ + [ + "address" => "潼南县", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 510228 => [ + [ + "address" => "铜梁县", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 510229 => [ + [ + "address" => "永川县", + "start_year" => 1983, + "end_year" => 1991 + ] + ], + 510230 => [ + [ + "address" => "大足县", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 510231 => [ + [ + "address" => "荣昌县", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 510232 => [ + [ + "address" => "璧山县", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 510281 => [ + [ + "address" => "永川市", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 510282 => [ + [ + "address" => "合川市", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 510283 => [ + [ + "address" => "江津市", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 510300 => [ + [ + "address" => "自贡市", + "start_year" => "", + "end_year" => "" + ] + ], + 510302 => [ + [ + "address" => "自流井区", + "start_year" => "", + "end_year" => "" + ] + ], + 510303 => [ + [ + "address" => "贡井区", + "start_year" => "", + "end_year" => "" + ] + ], + 510304 => [ + [ + "address" => "大安区", + "start_year" => "", + "end_year" => "" + ] + ], + 510311 => [ + [ + "address" => "沿滩区", + "start_year" => "", + "end_year" => "" + ] + ], + 510321 => [ + [ + "address" => "荣县", + "start_year" => "", + "end_year" => "" + ] + ], + 510322 => [ + [ + "address" => "富顺县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510400 => [ + [ + "address" => "渡口市", + "start_year" => "", + "end_year" => 1986 + ], + [ + "address" => "攀枝花市", + "start_year" => 1987, + "end_year" => "" + ] + ], + 510402 => [ + [ + "address" => "东区", + "start_year" => "", + "end_year" => "" + ] + ], + 510403 => [ + [ + "address" => "西区", + "start_year" => "", + "end_year" => "" + ] + ], + 510411 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "仁和区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 510421 => [ + [ + "address" => "米易县", + "start_year" => "", + "end_year" => "" + ] + ], + 510422 => [ + [ + "address" => "盐边县", + "start_year" => "", + "end_year" => "" + ] + ], + 510500 => [ + [ + "address" => "泸州市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510502 => [ + [ + "address" => "市中区", + "start_year" => 1984, + "end_year" => 1994 + ], + [ + "address" => "江阳区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 510503 => [ + [ + "address" => "纳溪区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 510504 => [ + [ + "address" => "龙马潭区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 510521 => [ + [ + "address" => "泸县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510522 => [ + [ + "address" => "合江县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510523 => [ + [ + "address" => "纳溪县", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 510524 => [ + [ + "address" => "叙永县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510525 => [ + [ + "address" => "古蔺县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510600 => [ + [ + "address" => "德阳市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510602 => [ + [ + "address" => "市中区", + "start_year" => 1984, + "end_year" => 1995 + ] + ], + 510603 => [ + [ + "address" => "旌阳区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 510604 => [ + [ + "address" => "罗江区", + "start_year" => 2017, + "end_year" => "" + ] + ], + 510621 => [ + [ + "address" => "德阳县", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 510622 => [ + [ + "address" => "绵竹县", + "start_year" => 1983, + "end_year" => 1995 + ] + ], + 510623 => [ + [ + "address" => "中江县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510624 => [ + [ + "address" => "广汉县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 510625 => [ + [ + "address" => "什邡县", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 510626 => [ + [ + "address" => "罗江县", + "start_year" => 1996, + "end_year" => 2016 + ] + ], + 510681 => [ + [ + "address" => "广汉市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 510682 => [ + [ + "address" => "什邡市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 510683 => [ + [ + "address" => "绵竹市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 510700 => [ + [ + "address" => "绵阳市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510702 => [ + [ + "address" => "市中区", + "start_year" => 1985, + "end_year" => 1991 + ] + ], + 510703 => [ + [ + "address" => "涪城区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 510704 => [ + [ + "address" => "游仙区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 510705 => [ + [ + "address" => "安州区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 510721 => [ + [ + "address" => "江油县", + "start_year" => 1985, + "end_year" => 1987 + ] + ], + 510722 => [ + [ + "address" => "三台县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510723 => [ + [ + "address" => "盐亭县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510724 => [ + [ + "address" => "安县", + "start_year" => 1985, + "end_year" => 2015 + ] + ], + 510725 => [ + [ + "address" => "梓潼县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510726 => [ + [ + "address" => "北川县", + "start_year" => 1985, + "end_year" => 2002 + ], + [ + "address" => "北川羌族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 510727 => [ + [ + "address" => "平武县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510781 => [ + [ + "address" => "江油市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 510800 => [ + [ + "address" => "广元市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510802 => [ + [ + "address" => "市中区", + "start_year" => 1985, + "end_year" => 2006 + ], + [ + "address" => "利州区", + "start_year" => 2007, + "end_year" => "" + ] + ], + 510811 => [ + [ + "address" => "元坝区", + "start_year" => 1989, + "end_year" => 2012 + ], + [ + "address" => "昭化区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 510812 => [ + [ + "address" => "朝天区", + "start_year" => 1989, + "end_year" => "" + ] + ], + 510821 => [ + [ + "address" => "旺苍县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510822 => [ + [ + "address" => "青川县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510823 => [ + [ + "address" => "剑阁县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510824 => [ + [ + "address" => "苍溪县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510900 => [ + [ + "address" => "遂宁市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510902 => [ + [ + "address" => "市中区", + "start_year" => 1985, + "end_year" => 2002 + ] + ], + 510903 => [ + [ + "address" => "船山区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 510904 => [ + [ + "address" => "安居区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 510921 => [ + [ + "address" => "蓬溪县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510922 => [ + [ + "address" => "射洪县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510923 => [ + [ + "address" => "大英县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 511000 => [ + [ + "address" => "内江市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511002 => [ + [ + "address" => "市中区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511011 => [ + [ + "address" => "东兴区", + "start_year" => 1989, + "end_year" => "" + ] + ], + 511021 => [ + [ + "address" => "内江县", + "start_year" => 1985, + "end_year" => 1988 + ] + ], + 511022 => [ + [ + "address" => "乐至县", + "start_year" => 1985, + "end_year" => 1997 + ] + ], + 511023 => [ + [ + "address" => "安岳县", + "start_year" => 1985, + "end_year" => 1997 + ] + ], + 511024 => [ + [ + "address" => "威远县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511025 => [ + [ + "address" => "资中县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511026 => [ + [ + "address" => "资阳县", + "start_year" => 1985, + "end_year" => 1992 + ] + ], + 511027 => [ + [ + "address" => "简阳县", + "start_year" => 1985, + "end_year" => 1993 + ] + ], + 511028 => [ + [ + "address" => "隆昌县", + "start_year" => 1985, + "end_year" => 2016 + ] + ], + 511081 => [ + [ + "address" => "资阳市", + "start_year" => 1995, + "end_year" => 1997 + ] + ], + 511082 => [ + [ + "address" => "简阳市", + "start_year" => 1995, + "end_year" => 1997 + ] + ], + 511083 => [ + [ + "address" => "隆昌市", + "start_year" => 2017, + "end_year" => "" + ] + ], + 511100 => [ + [ + "address" => "乐山市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511102 => [ + [ + "address" => "市中区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511111 => [ + [ + "address" => "沙湾区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511112 => [ + [ + "address" => "五通桥区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511113 => [ + [ + "address" => "金口河区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511121 => [ + [ + "address" => "仁寿县", + "start_year" => 1985, + "end_year" => 1996 + ] + ], + 511122 => [ + [ + "address" => "眉山县", + "start_year" => 1985, + "end_year" => 1996 + ] + ], + 511123 => [ + [ + "address" => "犍为县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511124 => [ + [ + "address" => "井研县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511125 => [ + [ + "address" => "峨眉县", + "start_year" => 1985, + "end_year" => 1987 + ] + ], + 511126 => [ + [ + "address" => "夹江县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511127 => [ + [ + "address" => "洪雅县", + "start_year" => 1985, + "end_year" => 1996 + ] + ], + 511128 => [ + [ + "address" => "彭山县", + "start_year" => 1985, + "end_year" => 1996 + ] + ], + 511129 => [ + [ + "address" => "沐川县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511130 => [ + [ + "address" => "青神县", + "start_year" => 1985, + "end_year" => 1996 + ] + ], + 511131 => [ + [ + "address" => "丹棱县", + "start_year" => 1985, + "end_year" => 1996 + ] + ], + 511132 => [ + [ + "address" => "峨边彝族自治县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511133 => [ + [ + "address" => "马边彝族自治县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511181 => [ + [ + "address" => "峨眉山市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 511200 => [ + [ + "address" => "万县市", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511202 => [ + [ + "address" => "龙宝区", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511203 => [ + [ + "address" => "天城区", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511204 => [ + [ + "address" => "五桥区", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511221 => [ + [ + "address" => "开县", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511222 => [ + [ + "address" => "忠县", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511223 => [ + [ + "address" => "梁平县", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511224 => [ + [ + "address" => "云阳县", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511225 => [ + [ + "address" => "奉节县", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511226 => [ + [ + "address" => "巫山县", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511227 => [ + [ + "address" => "巫溪县", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511228 => [ + [ + "address" => "城口县", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511300 => [ + [ + "address" => "南充市", + "start_year" => 1993, + "end_year" => "" + ] + ], + 511302 => [ + [ + "address" => "顺庆区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 511303 => [ + [ + "address" => "高坪区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 511304 => [ + [ + "address" => "嘉陵区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 511321 => [ + [ + "address" => "南部县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 511322 => [ + [ + "address" => "营山县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 511323 => [ + [ + "address" => "蓬安县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 511324 => [ + [ + "address" => "仪陇县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 511325 => [ + [ + "address" => "西充县", + "start_year" => 1993, + "end_year" => "" + ] + ], + 511381 => [ + [ + "address" => "阆中市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 511400 => [ + [ + "address" => "眉山市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511402 => [ + [ + "address" => "东坡区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511403 => [ + [ + "address" => "彭山区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 511421 => [ + [ + "address" => "仁寿县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511422 => [ + [ + "address" => "彭山县", + "start_year" => 2000, + "end_year" => 2013 + ] + ], + 511423 => [ + [ + "address" => "洪雅县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511424 => [ + [ + "address" => "丹棱县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511425 => [ + [ + "address" => "青神县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511500 => [ + [ + "address" => "宜宾市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 511502 => [ + [ + "address" => "翠屏区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 511503 => [ + [ + "address" => "南溪区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 511504 => [ + [ + "address" => "叙州区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 511521 => [ + [ + "address" => "宜宾县", + "start_year" => 1996, + "end_year" => 2017 + ] + ], + 511522 => [ + [ + "address" => "南溪县", + "start_year" => 1996, + "end_year" => 2010 + ] + ], + 511523 => [ + [ + "address" => "江安县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 511524 => [ + [ + "address" => "长宁县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 511525 => [ + [ + "address" => "高县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 511526 => [ + [ + "address" => "珙县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 511527 => [ + [ + "address" => "筠连县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 511528 => [ + [ + "address" => "兴文县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 511529 => [ + [ + "address" => "屏山县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 511600 => [ + [ + "address" => "广安市", + "start_year" => 1998, + "end_year" => "" + ] + ], + 511602 => [ + [ + "address" => "广安区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 511603 => [ + [ + "address" => "前锋区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 511621 => [ + [ + "address" => "岳池县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 511622 => [ + [ + "address" => "武胜县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 511623 => [ + [ + "address" => "邻水县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 511681 => [ + [ + "address" => "华蓥市", + "start_year" => 1998, + "end_year" => "" + ] + ], + 511700 => [ + [ + "address" => "达州市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 511702 => [ + [ + "address" => "通川区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 511703 => [ + [ + "address" => "达川区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 511721 => [ + [ + "address" => "达县", + "start_year" => 1999, + "end_year" => 2012 + ] + ], + 511722 => [ + [ + "address" => "宣汉县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 511723 => [ + [ + "address" => "开江县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 511724 => [ + [ + "address" => "大竹县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 511725 => [ + [ + "address" => "渠县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 511781 => [ + [ + "address" => "万源市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 511800 => [ + [ + "address" => "雅安市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511802 => [ + [ + "address" => "雨城区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511803 => [ + [ + "address" => "名山区", + "start_year" => 2012, + "end_year" => "" + ] + ], + 511821 => [ + [ + "address" => "名山县", + "start_year" => 2000, + "end_year" => 2011 + ] + ], + 511822 => [ + [ + "address" => "荥经县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511823 => [ + [ + "address" => "汉源县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511824 => [ + [ + "address" => "石棉县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511825 => [ + [ + "address" => "天全县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511826 => [ + [ + "address" => "芦山县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511827 => [ + [ + "address" => "宝兴县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511900 => [ + [ + "address" => "巴中市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511902 => [ + [ + "address" => "巴州区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511903 => [ + [ + "address" => "恩阳区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 511921 => [ + [ + "address" => "通江县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511922 => [ + [ + "address" => "南江县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511923 => [ + [ + "address" => "平昌县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 512000 => [ + [ + "address" => "资阳市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 512002 => [ + [ + "address" => "雁江区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 512021 => [ + [ + "address" => "安岳县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 512022 => [ + [ + "address" => "乐至县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 512081 => [ + [ + "address" => "简阳市", + "start_year" => 2000, + "end_year" => 2015 + ] + ], + 512100 => [ + [ + "address" => "温江地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "永川地区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512121 => [ + [ + "address" => "温江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "江津县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512122 => [ + [ + "address" => "郫县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "合川县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512123 => [ + [ + "address" => "灌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "潼南县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512124 => [ + [ + "address" => "彭县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "铜梁县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512125 => [ + [ + "address" => "什邡县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "永川县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512126 => [ + [ + "address" => "广汉县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "大足县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512127 => [ + [ + "address" => "新都县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "荣昌县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512128 => [ + [ + "address" => "新津县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "璧山县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512129 => [ + [ + "address" => "蒲江县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512130 => [ + [ + "address" => "邛崃县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512131 => [ + [ + "address" => "大邑县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512132 => [ + [ + "address" => "崇庆县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512200 => [ + [ + "address" => "绵阳地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "万县地区", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 512201 => [ + [ + "address" => "绵阳市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "万县市", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 512202 => [ + [ + "address" => "市中区", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512221 => [ + [ + "address" => "江油县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "万县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 512222 => [ + [ + "address" => "青川县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "开县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 512223 => [ + [ + "address" => "平武县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "忠县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 512224 => [ + [ + "address" => "广元县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "梁平县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 512225 => [ + [ + "address" => "旺苍县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "云阳县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 512226 => [ + [ + "address" => "剑阁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "奉节县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 512227 => [ + [ + "address" => "梓潼县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "巫山县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 512228 => [ + [ + "address" => "三台县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "巫溪县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 512229 => [ + [ + "address" => "盐亭县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "城口县", + "start_year" => 1982, + "end_year" => 1991 + ] + ], + 512230 => [ + [ + "address" => "射洪县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512231 => [ + [ + "address" => "遂宁县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512232 => [ + [ + "address" => "蓬溪县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512233 => [ + [ + "address" => "中江县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512234 => [ + [ + "address" => "德阳县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512235 => [ + [ + "address" => "绵竹县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512236 => [ + [ + "address" => "安县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512237 => [ + [ + "address" => "北川县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512300 => [ + [ + "address" => "内江地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "涪陵地区", + "start_year" => 1982, + "end_year" => 1994 + ] + ], + 512301 => [ + [ + "address" => "内江市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "涪陵市", + "start_year" => 1983, + "end_year" => 1994 + ] + ], + 512302 => [ + [ + "address" => "南川市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 512321 => [ + [ + "address" => "内江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "涪陵县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512322 => [ + [ + "address" => "乐至县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "垫江县", + "start_year" => 1982, + "end_year" => 1994 + ] + ], + 512323 => [ + [ + "address" => "安岳县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "南川县", + "start_year" => 1982, + "end_year" => 1993 + ] + ], + 512324 => [ + [ + "address" => "威远县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "丰都县", + "start_year" => 1982, + "end_year" => 1994 + ] + ], + 512325 => [ [ - - [ - 'address' => '巩留县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 654025 => + "address" => "资中县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "石柱县", + "start_year" => 1982, + "end_year" => 1982 + ], + [ + "address" => "石柱土家族自治县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 512326 => [ [ - - [ - 'address' => '新源县', - 'start_year' => 2001, - 'end_year' => '', - ], + "address" => "资阳县", + "start_year" => "", + "end_year" => 1981 ], - 654026 => [ - - [ - 'address' => '昭苏县', - 'start_year' => 2001, - 'end_year' => '', - ], - ], - 654027 => + "address" => "武隆县", + "start_year" => 1982, + "end_year" => 1994 + ] + ], + 512327 => [ [ - - [ - 'address' => '特克斯县', - 'start_year' => 2001, - 'end_year' => '', - ], + "address" => "简阳县", + "start_year" => "", + "end_year" => 1981 ], - 654028 => [ - - [ - 'address' => '尼勒克县', - 'start_year' => 2001, - 'end_year' => '', - ], + "address" => "彭水县", + "start_year" => 1982, + "end_year" => 1982 ], - 654100 => [ - - [ - 'address' => '伊犁地区', - 'start_year' => 1984, - 'end_year' => 2000, - ], + "address" => "彭水苗族土家族自治县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 512328 => [ + [ + "address" => "黔江县", + "start_year" => 1982, + "end_year" => 1982 ], - 654101 => [ - - [ - 'address' => '伊宁市', - 'start_year' => 1984, - 'end_year' => 2000, - ], - ], - 654121 => + "address" => "黔江土家族苗族自治县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 512329 => [ [ - - [ - 'address' => '伊宁县', - 'start_year' => 1984, - 'end_year' => 2000, - ], + "address" => "酉阳县", + "start_year" => 1982, + "end_year" => 1982 ], - 654122 => [ - - [ - 'address' => '察布查尔锡伯自治县', - 'start_year' => 1984, - 'end_year' => 2000, - ], - ], - 654123 => + "address" => "酉阳土家族苗族自治县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 512330 => [ [ - - [ - 'address' => '霍城县', - 'start_year' => 1984, - 'end_year' => 2000, - ], + "address" => "秀山县", + "start_year" => 1982, + "end_year" => 1982 ], - 654124 => [ - - [ - 'address' => '巩留县', - 'start_year' => 1984, - 'end_year' => 2000, - ], - ], - 654125 => + "address" => "秀山土家族苗族自治县", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 512400 => [ [ - - [ - 'address' => '新源县', - 'start_year' => 1984, - 'end_year' => 2000, - ], + "address" => "宜宾地区", + "start_year" => "", + "end_year" => 1981 ], - 654126 => [ - - [ - 'address' => '昭苏县', - 'start_year' => 1984, - 'end_year' => 2000, - ], - ], - 654127 => + "address" => "内江地区", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512401 => [ [ - - [ - 'address' => '特克斯县', - 'start_year' => 1984, - 'end_year' => 2000, - ], + "address" => "宜宾市", + "start_year" => "", + "end_year" => 1981 ], - 654128 => [ - - [ - 'address' => '尼勒克县', - 'start_year' => 1984, - 'end_year' => 2000, - ], - ], - 654200 => + "address" => "内江市", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512402 => [ [ - - [ - 'address' => '塔城地区', - 'start_year' => 1984, - 'end_year' => '', - ], + "address" => "泸州市", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512421 => [ + [ + "address" => "宜宾县", + "start_year" => "", + "end_year" => 1981 ], - 654201 => [ - - [ - 'address' => '塔城市', - 'start_year' => 1984, - 'end_year' => '', - ], + "address" => "内江县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512422 => [ + [ + "address" => "富顺县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "资中县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512423 => [ + [ + "address" => "隆昌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "资阳县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512424 => [ + [ + "address" => "南溪县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "简阳县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512425 => [ + [ + "address" => "江安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "威远县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512426 => [ + [ + "address" => "纳溪县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "隆昌县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512427 => [ + [ + "address" => "泸县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "安岳县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512428 => [ + [ + "address" => "合江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "乐至县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512429 => [ + [ + "address" => "古蔺县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512430 => [ + [ + "address" => "叙永县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512431 => [ + [ + "address" => "长宁县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512432 => [ + [ + "address" => "兴文县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512433 => [ + [ + "address" => "珙县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512434 => [ + [ + "address" => "高县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512435 => [ + [ + "address" => "筠连县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512436 => [ + [ + "address" => "屏山县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 512500 => [ + [ + "address" => "乐山地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宜宾地区", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 512501 => [ + [ + "address" => "乐山市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宜宾市", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 512502 => [ + [ + "address" => "泸州市", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512521 => [ + [ + "address" => "夹江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "泸县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512522 => [ + [ + "address" => "洪雅县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "富顺县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512523 => [ + [ + "address" => "丹棱县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "合江县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512524 => [ + [ + "address" => "青神县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "纳溪县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512525 => [ + [ + "address" => "眉山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "叙永县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512526 => [ + [ + "address" => "彭山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "古蔺县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512527 => [ + [ + "address" => "井研县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宜宾县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 512528 => [ + [ + "address" => "仁寿县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "南溪县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 512529 => [ + [ + "address" => "犍为县", + "start_year" => "", + "end_year" => 1981 ], - 654202 => - [ - - [ - 'address' => '乌苏市', - 'start_year' => 1996, - 'end_year' => '', - ], + [ + "address" => "江安县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 512530 => [ + [ + "address" => "沐川县", + "start_year" => "", + "end_year" => 1981 ], - 654221 => - [ - - [ - 'address' => '额敏县', - 'start_year' => 1984, - 'end_year' => '', - ], + [ + "address" => "长宁县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 512531 => [ + [ + "address" => "峨眉县", + "start_year" => "", + "end_year" => 1981 ], - 654222 => - [ - - [ - 'address' => '乌苏县', - 'start_year' => 1984, - 'end_year' => 1995, - ], + [ + "address" => "高县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 512532 => [ + [ + "address" => "金口河工农区", + "start_year" => "", + "end_year" => 1981 ], - 654223 => - [ - - [ - 'address' => '沙湾县', - 'start_year' => 1984, - 'end_year' => '', - ], + [ + "address" => "筠连县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 512533 => [ + [ + "address" => "峨边县", + "start_year" => 1981, + "end_year" => 1981 ], - 654224 => - [ - - [ - 'address' => '托里县', - 'start_year' => 1984, - 'end_year' => '', - ], + [ + "address" => "珙县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 512534 => [ + [ + "address" => "马边县", + "start_year" => 1981, + "end_year" => 1981 ], - 654225 => [ - - [ - 'address' => '裕民县', - 'start_year' => 1984, - 'end_year' => '', - ], + "address" => "兴文县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 512535 => [ + [ + "address" => "屏山县", + "start_year" => 1982, + "end_year" => 1995 + ] + ], + 512600 => [ + [ + "address" => "江津地区", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "永川地区", + "start_year" => 1981, + "end_year" => 1981 ], - 654226 => [ - - [ - 'address' => '和布克赛尔蒙古自治县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 654300 => + "address" => "乐山地区", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512601 => [ + [ + "address" => "乐山市", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512621 => [ + [ + "address" => "永川县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "仁寿县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512622 => [ + [ + "address" => "大足县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "眉山县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512623 => [ + [ + "address" => "铜梁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "犍为县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512624 => [ + [ + "address" => "合川县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "井研县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512625 => [ + [ + "address" => "潼南县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "峨眉县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512626 => [ + [ + "address" => "璧山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "夹江县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512627 => [ + [ + "address" => "江津县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "洪雅县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512628 => [ + [ + "address" => "荣昌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "彭山县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512629 => [ + [ + "address" => "沐川县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512630 => [ + [ + "address" => "青神县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512631 => [ + [ + "address" => "丹棱县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512632 => [ + [ + "address" => "峨边县", + "start_year" => 1982, + "end_year" => 1982 + ], + [ + "address" => "峨边彝族自治县", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 512633 => [ + [ + "address" => "马边县", + "start_year" => 1982, + "end_year" => 1982 + ], + [ + "address" => "马边彝族自治县", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 512634 => [ + [ + "address" => "金口河工农区", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512700 => [ + [ + "address" => "涪陵地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "温江地区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512721 => [ + [ + "address" => "涪陵县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "温江县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512722 => [ + [ + "address" => "垫江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "郫县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512723 => [ + [ + "address" => "丰都县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "新都县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512724 => [ + [ + "address" => "石柱县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "广汉县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512725 => [ + [ + "address" => "秀山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "什邡县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512726 => [ + [ + "address" => "酉阳县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "彭县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512727 => [ + [ + "address" => "黔江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "灌县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512728 => [ + [ + "address" => "彭水县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "崇庆县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512729 => [ + [ + "address" => "武隆县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "大邑县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512730 => [ + [ + "address" => "南川县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "邛崃县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512731 => [ + [ + "address" => "蒲江县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512732 => [ + [ + "address" => "新津县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512800 => [ + [ + "address" => "万县地区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "绵阳地区", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512801 => [ + [ + "address" => "万县市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "绵阳市", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512802 => [ + [ + "address" => "市中区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512821 => [ + [ + "address" => "万县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "德阳县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512822 => [ + [ + "address" => "开县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "绵竹县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512823 => [ + [ + "address" => "城口县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "安县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512824 => [ + [ + "address" => "巫溪县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "江油县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512825 => [ + [ + "address" => "巫山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "梓潼县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512826 => [ + [ + "address" => "奉节县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "剑阁县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512827 => [ + [ + "address" => "云阳县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "广元县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512828 => [ + [ + "address" => "忠县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "旺苍县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512829 => [ + [ + "address" => "梁平县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "青川县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512830 => [ + [ + "address" => "平武县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512831 => [ + [ + "address" => "北川县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512832 => [ + [ + "address" => "遂宁县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512833 => [ + [ + "address" => "三台县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512834 => [ + [ + "address" => "中江县", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 512835 => [ + [ + "address" => "蓬溪县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512836 => [ + [ + "address" => "射洪县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512837 => [ + [ + "address" => "盐亭县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512900 => [ + [ + "address" => "南充地区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 512901 => [ + [ + "address" => "南充市", + "start_year" => "", + "end_year" => 1992 + ] + ], + 512902 => [ + [ + "address" => "华蓥市", + "start_year" => 1985, + "end_year" => 1992 + ] + ], + 512903 => [ + [ + "address" => "阆中市", + "start_year" => 1991, + "end_year" => 1992 + ] + ], + 512921 => [ + [ + "address" => "南充县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 512922 => [ + [ + "address" => "苍溪县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "南部县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 512923 => [ + [ + "address" => "阆中县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "岳池县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 512924 => [ + [ + "address" => "仪陇县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "营山县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 512925 => [ + [ + "address" => "南部县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "广安县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 512926 => [ + [ + "address" => "西充县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "蓬安县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 512927 => [ + [ + "address" => "营山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "仪陇县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 512928 => [ + [ + "address" => "蓬安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "武胜县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 512929 => [ + [ + "address" => "广安县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "西充县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 512930 => [ + [ + "address" => "岳池县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "阆中县", + "start_year" => 1982, + "end_year" => 1990 + ] + ], + 512931 => [ + [ + "address" => "武胜县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "苍溪县", + "start_year" => 1982, + "end_year" => 1984 + ] + ], + 512932 => [ + [ + "address" => "华云工农区", + "start_year" => "", + "end_year" => 1984 + ] + ], + 513000 => [ + [ + "address" => "达县地区", + "start_year" => "", + "end_year" => 1992 + ], + [ + "address" => "达川地区", + "start_year" => 1993, + "end_year" => 1998 + ] + ], + 513001 => [ + [ + "address" => "达县市", + "start_year" => "", + "end_year" => 1992 + ], + [ + "address" => "达川市", + "start_year" => 1993, + "end_year" => 1998 + ] + ], + 513002 => [ + [ + "address" => "万源市", + "start_year" => 1993, + "end_year" => 1998 + ] + ], + 513021 => [ + [ + "address" => "达县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 513022 => [ + [ + "address" => "万源县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "宣汉县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 513023 => [ + [ + "address" => "宣汉县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "开江县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 513024 => [ + [ + "address" => "开江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "万源县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 513025 => [ + [ + "address" => "邻水县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "通江县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 513026 => [ + [ + "address" => "大竹县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "南江县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 513027 => [ + [ + "address" => "渠县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "巴中县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 513028 => [ + [ + "address" => "南江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "平昌县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 513029 => [ + [ + "address" => "巴中县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "大竹县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 513030 => [ + [ + "address" => "平昌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "渠县", + "start_year" => 1982, + "end_year" => 1998 + ] + ], + 513031 => [ + [ + "address" => "通江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "邻水县", + "start_year" => 1982, + "end_year" => 1992 + ] + ], + 513032 => [ + [ + "address" => "白沙工农区", + "start_year" => "", + "end_year" => 1992 + ] + ], + 513100 => [ + [ + "address" => "雅安地区", + "start_year" => "", + "end_year" => 1999 + ] + ], + 513101 => [ + [ + "address" => "雅安市", + "start_year" => 1983, + "end_year" => 1999 + ] + ], + 513121 => [ + [ + "address" => "雅安县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 513122 => [ + [ + "address" => "芦山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "名山县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 513123 => [ + [ + "address" => "名山县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "荥经县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 513124 => [ + [ + "address" => "荥经县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "汉源县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 513125 => [ + [ + "address" => "汉源县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "石棉县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 513126 => [ + [ + "address" => "石棉县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "天全县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 513127 => [ + [ + "address" => "天全县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "芦山县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 513128 => [ + [ + "address" => "宝兴县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 513200 => [ + [ + "address" => "阿坝藏族自治州", + "start_year" => "", + "end_year" => 1986 + ], + [ + "address" => "阿坝藏族羌族自治州", + "start_year" => 1987, + "end_year" => "" + ] + ], + 513201 => [ [ - - [ - 'address' => '阿勒泰地区', - 'start_year' => 1984, - 'end_year' => '', - ], + "address" => "马尔康区", + "start_year" => 2015, + "end_year" => 2015 ], - 654301 => [ - - [ - 'address' => '阿勒泰市', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 654321 => + "address" => "马尔康市", + "start_year" => 2016, + "end_year" => "" + ] + ], + 513221 => [ [ - - [ - 'address' => '布尔津县', - 'start_year' => 1984, - 'end_year' => '', - ], + "address" => "马尔康县", + "start_year" => "", + "end_year" => 1981 ], - 654322 => [ - - [ - 'address' => '富蕴县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 654323 => + "address" => "汶川县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513222 => [ [ - - [ - 'address' => '福海县', - 'start_year' => 1984, - 'end_year' => '', - ], + "address" => "红原县", + "start_year" => "", + "end_year" => 1981 ], - 654324 => [ - - [ - 'address' => '哈巴河县', - 'start_year' => 1984, - 'end_year' => '', - ], - ], - 654325 => + "address" => "理县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513223 => [ [ - - [ - 'address' => '青河县', - 'start_year' => 1984, - 'end_year' => '', - ], + "address" => "阿坝县", + "start_year" => "", + "end_year" => 1981 ], - 654326 => [ - - [ - 'address' => '吉木乃县', - 'start_year' => 1984, - 'end_year' => '', - ], + "address" => "茂汶羌族自治县", + "start_year" => 1982, + "end_year" => 1986 ], - 659001 => [ - - [ - 'address' => '石河子市', - 'start_year' => 1985, - 'end_year' => '', - ], - ], - 659002 => + "address" => "茂县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 513224 => [ [ - - [ - 'address' => '阿拉尔市', - 'start_year' => 2002, - 'end_year' => '', - ], + "address" => "若尔盖县", + "start_year" => "", + "end_year" => 1981 ], - 659003 => [ - - [ - 'address' => '图木舒克市', - 'start_year' => 2002, - 'end_year' => '', - ], - ], - 659004 => + "address" => "松潘县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513225 => [ [ - - [ - 'address' => '五家渠市', - 'start_year' => 2002, - 'end_year' => '', - ], + "address" => "黑水县", + "start_year" => "", + "end_year" => 1981 ], - 659005 => [ - - [ - 'address' => '北屯市', - 'start_year' => 2011, - 'end_year' => '', - ], + "address" => "南坪县", + "start_year" => 1982, + "end_year" => 1996 ], - 659006 => [ - - [ - 'address' => '铁门关市', - 'start_year' => 2012, - 'end_year' => '', - ], - ], - 659007 => + "address" => "九寨沟县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 513226 => [ [ - - [ - 'address' => '双河市', - 'start_year' => 2014, - 'end_year' => '', - ], + "address" => "松潘县", + "start_year" => "", + "end_year" => 1981 ], - 659008 => [ - - [ - 'address' => '可克达拉市', - 'start_year' => 2015, - 'end_year' => '', - ], - ], - 659009 => + "address" => "金川县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513227 => [ + [ + "address" => "南坪县", + "start_year" => "", + "end_year" => 1981 + ], [ - - [ - 'address' => '昆玉市', - 'start_year' => 2016, - 'end_year' => '', - ], - ], - 810000 => + "address" => "小金县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513228 => [ + [ + "address" => "茂汶羌族自治县", + "start_year" => "", + "end_year" => 1981 + ], [ - - [ - 'address' => '香港特别行政区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 820000 => + "address" => "黑水县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513229 => [ + [ + "address" => "汶川县", + "start_year" => "", + "end_year" => 1981 + ], [ - - [ - 'address' => '澳门特别行政区', - 'start_year' => '', - 'end_year' => '', - ], - ], - 830000 => + "address" => "马尔康县", + "start_year" => 1982, + "end_year" => 2014 + ] + ], + 513230 => [ + [ + "address" => "理县", + "start_year" => "", + "end_year" => 1981 + ], [ - - [ - 'address' => '台湾省', - 'start_year' => '', - 'end_year' => '', - ], - ], -]; + "address" => "壤塘县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513231 => [ + [ + "address" => "小金县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "阿坝县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513232 => [ + [ + "address" => "金川县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "若尔盖县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513233 => [ + [ + "address" => "壤塘县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "红原县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513300 => [ + [ + "address" => "甘孜藏族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 513301 => [ + [ + "address" => "康定市", + "start_year" => 2015, + "end_year" => "" + ] + ], + 513321 => [ + [ + "address" => "康定县", + "start_year" => "", + "end_year" => 2014 + ] + ], + 513322 => [ + [ + "address" => "炉霍县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "泸定县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513323 => [ + [ + "address" => "甘孜县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "丹巴县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513324 => [ + [ + "address" => "新龙县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "九龙县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513325 => [ + [ + "address" => "白玉县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "雅江县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513326 => [ + [ + "address" => "德格县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "道孚县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513327 => [ + [ + "address" => "石渠县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "炉霍县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513328 => [ + [ + "address" => "色达县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "甘孜县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513329 => [ + [ + "address" => "泸定县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "新龙县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513330 => [ + [ + "address" => "丹巴县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "德格县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513331 => [ + [ + "address" => "九龙县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "白玉县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513332 => [ + [ + "address" => "雅江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "石渠县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513333 => [ + [ + "address" => "道孚县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "色达县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513334 => [ + [ + "address" => "理塘县", + "start_year" => "", + "end_year" => "" + ] + ], + 513335 => [ + [ + "address" => "乡城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "巴塘县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513336 => [ + [ + "address" => "稻城县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "乡城县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513337 => [ + [ + "address" => "巴塘县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "稻城县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513338 => [ + [ + "address" => "得荣县", + "start_year" => "", + "end_year" => "" + ] + ], + 513400 => [ + [ + "address" => "凉山彝族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 513401 => [ + [ + "address" => "西昌市", + "start_year" => "", + "end_year" => "" + ] + ], + 513421 => [ + [ + "address" => "西昌县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 513422 => [ + [ + "address" => "昭觉县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "木里藏族自治县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513423 => [ + [ + "address" => "甘洛县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "盐源县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513424 => [ + [ + "address" => "峨边县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "德昌县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513425 => [ + [ + "address" => "马边县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "会理县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513426 => [ + [ + "address" => "雷波县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "会东县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513427 => [ + [ + "address" => "宁南县", + "start_year" => "", + "end_year" => "" + ] + ], + 513428 => [ + [ + "address" => "会东县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "普格县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513429 => [ + [ + "address" => "会理县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "布拖县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513430 => [ + [ + "address" => "德昌县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "金阳县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513431 => [ + [ + "address" => "美姑县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "昭觉县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513432 => [ + [ + "address" => "金阳县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "喜德县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513433 => [ + [ + "address" => "布拖县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "冕宁县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513434 => [ + [ + "address" => "普格县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "越西县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513435 => [ + [ + "address" => "喜德县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "甘洛县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513436 => [ + [ + "address" => "越西县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "美姑县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513437 => [ + [ + "address" => "盐源县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "雷波县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 513438 => [ + [ + "address" => "木里藏族自治县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 513439 => [ + [ + "address" => "冕宁县", + "start_year" => "", + "end_year" => 1981 + ] + ], + 513500 => [ + [ + "address" => "黔江地区", + "start_year" => 1988, + "end_year" => 1996 + ] + ], + 513521 => [ + [ + "address" => "石柱土家族自治县", + "start_year" => 1988, + "end_year" => 1996 + ] + ], + 513522 => [ + [ + "address" => "秀山土家族苗族自治县", + "start_year" => 1988, + "end_year" => 1996 + ] + ], + 513523 => [ + [ + "address" => "黔江土家族苗族自治县", + "start_year" => 1988, + "end_year" => 1996 + ] + ], + 513524 => [ + [ + "address" => "酉阳土家族苗族自治县", + "start_year" => 1988, + "end_year" => 1996 + ] + ], + 513525 => [ + [ + "address" => "彭水苗族土家族自治县", + "start_year" => 1988, + "end_year" => 1996 + ] + ], + 513600 => [ + [ + "address" => "广安地区", + "start_year" => 1993, + "end_year" => 1997 + ] + ], + 513601 => [ + [ + "address" => "华蓥市", + "start_year" => 1993, + "end_year" => 1997 + ] + ], + 513621 => [ + [ + "address" => "岳池县", + "start_year" => 1993, + "end_year" => 1997 + ] + ], + 513622 => [ + [ + "address" => "广安县", + "start_year" => 1993, + "end_year" => 1997 + ] + ], + 513623 => [ + [ + "address" => "武胜县", + "start_year" => 1993, + "end_year" => 1997 + ] + ], + 513624 => [ + [ + "address" => "邻水县", + "start_year" => 1993, + "end_year" => 1997 + ] + ], + 513700 => [ + [ + "address" => "巴中地区", + "start_year" => 1993, + "end_year" => 1999 + ] + ], + 513701 => [ + [ + "address" => "巴中市", + "start_year" => 1993, + "end_year" => 1999 + ] + ], + 513721 => [ + [ + "address" => "通江县", + "start_year" => 1993, + "end_year" => 1999 + ] + ], + 513722 => [ + [ + "address" => "南江县", + "start_year" => 1993, + "end_year" => 1999 + ] + ], + 513723 => [ + [ + "address" => "平昌县", + "start_year" => 1993, + "end_year" => 1999 + ] + ], + 513800 => [ + [ + "address" => "眉山地区", + "start_year" => 1997, + "end_year" => 1999 + ] + ], + 513821 => [ + [ + "address" => "眉山县", + "start_year" => 1997, + "end_year" => 1999 + ] + ], + 513822 => [ + [ + "address" => "仁寿县", + "start_year" => 1997, + "end_year" => 1999 + ] + ], + 513823 => [ + [ + "address" => "彭山县", + "start_year" => 1997, + "end_year" => 1999 + ] + ], + 513824 => [ + [ + "address" => "洪雅县", + "start_year" => 1997, + "end_year" => 1999 + ] + ], + 513825 => [ + [ + "address" => "丹棱县", + "start_year" => 1997, + "end_year" => 1999 + ] + ], + 513826 => [ + [ + "address" => "青神县", + "start_year" => 1997, + "end_year" => 1999 + ] + ], + 513900 => [ + [ + "address" => "资阳地区", + "start_year" => 1998, + "end_year" => 1999 + ] + ], + 513901 => [ + [ + "address" => "资阳市", + "start_year" => 1998, + "end_year" => 1999 + ] + ], + 513902 => [ + [ + "address" => "简阳市", + "start_year" => 1998, + "end_year" => 1999 + ] + ], + 513921 => [ + [ + "address" => "安岳县", + "start_year" => 1998, + "end_year" => 1999 + ] + ], + 513922 => [ + [ + "address" => "乐至县", + "start_year" => 1998, + "end_year" => 1999 + ] + ], + 517000 => [ + [ + "address" => "涪陵市", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 517002 => [ + [ + "address" => "枳城区", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 517003 => [ + [ + "address" => "李渡区", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 517021 => [ + [ + "address" => "垫江县", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 517022 => [ + [ + "address" => "丰都县", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 517023 => [ + [ + "address" => "武隆县", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 517081 => [ + [ + "address" => "南川市", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 519001 => [ + [ + "address" => "广汉市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 519002 => [ + [ + "address" => "江油市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 519003 => [ + [ + "address" => "都江堰市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 519004 => [ + [ + "address" => "峨眉山市", + "start_year" => 1988, + "end_year" => 1994 + ] + ], + 519005 => [ + [ + "address" => "永川市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 519006 => [ + [ + "address" => "合川市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 519007 => [ + [ + "address" => "江津市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 519008 => [ + [ + "address" => "阆中市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 519009 => [ + [ + "address" => "资阳市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 519010 => [ + [ + "address" => "彭州市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 519011 => [ + [ + "address" => "简阳市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 519012 => [ + [ + "address" => "邛崃市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 519013 => [ + [ + "address" => "崇州市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 520000 => [ + [ + "address" => "贵州省", + "start_year" => "", + "end_year" => "" + ] + ], + 520100 => [ + [ + "address" => "贵阳市", + "start_year" => "", + "end_year" => "" + ] + ], + 520102 => [ + [ + "address" => "南明区", + "start_year" => "", + "end_year" => "" + ] + ], + 520103 => [ + [ + "address" => "云岩区", + "start_year" => "", + "end_year" => "" + ] + ], + 520111 => [ + [ + "address" => "花溪区", + "start_year" => "", + "end_year" => "" + ] + ], + 520112 => [ + [ + "address" => "乌当区", + "start_year" => "", + "end_year" => "" + ] + ], + 520113 => [ + [ + "address" => "白云区", + "start_year" => "", + "end_year" => "" + ] + ], + 520114 => [ + [ + "address" => "小河区", + "start_year" => 2000, + "end_year" => 2011 + ] + ], + 520115 => [ + [ + "address" => "观山湖区", + "start_year" => 2012, + "end_year" => "" + ] + ], + 520121 => [ + [ + "address" => "开阳县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 520122 => [ + [ + "address" => "息烽县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 520123 => [ + [ + "address" => "修文县", + "start_year" => 1995, + "end_year" => "" + ] + ], + 520181 => [ + [ + "address" => "清镇市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 520200 => [ + [ + "address" => "六盘水市", + "start_year" => "", + "end_year" => "" + ] + ], + 520201 => [ + [ + "address" => "水城特区", + "start_year" => "", + "end_year" => 1986 + ], + [ + "address" => "钟山区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 520202 => [ + [ + "address" => "盘县特区", + "start_year" => "", + "end_year" => 1998 + ] + ], + 520203 => [ + [ + "address" => "六枝特区", + "start_year" => "", + "end_year" => "" + ] + ], + 520221 => [ + [ + "address" => "水城县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 520222 => [ + [ + "address" => "盘县", + "start_year" => 1999, + "end_year" => 2016 + ] + ], + 520281 => [ + [ + "address" => "盘州市", + "start_year" => 2017, + "end_year" => "" + ] + ], + 520300 => [ + [ + "address" => "遵义市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520302 => [ + [ + "address" => "红花岗区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520303 => [ + [ + "address" => "汇川区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 520304 => [ + [ + "address" => "播州区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 520321 => [ + [ + "address" => "遵义县", + "start_year" => 1997, + "end_year" => 2015 + ] + ], + 520322 => [ + [ + "address" => "桐梓县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520323 => [ + [ + "address" => "绥阳县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520324 => [ + [ + "address" => "正安县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520325 => [ + [ + "address" => "道真仡佬族苗族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520326 => [ + [ + "address" => "务川仡佬族苗族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520327 => [ + [ + "address" => "凤冈县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520328 => [ + [ + "address" => "湄潭县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520329 => [ + [ + "address" => "余庆县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520330 => [ + [ + "address" => "习水县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520381 => [ + [ + "address" => "赤水市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520382 => [ + [ + "address" => "仁怀市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520400 => [ + [ + "address" => "安顺市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 520402 => [ + [ + "address" => "西秀区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 520403 => [ + [ + "address" => "平坝区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 520421 => [ + [ + "address" => "平坝县", + "start_year" => 2000, + "end_year" => 2013 + ] + ], + 520422 => [ + [ + "address" => "普定县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 520423 => [ + [ + "address" => "镇宁布依族苗族自治县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 520424 => [ + [ + "address" => "关岭布依族苗族自治县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 520425 => [ + [ + "address" => "紫云苗族布依族自治县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 520500 => [ + [ + "address" => "毕节市", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520502 => [ + [ + "address" => "七星关区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520521 => [ + [ + "address" => "大方县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520522 => [ + [ + "address" => "黔西县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520523 => [ + [ + "address" => "金沙县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520524 => [ + [ + "address" => "织金县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520525 => [ + [ + "address" => "纳雍县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520526 => [ + [ + "address" => "威宁彝族回族苗族自治县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520527 => [ + [ + "address" => "赫章县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520600 => [ + [ + "address" => "铜仁市", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520602 => [ + [ + "address" => "碧江区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520603 => [ + [ + "address" => "万山区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520621 => [ + [ + "address" => "江口县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520622 => [ + [ + "address" => "玉屏侗族自治县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520623 => [ + [ + "address" => "石阡县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520624 => [ + [ + "address" => "思南县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520625 => [ + [ + "address" => "印江土家族苗族自治县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520626 => [ + [ + "address" => "德江县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520627 => [ + [ + "address" => "沿河土家族自治县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520628 => [ + [ + "address" => "松桃苗族自治县", + "start_year" => 2011, + "end_year" => "" + ] + ], + 522100 => [ + [ + "address" => "遵义地区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 522101 => [ + [ + "address" => "遵义市", + "start_year" => "", + "end_year" => 1996 + ] + ], + 522102 => [ + [ + "address" => "赤水市", + "start_year" => 1990, + "end_year" => 1996 + ] + ], + 522103 => [ + [ + "address" => "仁怀市", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 522121 => [ + [ + "address" => "遵义县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 522122 => [ + [ + "address" => "桐梓县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 522123 => [ + [ + "address" => "绥阳县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 522124 => [ + [ + "address" => "正安县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 522125 => [ + [ + "address" => "道真县", + "start_year" => "", + "end_year" => 1985 + ], + [ + "address" => "道真仡佬族苗族自治县", + "start_year" => 1986, + "end_year" => 1996 + ] + ], + 522126 => [ + [ + "address" => "务川县", + "start_year" => "", + "end_year" => 1985 + ], + [ + "address" => "务川仡佬族苗族自治县", + "start_year" => 1986, + "end_year" => 1996 + ] + ], + 522127 => [ + [ + "address" => "凤冈县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 522128 => [ + [ + "address" => "湄潭县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 522129 => [ + [ + "address" => "余庆县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 522130 => [ + [ + "address" => "仁怀县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 522131 => [ + [ + "address" => "赤水县", + "start_year" => "", + "end_year" => 1989 + ] + ], + 522132 => [ + [ + "address" => "习水县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 522200 => [ + [ + "address" => "铜仁地区", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522201 => [ + [ + "address" => "铜仁市", + "start_year" => 1987, + "end_year" => 2010 + ] + ], + 522221 => [ + [ + "address" => "铜仁县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 522222 => [ + [ + "address" => "江口县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522223 => [ + [ + "address" => "玉屏县", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "玉屏侗族自治县", + "start_year" => 1983, + "end_year" => 2010 + ] + ], + 522224 => [ + [ + "address" => "石阡县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522225 => [ + [ + "address" => "思南县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522226 => [ + [ + "address" => "印江县", + "start_year" => "", + "end_year" => 1985 + ], + [ + "address" => "印江土家族苗族自治县", + "start_year" => 1986, + "end_year" => 2010 + ] + ], + 522227 => [ + [ + "address" => "德江县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522228 => [ + [ + "address" => "沿河县", + "start_year" => "", + "end_year" => 1985 + ], + [ + "address" => "沿河土家族自治县", + "start_year" => 1986, + "end_year" => 2010 + ] + ], + 522229 => [ + [ + "address" => "松桃苗族自治县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522230 => [ + [ + "address" => "万山特区", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522300 => [ + [ + "address" => "兴义地区", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "黔西南布依族苗族自治州", + "start_year" => 1981, + "end_year" => "" + ] + ], + 522301 => [ + [ + "address" => "兴义市", + "start_year" => 1987, + "end_year" => "" + ] + ], + 522302 => [ + [ + "address" => "兴仁市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 522321 => [ + [ + "address" => "兴义县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 522322 => [ + [ + "address" => "兴仁县", + "start_year" => "", + "end_year" => 2017 + ] + ], + 522323 => [ + [ + "address" => "普安县", + "start_year" => "", + "end_year" => "" + ] + ], + 522324 => [ + [ + "address" => "晴隆县", + "start_year" => "", + "end_year" => "" + ] + ], + 522325 => [ + [ + "address" => "贞丰布依族苗族自治县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "贞丰县", + "start_year" => 1981, + "end_year" => "" + ] + ], + 522326 => [ + [ + "address" => "望谟布依族苗族自治县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "望谟县", + "start_year" => 1981, + "end_year" => "" + ] + ], + 522327 => [ + [ + "address" => "册亨布依族自治县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "册亨县", + "start_year" => 1981, + "end_year" => "" + ] + ], + 522328 => [ + [ + "address" => "安龙布依族苗族自治县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "安龙县", + "start_year" => 1981, + "end_year" => "" + ] + ], + 522400 => [ + [ + "address" => "毕节地区", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522401 => [ + [ + "address" => "毕节市", + "start_year" => 1993, + "end_year" => 2010 + ] + ], + 522421 => [ + [ + "address" => "毕节县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 522422 => [ + [ + "address" => "大方县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522423 => [ + [ + "address" => "黔西县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522424 => [ + [ + "address" => "金沙县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522425 => [ + [ + "address" => "织金县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522426 => [ + [ + "address" => "纳雍县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522427 => [ + [ + "address" => "威宁彝族回族苗族自治县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522428 => [ + [ + "address" => "赫章县", + "start_year" => "", + "end_year" => 2010 + ] + ], + 522500 => [ + [ + "address" => "安顺地区", + "start_year" => "", + "end_year" => 1999 + ] + ], + 522501 => [ + [ + "address" => "安顺市", + "start_year" => "", + "end_year" => 1999 + ] + ], + 522502 => [ + [ + "address" => "清镇市", + "start_year" => 1992, + "end_year" => 1994 + ] + ], + 522521 => [ + [ + "address" => "安顺县", + "start_year" => "", + "end_year" => 1989 + ] + ], + 522522 => [ + [ + "address" => "开阳县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 522523 => [ + [ + "address" => "息烽县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 522524 => [ + [ + "address" => "修文县", + "start_year" => "", + "end_year" => 1994 + ] + ], + 522525 => [ + [ + "address" => "清镇县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 522526 => [ + [ + "address" => "平坝县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 522527 => [ + [ + "address" => "普定县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 522528 => [ + [ + "address" => "关岭县", + "start_year" => "", + "end_year" => 1980 + ], + [ + "address" => "关岭布依族苗族自治县", + "start_year" => 1981, + "end_year" => 1999 + ] + ], + 522529 => [ + [ + "address" => "镇宁布依族苗族自治县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 522530 => [ + [ + "address" => "紫云苗族布依族自治县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 522600 => [ + [ + "address" => "黔东南苗族侗族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 522601 => [ + [ + "address" => "凯里市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 522621 => [ + [ + "address" => "凯里县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 522622 => [ + [ + "address" => "黄平县", + "start_year" => "", + "end_year" => "" + ] + ], + 522623 => [ + [ + "address" => "施秉县", + "start_year" => "", + "end_year" => "" + ] + ], + 522624 => [ + [ + "address" => "三穗县", + "start_year" => "", + "end_year" => "" + ] + ], + 522625 => [ + [ + "address" => "镇远县", + "start_year" => "", + "end_year" => "" + ] + ], + 522626 => [ + [ + "address" => "岑巩县", + "start_year" => "", + "end_year" => "" + ] + ], + 522627 => [ + [ + "address" => "天柱县", + "start_year" => "", + "end_year" => "" + ] + ], + 522628 => [ + [ + "address" => "锦屏县", + "start_year" => "", + "end_year" => "" + ] + ], + 522629 => [ + [ + "address" => "剑河县", + "start_year" => "", + "end_year" => "" + ] + ], + 522630 => [ + [ + "address" => "台江县", + "start_year" => "", + "end_year" => "" + ] + ], + 522631 => [ + [ + "address" => "黎平县", + "start_year" => "", + "end_year" => "" + ] + ], + 522632 => [ + [ + "address" => "榕江县", + "start_year" => "", + "end_year" => "" + ] + ], + 522633 => [ + [ + "address" => "从江县", + "start_year" => "", + "end_year" => "" + ] + ], + 522634 => [ + [ + "address" => "雷山县", + "start_year" => "", + "end_year" => "" + ] + ], + 522635 => [ + [ + "address" => "麻江县", + "start_year" => "", + "end_year" => "" + ] + ], + 522636 => [ + [ + "address" => "丹寨县", + "start_year" => "", + "end_year" => "" + ] + ], + 522700 => [ + [ + "address" => "黔南布依族苗族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 522701 => [ + [ + "address" => "都匀市", + "start_year" => "", + "end_year" => "" + ] + ], + 522702 => [ + [ + "address" => "福泉市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 522721 => [ + [ + "address" => "都匀县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 522722 => [ + [ + "address" => "荔波县", + "start_year" => "", + "end_year" => "" + ] + ], + 522723 => [ + [ + "address" => "贵定县", + "start_year" => "", + "end_year" => "" + ] + ], + 522724 => [ + [ + "address" => "福泉县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 522725 => [ + [ + "address" => "瓮安县", + "start_year" => "", + "end_year" => "" + ] + ], + 522726 => [ + [ + "address" => "独山县", + "start_year" => "", + "end_year" => "" + ] + ], + 522727 => [ + [ + "address" => "平塘县", + "start_year" => "", + "end_year" => "" + ] + ], + 522728 => [ + [ + "address" => "罗甸县", + "start_year" => "", + "end_year" => "" + ] + ], + 522729 => [ + [ + "address" => "长顺县", + "start_year" => "", + "end_year" => "" + ] + ], + 522730 => [ + [ + "address" => "龙里县", + "start_year" => "", + "end_year" => "" + ] + ], + 522731 => [ + [ + "address" => "惠水县", + "start_year" => "", + "end_year" => "" + ] + ], + 522732 => [ + [ + "address" => "三都水族自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 530000 => [ + [ + "address" => "云南省", + "start_year" => "", + "end_year" => "" + ] + ], + 530100 => [ + [ + "address" => "昆明市", + "start_year" => "", + "end_year" => "" + ] + ], + 530102 => [ + [ + "address" => "五华区", + "start_year" => "", + "end_year" => "" + ] + ], + 530103 => [ + [ + "address" => "盘龙区", + "start_year" => "", + "end_year" => "" + ] + ], + 530111 => [ + [ + "address" => "官渡区", + "start_year" => "", + "end_year" => "" + ] + ], + 530112 => [ + [ + "address" => "西山区", + "start_year" => "", + "end_year" => "" + ] + ], + 530113 => [ + [ + "address" => "东川区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 530114 => [ + [ + "address" => "呈贡区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 530115 => [ + [ + "address" => "晋宁区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 530121 => [ + [ + "address" => "安宁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "呈贡县", + "start_year" => 1982, + "end_year" => 2010 + ] + ], + 530122 => [ + [ + "address" => "呈贡县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "晋宁县", + "start_year" => 1982, + "end_year" => 2015 + ] + ], + 530123 => [ + [ + "address" => "富民县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "安宁县", + "start_year" => 1982, + "end_year" => 1994 + ] + ], + 530124 => [ + [ + "address" => "晋宁县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "富民县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 530125 => [ + [ + "address" => "宜良县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 530126 => [ + [ + "address" => "路南彝族自治县", + "start_year" => 1983, + "end_year" => 1997 + ], + [ + "address" => "石林彝族自治县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 530127 => [ + [ + "address" => "嵩明县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 530128 => [ + [ + "address" => "禄劝县", + "start_year" => 1983, + "end_year" => 1984 + ], + [ + "address" => "禄劝彝族苗族自治县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 530129 => [ + [ + "address" => "寻甸回族彝族自治县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 530181 => [ + [ + "address" => "安宁市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 530200 => [ + [ + "address" => "东川市", + "start_year" => "", + "end_year" => 1997 + ] + ], + 530300 => [ + [ + "address" => "曲靖市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530302 => [ + [ + "address" => "麒麟区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530303 => [ + [ + "address" => "沾益区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 530304 => [ + [ + "address" => "马龙区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 530321 => [ + [ + "address" => "马龙县", + "start_year" => 1997, + "end_year" => 2017 + ] + ], + 530322 => [ + [ + "address" => "陆良县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530323 => [ + [ + "address" => "师宗县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530324 => [ + [ + "address" => "罗平县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530325 => [ + [ + "address" => "富源县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530326 => [ + [ + "address" => "会泽县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530327 => [ + [ + "address" => "寻甸回族彝族自治县", + "start_year" => 1997, + "end_year" => 1997 + ] + ], + 530328 => [ + [ + "address" => "沾益县", + "start_year" => 1997, + "end_year" => 2015 + ] + ], + 530381 => [ + [ + "address" => "宣威市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530400 => [ + [ + "address" => "玉溪市", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530402 => [ + [ + "address" => "红塔区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530403 => [ + [ + "address" => "江川区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 530421 => [ + [ + "address" => "江川县", + "start_year" => 1997, + "end_year" => 2014 + ] + ], + 530422 => [ + [ + "address" => "澄江县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530423 => [ + [ + "address" => "通海县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530424 => [ + [ + "address" => "华宁县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530425 => [ + [ + "address" => "易门县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530426 => [ + [ + "address" => "峨山彝族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530427 => [ + [ + "address" => "新平彝族傣族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530428 => [ + [ + "address" => "元江哈尼族彝族傣族自治县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530500 => [ + [ + "address" => "保山市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 530502 => [ + [ + "address" => "隆阳区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 530521 => [ + [ + "address" => "施甸县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 530522 => [ + [ + "address" => "腾冲县", + "start_year" => 2000, + "end_year" => 2014 + ] + ], + 530523 => [ + [ + "address" => "龙陵县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 530524 => [ + [ + "address" => "昌宁县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 530581 => [ + [ + "address" => "腾冲市", + "start_year" => 2015, + "end_year" => "" + ] + ], + 530600 => [ + [ + "address" => "昭通市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530602 => [ + [ + "address" => "昭阳区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530621 => [ + [ + "address" => "鲁甸县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530622 => [ + [ + "address" => "巧家县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530623 => [ + [ + "address" => "盐津县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530624 => [ + [ + "address" => "大关县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530625 => [ + [ + "address" => "永善县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530626 => [ + [ + "address" => "绥江县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530627 => [ + [ + "address" => "镇雄县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530628 => [ + [ + "address" => "彝良县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530629 => [ + [ + "address" => "威信县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530630 => [ + [ + "address" => "水富县", + "start_year" => 2001, + "end_year" => 2017 + ] + ], + 530681 => [ + [ + "address" => "水富市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 530700 => [ + [ + "address" => "丽江市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 530702 => [ + [ + "address" => "古城区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 530721 => [ + [ + "address" => "玉龙纳西族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 530722 => [ + [ + "address" => "永胜县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 530723 => [ + [ + "address" => "华坪县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 530724 => [ + [ + "address" => "宁蒗彝族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 530800 => [ + [ + "address" => "思茅市", + "start_year" => 2003, + "end_year" => 2006 + ], + [ + "address" => "普洱市", + "start_year" => 2007, + "end_year" => "" + ] + ], + 530802 => [ + [ + "address" => "翠云区", + "start_year" => 2003, + "end_year" => 2006 + ], + [ + "address" => "思茅区", + "start_year" => 2007, + "end_year" => "" + ] + ], + 530821 => [ + [ + "address" => "普洱哈尼族彝族自治县", + "start_year" => 2003, + "end_year" => 2006 + ], + [ + "address" => "宁洱哈尼族彝族自治县", + "start_year" => 2007, + "end_year" => "" + ] + ], + 530822 => [ + [ + "address" => "墨江哈尼族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530823 => [ + [ + "address" => "景东彝族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530824 => [ + [ + "address" => "景谷傣族彝族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530825 => [ + [ + "address" => "镇沅彝族哈尼族拉祜族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530826 => [ + [ + "address" => "江城哈尼族彝族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530827 => [ + [ + "address" => "孟连傣族拉祜族佤族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530828 => [ + [ + "address" => "澜沧拉祜族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530829 => [ + [ + "address" => "西盟佤族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530900 => [ + [ + "address" => "临沧市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530902 => [ + [ + "address" => "临翔区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530921 => [ + [ + "address" => "凤庆县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530922 => [ + [ + "address" => "云县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530923 => [ + [ + "address" => "永德县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530924 => [ + [ + "address" => "镇康县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530925 => [ + [ + "address" => "双江拉祜族佤族布朗族傣族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530926 => [ + [ + "address" => "耿马傣族佤族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530927 => [ + [ + "address" => "沧源佤族自治县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 532100 => [ + [ + "address" => "昭通地区", + "start_year" => "", + "end_year" => 2000 + ] + ], + 532101 => [ + [ + "address" => "昭通市", + "start_year" => 1981, + "end_year" => 2000 + ] + ], + 532121 => [ + [ + "address" => "昭通县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 532122 => [ + [ + "address" => "鲁甸县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 532123 => [ + [ + "address" => "巧家县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 532124 => [ + [ + "address" => "盐津县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 532125 => [ + [ + "address" => "大关县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 532126 => [ + [ + "address" => "永善县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 532127 => [ + [ + "address" => "绥江县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 532128 => [ + [ + "address" => "镇雄县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 532129 => [ + [ + "address" => "彝良县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 532130 => [ + [ + "address" => "威信县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 532131 => [ + [ + "address" => "水富县", + "start_year" => 1981, + "end_year" => 2000 + ] + ], + 532200 => [ + [ + "address" => "曲靖地区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532201 => [ + [ + "address" => "曲靖市", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 532202 => [ + [ + "address" => "宣威市", + "start_year" => 1994, + "end_year" => 1996 + ] + ], + 532221 => [ + [ + "address" => "曲靖县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 532222 => [ + [ + "address" => "沾益县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 532223 => [ + [ + "address" => "马龙县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532224 => [ + [ + "address" => "宣威县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 532225 => [ + [ + "address" => "富源县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532226 => [ + [ + "address" => "罗平县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532227 => [ + [ + "address" => "师宗县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532228 => [ + [ + "address" => "陆良县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532229 => [ + [ + "address" => "宜良县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 532230 => [ + [ + "address" => "路南彝族自治县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 532231 => [ + [ + "address" => "寻甸回族彝族自治县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532232 => [ + [ + "address" => "嵩明县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 532233 => [ + [ + "address" => "会泽县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532300 => [ + [ + "address" => "楚雄彝族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 532301 => [ + [ + "address" => "楚雄市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 532321 => [ + [ + "address" => "楚雄县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 532322 => [ + [ + "address" => "双柏县", + "start_year" => "", + "end_year" => "" + ] + ], + 532323 => [ + [ + "address" => "牟定县", + "start_year" => "", + "end_year" => "" + ] + ], + 532324 => [ + [ + "address" => "南华县", + "start_year" => "", + "end_year" => "" + ] + ], + 532325 => [ + [ + "address" => "姚安县", + "start_year" => "", + "end_year" => "" + ] + ], + 532326 => [ + [ + "address" => "大姚县", + "start_year" => "", + "end_year" => "" + ] + ], + 532327 => [ + [ + "address" => "永仁县", + "start_year" => "", + "end_year" => "" + ] + ], + 532328 => [ + [ + "address" => "元谋县", + "start_year" => "", + "end_year" => "" + ] + ], + 532329 => [ + [ + "address" => "武定县", + "start_year" => "", + "end_year" => "" + ] + ], + 532330 => [ + [ + "address" => "禄劝县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 532331 => [ + [ + "address" => "禄丰县", + "start_year" => "", + "end_year" => "" + ] + ], + 532400 => [ + [ + "address" => "玉溪地区", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532401 => [ + [ + "address" => "玉溪市", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 532421 => [ + [ + "address" => "玉溪县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 532422 => [ + [ + "address" => "江川县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532423 => [ + [ + "address" => "澄江县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532424 => [ + [ + "address" => "通海县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532425 => [ + [ + "address" => "华宁县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532426 => [ + [ + "address" => "易门县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532427 => [ + [ + "address" => "峨山彝族自治县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532428 => [ + [ + "address" => "新平彝族傣族自治县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532429 => [ + [ + "address" => "元江哈尼族彝族傣族自治县", + "start_year" => "", + "end_year" => 1996 + ] + ], + 532500 => [ + [ + "address" => "红河哈尼族彝族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 532501 => [ + [ + "address" => "个旧市", + "start_year" => "", + "end_year" => "" + ] + ], + 532502 => [ + [ + "address" => "开远市", + "start_year" => 1981, + "end_year" => "" + ] + ], + 532503 => [ + [ + "address" => "蒙自市", + "start_year" => 2010, + "end_year" => "" + ] + ], + 532504 => [ + [ + "address" => "弥勒市", + "start_year" => 2013, + "end_year" => "" + ] + ], + 532521 => [ + [ + "address" => "开远县", + "start_year" => "", + "end_year" => 1980 + ] + ], + 532522 => [ + [ + "address" => "蒙自县", + "start_year" => "", + "end_year" => 2009 + ] + ], + 532523 => [ + [ + "address" => "屏边苗族自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 532524 => [ + [ + "address" => "建水县", + "start_year" => "", + "end_year" => "" + ] + ], + 532525 => [ + [ + "address" => "石屏县", + "start_year" => "", + "end_year" => "" + ] + ], + 532526 => [ + [ + "address" => "弥勒县", + "start_year" => "", + "end_year" => 2012 + ] + ], + 532527 => [ + [ + "address" => "泸西县", + "start_year" => "", + "end_year" => "" + ] + ], + 532528 => [ + [ + "address" => "元阳县", + "start_year" => "", + "end_year" => "" + ] + ], + 532529 => [ + [ + "address" => "红河县", + "start_year" => "", + "end_year" => "" + ] + ], + 532530 => [ + [ + "address" => "金平县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "金平苗族瑶族傣族自治县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 532531 => [ + [ + "address" => "绿春县", + "start_year" => "", + "end_year" => "" + ] + ], + 532532 => [ + [ + "address" => "河口瑶族自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 532600 => [ + [ + "address" => "文山壮族苗族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 532601 => [ + [ + "address" => "文山市", + "start_year" => 2010, + "end_year" => "" + ] + ], + 532621 => [ + [ + "address" => "文山县", + "start_year" => "", + "end_year" => 2009 + ] + ], + 532622 => [ + [ + "address" => "砚山县", + "start_year" => "", + "end_year" => "" + ] + ], + 532623 => [ + [ + "address" => "西畴县", + "start_year" => "", + "end_year" => "" + ] + ], + 532624 => [ + [ + "address" => "麻栗坡县", + "start_year" => "", + "end_year" => "" + ] + ], + 532625 => [ + [ + "address" => "马关县", + "start_year" => "", + "end_year" => "" + ] + ], + 532626 => [ + [ + "address" => "丘北县", + "start_year" => "", + "end_year" => "" + ] + ], + 532627 => [ + [ + "address" => "广南县", + "start_year" => "", + "end_year" => "" + ] + ], + 532628 => [ + [ + "address" => "富宁县", + "start_year" => "", + "end_year" => "" + ] + ], + 532700 => [ + [ + "address" => "思茅地区", + "start_year" => "", + "end_year" => 2002 + ] + ], + 532701 => [ + [ + "address" => "思茅市", + "start_year" => 1993, + "end_year" => 2002 + ] + ], + 532721 => [ + [ + "address" => "思茅县", + "start_year" => 1981, + "end_year" => 1992 + ] + ], + 532722 => [ + [ + "address" => "普洱县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "普洱哈尼族彝族自治县", + "start_year" => 1985, + "end_year" => 2002 + ] + ], + 532723 => [ + [ + "address" => "墨江哈尼族自治县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 532724 => [ + [ + "address" => "景东县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "景东彝族自治县", + "start_year" => 1985, + "end_year" => 2002 + ] + ], + 532725 => [ + [ + "address" => "景谷县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "景谷傣族彝族自治县", + "start_year" => 1985, + "end_year" => 2002 + ] + ], + 532726 => [ + [ + "address" => "镇沅县", + "start_year" => "", + "end_year" => 1989 + ], + [ + "address" => "镇沅彝族哈尼族拉祜族自治县", + "start_year" => 1990, + "end_year" => 2002 + ] + ], + 532727 => [ + [ + "address" => "江城哈尼族彝族自治县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 532728 => [ + [ + "address" => "孟连傣族拉祜族佤族自治县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 532729 => [ + [ + "address" => "澜沧拉祜族自治县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 532730 => [ + [ + "address" => "西盟佤族自治县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 532800 => [ + [ + "address" => "西双版纳傣族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 532801 => [ + [ + "address" => "景洪市", + "start_year" => 1993, + "end_year" => "" + ] + ], + 532821 => [ + [ + "address" => "景洪县", + "start_year" => "", + "end_year" => 1992 + ] + ], + 532822 => [ + [ + "address" => "勐海县", + "start_year" => "", + "end_year" => "" + ] + ], + 532823 => [ + [ + "address" => "勐腊县", + "start_year" => "", + "end_year" => "" + ] + ], + 532900 => [ + [ + "address" => "大理白族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 532901 => [ + [ + "address" => "下关市", + "start_year" => "", + "end_year" => 1982 + ], + [ + "address" => "大理市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 532921 => [ + [ + "address" => "大理县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 532922 => [ + [ + "address" => "漾濞县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "漾濞彝族自治县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 532923 => [ + [ + "address" => "祥云县", + "start_year" => "", + "end_year" => "" + ] + ], + 532924 => [ + [ + "address" => "宾川县", + "start_year" => "", + "end_year" => "" + ] + ], + 532925 => [ + [ + "address" => "弥渡县", + "start_year" => "", + "end_year" => "" + ] + ], + 532926 => [ + [ + "address" => "南涧彝族自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 532927 => [ + [ + "address" => "巍山彝族回族自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 532928 => [ + [ + "address" => "永平县", + "start_year" => "", + "end_year" => "" + ] + ], + 532929 => [ + [ + "address" => "云龙县", + "start_year" => "", + "end_year" => "" + ] + ], + 532930 => [ + [ + "address" => "洱源县", + "start_year" => "", + "end_year" => "" + ] + ], + 532931 => [ + [ + "address" => "剑川县", + "start_year" => "", + "end_year" => "" + ] + ], + 532932 => [ + [ + "address" => "鹤庆县", + "start_year" => "", + "end_year" => "" + ] + ], + 533000 => [ + [ + "address" => "保山地区", + "start_year" => "", + "end_year" => 1999 + ] + ], + 533001 => [ + [ + "address" => "保山市", + "start_year" => 1983, + "end_year" => 1999 + ] + ], + 533021 => [ + [ + "address" => "保山县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 533022 => [ + [ + "address" => "施甸县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 533023 => [ + [ + "address" => "腾冲县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 533024 => [ + [ + "address" => "龙陵县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 533025 => [ + [ + "address" => "昌宁县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 533100 => [ + [ + "address" => "德宏傣族景颇族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 533101 => [ + [ + "address" => "畹町市", + "start_year" => 1985, + "end_year" => 1998 + ] + ], + 533102 => [ + [ + "address" => "瑞丽市", + "start_year" => 1992, + "end_year" => "" + ] + ], + 533103 => [ + [ + "address" => "潞西市", + "start_year" => 1996, + "end_year" => 2009 + ], + [ + "address" => "芒市", + "start_year" => 2010, + "end_year" => "" + ] + ], + 533121 => [ + [ + "address" => "潞西县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 533122 => [ + [ + "address" => "梁河县", + "start_year" => "", + "end_year" => "" + ] + ], + 533123 => [ + [ + "address" => "盈江县", + "start_year" => "", + "end_year" => "" + ] + ], + 533124 => [ + [ + "address" => "陇川县", + "start_year" => "", + "end_year" => "" + ] + ], + 533125 => [ + [ + "address" => "瑞丽县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 533126 => [ + [ + "address" => "畹町镇", + "start_year" => "", + "end_year" => 1984 + ] + ], + 533200 => [ + [ + "address" => "丽江地区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 533221 => [ + [ + "address" => "丽江纳西族自治县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 533222 => [ + [ + "address" => "永胜县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 533223 => [ + [ + "address" => "华坪县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 533224 => [ + [ + "address" => "宁蒗彝族自治县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 533300 => [ + [ + "address" => "怒江傈僳族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 533301 => [ + [ + "address" => "泸水市", + "start_year" => 2016, + "end_year" => "" + ] + ], + 533321 => [ + [ + "address" => "碧江县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "泸水县", + "start_year" => 1982, + "end_year" => 2015 + ] + ], + 533322 => [ + [ + "address" => "福贡县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "碧江县", + "start_year" => 1982, + "end_year" => 1985 + ] + ], + 533323 => [ + [ + "address" => "贡山独龙族怒族自治县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "福贡县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 533324 => [ + [ + "address" => "泸水县", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "贡山独龙族怒族自治县", + "start_year" => 1982, + "end_year" => "" + ] + ], + 533325 => [ + [ + "address" => "兰坪县", + "start_year" => "", + "end_year" => 1986 + ], + [ + "address" => "兰坪白族普米族自治县", + "start_year" => 1987, + "end_year" => "" + ] + ], + 533400 => [ + [ + "address" => "迪庆藏族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 533401 => [ + [ + "address" => "香格里拉市", + "start_year" => 2014, + "end_year" => "" + ] + ], + 533421 => [ + [ + "address" => "中甸县", + "start_year" => "", + "end_year" => 2000 + ], + [ + "address" => "香格里拉县", + "start_year" => 2001, + "end_year" => 2013 + ] + ], + 533422 => [ + [ + "address" => "德钦县", + "start_year" => "", + "end_year" => "" + ] + ], + 533423 => [ + [ + "address" => "维西县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "维西傈僳族自治县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 533500 => [ + [ + "address" => "临沧地区", + "start_year" => "", + "end_year" => 2002 + ] + ], + 533521 => [ + [ + "address" => "临沧县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 533522 => [ + [ + "address" => "凤庆县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 533523 => [ + [ + "address" => "云县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 533524 => [ + [ + "address" => "永德县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 533525 => [ + [ + "address" => "镇康县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 533526 => [ + [ + "address" => "双江县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "双江拉祜族佤族布朗族傣族自治县", + "start_year" => 1985, + "end_year" => 2002 + ] + ], + 533527 => [ + [ + "address" => "耿马傣族佤族自治县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 533528 => [ + [ + "address" => "沧源佤族自治县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 540000 => [ + [ + "address" => "西藏自治区", + "start_year" => "", + "end_year" => "" + ] + ], + 540100 => [ + [ + "address" => "拉萨市", + "start_year" => "", + "end_year" => "" + ] + ], + 540102 => [ + [ + "address" => "城关区", + "start_year" => "", + "end_year" => "" + ] + ], + 540103 => [ + [ + "address" => "堆龙德庆区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 540104 => [ + [ + "address" => "达孜区", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540121 => [ + [ + "address" => "林周县", + "start_year" => "", + "end_year" => "" + ] + ], + 540122 => [ + [ + "address" => "当雄县", + "start_year" => "", + "end_year" => "" + ] + ], + 540123 => [ + [ + "address" => "尼木县", + "start_year" => "", + "end_year" => "" + ] + ], + 540124 => [ + [ + "address" => "曲水县", + "start_year" => "", + "end_year" => "" + ] + ], + 540125 => [ + [ + "address" => "堆龙德庆县", + "start_year" => "", + "end_year" => 2014 + ] + ], + 540126 => [ + [ + "address" => "达孜县", + "start_year" => "", + "end_year" => 2016 + ] + ], + 540127 => [ + [ + "address" => "墨竹工卡县", + "start_year" => "", + "end_year" => "" + ] + ], + 540128 => [ + [ + "address" => "工布江达县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 540129 => [ + [ + "address" => "林芝县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 540130 => [ + [ + "address" => "米林县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 540131 => [ + [ + "address" => "墨脱县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 540200 => [ + [ + "address" => "日喀则市", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540202 => [ + [ + "address" => "桑珠孜区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540221 => [ + [ + "address" => "南木林县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540222 => [ + [ + "address" => "江孜县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540223 => [ + [ + "address" => "定日县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540224 => [ + [ + "address" => "萨迦县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540225 => [ + [ + "address" => "拉孜县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540226 => [ + [ + "address" => "昂仁县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540227 => [ + [ + "address" => "谢通门县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540228 => [ + [ + "address" => "白朗县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540229 => [ + [ + "address" => "仁布县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540230 => [ + [ + "address" => "康马县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540231 => [ + [ + "address" => "定结县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540232 => [ + [ + "address" => "仲巴县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540233 => [ + [ + "address" => "亚东县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540234 => [ + [ + "address" => "吉隆县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540235 => [ + [ + "address" => "聂拉木县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540236 => [ + [ + "address" => "萨嘎县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540237 => [ + [ + "address" => "岗巴县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540300 => [ + [ + "address" => "昌都市", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540302 => [ + [ + "address" => "卡若区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540321 => [ + [ + "address" => "江达县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540322 => [ + [ + "address" => "贡觉县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540323 => [ + [ + "address" => "类乌齐县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540324 => [ + [ + "address" => "丁青县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540325 => [ + [ + "address" => "察雅县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540326 => [ + [ + "address" => "八宿县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540327 => [ + [ + "address" => "左贡县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540328 => [ + [ + "address" => "芒康县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540329 => [ + [ + "address" => "洛隆县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540330 => [ + [ + "address" => "边坝县", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540400 => [ + [ + "address" => "林芝市", + "start_year" => 2015, + "end_year" => "" + ] + ], + 540402 => [ + [ + "address" => "巴宜区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 540421 => [ + [ + "address" => "工布江达县", + "start_year" => 2015, + "end_year" => "" + ] + ], + 540422 => [ + [ + "address" => "米林县", + "start_year" => 2015, + "end_year" => "" + ] + ], + 540423 => [ + [ + "address" => "墨脱县", + "start_year" => 2015, + "end_year" => "" + ] + ], + 540424 => [ + [ + "address" => "波密县", + "start_year" => 2015, + "end_year" => "" + ] + ], + 540425 => [ + [ + "address" => "察隅县", + "start_year" => 2015, + "end_year" => "" + ] + ], + 540426 => [ + [ + "address" => "朗县", + "start_year" => 2015, + "end_year" => "" + ] + ], + 540500 => [ + [ + "address" => "山南市", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540502 => [ + [ + "address" => "乃东区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540521 => [ + [ + "address" => "扎囊县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540522 => [ + [ + "address" => "贡嘎县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540523 => [ + [ + "address" => "桑日县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540524 => [ + [ + "address" => "琼结县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540525 => [ + [ + "address" => "曲松县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540526 => [ + [ + "address" => "措美县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540527 => [ + [ + "address" => "洛扎县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540528 => [ + [ + "address" => "加查县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540529 => [ + [ + "address" => "隆子县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540530 => [ + [ + "address" => "错那县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540531 => [ + [ + "address" => "浪卡子县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540600 => [ + [ + "address" => "那曲市", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540602 => [ + [ + "address" => "色尼区", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540621 => [ + [ + "address" => "嘉黎县", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540622 => [ + [ + "address" => "比如县", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540623 => [ + [ + "address" => "聂荣县", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540624 => [ + [ + "address" => "安多县", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540625 => [ + [ + "address" => "申扎县", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540626 => [ + [ + "address" => "索县", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540627 => [ + [ + "address" => "班戈县", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540628 => [ + [ + "address" => "巴青县", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540629 => [ + [ + "address" => "尼玛县", + "start_year" => 2017, + "end_year" => "" + ] + ], + 540630 => [ + [ + "address" => "双湖县", + "start_year" => 2017, + "end_year" => "" + ] + ], + 542100 => [ + [ + "address" => "昌都地区", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542121 => [ + [ + "address" => "昌都县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542122 => [ + [ + "address" => "江达县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542123 => [ + [ + "address" => "贡觉县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542124 => [ + [ + "address" => "类乌齐县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542125 => [ + [ + "address" => "丁青县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542126 => [ + [ + "address" => "察雅县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542127 => [ + [ + "address" => "八宿县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542128 => [ + [ + "address" => "左贡县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542129 => [ + [ + "address" => "芒康县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542130 => [ + [ + "address" => "波密县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 542131 => [ + [ + "address" => "察隅县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 542132 => [ + [ + "address" => "洛隆县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542133 => [ + [ + "address" => "边坝县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542134 => [ + [ + "address" => "盐井县", + "start_year" => 1983, + "end_year" => 1998 + ] + ], + 542135 => [ + [ + "address" => "碧土县", + "start_year" => 1983, + "end_year" => 1998 + ] + ], + 542136 => [ + [ + "address" => "妥坝县", + "start_year" => 1983, + "end_year" => 1998 + ] + ], + 542137 => [ + [ + "address" => "生达县", + "start_year" => 1983, + "end_year" => 1998 + ] + ], + 542200 => [ + [ + "address" => "山南地区", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542221 => [ + [ + "address" => "乃东县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542222 => [ + [ + "address" => "扎囊县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542223 => [ + [ + "address" => "贡嘎县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542224 => [ + [ + "address" => "桑日县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542225 => [ + [ + "address" => "穷结县", + "start_year" => "", + "end_year" => 1985 + ], + [ + "address" => "琼结县", + "start_year" => 1986, + "end_year" => 2015 + ] + ], + 542226 => [ + [ + "address" => "曲松县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542227 => [ + [ + "address" => "措美县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542228 => [ + [ + "address" => "洛扎县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542229 => [ + [ + "address" => "加查县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542230 => [ + [ + "address" => "朗县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 542231 => [ + [ + "address" => "隆子县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542232 => [ + [ + "address" => "错那县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542233 => [ + [ + "address" => "浪卡子县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 542300 => [ + [ + "address" => "日喀则地区", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542301 => [ + [ + "address" => "日喀则市", + "start_year" => 1986, + "end_year" => 2013 + ] + ], + 542321 => [ + [ + "address" => "日喀则县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 542322 => [ + [ + "address" => "南木林县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542323 => [ + [ + "address" => "江孜县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542324 => [ + [ + "address" => "定日县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542325 => [ + [ + "address" => "萨迦县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542326 => [ + [ + "address" => "拉孜县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542327 => [ + [ + "address" => "昂仁县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542328 => [ + [ + "address" => "谢通门县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542329 => [ + [ + "address" => "白朗县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542330 => [ + [ + "address" => "仁布县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542331 => [ + [ + "address" => "康马县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542332 => [ + [ + "address" => "定结县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542333 => [ + [ + "address" => "仲巴县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542334 => [ + [ + "address" => "亚东县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542335 => [ + [ + "address" => "吉隆县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542336 => [ + [ + "address" => "聂拉木县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542337 => [ + [ + "address" => "萨嘎县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542338 => [ + [ + "address" => "岗巴县", + "start_year" => "", + "end_year" => 2013 + ] + ], + 542400 => [ + [ + "address" => "那曲地区", + "start_year" => "", + "end_year" => 2016 + ] + ], + 542421 => [ + [ + "address" => "那曲县", + "start_year" => "", + "end_year" => 2016 + ] + ], + 542422 => [ + [ + "address" => "嘉黎县", + "start_year" => "", + "end_year" => 2016 + ] + ], + 542423 => [ + [ + "address" => "比如县", + "start_year" => "", + "end_year" => 2016 + ] + ], + 542424 => [ + [ + "address" => "聂荣县", + "start_year" => "", + "end_year" => 2016 + ] + ], + 542425 => [ + [ + "address" => "安多县", + "start_year" => "", + "end_year" => 2016 + ] + ], + 542426 => [ + [ + "address" => "申扎县", + "start_year" => "", + "end_year" => 2016 + ] + ], + 542427 => [ + [ + "address" => "索县", + "start_year" => "", + "end_year" => 2016 + ] + ], + 542428 => [ + [ + "address" => "班戈县", + "start_year" => "", + "end_year" => 2016 + ] + ], + 542429 => [ + [ + "address" => "巴青县", + "start_year" => "", + "end_year" => 2016 + ] + ], + 542430 => [ + [ + "address" => "尼玛县", + "start_year" => 1983, + "end_year" => 2016 + ] + ], + 542431 => [ + [ + "address" => "双湖县", + "start_year" => 2012, + "end_year" => 2016 + ] + ], + 542500 => [ + [ + "address" => "阿里地区", + "start_year" => "", + "end_year" => "" + ] + ], + 542521 => [ + [ + "address" => "普兰县", + "start_year" => "", + "end_year" => "" + ] + ], + 542522 => [ + [ + "address" => "札达县", + "start_year" => "", + "end_year" => "" + ] + ], + 542523 => [ + [ + "address" => "噶尔县", + "start_year" => "", + "end_year" => "" + ] + ], + 542524 => [ + [ + "address" => "日土县", + "start_year" => "", + "end_year" => "" + ] + ], + 542525 => [ + [ + "address" => "革吉县", + "start_year" => "", + "end_year" => "" + ] + ], + 542526 => [ + [ + "address" => "改则县", + "start_year" => "", + "end_year" => "" + ] + ], + 542527 => [ + [ + "address" => "措勤县", + "start_year" => "", + "end_year" => "" + ] + ], + 542528 => [ + [ + "address" => "隆格尔县", + "start_year" => 1983, + "end_year" => 1998 + ] + ], + 542600 => [ + [ + "address" => "林芝地区", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 542621 => [ + [ + "address" => "林芝县", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 542622 => [ + [ + "address" => "工布江达县", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 542623 => [ + [ + "address" => "米林县", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 542624 => [ + [ + "address" => "墨脱县", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 542625 => [ + [ + "address" => "波密县", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 542626 => [ + [ + "address" => "察隅县", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 542627 => [ + [ + "address" => "朗县", + "start_year" => 1983, + "end_year" => 2014 + ] + ], + 542700 => [ + [ + "address" => "江孜地区", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 542721 => [ + [ + "address" => "江孜县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 542722 => [ + [ + "address" => "浪卡子县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 542723 => [ + [ + "address" => "白朗县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 542724 => [ + [ + "address" => "仁布县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 542725 => [ + [ + "address" => "康马县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 542726 => [ + [ + "address" => "亚东县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 542727 => [ + [ + "address" => "岗巴县", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 610000 => [ + [ + "address" => "陕西省", + "start_year" => "", + "end_year" => "" + ] + ], + 610100 => [ + [ + "address" => "西安市", + "start_year" => "", + "end_year" => "" + ] + ], + 610102 => [ + [ + "address" => "新城区", + "start_year" => "", + "end_year" => "" + ] + ], + 610103 => [ + [ + "address" => "碑林区", + "start_year" => "", + "end_year" => "" + ] + ], + 610104 => [ + [ + "address" => "莲湖区", + "start_year" => "", + "end_year" => "" + ] + ], + 610111 => [ + [ + "address" => "灞桥区", + "start_year" => "", + "end_year" => "" + ] + ], + 610112 => [ + [ + "address" => "未央区", + "start_year" => "", + "end_year" => "" + ] + ], + 610113 => [ + [ + "address" => "雁塔区", + "start_year" => "", + "end_year" => "" + ] + ], + 610114 => [ + [ + "address" => "阎良区", + "start_year" => "", + "end_year" => "" + ] + ], + 610115 => [ + [ + "address" => "临潼区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 610116 => [ + [ + "address" => "长安区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 610117 => [ + [ + "address" => "高陵区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 610118 => [ + [ + "address" => "鄠邑区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 610121 => [ + [ + "address" => "长安县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 610122 => [ + [ + "address" => "蓝田县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610123 => [ + [ + "address" => "临潼县", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 610124 => [ + [ + "address" => "周至县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610125 => [ + [ + "address" => "户县", + "start_year" => 1983, + "end_year" => 2015 + ] + ], + 610126 => [ + [ + "address" => "高陵县", + "start_year" => 1983, + "end_year" => 2013 + ] + ], + 610200 => [ + [ + "address" => "铜川市", + "start_year" => "", + "end_year" => "" + ] + ], + 610202 => [ + [ + "address" => "城区", + "start_year" => "", + "end_year" => 1999 + ], + [ + "address" => "王益区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610203 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1999 + ], + [ + "address" => "印台区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610204 => [ + [ + "address" => "耀州区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 610221 => [ + [ + "address" => "耀县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 610222 => [ + [ + "address" => "宜君县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610300 => [ + [ + "address" => "宝鸡市", + "start_year" => "", + "end_year" => "" + ] + ], + 610302 => [ + [ + "address" => "渭滨区", + "start_year" => "", + "end_year" => "" + ] + ], + 610303 => [ + [ + "address" => "金台区", + "start_year" => "", + "end_year" => "" + ] + ], + 610304 => [ + [ + "address" => "杨陵区", + "start_year" => 1982, + "end_year" => 1982 + ], + [ + "address" => "陈仓区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 610321 => [ + [ + "address" => "宝鸡县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 610322 => [ + [ + "address" => "凤翔县", + "start_year" => "", + "end_year" => "" + ] + ], + 610323 => [ + [ + "address" => "岐山县", + "start_year" => "", + "end_year" => "" + ] + ], + 610324 => [ + [ + "address" => "扶风县", + "start_year" => "", + "end_year" => "" + ] + ], + 610325 => [ + [ + "address" => "武功县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 610326 => [ + [ + "address" => "眉县", + "start_year" => "", + "end_year" => "" + ] + ], + 610327 => [ + [ + "address" => "陇县", + "start_year" => "", + "end_year" => "" + ] + ], + 610328 => [ + [ + "address" => "千阳县", + "start_year" => "", + "end_year" => "" + ] + ], + 610329 => [ + [ + "address" => "麟游县", + "start_year" => "", + "end_year" => "" + ] + ], + 610330 => [ + [ + "address" => "凤县", + "start_year" => "", + "end_year" => "" + ] + ], + 610331 => [ + [ + "address" => "太白县", + "start_year" => "", + "end_year" => "" + ] + ], + 610400 => [ + [ + "address" => "咸阳市", + "start_year" => 1984, + "end_year" => "" + ] + ], + 610401 => [ + [ + "address" => "咸阳市", + "start_year" => 1983, + "end_year" => 1983 + ] + ], + 610402 => [ + [ + "address" => "秦都区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610403 => [ + [ + "address" => "杨陵区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610404 => [ + [ + "address" => "渭城区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 610421 => [ + [ + "address" => "兴平县", + "start_year" => 1983, + "end_year" => 1992 + ] + ], + 610422 => [ + [ + "address" => "三原县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610423 => [ + [ + "address" => "泾阳县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610424 => [ + [ + "address" => "乾县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610425 => [ + [ + "address" => "礼泉县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610426 => [ + [ + "address" => "永寿县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610427 => [ + [ + "address" => "彬县", + "start_year" => 1983, + "end_year" => 2017 + ] + ], + 610428 => [ + [ + "address" => "长武县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610429 => [ + [ + "address" => "旬邑县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610430 => [ + [ + "address" => "淳化县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610431 => [ + [ + "address" => "武功县", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610481 => [ + [ + "address" => "兴平市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 610482 => [ + [ + "address" => "彬州市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 610500 => [ + [ + "address" => "渭南市", + "start_year" => 1994, + "end_year" => "" + ] + ], + 610502 => [ + [ + "address" => "临渭区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 610503 => [ + [ + "address" => "华州区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 610521 => [ + [ + "address" => "华县", + "start_year" => 1994, + "end_year" => 2014 + ] + ], + 610522 => [ + [ + "address" => "潼关县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 610523 => [ + [ + "address" => "大荔县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 610524 => [ + [ + "address" => "合阳县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 610525 => [ + [ + "address" => "澄城县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 610526 => [ + [ + "address" => "蒲城县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 610527 => [ + [ + "address" => "白水县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 610528 => [ + [ + "address" => "富平县", + "start_year" => 1994, + "end_year" => "" + ] + ], + 610581 => [ + [ + "address" => "韩城市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 610582 => [ + [ + "address" => "华阴市", + "start_year" => 1995, + "end_year" => "" + ] + ], + 610600 => [ + [ + "address" => "延安市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610602 => [ + [ + "address" => "宝塔区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610603 => [ + [ + "address" => "安塞区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 610621 => [ + [ + "address" => "延长县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610622 => [ + [ + "address" => "延川县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610623 => [ + [ + "address" => "子长县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610624 => [ + [ + "address" => "安塞县", + "start_year" => 1996, + "end_year" => 2015 + ] + ], + 610625 => [ + [ + "address" => "志丹县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610626 => [ + [ + "address" => "吴旗县", + "start_year" => 1996, + "end_year" => 2004 + ], + [ + "address" => "吴起县", + "start_year" => 2005, + "end_year" => "" + ] + ], + 610627 => [ + [ + "address" => "甘泉县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610628 => [ + [ + "address" => "富县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610629 => [ + [ + "address" => "洛川县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610630 => [ + [ + "address" => "宜川县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610631 => [ + [ + "address" => "黄龙县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610632 => [ + [ + "address" => "黄陵县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610700 => [ + [ + "address" => "汉中市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610702 => [ + [ + "address" => "汉台区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610703 => [ + [ + "address" => "南郑区", + "start_year" => 2017, + "end_year" => "" + ] + ], + 610721 => [ + [ + "address" => "南郑县", + "start_year" => 1996, + "end_year" => 2016 + ] + ], + 610722 => [ + [ + "address" => "城固县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610723 => [ + [ + "address" => "洋县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610724 => [ + [ + "address" => "西乡县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610725 => [ + [ + "address" => "勉县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610726 => [ + [ + "address" => "宁强县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610727 => [ + [ + "address" => "略阳县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610728 => [ + [ + "address" => "镇巴县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610729 => [ + [ + "address" => "留坝县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610730 => [ + [ + "address" => "佛坪县", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610800 => [ + [ + "address" => "榆林市", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610802 => [ + [ + "address" => "榆阳区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610803 => [ + [ + "address" => "横山区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 610821 => [ + [ + "address" => "神木县", + "start_year" => 1999, + "end_year" => 2016 + ] + ], + 610822 => [ + [ + "address" => "府谷县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610823 => [ + [ + "address" => "横山县", + "start_year" => 1999, + "end_year" => 2014 + ] + ], + 610824 => [ + [ + "address" => "靖边县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610825 => [ + [ + "address" => "定边县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610826 => [ + [ + "address" => "绥德县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610827 => [ + [ + "address" => "米脂县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610828 => [ + [ + "address" => "佳县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610829 => [ + [ + "address" => "吴堡县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610830 => [ + [ + "address" => "清涧县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610831 => [ + [ + "address" => "子洲县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610881 => [ + [ + "address" => "神木市", + "start_year" => 2017, + "end_year" => "" + ] + ], + 610900 => [ + [ + "address" => "安康市", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610902 => [ + [ + "address" => "汉滨区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610921 => [ + [ + "address" => "汉阴县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610922 => [ + [ + "address" => "石泉县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610923 => [ + [ + "address" => "宁陕县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610924 => [ + [ + "address" => "紫阳县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610925 => [ + [ + "address" => "岚皋县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610926 => [ + [ + "address" => "平利县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610927 => [ + [ + "address" => "镇坪县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610928 => [ + [ + "address" => "旬阳县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 610929 => [ + [ + "address" => "白河县", + "start_year" => 2000, + "end_year" => "" + ] + ], + 611000 => [ + [ + "address" => "商洛市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 611002 => [ + [ + "address" => "商州区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 611021 => [ + [ + "address" => "洛南县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 611022 => [ + [ + "address" => "丹凤县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 611023 => [ + [ + "address" => "商南县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 611024 => [ + [ + "address" => "山阳县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 611025 => [ + [ + "address" => "镇安县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 611026 => [ + [ + "address" => "柞水县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 612100 => [ + [ + "address" => "渭南地区", + "start_year" => "", + "end_year" => 1993 + ] + ], + 612101 => [ + [ + "address" => "渭南市", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 612102 => [ + [ + "address" => "韩城市", + "start_year" => 1983, + "end_year" => 1993 + ] + ], + 612103 => [ + [ + "address" => "华阴市", + "start_year" => 1990, + "end_year" => 1993 + ] + ], + 612121 => [ + [ + "address" => "蓝田县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612122 => [ + [ + "address" => "临潼县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612123 => [ + [ + "address" => "渭南县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612124 => [ + [ + "address" => "华县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 612125 => [ + [ + "address" => "华阴县", + "start_year" => "", + "end_year" => 1989 + ] + ], + 612126 => [ + [ + "address" => "潼关县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 612127 => [ + [ + "address" => "大荔县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 612128 => [ + [ + "address" => "蒲城县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 612129 => [ + [ + "address" => "澄城县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 612130 => [ + [ + "address" => "白水县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 612131 => [ + [ + "address" => "韩城县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612132 => [ + [ + "address" => "合阳县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 612133 => [ + [ + "address" => "富平县", + "start_year" => "", + "end_year" => 1993 + ] + ], + 612200 => [ + [ + "address" => "咸阳地区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612201 => [ + [ + "address" => "咸阳市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612221 => [ + [ + "address" => "兴平县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612222 => [ + [ + "address" => "周至县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612223 => [ + [ + "address" => "户县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612224 => [ + [ + "address" => "三原县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612225 => [ + [ + "address" => "泾阳县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612226 => [ + [ + "address" => "高陵县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612227 => [ + [ + "address" => "乾县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612228 => [ + [ + "address" => "礼泉县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612229 => [ + [ + "address" => "永寿县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612230 => [ + [ + "address" => "彬县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612231 => [ + [ + "address" => "长武县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612232 => [ + [ + "address" => "旬邑县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612233 => [ + [ + "address" => "淳化县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612300 => [ + [ + "address" => "汉中地区", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612301 => [ + [ + "address" => "汉中市", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612321 => [ + [ + "address" => "南郑县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612322 => [ + [ + "address" => "城固县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612323 => [ + [ + "address" => "洋县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612324 => [ + [ + "address" => "西乡县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612325 => [ + [ + "address" => "勉县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612326 => [ + [ + "address" => "宁强县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612327 => [ + [ + "address" => "略阳县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612328 => [ + [ + "address" => "镇巴县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612329 => [ + [ + "address" => "留坝县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612330 => [ + [ + "address" => "佛坪县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612400 => [ + [ + "address" => "安康地区", + "start_year" => "", + "end_year" => 1999 + ] + ], + 612401 => [ + [ + "address" => "安康市", + "start_year" => 1988, + "end_year" => 1999 + ] + ], + 612421 => [ + [ + "address" => "安康县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 612422 => [ + [ + "address" => "汉阴县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 612423 => [ + [ + "address" => "石泉县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 612424 => [ + [ + "address" => "宁陕县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 612425 => [ + [ + "address" => "紫阳县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 612426 => [ + [ + "address" => "岚皋县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 612427 => [ + [ + "address" => "平利县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 612428 => [ + [ + "address" => "镇坪县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 612429 => [ + [ + "address" => "旬阳县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 612430 => [ + [ + "address" => "白河县", + "start_year" => "", + "end_year" => 1999 + ] + ], + 612500 => [ + [ + "address" => "商洛地区", + "start_year" => "", + "end_year" => 2000 + ] + ], + 612501 => [ + [ + "address" => "商州市", + "start_year" => 1988, + "end_year" => 2000 + ] + ], + 612521 => [ + [ + "address" => "商县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 612522 => [ + [ + "address" => "洛南县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 612523 => [ + [ + "address" => "丹凤县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 612524 => [ + [ + "address" => "商南县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 612525 => [ + [ + "address" => "山阳县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 612526 => [ + [ + "address" => "镇安县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 612527 => [ + [ + "address" => "柞水县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 612600 => [ + [ + "address" => "延安地区", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612601 => [ + [ + "address" => "延安市", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612621 => [ + [ + "address" => "延长县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612622 => [ + [ + "address" => "延川县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612623 => [ + [ + "address" => "子长县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612624 => [ + [ + "address" => "安塞县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612625 => [ + [ + "address" => "志丹县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612626 => [ + [ + "address" => "吴旗县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612627 => [ + [ + "address" => "甘泉县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612628 => [ + [ + "address" => "富县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612629 => [ + [ + "address" => "洛川县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612630 => [ + [ + "address" => "宜川县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612631 => [ + [ + "address" => "黄龙县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612632 => [ + [ + "address" => "黄陵县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 612633 => [ + [ + "address" => "宜君县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 612700 => [ + [ + "address" => "榆林地区", + "start_year" => "", + "end_year" => 1998 + ] + ], + 612701 => [ + [ + "address" => "榆林市", + "start_year" => 1988, + "end_year" => 1998 + ] + ], + 612721 => [ + [ + "address" => "榆林县", + "start_year" => "", + "end_year" => 1987 + ] + ], + 612722 => [ + [ + "address" => "神木县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 612723 => [ + [ + "address" => "府谷县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 612724 => [ + [ + "address" => "横山县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 612725 => [ + [ + "address" => "靖边县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 612726 => [ + [ + "address" => "定边县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 612727 => [ + [ + "address" => "绥德县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 612728 => [ + [ + "address" => "米脂县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 612729 => [ + [ + "address" => "佳县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 612730 => [ + [ + "address" => "吴堡县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 612731 => [ + [ + "address" => "清涧县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 612732 => [ + [ + "address" => "子洲县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 619001 => [ + [ + "address" => "兴平市", + "start_year" => 1993, + "end_year" => 1994 + ] + ], + 619002 => [ + [ + "address" => "韩城市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 619003 => [ + [ + "address" => "华阴市", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 620000 => [ + [ + "address" => "甘肃省", + "start_year" => "", + "end_year" => "" + ] + ], + 620100 => [ + [ + "address" => "兰州市", + "start_year" => "", + "end_year" => "" + ] + ], + 620102 => [ + [ + "address" => "城关区", + "start_year" => "", + "end_year" => "" + ] + ], + 620103 => [ + [ + "address" => "七里河区", + "start_year" => "", + "end_year" => "" + ] + ], + 620104 => [ + [ + "address" => "西固区", + "start_year" => "", + "end_year" => "" + ] + ], + 620105 => [ + [ + "address" => "安宁区", + "start_year" => "", + "end_year" => "" + ] + ], + 620111 => [ + [ + "address" => "红古区", + "start_year" => "", + "end_year" => "" + ] + ], + 620112 => [ + [ + "address" => "白银区", + "start_year" => "", + "end_year" => 1984 + ] + ], + 620121 => [ + [ + "address" => "永登县", + "start_year" => "", + "end_year" => "" + ] + ], + 620122 => [ + [ + "address" => "皋兰县", + "start_year" => "", + "end_year" => "" + ] + ], + 620123 => [ + [ + "address" => "榆中县", + "start_year" => "", + "end_year" => "" + ] + ], + 620200 => [ + [ + "address" => "嘉峪关市", + "start_year" => "", + "end_year" => "" + ] + ], + 620300 => [ + [ + "address" => "金昌市", + "start_year" => 1981, + "end_year" => "" + ] + ], + 620302 => [ + [ + "address" => "金川区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 620321 => [ + [ + "address" => "永昌县", + "start_year" => 1981, + "end_year" => "" + ] + ], + 620400 => [ + [ + "address" => "白银市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620402 => [ + [ + "address" => "白银区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620403 => [ + [ + "address" => "平川区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620421 => [ + [ + "address" => "靖远县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620422 => [ + [ + "address" => "会宁县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620423 => [ + [ + "address" => "景泰县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620500 => [ + [ + "address" => "天水市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620502 => [ + [ + "address" => "秦城区", + "start_year" => 1985, + "end_year" => 2003 + ], + [ + "address" => "秦州区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 620503 => [ + [ + "address" => "北道区", + "start_year" => 1985, + "end_year" => 2003 + ], + [ + "address" => "麦积区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 620521 => [ + [ + "address" => "清水县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620522 => [ + [ + "address" => "秦安县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620523 => [ + [ + "address" => "甘谷县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620524 => [ + [ + "address" => "武山县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620525 => [ + [ + "address" => "张家川回族自治县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620600 => [ + [ + "address" => "武威市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 620602 => [ + [ + "address" => "凉州区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 620621 => [ + [ + "address" => "民勤县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 620622 => [ + [ + "address" => "古浪县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 620623 => [ + [ + "address" => "天祝藏族自治县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 620700 => [ + [ + "address" => "张掖市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620702 => [ + [ + "address" => "甘州区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620721 => [ + [ + "address" => "肃南裕固族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620722 => [ + [ + "address" => "民乐县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620723 => [ + [ + "address" => "临泽县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620724 => [ + [ + "address" => "高台县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620725 => [ + [ + "address" => "山丹县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620800 => [ + [ + "address" => "平凉市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620802 => [ + [ + "address" => "崆峒区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620821 => [ + [ + "address" => "泾川县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620822 => [ + [ + "address" => "灵台县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620823 => [ + [ + "address" => "崇信县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620824 => [ + [ + "address" => "华亭县", + "start_year" => 2002, + "end_year" => 2017 + ] + ], + 620825 => [ + [ + "address" => "庄浪县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620826 => [ + [ + "address" => "静宁县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620881 => [ + [ + "address" => "华亭市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 620900 => [ + [ + "address" => "酒泉市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620902 => [ + [ + "address" => "肃州区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620921 => [ + [ + "address" => "金塔县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620922 => [ + [ + "address" => "瓜州县", + "start_year" => 2006, + "end_year" => "" + ] + ], + 620923 => [ + [ + "address" => "肃北蒙古族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620924 => [ + [ + "address" => "阿克塞哈萨克族自治县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620925 => [ + [ + "address" => "安西县", + "start_year" => 2002, + "end_year" => 2005 + ] + ], + 620981 => [ + [ + "address" => "玉门市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620982 => [ + [ + "address" => "敦煌市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621000 => [ + [ + "address" => "庆阳市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621002 => [ + [ + "address" => "西峰区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621021 => [ + [ + "address" => "庆城县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621022 => [ + [ + "address" => "环县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621023 => [ + [ + "address" => "华池县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621024 => [ + [ + "address" => "合水县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621025 => [ + [ + "address" => "正宁县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621026 => [ + [ + "address" => "宁县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621027 => [ + [ + "address" => "镇原县", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621100 => [ + [ + "address" => "定西市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 621102 => [ + [ + "address" => "安定区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 621121 => [ + [ + "address" => "通渭县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 621122 => [ + [ + "address" => "陇西县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 621123 => [ + [ + "address" => "渭源县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 621124 => [ + [ + "address" => "临洮县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 621125 => [ + [ + "address" => "漳县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 621126 => [ + [ + "address" => "岷县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 621200 => [ + [ + "address" => "陇南市", + "start_year" => 2004, + "end_year" => "" + ] + ], + 621202 => [ + [ + "address" => "武都区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 621221 => [ + [ + "address" => "成县", + "start_year" => 2004, + "end_year" => "" + ] + ], + 621222 => [ + [ + "address" => "文县", + "start_year" => 2004, + "end_year" => "" + ] + ], + 621223 => [ + [ + "address" => "宕昌县", + "start_year" => 2004, + "end_year" => "" + ] + ], + 621224 => [ + [ + "address" => "康县", + "start_year" => 2004, + "end_year" => "" + ] + ], + 621225 => [ + [ + "address" => "西和县", + "start_year" => 2004, + "end_year" => "" + ] + ], + 621226 => [ + [ + "address" => "礼县", + "start_year" => 2004, + "end_year" => "" + ] + ], + 621227 => [ + [ + "address" => "徽县", + "start_year" => 2004, + "end_year" => "" + ] + ], + 621228 => [ + [ + "address" => "两当县", + "start_year" => 2004, + "end_year" => "" + ] + ], + 622100 => [ + [ + "address" => "酒泉地区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622101 => [ + [ + "address" => "玉门市", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622102 => [ + [ + "address" => "酒泉市", + "start_year" => 1985, + "end_year" => 2001 + ] + ], + 622103 => [ + [ + "address" => "敦煌市", + "start_year" => 1987, + "end_year" => 2001 + ] + ], + 622121 => [ + [ + "address" => "酒泉县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622122 => [ + [ + "address" => "敦煌县", + "start_year" => "", + "end_year" => 1986 + ] + ], + 622123 => [ + [ + "address" => "金塔县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622124 => [ + [ + "address" => "肃北蒙古族自治县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622125 => [ + [ + "address" => "阿克塞哈萨克族自治县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622126 => [ + [ + "address" => "安西县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622200 => [ + [ + "address" => "张掖地区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622201 => [ + [ + "address" => "张掖市", + "start_year" => 1985, + "end_year" => 2001 + ] + ], + 622221 => [ + [ + "address" => "张掖县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622222 => [ + [ + "address" => "肃南裕固族自治县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622223 => [ + [ + "address" => "民乐县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622224 => [ + [ + "address" => "临泽县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622225 => [ + [ + "address" => "高台县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622226 => [ + [ + "address" => "山丹县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622300 => [ + [ + "address" => "武威地区", + "start_year" => "", + "end_year" => 2000 + ] + ], + 622301 => [ + [ + "address" => "武威市", + "start_year" => 1985, + "end_year" => 2000 + ] + ], + 622321 => [ + [ + "address" => "武威县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622322 => [ + [ + "address" => "民勤县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 622323 => [ + [ + "address" => "古浪县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 622324 => [ + [ + "address" => "景泰县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622325 => [ + [ + "address" => "永昌县", + "start_year" => "", + "end_year" => 1980 + ] + ], + 622326 => [ + [ + "address" => "天祝藏族自治县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 622400 => [ + [ + "address" => "定西地区", + "start_year" => "", + "end_year" => 2002 + ] + ], + 622421 => [ + [ + "address" => "定西县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 622422 => [ + [ + "address" => "靖远县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622423 => [ + [ + "address" => "会宁县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622424 => [ + [ + "address" => "通渭县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 622425 => [ + [ + "address" => "陇西县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 622426 => [ + [ + "address" => "渭源县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 622427 => [ + [ + "address" => "临洮县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 622428 => [ + [ + "address" => "漳县", + "start_year" => 1985, + "end_year" => 2002 + ] + ], + 622429 => [ + [ + "address" => "岷县", + "start_year" => 1985, + "end_year" => 2002 + ] + ], + 622500 => [ + [ + "address" => "天水地区", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622501 => [ + [ + "address" => "天水市", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622521 => [ + [ + "address" => "张家川回族自治县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622522 => [ + [ + "address" => "天水县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622523 => [ + [ + "address" => "清水县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622524 => [ + [ + "address" => "徽县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622525 => [ + [ + "address" => "两当县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622526 => [ + [ + "address" => "礼县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622527 => [ + [ + "address" => "西和县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622528 => [ + [ + "address" => "武山县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622529 => [ + [ + "address" => "甘谷县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622530 => [ + [ + "address" => "秦安县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622531 => [ + [ + "address" => "漳县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622600 => [ + [ + "address" => "武都地区", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "陇南地区", + "start_year" => 1985, + "end_year" => 2003 + ] + ], + 622621 => [ + [ + "address" => "武都县", + "start_year" => "", + "end_year" => 2003 + ] + ], + 622622 => [ + [ + "address" => "岷县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 622623 => [ + [ + "address" => "宕昌县", + "start_year" => "", + "end_year" => 2003 + ] + ], + 622624 => [ + [ + "address" => "成县", + "start_year" => "", + "end_year" => 2003 + ] + ], + 622625 => [ + [ + "address" => "康县", + "start_year" => "", + "end_year" => 2003 + ] + ], + 622626 => [ + [ + "address" => "文县", + "start_year" => "", + "end_year" => 2003 + ] + ], + 622627 => [ + [ + "address" => "西和县", + "start_year" => 1985, + "end_year" => 2003 + ] + ], + 622628 => [ + [ + "address" => "礼县", + "start_year" => 1985, + "end_year" => 2003 + ] + ], + 622629 => [ + [ + "address" => "两当县", + "start_year" => 1985, + "end_year" => 2003 + ] + ], + 622630 => [ + [ + "address" => "徽县", + "start_year" => 1985, + "end_year" => 2003 + ] + ], + 622700 => [ + [ + "address" => "平凉地区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622701 => [ + [ + "address" => "平凉市", + "start_year" => 1983, + "end_year" => 2001 + ] + ], + 622721 => [ + [ + "address" => "平凉县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 622722 => [ + [ + "address" => "泾川县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622723 => [ + [ + "address" => "灵台县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622724 => [ + [ + "address" => "崇信县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622725 => [ + [ + "address" => "华亭县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622726 => [ + [ + "address" => "庄浪县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622727 => [ + [ + "address" => "静宁县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622800 => [ + [ + "address" => "庆阳地区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622801 => [ + [ + "address" => "西峰市", + "start_year" => 1985, + "end_year" => 2001 + ] + ], + 622821 => [ + [ + "address" => "庆阳县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622822 => [ + [ + "address" => "环县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622823 => [ + [ + "address" => "华池县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622824 => [ + [ + "address" => "合水县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622825 => [ + [ + "address" => "正宁县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622826 => [ + [ + "address" => "宁县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622827 => [ + [ + "address" => "镇原县", + "start_year" => "", + "end_year" => 2001 + ] + ], + 622900 => [ + [ + "address" => "临夏回族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 622901 => [ + [ + "address" => "临夏市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 622921 => [ + [ + "address" => "临夏县", + "start_year" => "", + "end_year" => "" + ] + ], + 622922 => [ + [ + "address" => "康乐县", + "start_year" => "", + "end_year" => "" + ] + ], + 622923 => [ + [ + "address" => "永靖县", + "start_year" => "", + "end_year" => "" + ] + ], + 622924 => [ + [ + "address" => "广河县", + "start_year" => "", + "end_year" => "" + ] + ], + 622925 => [ + [ + "address" => "和政县", + "start_year" => "", + "end_year" => "" + ] + ], + 622926 => [ + [ + "address" => "东乡族自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 622927 => [ + [ + "address" => "积石山保安族东乡族撒拉族自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 623000 => [ + [ + "address" => "甘南藏族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 623001 => [ + [ + "address" => "合作市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 623021 => [ + [ + "address" => "临潭县", + "start_year" => "", + "end_year" => "" + ] + ], + 623022 => [ + [ + "address" => "卓尼县", + "start_year" => "", + "end_year" => "" + ] + ], + 623023 => [ + [ + "address" => "舟曲县", + "start_year" => "", + "end_year" => "" + ] + ], + 623024 => [ + [ + "address" => "迭部县", + "start_year" => "", + "end_year" => "" + ] + ], + 623025 => [ + [ + "address" => "玛曲县", + "start_year" => "", + "end_year" => "" + ] + ], + 623026 => [ + [ + "address" => "碌曲县", + "start_year" => "", + "end_year" => "" + ] + ], + 623027 => [ + [ + "address" => "夏河县", + "start_year" => "", + "end_year" => "" + ] + ], + 630000 => [ + [ + "address" => "青海省", + "start_year" => "", + "end_year" => "" + ] + ], + 630100 => [ + [ + "address" => "西宁市", + "start_year" => "", + "end_year" => "" + ] + ], + 630102 => [ + [ + "address" => "城东区", + "start_year" => "", + "end_year" => "" + ] + ], + 630103 => [ + [ + "address" => "城中区", + "start_year" => "", + "end_year" => "" + ] + ], + 630104 => [ + [ + "address" => "城西区", + "start_year" => "", + "end_year" => "" + ] + ], + 630105 => [ + [ + "address" => "城北区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 630111 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1985 + ] + ], + 630121 => [ + [ + "address" => "大通县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "大通回族土族自治县", + "start_year" => 1985, + "end_year" => "" + ] + ], + 630122 => [ + [ + "address" => "湟中县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 630123 => [ + [ + "address" => "湟源县", + "start_year" => 1999, + "end_year" => "" + ] + ], + 630200 => [ + [ + "address" => "海东市", + "start_year" => 2013, + "end_year" => "" + ] + ], + 630202 => [ + [ + "address" => "乐都区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 630203 => [ + [ + "address" => "平安区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 630221 => [ + [ + "address" => "平安县", + "start_year" => 2013, + "end_year" => 2014 + ] + ], + 630222 => [ + [ + "address" => "民和回族土族自治县", + "start_year" => 2013, + "end_year" => "" + ] + ], + 630223 => [ + [ + "address" => "互助土族自治县", + "start_year" => 2013, + "end_year" => "" + ] + ], + 630224 => [ + [ + "address" => "化隆回族自治县", + "start_year" => 2013, + "end_year" => "" + ] + ], + 630225 => [ + [ + "address" => "循化撒拉族自治县", + "start_year" => 2013, + "end_year" => "" + ] + ], + 632100 => [ + [ + "address" => "海东地区", + "start_year" => "", + "end_year" => 2012 + ] + ], + 632121 => [ + [ + "address" => "平安县", + "start_year" => "", + "end_year" => 2012 + ] + ], + 632122 => [ + [ + "address" => "民和县", + "start_year" => "", + "end_year" => 1984 + ], + [ + "address" => "民和回族土族自治县", + "start_year" => 1985, + "end_year" => 2012 + ] + ], + 632123 => [ + [ + "address" => "乐都县", + "start_year" => "", + "end_year" => 2012 + ] + ], + 632124 => [ + [ + "address" => "湟中县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 632125 => [ + [ + "address" => "湟源县", + "start_year" => "", + "end_year" => 1998 + ] + ], + 632126 => [ + [ + "address" => "互助土族自治县", + "start_year" => "", + "end_year" => 2012 + ] + ], + 632127 => [ + [ + "address" => "化隆回族自治县", + "start_year" => "", + "end_year" => 2012 + ] + ], + 632128 => [ + [ + "address" => "循化撒拉族自治县", + "start_year" => "", + "end_year" => 2012 + ] + ], + 632200 => [ + [ + "address" => "海北藏族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 632221 => [ + [ + "address" => "门源回族自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 632222 => [ + [ + "address" => "祁连县", + "start_year" => "", + "end_year" => "" + ] + ], + 632223 => [ + [ + "address" => "海晏县", + "start_year" => "", + "end_year" => "" + ] + ], + 632224 => [ + [ + "address" => "刚察县", + "start_year" => "", + "end_year" => "" + ] + ], + 632300 => [ + [ + "address" => "黄南藏族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 632321 => [ + [ + "address" => "同仁县", + "start_year" => "", + "end_year" => "" + ] + ], + 632322 => [ + [ + "address" => "尖扎县", + "start_year" => "", + "end_year" => "" + ] + ], + 632323 => [ + [ + "address" => "泽库县", + "start_year" => "", + "end_year" => "" + ] + ], + 632324 => [ + [ + "address" => "河南蒙古族自治县", + "start_year" => 1981, + "end_year" => "" + ] + ], + 632421 => [ + [ + "address" => "河南蒙古族自治县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 632500 => [ + [ + "address" => "海南藏族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 632521 => [ + [ + "address" => "共和县", + "start_year" => "", + "end_year" => "" + ] + ], + 632522 => [ + [ + "address" => "同德县", + "start_year" => "", + "end_year" => "" + ] + ], + 632523 => [ + [ + "address" => "贵德县", + "start_year" => "", + "end_year" => "" + ] + ], + 632524 => [ + [ + "address" => "兴海县", + "start_year" => "", + "end_year" => "" + ] + ], + 632525 => [ + [ + "address" => "贵南县", + "start_year" => "", + "end_year" => "" + ] + ], + 632600 => [ + [ + "address" => "果洛藏族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 632621 => [ + [ + "address" => "玛沁县", + "start_year" => "", + "end_year" => "" + ] + ], + 632622 => [ + [ + "address" => "班玛县", + "start_year" => "", + "end_year" => "" + ] + ], + 632623 => [ + [ + "address" => "甘德县", + "start_year" => "", + "end_year" => "" + ] + ], + 632624 => [ + [ + "address" => "达日县", + "start_year" => "", + "end_year" => "" + ] + ], + 632625 => [ + [ + "address" => "久治县", + "start_year" => "", + "end_year" => "" + ] + ], + 632626 => [ + [ + "address" => "玛多县", + "start_year" => "", + "end_year" => "" + ] + ], + 632700 => [ + [ + "address" => "玉树藏族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 632701 => [ + [ + "address" => "玉树市", + "start_year" => 2013, + "end_year" => "" + ] + ], + 632721 => [ + [ + "address" => "玉树县", + "start_year" => "", + "end_year" => 2012 + ] + ], + 632722 => [ + [ + "address" => "杂多县", + "start_year" => "", + "end_year" => "" + ] + ], + 632723 => [ + [ + "address" => "称多县", + "start_year" => "", + "end_year" => "" + ] + ], + 632724 => [ + [ + "address" => "治多县", + "start_year" => "", + "end_year" => "" + ] + ], + 632725 => [ + [ + "address" => "囊谦县", + "start_year" => "", + "end_year" => "" + ] + ], + 632726 => [ + [ + "address" => "曲麻莱县", + "start_year" => "", + "end_year" => "" + ] + ], + 632800 => [ + [ + "address" => "海西蒙古族藏族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 632801 => [ + [ + "address" => "格尔木市", + "start_year" => "", + "end_year" => "" + ] + ], + 632802 => [ + [ + "address" => "德令哈市", + "start_year" => 1988, + "end_year" => "" + ] + ], + 632803 => [ + [ + "address" => "茫崖市", + "start_year" => 2018, + "end_year" => "" + ] + ], + 632821 => [ + [ + "address" => "乌兰县", + "start_year" => "", + "end_year" => "" + ] + ], + 632822 => [ + [ + "address" => "都兰县", + "start_year" => "", + "end_year" => "" + ] + ], + 632823 => [ + [ + "address" => "天峻县", + "start_year" => "", + "end_year" => "" + ] + ], + 640000 => [ + [ + "address" => "宁夏回族自治区", + "start_year" => "", + "end_year" => "" + ] + ], + 640100 => [ + [ + "address" => "银川市", + "start_year" => "", + "end_year" => "" + ] + ], + 640102 => [ + [ + "address" => "城区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 640103 => [ + [ + "address" => "新城区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 640104 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 2001 + ], + [ + "address" => "兴庆区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 640105 => [ + [ + "address" => "西夏区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 640106 => [ + [ + "address" => "金凤区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 640121 => [ + [ + "address" => "永宁县", + "start_year" => "", + "end_year" => "" + ] + ], + 640122 => [ + [ + "address" => "贺兰县", + "start_year" => "", + "end_year" => "" + ] + ], + 640181 => [ + [ + "address" => "灵武市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 640200 => [ + [ + "address" => "石咀山市", + "start_year" => "", + "end_year" => 1986 + ], + [ + "address" => "石嘴山市", + "start_year" => 1987, + "end_year" => "" + ] + ], + 640202 => [ + [ + "address" => "大武口区", + "start_year" => "", + "end_year" => "" + ] + ], + 640204 => [ + [ + "address" => "石炭井区", + "start_year" => "", + "end_year" => 2001 + ] + ], + 640205 => [ + [ + "address" => "石咀山区", + "start_year" => "", + "end_year" => 1986 + ], + [ + "address" => "石嘴山区", + "start_year" => 1987, + "end_year" => 2002 + ], + [ + "address" => "惠农区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 640211 => [ + [ + "address" => "郊区", + "start_year" => "", + "end_year" => 1986 + ] + ], + 640221 => [ + [ + "address" => "平罗县", + "start_year" => "", + "end_year" => "" + ] + ], + 640222 => [ + [ + "address" => "陶乐县", + "start_year" => "", + "end_year" => 2002 + ] + ], + 640223 => [ + [ + "address" => "惠农县", + "start_year" => 1987, + "end_year" => 2002 + ] + ], + 640300 => [ + [ + "address" => "吴忠市", + "start_year" => 1998, + "end_year" => "" + ] + ], + 640302 => [ + [ + "address" => "利通区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 640303 => [ + [ + "address" => "红寺堡区", + "start_year" => 2009, + "end_year" => "" + ] + ], + 640321 => [ + [ + "address" => "中卫县", + "start_year" => 1998, + "end_year" => 2002 + ] + ], + 640322 => [ + [ + "address" => "中宁县", + "start_year" => 1998, + "end_year" => 2002 + ] + ], + 640323 => [ + [ + "address" => "盐池县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 640324 => [ + [ + "address" => "同心县", + "start_year" => 1998, + "end_year" => "" + ] + ], + 640381 => [ + [ + "address" => "青铜峡市", + "start_year" => 1998, + "end_year" => "" + ] + ], + 640382 => [ + [ + "address" => "灵武市", + "start_year" => 1998, + "end_year" => 2001 + ] + ], + 640400 => [ + [ + "address" => "固原市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 640402 => [ + [ + "address" => "原州区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 640421 => [ + [ + "address" => "海原县", + "start_year" => 2001, + "end_year" => 2002 + ] + ], + 640422 => [ + [ + "address" => "西吉县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 640423 => [ + [ + "address" => "隆德县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 640424 => [ + [ + "address" => "泾源县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 640425 => [ + [ + "address" => "彭阳县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 640500 => [ + [ + "address" => "中卫市", + "start_year" => 2003, + "end_year" => "" + ] + ], + 640502 => [ + [ + "address" => "沙坡头区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 640521 => [ + [ + "address" => "中宁县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 640522 => [ + [ + "address" => "海原县", + "start_year" => 2003, + "end_year" => "" + ] + ], + 642100 => [ + [ + "address" => "银南地区", + "start_year" => "", + "end_year" => 1997 + ] + ], + 642101 => [ + [ + "address" => "吴忠市", + "start_year" => 1983, + "end_year" => 1997 + ] + ], + 642102 => [ + [ + "address" => "青铜峡市", + "start_year" => 1984, + "end_year" => 1997 + ] + ], + 642103 => [ + [ + "address" => "灵武市", + "start_year" => 1996, + "end_year" => 1997 + ] + ], + 642121 => [ + [ + "address" => "吴忠县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 642122 => [ + [ + "address" => "青铜峡县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 642123 => [ + [ + "address" => "中卫县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 642124 => [ + [ + "address" => "中宁县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 642125 => [ + [ + "address" => "灵武县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 642126 => [ + [ + "address" => "盐池县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 642127 => [ + [ + "address" => "同心县", + "start_year" => "", + "end_year" => 1997 + ] + ], + 642200 => [ + [ + "address" => "固原地区", + "start_year" => "", + "end_year" => 2000 + ] + ], + 642221 => [ + [ + "address" => "固原县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 642222 => [ + [ + "address" => "海原县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 642223 => [ + [ + "address" => "西吉县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 642224 => [ + [ + "address" => "隆德县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 642225 => [ + [ + "address" => "泾源县", + "start_year" => "", + "end_year" => 2000 + ] + ], + 642226 => [ + [ + "address" => "彭阳县", + "start_year" => 1983, + "end_year" => 2000 + ] + ], + 650000 => [ + [ + "address" => "新疆维吾尔自治区", + "start_year" => "", + "end_year" => "" + ] + ], + 650100 => [ + [ + "address" => "乌鲁木齐市", + "start_year" => "", + "end_year" => "" + ] + ], + 650102 => [ + [ + "address" => "天山区", + "start_year" => "", + "end_year" => "" + ] + ], + 650103 => [ + [ + "address" => "沙依巴克区", + "start_year" => "", + "end_year" => "" + ] + ], + 650104 => [ + [ + "address" => "新市区", + "start_year" => "", + "end_year" => "" + ] + ], + 650105 => [ + [ + "address" => "水磨沟区", + "start_year" => "", + "end_year" => "" + ] + ], + 650106 => [ + [ + "address" => "头屯河区", + "start_year" => "", + "end_year" => "" + ] + ], + 650107 => [ + [ + "address" => "南山区", + "start_year" => "", + "end_year" => 1988 + ], + [ + "address" => "南山矿区", + "start_year" => 1989, + "end_year" => 1998 + ], + [ + "address" => "南泉区", + "start_year" => 1999, + "end_year" => 2001 + ], + [ + "address" => "达坂城区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 650108 => [ + [ + "address" => "东山区", + "start_year" => 1987, + "end_year" => 2006 + ] + ], + 650109 => [ + [ + "address" => "米东区", + "start_year" => 2007, + "end_year" => "" + ] + ], + 650121 => [ + [ + "address" => "乌鲁木齐县", + "start_year" => "", + "end_year" => "" + ] + ], + 650200 => [ + [ + "address" => "克拉玛依市", + "start_year" => "", + "end_year" => "" + ] + ], + 650202 => [ + [ + "address" => "独山子区", + "start_year" => "", + "end_year" => "" + ] + ], + 650203 => [ + [ + "address" => "克拉玛依区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 650204 => [ + [ + "address" => "白碱滩区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 650205 => [ + [ + "address" => "乌尔禾区", + "start_year" => 1982, + "end_year" => "" + ] + ], + 650300 => [ + [ + "address" => "石河子市", + "start_year" => "", + "end_year" => 1984 + ] + ], + 650400 => [ + [ + "address" => "吐鲁番市", + "start_year" => 2015, + "end_year" => "" + ] + ], + 650402 => [ + [ + "address" => "高昌区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 650421 => [ + [ + "address" => "鄯善县", + "start_year" => 2015, + "end_year" => "" + ] + ], + 650422 => [ + [ + "address" => "托克逊县", + "start_year" => 2015, + "end_year" => "" + ] + ], + 650500 => [ + [ + "address" => "哈密市", + "start_year" => 2016, + "end_year" => "" + ] + ], + 650502 => [ + [ + "address" => "伊州区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 650521 => [ + [ + "address" => "巴里坤哈萨克自治县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 650522 => [ + [ + "address" => "伊吾县", + "start_year" => 2016, + "end_year" => "" + ] + ], + 652100 => [ + [ + "address" => "吐鲁番地区", + "start_year" => "", + "end_year" => 2014 + ] + ], + 652101 => [ + [ + "address" => "吐鲁番市", + "start_year" => 1984, + "end_year" => 2014 + ] + ], + 652121 => [ + [ + "address" => "吐鲁番县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652122 => [ + [ + "address" => "鄯善县", + "start_year" => "", + "end_year" => 2014 + ] + ], + 652123 => [ + [ + "address" => "托克逊县", + "start_year" => "", + "end_year" => 2014 + ] + ], + 652200 => [ + [ + "address" => "哈密地区", + "start_year" => "", + "end_year" => 2015 + ] + ], + 652201 => [ + [ + "address" => "哈密市", + "start_year" => "", + "end_year" => 2015 + ] + ], + 652221 => [ + [ + "address" => "哈密县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 652222 => [ + [ + "address" => "巴里坤哈萨克自治县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 652223 => [ + [ + "address" => "伊吾县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 652300 => [ + [ + "address" => "昌吉回族自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 652301 => [ + [ + "address" => "昌吉市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 652302 => [ + [ + "address" => "阜康市", + "start_year" => 1992, + "end_year" => "" + ] + ], + 652303 => [ + [ + "address" => "米泉市", + "start_year" => 1996, + "end_year" => 2006 + ] + ], + 652321 => [ + [ + "address" => "昌吉县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 652322 => [ + [ + "address" => "米泉县", + "start_year" => "", + "end_year" => 1995 + ] + ], + 652323 => [ + [ + "address" => "呼图壁县", + "start_year" => "", + "end_year" => "" + ] + ], + 652324 => [ + [ + "address" => "玛纳斯县", + "start_year" => "", + "end_year" => "" + ] + ], + 652325 => [ + [ + "address" => "奇台县", + "start_year" => "", + "end_year" => "" + ] + ], + 652326 => [ + [ + "address" => "阜康县", + "start_year" => "", + "end_year" => 1991 + ] + ], + 652327 => [ + [ + "address" => "吉木萨尔县", + "start_year" => "", + "end_year" => "" + ] + ], + 652328 => [ + [ + "address" => "木垒哈萨克自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 652400 => [ + [ + "address" => "伊犁哈萨克自治州", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652401 => [ + [ + "address" => "奎屯市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "伊宁市", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 652402 => [ + [ + "address" => "伊宁市", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "一区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 652403 => [ + [ + "address" => "一区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "二区", + "start_year" => 1982, + "end_year" => 1982 + ] + ], + 652404 => [ + [ + "address" => "二区", + "start_year" => "", + "end_year" => 1981 + ], + [ + "address" => "奎屯市", + "start_year" => 1982, + "end_year" => 1983 + ] + ], + 652421 => [ + [ + "address" => "伊宁县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652422 => [ + [ + "address" => "察布查尔锡伯自治县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652423 => [ + [ + "address" => "霍城县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652424 => [ + [ + "address" => "巩留县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652425 => [ + [ + "address" => "新源县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652426 => [ + [ + "address" => "昭苏县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652427 => [ + [ + "address" => "特克斯县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652428 => [ + [ + "address" => "尼勒克县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652500 => [ + [ + "address" => "塔城地区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652521 => [ + [ + "address" => "塔城县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652522 => [ + [ + "address" => "额敏县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652523 => [ + [ + "address" => "乌苏县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652524 => [ + [ + "address" => "沙湾县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652525 => [ + [ + "address" => "托里县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652526 => [ + [ + "address" => "裕民县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652527 => [ + [ + "address" => "和布克赛尔蒙古自治县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652600 => [ + [ + "address" => "阿勒泰地区", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652621 => [ + [ + "address" => "阿勒泰县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652622 => [ + [ + "address" => "布尔津县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652623 => [ + [ + "address" => "富蕴县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652624 => [ + [ + "address" => "福海县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652625 => [ + [ + "address" => "哈巴河县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652626 => [ + [ + "address" => "青河县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652627 => [ + [ + "address" => "吉木乃县", + "start_year" => "", + "end_year" => 1983 + ] + ], + 652700 => [ + [ + "address" => "博尔塔拉蒙古自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 652701 => [ + [ + "address" => "博乐市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 652702 => [ + [ + "address" => "阿拉山口市", + "start_year" => 2012, + "end_year" => "" + ] + ], + 652721 => [ + [ + "address" => "博乐县", + "start_year" => "", + "end_year" => 1984 + ] + ], + 652722 => [ + [ + "address" => "精河县", + "start_year" => "", + "end_year" => "" + ] + ], + 652723 => [ + [ + "address" => "温泉县", + "start_year" => "", + "end_year" => "" + ] + ], + 652800 => [ + [ + "address" => "巴音郭楞蒙古自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 652801 => [ + [ + "address" => "库尔勒市", + "start_year" => "", + "end_year" => "" + ] + ], + 652821 => [ + [ + "address" => "库尔勒县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 652822 => [ + [ + "address" => "轮台县", + "start_year" => "", + "end_year" => "" + ] + ], + 652823 => [ + [ + "address" => "尉犁县", + "start_year" => "", + "end_year" => "" + ] + ], + 652824 => [ + [ + "address" => "若羌县", + "start_year" => "", + "end_year" => "" + ] + ], + 652825 => [ + [ + "address" => "且末县", + "start_year" => "", + "end_year" => "" + ] + ], + 652826 => [ + [ + "address" => "焉耆回族自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 652827 => [ + [ + "address" => "和静县", + "start_year" => "", + "end_year" => "" + ] + ], + 652828 => [ + [ + "address" => "和硕县", + "start_year" => "", + "end_year" => "" + ] + ], + 652829 => [ + [ + "address" => "博湖县", + "start_year" => "", + "end_year" => "" + ] + ], + 652900 => [ + [ + "address" => "阿克苏地区", + "start_year" => "", + "end_year" => "" + ] + ], + 652901 => [ + [ + "address" => "阿克苏市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 652921 => [ + [ + "address" => "阿克苏县", + "start_year" => "", + "end_year" => 1982 + ] + ], + 652922 => [ + [ + "address" => "温宿县", + "start_year" => "", + "end_year" => "" + ] + ], + 652923 => [ + [ + "address" => "库车县", + "start_year" => "", + "end_year" => "" + ] + ], + 652924 => [ + [ + "address" => "沙雅县", + "start_year" => "", + "end_year" => "" + ] + ], + 652925 => [ + [ + "address" => "新和县", + "start_year" => "", + "end_year" => "" + ] + ], + 652926 => [ + [ + "address" => "拜城县", + "start_year" => "", + "end_year" => "" + ] + ], + 652927 => [ + [ + "address" => "乌什县", + "start_year" => "", + "end_year" => "" + ] + ], + 652928 => [ + [ + "address" => "阿瓦提县", + "start_year" => "", + "end_year" => "" + ] + ], + 652929 => [ + [ + "address" => "柯坪县", + "start_year" => "", + "end_year" => "" + ] + ], + 653000 => [ + [ + "address" => "克孜勒苏柯尔克孜自治州", + "start_year" => "", + "end_year" => "" + ] + ], + 653001 => [ + [ + "address" => "阿图什市", + "start_year" => 1986, + "end_year" => "" + ] + ], + 653021 => [ + [ + "address" => "阿图什县", + "start_year" => "", + "end_year" => 1985 + ] + ], + 653022 => [ + [ + "address" => "阿克陶县", + "start_year" => "", + "end_year" => "" + ] + ], + 653023 => [ + [ + "address" => "阿合奇县", + "start_year" => "", + "end_year" => "" + ] + ], + 653024 => [ + [ + "address" => "乌恰县", + "start_year" => "", + "end_year" => "" + ] + ], + 653100 => [ + [ + "address" => "喀什地区", + "start_year" => "", + "end_year" => "" + ] + ], + 653101 => [ + [ + "address" => "喀什市", + "start_year" => "", + "end_year" => "" + ] + ], + 653121 => [ + [ + "address" => "疏附县", + "start_year" => "", + "end_year" => "" + ] + ], + 653122 => [ + [ + "address" => "疏勒县", + "start_year" => "", + "end_year" => "" + ] + ], + 653123 => [ + [ + "address" => "英吉沙县", + "start_year" => "", + "end_year" => "" + ] + ], + 653124 => [ + [ + "address" => "泽普县", + "start_year" => "", + "end_year" => "" + ] + ], + 653125 => [ + [ + "address" => "莎车县", + "start_year" => "", + "end_year" => "" + ] + ], + 653126 => [ + [ + "address" => "叶城县", + "start_year" => "", + "end_year" => "" + ] + ], + 653127 => [ + [ + "address" => "麦盖提县", + "start_year" => "", + "end_year" => "" + ] + ], + 653128 => [ + [ + "address" => "岳普湖县", + "start_year" => "", + "end_year" => "" + ] + ], + 653129 => [ + [ + "address" => "伽师县", + "start_year" => "", + "end_year" => "" + ] + ], + 653130 => [ + [ + "address" => "巴楚县", + "start_year" => "", + "end_year" => "" + ] + ], + 653131 => [ + [ + "address" => "塔什库尔干塔吉克自治县", + "start_year" => "", + "end_year" => "" + ] + ], + 653200 => [ + [ + "address" => "和田地区", + "start_year" => "", + "end_year" => "" + ] + ], + 653201 => [ + [ + "address" => "和田市", + "start_year" => 1983, + "end_year" => "" + ] + ], + 653221 => [ + [ + "address" => "和田县", + "start_year" => "", + "end_year" => "" + ] + ], + 653222 => [ + [ + "address" => "墨玉县", + "start_year" => "", + "end_year" => "" + ] + ], + 653223 => [ + [ + "address" => "皮山县", + "start_year" => "", + "end_year" => "" + ] + ], + 653224 => [ + [ + "address" => "洛浦县", + "start_year" => "", + "end_year" => "" + ] + ], + 653225 => [ + [ + "address" => "策勒县", + "start_year" => "", + "end_year" => "" + ] + ], + 653226 => [ + [ + "address" => "于田县", + "start_year" => "", + "end_year" => "" + ] + ], + 653227 => [ + [ + "address" => "民丰县", + "start_year" => "", + "end_year" => "" + ] + ], + 654000 => [ + [ + "address" => "伊犁哈萨克自治州", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654001 => [ + [ + "address" => "奎屯市", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 654002 => [ + [ + "address" => "伊宁市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 654003 => [ + [ + "address" => "奎屯市", + "start_year" => 2001, + "end_year" => "" + ] + ], + 654004 => [ + [ + "address" => "霍尔果斯市", + "start_year" => 2014, + "end_year" => "" + ] + ], + 654021 => [ + [ + "address" => "伊宁县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 654022 => [ + [ + "address" => "察布查尔锡伯自治县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 654023 => [ + [ + "address" => "霍城县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 654024 => [ + [ + "address" => "巩留县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 654025 => [ + [ + "address" => "新源县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 654026 => [ + [ + "address" => "昭苏县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 654027 => [ + [ + "address" => "特克斯县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 654028 => [ + [ + "address" => "尼勒克县", + "start_year" => 2001, + "end_year" => "" + ] + ], + 654100 => [ + [ + "address" => "伊犁地区", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 654101 => [ + [ + "address" => "伊宁市", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 654121 => [ + [ + "address" => "伊宁县", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 654122 => [ + [ + "address" => "察布查尔锡伯自治县", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 654123 => [ + [ + "address" => "霍城县", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 654124 => [ + [ + "address" => "巩留县", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 654125 => [ + [ + "address" => "新源县", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 654126 => [ + [ + "address" => "昭苏县", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 654127 => [ + [ + "address" => "特克斯县", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 654128 => [ + [ + "address" => "尼勒克县", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 654200 => [ + [ + "address" => "塔城地区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654201 => [ + [ + "address" => "塔城市", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654202 => [ + [ + "address" => "乌苏市", + "start_year" => 1996, + "end_year" => "" + ] + ], + 654221 => [ + [ + "address" => "额敏县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654222 => [ + [ + "address" => "乌苏县", + "start_year" => 1984, + "end_year" => 1995 + ] + ], + 654223 => [ + [ + "address" => "沙湾县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654224 => [ + [ + "address" => "托里县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654225 => [ + [ + "address" => "裕民县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654226 => [ + [ + "address" => "和布克赛尔蒙古自治县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654300 => [ + [ + "address" => "阿勒泰地区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654301 => [ + [ + "address" => "阿勒泰市", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654321 => [ + [ + "address" => "布尔津县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654322 => [ + [ + "address" => "富蕴县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654323 => [ + [ + "address" => "福海县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654324 => [ + [ + "address" => "哈巴河县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654325 => [ + [ + "address" => "青河县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 654326 => [ + [ + "address" => "吉木乃县", + "start_year" => 1984, + "end_year" => "" + ] + ], + 659001 => [ + [ + "address" => "石河子市", + "start_year" => 1985, + "end_year" => "" + ] + ], + 659002 => [ + [ + "address" => "阿拉尔市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 659003 => [ + [ + "address" => "图木舒克市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 659004 => [ + [ + "address" => "五家渠市", + "start_year" => 2002, + "end_year" => "" + ] + ], + 659005 => [ + [ + "address" => "北屯市", + "start_year" => 2011, + "end_year" => "" + ] + ], + 659006 => [ + [ + "address" => "铁门关市", + "start_year" => 2012, + "end_year" => "" + ] + ], + 659007 => [ + [ + "address" => "双河市", + "start_year" => 2014, + "end_year" => "" + ] + ], + 659008 => [ + [ + "address" => "可克达拉市", + "start_year" => 2015, + "end_year" => "" + ] + ], + 659009 => [ + [ + "address" => "昆玉市", + "start_year" => 2016, + "end_year" => "" + ] + ], + 810000 => [ + [ + "address" => "香港特别行政区", + "start_year" => "", + "end_year" => "" + ] + ], + 820000 => [ + [ + "address" => "澳门特别行政区", + "start_year" => "", + "end_year" => "" + ] + ], + 830000 => [ + [ + "address" => "台湾省", + "start_year" => "", + "end_year" => "" + ] + ] +]; \ No newline at end of file From 32a473ba582aad42bb34eccc2e11cb05ee6e30a5 Mon Sep 17 00:00:00 2001 From: Xujian Chen Date: Wed, 6 Nov 2019 14:13:28 +0800 Subject: [PATCH 090/128] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=A0=A1=E9=AA=8C?= =?UTF-8?q?=E4=BD=8D=E5=88=A4=E6=96=ADbug=20(#42)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Generator.php | 4 ++-- tests/IdValidatorTest.php | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index a204971..48f3947 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -96,7 +96,7 @@ private function _generatorAddressCode($address) * * @param string $body 身份证号 body 部分 * - * @return int|string + * @return string */ private function _generatorCheckBit($body) { @@ -118,7 +118,7 @@ private function _generatorCheckBit($body) // 生成校验码 $checkBit = (12 - ($bodySum % 11)) % 11; - return $checkBit == 10 ? 'X' : $checkBit; + return $checkBit == 10 ? 'X' : (string) $checkBit; } /** diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 8363c7f..0b80c7d 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -30,6 +30,8 @@ public function testIsValid() $this->assertFalse($this->idValidator->isValid('440308199902301512')); // 出生日期码不合法 $this->assertFalse($this->idValidator->isValid('440308199901101513')); // 验证码不合法 $this->assertFalse($this->idValidator->isValid('610104620932690')); // 出生日期码不合法 + $this->assertFalse($this->idValidator->isValid('11010119900307867X')); // 校验位不合法 + $this->assertTrue($this->idValidator->isValid('110101199003078670')); $this->assertTrue($this->idValidator->isValid('440308199901101512')); $this->assertTrue($this->idValidator->isValid('500154199301135886')); $this->assertTrue($this->idValidator->isValid('610104620927690')); From 7144e47c2e9c7a04232584d98243c5e96de82bbe Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 5 Dec 2019 10:03:14 +0800 Subject: [PATCH 091/128] test on php 7.4 (#46) --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 1cbca83..fa86c0f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ php: - '7.1' - '7.2' - '7.3' + - '7.4' matrix: fast_finish: true From 78e6f5fd14b5a86f2350541f87370f991b0d07f0 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 3 Jan 2020 19:55:15 +0800 Subject: [PATCH 092/128] add tests --- tests/IdValidatorTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 0b80c7d..01a82e3 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -35,6 +35,8 @@ public function testIsValid() $this->assertTrue($this->idValidator->isValid('440308199901101512')); $this->assertTrue($this->idValidator->isValid('500154199301135886')); $this->assertTrue($this->idValidator->isValid('610104620927690')); + $this->assertTrue($this->idValidator->isValid('810000199408230021')); // 港澳居民居住证 18 位 + $this->assertTrue($this->idValidator->isValid('830000199201300022')); // 台湾居民居住证 18 位 } public function testFakeId() From e3ba5a894f25faf3d672ed9b194a562c931c526a Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 9 Mar 2020 19:03:14 +0800 Subject: [PATCH 093/128] =?UTF-8?q?=E5=9C=B0=E5=9D=80=E7=A0=81=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E8=87=B32020=E5=B9=B401=E6=9C=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/addressCode.php | 59 ++++----- data/addressCodeTimeline.php | 249 ++++++++++++++++++++++++++++++----- 2 files changed, 246 insertions(+), 62 deletions(-) diff --git a/data/addressCode.php b/data/addressCode.php index 4b70442..7406d5a 100644 --- a/data/addressCode.php +++ b/data/addressCode.php @@ -286,12 +286,12 @@ 140681 => "怀仁市", 140700 => "晋中市", 140702 => "榆次区", + 140703 => "太谷区", 140721 => "榆社县", 140722 => "左权县", 140723 => "和顺县", 140724 => "昔阳县", 140725 => "寿阳县", - 140726 => "太谷县", 140727 => "祁县", 140728 => "平遥县", 140729 => "灵石县", @@ -734,22 +734,15 @@ 230623 => "林甸县", 230624 => "杜尔伯特蒙古族自治县", 230700 => "伊春市", - 230702 => "伊春区", - 230703 => "南岔区", - 230704 => "友好区", - 230705 => "西林区", - 230706 => "翠峦区", - 230707 => "新青区", - 230708 => "美溪区", - 230709 => "金山屯区", - 230710 => "五营区", - 230711 => "乌马河区", - 230712 => "汤旺河区", - 230713 => "带岭区", - 230714 => "乌伊岭区", - 230715 => "红星区", - 230716 => "上甘岭区", + 230717 => "伊美区", + 230718 => "乌翠区", + 230719 => "友好区", 230722 => "嘉荫县", + 230723 => "汤旺县", + 230724 => "丰林县", + 230725 => "大箐山县", + 230726 => "南岔县", + 230751 => "金林区", 230781 => "铁力市", 230800 => "佳木斯市", 230803 => "向阳区", @@ -780,11 +773,11 @@ 231086 => "东宁市", 231100 => "黑河市", 231102 => "爱辉区", - 231121 => "嫩江县", 231123 => "逊克县", 231124 => "孙吴县", 231181 => "北安市", 231182 => "五大连池市", + 231183 => "嫩江市", 231200 => "绥化市", 231202 => "北林区", 231221 => "望奎县", @@ -965,6 +958,7 @@ 330329 => "泰顺县", 330381 => "瑞安市", 330382 => "乐清市", + 330383 => "龙港市", 330400 => "嘉兴市", 330402 => "南湖区", 330411 => "秀洲区", @@ -1047,7 +1041,7 @@ 340221 => "芜湖县", 340222 => "繁昌县", 340223 => "南陵县", - 340225 => "无为县", + 340281 => "无为市", 340300 => "蚌埠市", 340302 => "龙子湖区", 340303 => "蚌山区", @@ -1145,11 +1139,11 @@ 341800 => "宣城市", 341802 => "宣州区", 341821 => "郎溪县", - 341822 => "广德县", 341823 => "泾县", 341824 => "绩溪县", 341825 => "旌德县", 341881 => "宁国市", + 341882 => "广德市", 350000 => "福建省", 350100 => "福州市", 350102 => "鼓楼区", @@ -1250,9 +1244,9 @@ 360102 => "东湖区", 360103 => "西湖区", 360104 => "青云谱区", - 360105 => "湾里区", 360111 => "青山湖区", 360112 => "新建区", + 360113 => "红谷滩区", 360121 => "南昌县", 360123 => "安义县", 360124 => "进贤县", @@ -1347,7 +1341,7 @@ 361100 => "上饶市", 361102 => "信州区", 361103 => "广丰区", - 361121 => "上饶县", + 361104 => "广信区", 361123 => "玉山县", 361124 => "铅山县", 361125 => "横峰县", @@ -1486,9 +1480,9 @@ 371482 => "禹城市", 371500 => "聊城市", 371502 => "东昌府区", + 371503 => "茌平区", 371521 => "阳谷县", 371522 => "莘县", - 371523 => "茌平县", 371524 => "东阿县", 371525 => "冠县", 371526 => "高唐县", @@ -1588,9 +1582,9 @@ 410725 => "原阳县", 410726 => "延津县", 410727 => "封丘县", - 410728 => "长垣县", 410781 => "卫辉市", 410782 => "辉县市", + 410783 => "长垣市", 410800 => "焦作市", 410802 => "解放区", 410803 => "中站区", @@ -1666,12 +1660,12 @@ 411528 => "息县", 411600 => "周口市", 411602 => "川汇区", + 411603 => "淮阳区", 411621 => "扶沟县", 411622 => "西华县", 411623 => "商水县", 411624 => "沈丘县", 411625 => "郸城县", - 411626 => "淮阳县", 411627 => "太康县", 411628 => "鹿邑县", 411681 => "项城市", @@ -1848,7 +1842,6 @@ 430502 => "双清区", 430503 => "大祥区", 430511 => "北塔区", - 430521 => "邵东县", 430522 => "新邵县", 430523 => "邵阳县", 430524 => "隆回县", @@ -1857,6 +1850,7 @@ 430528 => "新宁县", 430529 => "城步苗族自治县", 430581 => "武冈市", + 430582 => "邵东市", 430600 => "岳阳市", 430602 => "岳阳楼区", 430603 => "云溪区", @@ -2167,9 +2161,8 @@ 450981 => "北流市", 451000 => "百色市", 451002 => "右江区", - 451021 => "田阳县", + 451003 => "田阳区", 451022 => "田东县", - 451023 => "平果县", 451024 => "德保县", 451026 => "那坡县", 451027 => "凌云县", @@ -2178,6 +2171,7 @@ 451030 => "西林县", 451031 => "隆林各族自治县", 451081 => "靖西市", + 451082 => "平果市", 451100 => "贺州市", 451102 => "八步区", 451103 => "平桂区", @@ -2350,8 +2344,8 @@ 510903 => "船山区", 510904 => "安居区", 510921 => "蓬溪县", - 510922 => "射洪县", 510923 => "大英县", + 510981 => "射洪市", 511000 => "内江市", 511002 => "市中区", 511011 => "东兴区", @@ -2610,13 +2604,13 @@ 530400 => "玉溪市", 530402 => "红塔区", 530403 => "江川区", - 530422 => "澄江县", 530423 => "通海县", 530424 => "华宁县", 530425 => "易门县", 530426 => "峨山彝族自治县", 530427 => "新平彝族傣族自治县", 530428 => "元江哈尼族彝族傣族自治县", + 530481 => "澄江市", 530500 => "保山市", 530502 => "隆阳区", 530521 => "施甸县", @@ -2874,7 +2868,6 @@ 610603 => "安塞区", 610621 => "延长县", 610622 => "延川县", - 610623 => "子长县", 610625 => "志丹县", 610626 => "吴起县", 610627 => "甘泉县", @@ -2883,6 +2876,7 @@ 610630 => "宜川县", 610631 => "黄龙县", 610632 => "黄陵县", + 610681 => "子长市", 610700 => "汉中市", 610702 => "汉台区", 610703 => "南郑区", @@ -3034,8 +3028,8 @@ 630103 => "城中区", 630104 => "城西区", 630105 => "城北区", + 630106 => "湟中区", 630121 => "大通回族土族自治县", - 630122 => "湟中县", 630123 => "湟源县", 630200 => "海东市", 630202 => "乐都区", @@ -3157,8 +3151,8 @@ 652829 => "博湖县", 652900 => "阿克苏地区", 652901 => "阿克苏市", + 652902 => "库车市", 652922 => "温宿县", - 652923 => "库车县", 652924 => "沙雅县", 652925 => "新和县", 652926 => "拜城县", @@ -3229,6 +3223,7 @@ 659007 => "双河市", 659008 => "可克达拉市", 659009 => "昆玉市", + 659010 => "胡杨河市", 810000 => "香港特别行政区", 820000 => "澳门特别行政区", 830000 => "台湾省" diff --git a/data/addressCodeTimeline.php b/data/addressCodeTimeline.php index 8c43fdb..0996685 100644 --- a/data/addressCodeTimeline.php +++ b/data/addressCodeTimeline.php @@ -4203,6 +4203,13 @@ "end_year" => "" ] ], + 140703 => [ + [ + "address" => "太谷区", + "start_year" => 2019, + "end_year" => "" + ] + ], 140721 => [ [ "address" => "榆社县", @@ -4242,7 +4249,7 @@ [ "address" => "太谷县", "start_year" => 1999, - "end_year" => "" + "end_year" => 2018 ] ], 140727 => [ @@ -10968,49 +10975,49 @@ [ "address" => "伊春区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 230703 => [ [ "address" => "南岔区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 230704 => [ [ "address" => "友好区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 230705 => [ [ "address" => "西林区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 230706 => [ [ "address" => "翠峦区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 230707 => [ [ "address" => "新青区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 230708 => [ [ "address" => "美溪区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 230709 => [ @@ -11022,14 +11029,14 @@ [ "address" => "金山屯区", "start_year" => 1984, - "end_year" => "" + "end_year" => 2018 ] ], 230710 => [ [ "address" => "五营区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 230711 => [ @@ -11041,7 +11048,7 @@ [ "address" => "乌马河区", "start_year" => 1984, - "end_year" => "" + "end_year" => 2018 ] ], 230712 => [ @@ -11053,34 +11060,55 @@ [ "address" => "汤旺河区", "start_year" => 1984, - "end_year" => "" + "end_year" => 2018 ] ], 230713 => [ [ "address" => "带岭区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 230714 => [ [ "address" => "乌伊岭区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 230715 => [ [ "address" => "红星区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 230716 => [ [ "address" => "上甘岭区", "start_year" => "", + "end_year" => 2018 + ] + ], + 230717 => [ + [ + "address" => "伊美区", + "start_year" => 2019, + "end_year" => "" + ] + ], + 230718 => [ + [ + "address" => "乌翠区", + "start_year" => 2019, + "end_year" => "" + ] + ], + 230719 => [ + [ + "address" => "友好区", + "start_year" => 2019, "end_year" => "" ] ], @@ -11098,6 +11126,41 @@ "end_year" => "" ] ], + 230723 => [ + [ + "address" => "汤旺县", + "start_year" => 2019, + "end_year" => "" + ] + ], + 230724 => [ + [ + "address" => "丰林县", + "start_year" => 2019, + "end_year" => "" + ] + ], + 230725 => [ + [ + "address" => "大箐山县", + "start_year" => 2019, + "end_year" => "" + ] + ], + 230726 => [ + [ + "address" => "南岔县", + "start_year" => 2019, + "end_year" => "" + ] + ], + 230751 => [ + [ + "address" => "金林区", + "start_year" => 2019, + "end_year" => "" + ] + ], 230781 => [ [ "address" => "铁力市", @@ -11466,7 +11529,7 @@ [ "address" => "嫩江县", "start_year" => 1993, - "end_year" => "" + "end_year" => 2018 ] ], 231122 => [ @@ -11504,6 +11567,13 @@ "end_year" => "" ] ], + 231183 => [ + [ + "address" => "嫩江市", + "start_year" => 2019, + "end_year" => "" + ] + ], 231200 => [ [ "address" => "绥化市", @@ -15637,6 +15707,13 @@ "end_year" => "" ] ], + 330383 => [ + [ + "address" => "龙港市", + "start_year" => 2019, + "end_year" => "" + ] + ], 330400 => [ [ "address" => "嘉兴市", @@ -17382,6 +17459,13 @@ [ "address" => "无为县", "start_year" => 2011, + "end_year" => 2018 + ] + ], + 340281 => [ + [ + "address" => "无为市", + "start_year" => 2019, "end_year" => "" ] ], @@ -18268,7 +18352,7 @@ [ "address" => "广德县", "start_year" => 2000, - "end_year" => "" + "end_year" => 2018 ] ], 341823 => [ @@ -18299,6 +18383,13 @@ "end_year" => "" ] ], + 341882 => [ + [ + "address" => "广德市", + "start_year" => 2019, + "end_year" => "" + ] + ], 342100 => [ [ "address" => "阜阳地区", @@ -20800,7 +20891,7 @@ [ "address" => "湾里区", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 360111 => [ @@ -20822,6 +20913,13 @@ "end_year" => "" ] ], + 360113 => [ + [ + "address" => "红谷滩区", + "start_year" => 2019, + "end_year" => "" + ] + ], 360121 => [ [ "address" => "新建县", @@ -21610,11 +21708,18 @@ "end_year" => "" ] ], + 361104 => [ + [ + "address" => "广信区", + "start_year" => 2019, + "end_year" => "" + ] + ], 361121 => [ [ "address" => "上饶县", "start_year" => 2000, - "end_year" => "" + "end_year" => 2018 ] ], 361122 => [ @@ -24187,6 +24292,13 @@ "end_year" => "" ] ], + 371503 => [ + [ + "address" => "茌平区", + "start_year" => 2019, + "end_year" => "" + ] + ], 371521 => [ [ "address" => "阳谷县", @@ -24205,7 +24317,7 @@ [ "address" => "茌平县", "start_year" => 1997, - "end_year" => "" + "end_year" => 2018 ] ], 371524 => [ @@ -26311,7 +26423,7 @@ [ "address" => "长垣县", "start_year" => 1986, - "end_year" => "" + "end_year" => 2018 ] ], 410781 => [ @@ -26328,6 +26440,13 @@ "end_year" => "" ] ], + 410783 => [ + [ + "address" => "长垣市", + "start_year" => 2019, + "end_year" => "" + ] + ], 410800 => [ [ "address" => "焦作市", @@ -26961,6 +27080,13 @@ "end_year" => "" ] ], + 411603 => [ + [ + "address" => "淮阳区", + "start_year" => 2019, + "end_year" => "" + ] + ], 411621 => [ [ "address" => "扶沟县", @@ -27000,7 +27126,7 @@ [ "address" => "淮阳县", "start_year" => 2000, - "end_year" => "" + "end_year" => 2018 ] ], 411627 => [ @@ -30670,7 +30796,7 @@ [ "address" => "邵东县", "start_year" => 1984, - "end_year" => "" + "end_year" => 2018 ] ], 430522 => [ @@ -30766,6 +30892,13 @@ "end_year" => "" ] ], + 430582 => [ + [ + "address" => "邵东市", + "start_year" => 2019, + "end_year" => "" + ] + ], 430600 => [ [ "address" => "岳阳市", @@ -35823,11 +35956,18 @@ "end_year" => "" ] ], + 451003 => [ + [ + "address" => "田阳区", + "start_year" => 2019, + "end_year" => "" + ] + ], 451021 => [ [ "address" => "田阳县", "start_year" => 2002, - "end_year" => "" + "end_year" => 2018 ] ], 451022 => [ @@ -35841,7 +35981,7 @@ [ "address" => "平果县", "start_year" => 2002, - "end_year" => "" + "end_year" => 2018 ] ], 451024 => [ @@ -35907,6 +36047,13 @@ "end_year" => "" ] ], + 451082 => [ + [ + "address" => "平果市", + "start_year" => 2019, + "end_year" => "" + ] + ], 451100 => [ [ "address" => "贺州市", @@ -38558,7 +38705,7 @@ [ "address" => "射洪县", "start_year" => 1985, - "end_year" => "" + "end_year" => 2018 ] ], 510923 => [ @@ -38568,6 +38715,13 @@ "end_year" => "" ] ], + 510981 => [ + [ + "address" => "射洪市", + "start_year" => 2019, + "end_year" => "" + ] + ], 511000 => [ [ "address" => "内江市", @@ -43616,7 +43770,7 @@ [ "address" => "澄江县", "start_year" => 1997, - "end_year" => "" + "end_year" => 2018 ] ], 530423 => [ @@ -43661,6 +43815,13 @@ "end_year" => "" ] ], + 530481 => [ + [ + "address" => "澄江市", + "start_year" => 2019, + "end_year" => "" + ] + ], 530500 => [ [ "address" => "保山市", @@ -46895,7 +47056,7 @@ [ "address" => "子长县", "start_year" => 1996, - "end_year" => "" + "end_year" => 2018 ] ], 610624 => [ @@ -46966,6 +47127,13 @@ "end_year" => "" ] ], + 610681 => [ + [ + "address" => "子长市", + "start_year" => 2019, + "end_year" => "" + ] + ], 610700 => [ [ "address" => "汉中市", @@ -49305,6 +49473,13 @@ "end_year" => "" ] ], + 630106 => [ + [ + "address" => "湟中区", + "start_year" => 2019, + "end_year" => "" + ] + ], 630111 => [ [ "address" => "郊区", @@ -49328,7 +49503,7 @@ [ "address" => "湟中县", "start_year" => 1999, - "end_year" => "" + "end_year" => 2018 ] ], 630123 => [ @@ -50847,6 +51022,13 @@ "end_year" => "" ] ], + 652902 => [ + [ + "address" => "库车市", + "start_year" => 2019, + "end_year" => "" + ] + ], 652921 => [ [ "address" => "阿克苏县", @@ -50865,7 +51047,7 @@ [ "address" => "库车县", "start_year" => "", - "end_year" => "" + "end_year" => 2018 ] ], 652924 => [ @@ -51449,6 +51631,13 @@ "end_year" => "" ] ], + 659010 => [ + [ + "address" => "胡杨河市", + "start_year" => 2019, + "end_year" => "" + ] + ], 810000 => [ [ "address" => "香港特别行政区", From 5e294d2e9d27b8ba51ba1f386f839d37770fa10e Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 9 Mar 2020 19:15:18 +0800 Subject: [PATCH 094/128] Apply fixes from StyleCI (#47) --- src/IdValidator.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/IdValidator.php b/src/IdValidator.php index 3ff821d..2d6afc5 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -7,8 +7,9 @@ */ class IdValidator { - use Helper, Generator, Checker; - + use Helper; + use Generator; + use Checker; private $_addressCodeList = []; // 现行地址码数据 private $_addressCodeTimeline = []; // 地址码变更时间线 From 38177a16b70b8284a6518c39b11d436b5fead1c5 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 9 Sep 2020 21:31:43 +0800 Subject: [PATCH 095/128] test on php 8 (#49) --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index fa86c0f..8899d05 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ php: - '7.2' - '7.3' - '7.4' + - 'master' matrix: fast_finish: true From e468c62c0cc09867426c1fb0f8467ca157a3b6f7 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 29 Sep 2020 17:25:34 +0800 Subject: [PATCH 096/128] =?UTF-8?q?=E5=9C=B0=E5=9D=80=E7=A0=81=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E8=87=B32020=E5=B9=B408=E6=9C=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/addressCode.php | 19 +++++----- data/addressCodeTimeline.php | 68 +++++++++++++++++++++++++++++++----- 2 files changed, 69 insertions(+), 18 deletions(-) diff --git a/data/addressCode.php b/data/addressCode.php index 7406d5a..d0fd3f6 100644 --- a/data/addressCode.php +++ b/data/addressCode.php @@ -115,15 +115,14 @@ 130435 => "曲周县", 130481 => "武安市", 130500 => "邢台市", - 130502 => "桥东区", - 130503 => "桥西区", - 130521 => "邢台县", + 130502 => "襄都区", + 130503 => "信都区", + 130505 => "任泽区", + 130506 => "南和区", 130522 => "临城县", 130523 => "内丘县", 130524 => "柏乡县", 130525 => "隆尧县", - 130526 => "任县", - 130527 => "南和县", 130528 => "宁晋县", 130529 => "巨鹿县", 130530 => "新河县", @@ -600,6 +599,7 @@ 220122 => "农安县", 220182 => "榆树市", 220183 => "德惠市", + 220184 => "公主岭市", 220200 => "吉林市", 220202 => "昌邑区", 220203 => "龙潭区", @@ -615,7 +615,6 @@ 220303 => "铁东区", 220322 => "梨树县", 220323 => "伊通满族自治县", - 220381 => "公主岭市", 220382 => "双辽市", 220400 => "辽源市", 220402 => "龙山区", @@ -1291,7 +1290,6 @@ 360724 => "上犹县", 360725 => "崇义县", 360726 => "安远县", - 360727 => "龙南县", 360728 => "定南县", 360729 => "全南县", 360730 => "宁都县", @@ -1301,6 +1299,7 @@ 360734 => "寻乌县", 360735 => "石城县", 360781 => "瑞金市", + 360783 => "龙南市", 360800 => "吉安市", 360802 => "吉州区", 360803 => "青原区", @@ -2285,10 +2284,10 @@ 510115 => "温江区", 510116 => "双流区", 510117 => "郫都区", + 510118 => "新津区", 510121 => "金堂县", 510129 => "大邑县", 510131 => "蒲江县", - 510132 => "新津县", 510181 => "都江堰市", 510182 => "彭州市", 510183 => "邛崃市", @@ -3044,7 +3043,7 @@ 632223 => "海晏县", 632224 => "刚察县", 632300 => "黄南藏族自治州", - 632321 => "同仁县", + 632301 => "同仁市", 632322 => "尖扎县", 632323 => "泽库县", 632324 => "河南蒙古族自治县", @@ -3227,4 +3226,4 @@ 810000 => "香港特别行政区", 820000 => "澳门特别行政区", 830000 => "台湾省" -]; \ No newline at end of file +]; diff --git a/data/addressCodeTimeline.php b/data/addressCodeTimeline.php index 0996685..c245a83 100644 --- a/data/addressCodeTimeline.php +++ b/data/addressCodeTimeline.php @@ -1180,6 +1180,11 @@ [ "address" => "桥东区", "start_year" => 1983, + "end_year" => 2019 + ], + [ + "address" => "襄都区", + "start_year" => 2020, "end_year" => "" ] ], @@ -1187,6 +1192,11 @@ [ "address" => "桥西区", "start_year" => 1983, + "end_year" => 2019 + ], + [ + "address" => "信都区", + "start_year" => 2020, "end_year" => "" ] ], @@ -1197,11 +1207,25 @@ "end_year" => 1987 ] ], + 130505 => [ + [ + "address" => "任泽区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 130506 => [ + [ + "address" => "南和区", + "start_year" => 2020, + "end_year" => "" + ] + ], 130521 => [ [ "address" => "邢台县", "start_year" => 1986, - "end_year" => "" + "end_year" => 2019 ] ], 130522 => [ @@ -1236,14 +1260,14 @@ [ "address" => "任县", "start_year" => 1993, - "end_year" => "" + "end_year" => 2019 ] ], 130527 => [ [ "address" => "南和县", "start_year" => 1993, - "end_year" => "" + "end_year" => 2019 ] ], 130528 => [ @@ -9243,6 +9267,13 @@ "end_year" => "" ] ], + 220184 => [ + [ + "address" => "公主岭市", + "start_year" => 2020, + "end_year" => "" + ] + ], 220200 => [ [ "address" => "吉林市", @@ -9433,7 +9464,7 @@ [ "address" => "公主岭市", "start_year" => 1995, - "end_year" => "" + "end_year" => 2019 ] ], 220382 => [ @@ -21348,7 +21379,7 @@ [ "address" => "龙南县", "start_year" => 1998, - "end_year" => "" + "end_year" => 2019 ] ], 360728 => [ @@ -21421,6 +21452,13 @@ "end_year" => 2012 ] ], + 360783 => [ + [ + "address" => "龙南市", + "start_year" => 2020, + "end_year" => "" + ] + ], 360800 => [ [ "address" => "吉安市", @@ -37926,6 +37964,13 @@ "end_year" => "" ] ], + 510118 => [ + [ + "address" => "新津区", + "start_year" => 2020, + "end_year" => "" + ] + ], 510121 => [ [ "address" => "金堂县", @@ -38007,7 +38052,7 @@ [ "address" => "新津县", "start_year" => 1983, - "end_year" => "" + "end_year" => 2019 ] ], 510181 => [ @@ -49679,11 +49724,18 @@ "end_year" => "" ] ], + 632301 => [ + [ + "address" => "同仁市", + "start_year" => 2020, + "end_year" => "" + ] + ], 632321 => [ [ "address" => "同仁县", "start_year" => "", - "end_year" => "" + "end_year" => 2019 ] ], 632322 => [ @@ -51659,4 +51711,4 @@ "end_year" => "" ] ] -]; \ No newline at end of file +]; From 868ab2f5da1167dca76fa8e1a45878948957aa3a Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 30 Sep 2020 09:12:58 +0800 Subject: [PATCH 097/128] fix test error --- .phpunit.result.cache | 1 + composer.json | 2 +- tests/IdValidatorTest.php | 74 ++++++++++++++++++--------------------- 3 files changed, 36 insertions(+), 41 deletions(-) create mode 100644 .phpunit.result.cache diff --git a/.phpunit.result.cache b/.phpunit.result.cache new file mode 100644 index 0000000..5fd2210 --- /dev/null +++ b/.phpunit.result.cache @@ -0,0 +1 @@ +C:37:"PHPUnit\Runner\DefaultTestResultCache":320:{a:2:{s:7:"defects";a:0:{}s:5:"times";a:4:{s:53:"Jxlwqq\IdValidator\Tests\IdValidatorTest::testIsValid";d:0.023;s:52:"Jxlwqq\IdValidator\Tests\IdValidatorTest::testFakeId";d:0.024;s:53:"Jxlwqq\IdValidator\Tests\IdValidatorTest::testGetInfo";d:0.02;s:55:"Jxlwqq\IdValidator\Tests\IdValidatorTest::testUpgradeId";d:0.021;}}} \ No newline at end of file diff --git a/composer.json b/composer.json index 3ffb132..cc6b204 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ } }, "require-dev": { - "phpunit/phpunit": "^5.6" + "phpunit/phpunit": ">=5.6" }, "scripts": { "test": "./vendor/bin/phpunit" diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 01a82e3..4cea6ae 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -13,48 +13,41 @@ class IdValidatorTest extends TestCase { - /** - * @var \Jxlwqq\IdValidator\IdValidator - */ - private $idValidator; - - protected function setUp() - { - $this->idValidator = new IdValidator(); - } - public function testIsValid() { - $this->assertFalse($this->idValidator->isValid('44030819990110')); // 号码位数不合法 - $this->assertFalse($this->idValidator->isValid('111111199901101512')); // 地址码不合法 - $this->assertFalse($this->idValidator->isValid('440308199902301512')); // 出生日期码不合法 - $this->assertFalse($this->idValidator->isValid('440308199901101513')); // 验证码不合法 - $this->assertFalse($this->idValidator->isValid('610104620932690')); // 出生日期码不合法 - $this->assertFalse($this->idValidator->isValid('11010119900307867X')); // 校验位不合法 - $this->assertTrue($this->idValidator->isValid('110101199003078670')); - $this->assertTrue($this->idValidator->isValid('440308199901101512')); - $this->assertTrue($this->idValidator->isValid('500154199301135886')); - $this->assertTrue($this->idValidator->isValid('610104620927690')); - $this->assertTrue($this->idValidator->isValid('810000199408230021')); // 港澳居民居住证 18 位 - $this->assertTrue($this->idValidator->isValid('830000199201300022')); // 台湾居民居住证 18 位 + $idValidator = new IdValidator(); + $this->assertFalse($idValidator->isValid('44030819990110')); // 号码位数不合法 + $this->assertFalse($idValidator->isValid('111111199901101512')); // 地址码不合法 + $this->assertFalse($idValidator->isValid('440308199902301512')); // 出生日期码不合法 + $this->assertFalse($idValidator->isValid('440308199901101513')); // 验证码不合法 + $this->assertFalse($idValidator->isValid('610104620932690')); // 出生日期码不合法 + $this->assertFalse($idValidator->isValid('11010119900307867X')); // 校验位不合法 + $this->assertTrue($idValidator->isValid('110101199003078670')); + $this->assertTrue($idValidator->isValid('440308199901101512')); + $this->assertTrue($idValidator->isValid('500154199301135886')); + $this->assertTrue($idValidator->isValid('610104620927690')); + $this->assertTrue($idValidator->isValid('810000199408230021')); // 港澳居民居住证 18 位 + $this->assertTrue($idValidator->isValid('830000199201300022')); // 台湾居民居住证 18 位 } public function testFakeId() { - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId())); - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(false))); - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '上海市', '2000', 1))); - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '黄浦区', '2001', 0))); - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '江苏省', '200001', 1))); - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '南京市', '2002', 0))); - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '秦淮区', '2003', 0))); - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '台湾省', '20181010', 0))); - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '香港特别行政区', '20181010', 1))); - $this->assertTrue($this->idValidator->isValid($this->idValidator->fakeId(true, '澳门特别行政区', '20181111', 0))); + $idValidator = new IdValidator(); + $this->assertTrue($idValidator->isValid($idValidator->fakeId())); + $this->assertTrue($idValidator->isValid($idValidator->fakeId(false))); + $this->assertTrue($idValidator->isValid($idValidator->fakeId(true, '上海市', '2000', 1))); + $this->assertTrue($idValidator->isValid($idValidator->fakeId(true, '黄浦区', '2001', 0))); + $this->assertTrue($idValidator->isValid($idValidator->fakeId(true, '江苏省', '200001', 1))); + $this->assertTrue($idValidator->isValid($idValidator->fakeId(true, '南京市', '2002', 0))); + $this->assertTrue($idValidator->isValid($idValidator->fakeId(true, '秦淮区', '2003', 0))); + $this->assertTrue($idValidator->isValid($idValidator->fakeId(true, '台湾省', '20181010', 0))); + $this->assertTrue($idValidator->isValid($idValidator->fakeId(true, '香港特别行政区', '20181010', 1))); + $this->assertTrue($idValidator->isValid($idValidator->fakeId(true, '澳门特别行政区', '20181111', 0))); } public function testGetInfo() { + $idValidator = new IdValidator(); $this->assertEquals( [ 'addressCode' => '440308', @@ -67,7 +60,7 @@ public function testGetInfo() 'sex' => 1, 'length' => 18, 'checkBit' => '2', ], - $this->idValidator->getInfo('440308199901101512') + $idValidator->getInfo('440308199901101512') ); $this->assertEquals( @@ -83,7 +76,7 @@ public function testGetInfo() 'length' => 18, 'checkBit' => '4', ], - $this->idValidator->getInfo('362324198001010014') + $idValidator->getInfo('362324198001010014') ); $this->assertEquals( @@ -98,7 +91,7 @@ public function testGetInfo() 'sex' => 1, 'length' => 18, 'checkBit' => '1', ], - $this->idValidator->getInfo('362324198101010011') + $idValidator->getInfo('362324198101010011') ); $this->assertEquals( @@ -114,10 +107,10 @@ public function testGetInfo() 'length' => 18, 'checkBit' => '9', ], - $this->idValidator->getInfo('362324198201010019') + $idValidator->getInfo('362324198201010019') ); - $this->assertFalse($this->idValidator->isValid('440308199901101513')); + $this->assertFalse($idValidator->isValid('440308199901101513')); $this->assertEquals( [ @@ -131,13 +124,14 @@ public function testGetInfo() 'sex' => 0, 'length' => 15, 'checkBit' => '', ], - $this->idValidator->getInfo('610104620927690') + $idValidator->getInfo('610104620927690') ); - $this->assertFalse($this->idValidator->isValid('610104620932690')); + $this->assertFalse($idValidator->isValid('610104620932690')); } public function testUpgradeId() { - $this->assertEquals('610104196209276908', $this->idValidator->upgradeId('610104620927690')); + $idValidator = new IdValidator(); + $this->assertEquals('610104196209276908', $idValidator->upgradeId('610104620927690')); } } From e179cd3308b23b2b89c968fc83f9df9cca601701 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 7 Dec 2020 18:29:13 +0800 Subject: [PATCH 098/128] test on php 8 (#50) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8899d05..6c03d11 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ php: - '7.2' - '7.3' - '7.4' - - 'master' + - '8.0' matrix: fast_finish: true From 76b734d1018ac8679629dc7f593189e22879cfdf Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 15 Jan 2021 11:42:39 +0800 Subject: [PATCH 099/128] fix error --- .gitignore | 1 + .phpunit.result.cache | 1 - src/Helper.php | 4 +++- tests/IdValidatorTest.php | 15 +++++++++++++++ 4 files changed, 19 insertions(+), 2 deletions(-) delete mode 100644 .phpunit.result.cache diff --git a/.gitignore b/.gitignore index 86cea2c..231d4dc 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /vendor/ /composer.lock /.php_cs.cache +.phpunit.result.cache diff --git a/.phpunit.result.cache b/.phpunit.result.cache deleted file mode 100644 index 5fd2210..0000000 --- a/.phpunit.result.cache +++ /dev/null @@ -1 +0,0 @@ -C:37:"PHPUnit\Runner\DefaultTestResultCache":320:{a:2:{s:7:"defects";a:0:{}s:5:"times";a:4:{s:53:"Jxlwqq\IdValidator\Tests\IdValidatorTest::testIsValid";d:0.023;s:52:"Jxlwqq\IdValidator\Tests\IdValidatorTest::testFakeId";d:0.024;s:53:"Jxlwqq\IdValidator\Tests\IdValidatorTest::testGetInfo";d:0.02;s:55:"Jxlwqq\IdValidator\Tests\IdValidatorTest::testUpgradeId";d:0.021;}}} \ No newline at end of file diff --git a/src/Helper.php b/src/Helper.php index 60ddfac..25a8b17 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -59,7 +59,9 @@ private function _getAddress($addressCode, $birthdayCode) $timeline = $this->_addressCodeTimeline[$addressCode]; $year = substr($birthdayCode, 0, 4); foreach ($timeline as $key => $val) { - if (($key == 0 && $year < $val['start_year']) || $year >= $val['start_year']) { + $start_year = $val['start_year'] != "" ? $val['start_year'] : '0001'; + $end_year = $val['end_year'] != "" ? $val['end_year'] : '9999'; + if ($year >= $start_year and $year <= $end_year) { $address = $val['address']; } } diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 4cea6ae..11827a7 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -127,6 +127,21 @@ public function testGetInfo() $idValidator->getInfo('610104620927690') ); $this->assertFalse($idValidator->isValid('610104620932690')); + + $this->assertEquals( + [ + 'addressCode' => '430302', + 'abandoned' => 0, + 'address' => '湖南省湘潭市雨湖区', + 'addressTree' => ['湖南省', '湘潭市', '雨湖区'], + 'birthdayCode' => '1993-12-19', + 'constellation' => '射手座', + 'chineseZodiac' => '酉鸡', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '9',], + $idValidator->getInfo('430302199312194239') + ); } public function testUpgradeId() From 1e96e85efb6721430bf2922edd95a5e919229447 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 15 Jan 2021 11:49:15 +0800 Subject: [PATCH 100/128] Apply fixes from StyleCI (#51) Co-authored-by: jxlwqq --- src/Helper.php | 4 ++-- tests/IdValidatorTest.php | 22 +++++++++++----------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 25a8b17..2b535fc 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -59,8 +59,8 @@ private function _getAddress($addressCode, $birthdayCode) $timeline = $this->_addressCodeTimeline[$addressCode]; $year = substr($birthdayCode, 0, 4); foreach ($timeline as $key => $val) { - $start_year = $val['start_year'] != "" ? $val['start_year'] : '0001'; - $end_year = $val['end_year'] != "" ? $val['end_year'] : '9999'; + $start_year = $val['start_year'] != '' ? $val['start_year'] : '0001'; + $end_year = $val['end_year'] != '' ? $val['end_year'] : '9999'; if ($year >= $start_year and $year <= $end_year) { $address = $val['address']; } diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 11827a7..da69900 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -129,17 +129,17 @@ public function testGetInfo() $this->assertFalse($idValidator->isValid('610104620932690')); $this->assertEquals( - [ - 'addressCode' => '430302', - 'abandoned' => 0, - 'address' => '湖南省湘潭市雨湖区', - 'addressTree' => ['湖南省', '湘潭市', '雨湖区'], - 'birthdayCode' => '1993-12-19', - 'constellation' => '射手座', - 'chineseZodiac' => '酉鸡', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '9',], + [ + 'addressCode' => '430302', + 'abandoned' => 0, + 'address' => '湖南省湘潭市雨湖区', + 'addressTree' => ['湖南省', '湘潭市', '雨湖区'], + 'birthdayCode' => '1993-12-19', + 'constellation' => '射手座', + 'chineseZodiac' => '酉鸡', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '9', ], $idValidator->getInfo('430302199312194239') ); } From d66128896fcf950ebfb231e8c589097088e92a26 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 15 Jan 2021 12:18:31 +0800 Subject: [PATCH 101/128] =?UTF-8?q?fix:=20=E5=87=BA=E7=94=9F=E6=97=A5?= =?UTF-8?q?=E6=9C=9F=E5=9C=A8=E5=9C=B0=E5=9D=80=E7=A0=81=E5=8F=91=E5=B8=83?= =?UTF-8?q?=E4=B9=8B=E5=89=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Helper.php | 2 +- tests/IdValidatorTest.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 2b535fc..96f5c2b 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -41,7 +41,7 @@ private function _getAddressInfo($addressCode, $birthdayCode) // 县级信息 $addressInfo['district'] = $this->_getAddress($addressCode, $birthdayCode); - return empty($addressInfo) ? false : $addressInfo; + return empty($addressInfo['province']) ? false : $addressInfo; } /** diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index da69900..381f1a7 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -22,9 +22,10 @@ public function testIsValid() $this->assertFalse($idValidator->isValid('440308199901101513')); // 验证码不合法 $this->assertFalse($idValidator->isValid('610104620932690')); // 出生日期码不合法 $this->assertFalse($idValidator->isValid('11010119900307867X')); // 校验位不合法 + $this->assertFalse($idValidator->isValid('500154199301135886')); // 出生日期在地址码发布之前 $this->assertTrue($idValidator->isValid('110101199003078670')); $this->assertTrue($idValidator->isValid('440308199901101512')); - $this->assertTrue($idValidator->isValid('500154199301135886')); + $this->assertTrue($idValidator->isValid('500154199804106120')); $this->assertTrue($idValidator->isValid('610104620927690')); $this->assertTrue($idValidator->isValid('810000199408230021')); // 港澳居民居住证 18 位 $this->assertTrue($idValidator->isValid('830000199201300022')); // 台湾居民居住证 18 位 From ce6bd678083e6090ff4f0a59ed3f400aea2f7ae1 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 15 Jan 2021 14:02:13 +0800 Subject: [PATCH 102/128] fix: fake id error. --- src/Generator.php | 26 ++++++++++++++++++++++++-- src/IdValidator.php | 10 ++++++++-- tests/IdValidatorTest.php | 4 +++- 3 files changed, 35 insertions(+), 5 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index 48f3947..fc8212f 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -28,12 +28,17 @@ private function _generatorOrderCode($sex) /** * 生成出生日期码 * + * @param $addressCode + * @param $address * @param int|string $birthday 出生日期 * * @return string */ - private function _generatorBirthdayCode($birthday) + private function _generatorBirthdayCode($addressCode, $address, $birthday) { + + $start_year = '0001'; + $end_year = '9999'; $year = $this->_datePad(substr($birthday, 0, 4), 'year'); $month = $this->_datePad(substr($birthday, 4, 2), 'month'); $day = $this->_datePad(substr($birthday, 6, 2), 'day'); @@ -42,6 +47,23 @@ private function _generatorBirthdayCode($birthday) $year = $this->_datePad(rand(1950, date('Y') - 1), 'year'); } + if (isset($this->_addressCodeTimeline[$addressCode])) { + $timeline = $this->_addressCodeTimeline[$addressCode]; + foreach ($timeline as $key => $val) { + if ($val['address'] == $address) { + $start_year = $val['start_year'] != '' ? $val['start_year'] : $start_year; + $end_year = $val['end_year'] != '' ? $val['end_year'] : $end_year; + } + } + } + + if ($year < $start_year) { + $year = $start_year; + } + if ($year > $end_year) { + $year = $end_year; + } + if ($month < 1 || $month > 12) { $month = $this->_datePad(rand(1, 12), 'month'); } @@ -51,7 +73,7 @@ private function _generatorBirthdayCode($birthday) } if (!checkdate((int) $month, (int) $day, (int) $year)) { - $year = $this->_datePad(rand(1950, date('Y') - 1), 'year'); + $year = $this->_datePad(rand(max($start_year, 1950), min($end_year, date('Y')) - 1), 'year'); $month = $this->_datePad(rand(1, 12), 'month'); $day = $this->_datePad(rand(1, 28), 'day'); } diff --git a/src/IdValidator.php b/src/IdValidator.php index 2d6afc5..9b3b2e5 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -97,10 +97,16 @@ public function getInfo($id) public function fakeId($isEighteen = true, $address = null, $birthday = null, $sex = null) { // 生成地址码 - $addressCode = $this->_generatorAddressCode($address); + if (empty($address)) { + $addressCode = array_rand($this->_addressCodeList); + $address = $this->_addressCodeList[$addressCode]; + } else { + $addressCode = $this->_generatorAddressCode($address); + } + // 出生日期码 - $birthdayCode = $this->_generatorBirthdayCode($birthday); + $birthdayCode = $this->_generatorBirthdayCode($addressCode, $address, $birthday); // 顺序码 $orderCode = $this->_generatorOrderCode($sex); diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 381f1a7..7e1b605 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -34,7 +34,9 @@ public function testIsValid() public function testFakeId() { $idValidator = new IdValidator(); - $this->assertTrue($idValidator->isValid($idValidator->fakeId())); + for ($i = 0; $i < 10000; $i++) { + $this->assertTrue($idValidator->isValid($idValidator->fakeId())); + } $this->assertTrue($idValidator->isValid($idValidator->fakeId(false))); $this->assertTrue($idValidator->isValid($idValidator->fakeId(true, '上海市', '2000', 1))); $this->assertTrue($idValidator->isValid($idValidator->fakeId(true, '黄浦区', '2001', 0))); From 5d1cdec6ddf18039ee4cff8b5fa1d0a2ec26d8a4 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 15 Jan 2021 14:04:01 +0800 Subject: [PATCH 103/128] Apply fixes from StyleCI (#52) Co-authored-by: jxlwqq --- src/Generator.php | 1 - src/IdValidator.php | 1 - 2 files changed, 2 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index fc8212f..c7033bb 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -36,7 +36,6 @@ private function _generatorOrderCode($sex) */ private function _generatorBirthdayCode($addressCode, $address, $birthday) { - $start_year = '0001'; $end_year = '9999'; $year = $this->_datePad(substr($birthday, 0, 4), 'year'); diff --git a/src/IdValidator.php b/src/IdValidator.php index 9b3b2e5..f1b5b84 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -104,7 +104,6 @@ public function fakeId($isEighteen = true, $address = null, $birthday = null, $s $addressCode = $this->_generatorAddressCode($address); } - // 出生日期码 $birthdayCode = $this->_generatorBirthdayCode($addressCode, $address, $birthday); From 78e01a35246e84d532de195fa037981b35923be2 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 2 Feb 2021 17:17:46 +0800 Subject: [PATCH 104/128] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 784a501..ee32abc 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ **中华人民共和国居民身份证**、**中华人民共和国港澳居民居住证**以及**中华人民共和国台湾居民居住证**号码验证工具(PHP Composer 版)支持 15 位与 18 位号码。 +* [Go 版本](https://github.com/guanguans/id-validator) * [Python 版本](https://github.com/jxlwqq/id-validator.py) * [Ruby 版本](https://github.com/renyijiu/id_validator) * [JavaScript 版本](https://github.com/mc-zone/IDValidator) From 03b307a449384cbdfe74e280b9c17d5adfd5046d Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 23 Mar 2021 18:44:41 +0800 Subject: [PATCH 105/128] add strict mode. close #53 (#54) --- src/Checker.php | 5 +++-- src/Helper.php | 27 +++++++++++++++++++++------ src/IdValidator.php | 16 +++++++++------- tests/IdValidatorTest.php | 24 +++++++++++++++++++++++- 4 files changed, 56 insertions(+), 16 deletions(-) diff --git a/src/Checker.php b/src/Checker.php index dc0af75..9d947d7 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -77,12 +77,13 @@ private function _generateLongType($id) * * @param string $addressCode 地址码 * @param string $birthdayCode 出生日期码 + * @param bool $strictMode 是否启动严格模式检查 * * @return bool */ - private function _checkAddressCode($addressCode, $birthdayCode) + private function _checkAddressCode($addressCode, $birthdayCode, $strictMode = false) { - return (bool) $this->_getAddressInfo($addressCode, $birthdayCode); + return (bool) $this->_getAddressInfo($addressCode, $birthdayCode, $strictMode); } /** diff --git a/src/Helper.php b/src/Helper.php index 96f5c2b..1c1573b 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -12,10 +12,11 @@ trait Helper * * @param string $addressCode 地址码 * @param string $birthdayCode 出生日期码 + * @param bool $strictMode 是否启动严格模式检查 * * @return bool|mixed|string */ - private function _getAddressInfo($addressCode, $birthdayCode) + private function _getAddressInfo($addressCode, $birthdayCode, $strictMode = false) { $addressInfo = [ 'province' => '', @@ -25,7 +26,7 @@ private function _getAddressInfo($addressCode, $birthdayCode) // 省级信息 $provinceAddressCode = substr($addressCode, 0, 2).'0000'; - $addressInfo['province'] = $this->_getAddress($provinceAddressCode, $birthdayCode); + $addressInfo['province'] = $this->_getAddress($provinceAddressCode, $birthdayCode, $strictMode); $firstCharacter = substr($addressCode, 0, 1); // 用于判断是否是港澳台居民居住证(8字开头) @@ -36,12 +37,12 @@ private function _getAddressInfo($addressCode, $birthdayCode) // 市级信息 $cityAddressCode = substr($addressCode, 0, 4).'00'; - $addressInfo['city'] = $this->_getAddress($cityAddressCode, $birthdayCode); + $addressInfo['city'] = $this->_getAddress($cityAddressCode, $birthdayCode, $strictMode); // 县级信息 - $addressInfo['district'] = $this->_getAddress($addressCode, $birthdayCode); + $addressInfo['district'] = $this->_getAddress($addressCode, $birthdayCode, $strictMode); - return empty($addressInfo['province']) ? false : $addressInfo; + return empty($addressInfo['district']) ? false : $addressInfo; } /** @@ -49,15 +50,17 @@ private function _getAddressInfo($addressCode, $birthdayCode) * * @param string $addressCode 地址码 * @param string $birthdayCode 出生日期码 + * @param bool $strictMode 是否启动严格模式检查 * * @return string */ - private function _getAddress($addressCode, $birthdayCode) + private function _getAddress($addressCode, $birthdayCode, $strictMode = false) { $address = ''; if (isset($this->_addressCodeTimeline[$addressCode])) { $timeline = $this->_addressCodeTimeline[$addressCode]; $year = substr($birthdayCode, 0, 4); + // 严格模式下,会检查【地址码正式启用的年份】与【身份证上的出生年份】 foreach ($timeline as $key => $val) { $start_year = $val['start_year'] != '' ? $val['start_year'] : '0001'; $end_year = $val['end_year'] != '' ? $val['end_year'] : '9999'; @@ -65,6 +68,18 @@ private function _getAddress($addressCode, $birthdayCode) $address = $val['address']; } } + + // 非严格模式下,则不会检查【地址码正式启用的年份】与【身份证上的出生年份】的关系 + if (empty($address) and !$strictMode) { + foreach ($timeline as $key => $val) { + // 由于较晚申请户口或身份证等原因,导致会出现地址码正式启用于2000年,但实际1999年出生的新生儿,由于晚了一年报户口,导致身份证上的出生年份早于地址码正式启用的年份 + $end_year = $val['end_year'] != '' ? $val['end_year'] : '9999'; + if ($year <= $end_year) { + $address = $val['address']; + break; + } + } + } } return $address; diff --git a/src/IdValidator.php b/src/IdValidator.php index f1b5b84..48b6c50 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -25,11 +25,12 @@ public function __construct() /** * 验证身份证号合法性. * - * @param string $id 身份证号 + * @param string $id 身份证号 + * @param bool $strictMode 是否启动严格模式检查 * * @return bool */ - public function isValid($id) + public function isValid($id, $strictMode = false) { // 基础验证 $code = $this->_checkIdArgument($id); @@ -38,7 +39,7 @@ public function isValid($id) } // 分别验证:*地址码*、*出生日期码*和*顺序码* - if (!$this->_checkAddressCode($code['addressCode'], $code['birthdayCode']) || !$this->_checkBirthdayCode($code['birthdayCode']) || !$this->_checkOrderCode($code['order'])) { + if (!$this->_checkAddressCode($code['addressCode'], $code['birthdayCode'], $strictMode) || !$this->_checkBirthdayCode($code['birthdayCode']) || !$this->_checkOrderCode($code['order'])) { return false; } @@ -57,18 +58,19 @@ public function isValid($id) /** * 获取身份证信息. * - * @param string $id 身份证号 + * @param string $id 身份证号 + * @param bool $strictMode 是否启动严格模式检查 * * @return array|bool */ - public function getInfo($id) + public function getInfo($id, $strictMode = false) { // 验证有效性 - if ($this->isValid($id) === false) { + if ($this->isValid($id, $strictMode) === false) { return false; } $code = $this->_checkIdArgument($id); - $addressInfo = $this->_getAddressInfo($code['addressCode'], $code['birthdayCode']); + $addressInfo = $this->_getAddressInfo($code['addressCode'], $code['birthdayCode'], $strictMode); return [ 'addressCode' => $code['addressCode'], diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 7e1b605..15b96c5 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -22,10 +22,13 @@ public function testIsValid() $this->assertFalse($idValidator->isValid('440308199901101513')); // 验证码不合法 $this->assertFalse($idValidator->isValid('610104620932690')); // 出生日期码不合法 $this->assertFalse($idValidator->isValid('11010119900307867X')); // 校验位不合法 - $this->assertFalse($idValidator->isValid('500154199301135886')); // 出生日期在地址码发布之前 + $this->assertFalse($idValidator->isValid('500154199301135886', true)); // 出生日期在地址码发布之前,非严格模式 + $this->assertTrue($idValidator->isValid('500154199301135886', false)); // 出生日期在地址码发布之前,严格模式 $this->assertTrue($idValidator->isValid('110101199003078670')); $this->assertTrue($idValidator->isValid('440308199901101512')); $this->assertTrue($idValidator->isValid('500154199804106120')); + $this->assertFalse($idValidator->isValid('411082198901010002', true)); // 严格模式 + $this->assertTrue($idValidator->isValid('411082198901010002', false)); // 非严格模式:https://github.com/jxlwqq/id-validator/issues/53 $this->assertTrue($idValidator->isValid('610104620927690')); $this->assertTrue($idValidator->isValid('810000199408230021')); // 港澳居民居住证 18 位 $this->assertTrue($idValidator->isValid('830000199201300022')); // 台湾居民居住证 18 位 @@ -145,6 +148,25 @@ public function testGetInfo() 'checkBit' => '9', ], $idValidator->getInfo('430302199312194239') ); + + // 非严格模式下,合法 + $this->assertEquals( + [ + 'addressCode' => '411082', + 'abandoned' => 0, + 'address' => '河南省许昌市长葛市', + 'addressTree' => ['河南省', '许昌市', '长葛市'], + 'birthdayCode' => '1989-01-01', + 'constellation' => '摩羯座', + 'chineseZodiac' => '巳蛇', + 'sex' => 0, + 'length' => 18, + 'checkBit' => '2', ], + $idValidator->getInfo('411082198901010002') + ); + + // 严格模式下,非法 + $this->assertFalse($idValidator->getInfo('411082198901010002', true)); } public function testUpgradeId() From ce23614c626c9c13b546f69c83aeb6d3e9fee771 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 26 Mar 2021 18:18:59 +0800 Subject: [PATCH 106/128] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dxxxx01=E5=92=8Cxxxx20?= =?UTF-8?q?=E5=9C=B0=E5=9D=80=E7=A0=81=E7=9A=84=E5=8E=86=E5=8F=B2=E9=81=97?= =?UTF-8?q?=E7=95=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Helper.php | 13 ++++ tests/IdValidatorTest.php | 142 +++++++++++++++++++++++--------------- 2 files changed, 99 insertions(+), 56 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 1c1573b..40edfbe 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -81,6 +81,19 @@ private function _getAddress($addressCode, $birthdayCode, $strictMode = false) } } } + else { + // 修复 \d\d\d\d01 和 \d\d\d\d20 的历史遗留问题 + // 以上两种地址码,现实身份证真实存在,但民政部历年公布的官方地址码中却均没有查询到 + // 所以这里需要特殊处理 + // 1980年、1982年版本中,未有制定省辖市市辖区的代码,所有带县的省辖市给予“××××20”的“市区”代码。 + // 1984年版本开始对地级市(前称省辖市)市辖区制定代码,其中“××××01”表示市辖区的汇总码,同时撤销“××××20”的“市区”代码(追溯至1983年) + if (substr($addressCode, 4, 2) == '20') { + $address = '市区'; + } + if (substr($addressCode, 4, 2) == '01') { + $address = '市辖区'; + } + } return $address; } diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 15b96c5..eef1299 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -32,6 +32,8 @@ public function testIsValid() $this->assertTrue($idValidator->isValid('610104620927690')); $this->assertTrue($idValidator->isValid('810000199408230021')); // 港澳居民居住证 18 位 $this->assertTrue($idValidator->isValid('830000199201300022')); // 台湾居民居住证 18 位 + $this->assertTrue($idValidator->isValid('44040119580101000X')); // 历史遗留数据:珠海市市辖区 + $this->assertTrue($idValidator->isValid('140120197901010008')); // 历史遗留数据:太原市市区 } public function testFakeId() @@ -56,62 +58,62 @@ public function testGetInfo() $idValidator = new IdValidator(); $this->assertEquals( [ - 'addressCode' => '440308', - 'abandoned' => 0, - 'address' => '广东省深圳市盐田区', - 'addressTree' => ['广东省', '深圳市', '盐田区'], - 'birthdayCode' => '1999-01-10', + 'addressCode' => '440308', + 'abandoned' => 0, + 'address' => '广东省深圳市盐田区', + 'addressTree' => ['广东省', '深圳市', '盐田区'], + 'birthdayCode' => '1999-01-10', 'constellation' => '摩羯座', 'chineseZodiac' => '卯兔', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '2', ], + 'sex' => 1, + 'length' => 18, + 'checkBit' => '2',], $idValidator->getInfo('440308199901101512') ); $this->assertEquals( [ - 'addressCode' => '362324', - 'abandoned' => 1, - 'address' => '江西省宜春地区丰城县', - 'addressTree' => ['江西省', '宜春地区', '丰城县'], - 'birthdayCode' => '1980-01-01', + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省宜春地区丰城县', + 'addressTree' => ['江西省', '宜春地区', '丰城县'], + 'birthdayCode' => '1980-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '申猴', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '4', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '4', ], $idValidator->getInfo('362324198001010014') ); $this->assertEquals( [ - 'addressCode' => '362324', - 'abandoned' => 1, - 'address' => '江西省宜春地区丰城县', - 'addressTree' => ['江西省', '宜春地区', '丰城县'], - 'birthdayCode' => '1981-01-01', + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省宜春地区丰城县', + 'addressTree' => ['江西省', '宜春地区', '丰城县'], + 'birthdayCode' => '1981-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '酉鸡', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '1', ], + 'sex' => 1, + 'length' => 18, + 'checkBit' => '1',], $idValidator->getInfo('362324198101010011') ); $this->assertEquals( [ - 'addressCode' => '362324', - 'abandoned' => 1, - 'address' => '江西省上饶地区铅山县', - 'addressTree' => ['江西省', '上饶地区', '铅山县'], - 'birthdayCode' => '1982-01-01', + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省上饶地区铅山县', + 'addressTree' => ['江西省', '上饶地区', '铅山县'], + 'birthdayCode' => '1982-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '戌狗', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '9', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '9', ], $idValidator->getInfo('362324198201010019') ); @@ -120,53 +122,81 @@ public function testGetInfo() $this->assertEquals( [ - 'addressCode' => '610104', - 'abandoned' => 0, - 'address' => '陕西省西安市莲湖区', - 'addressTree' => ['陕西省', '西安市', '莲湖区'], - 'birthdayCode' => '1962-09-27', + 'addressCode' => '610104', + 'abandoned' => 0, + 'address' => '陕西省西安市莲湖区', + 'addressTree' => ['陕西省', '西安市', '莲湖区'], + 'birthdayCode' => '1962-09-27', 'constellation' => '天秤座', 'chineseZodiac' => '寅虎', - 'sex' => 0, - 'length' => 15, - 'checkBit' => '', ], + 'sex' => 0, + 'length' => 15, + 'checkBit' => '',], $idValidator->getInfo('610104620927690') ); $this->assertFalse($idValidator->isValid('610104620932690')); $this->assertEquals( [ - 'addressCode' => '430302', - 'abandoned' => 0, - 'address' => '湖南省湘潭市雨湖区', - 'addressTree' => ['湖南省', '湘潭市', '雨湖区'], - 'birthdayCode' => '1993-12-19', + 'addressCode' => '430302', + 'abandoned' => 0, + 'address' => '湖南省湘潭市雨湖区', + 'addressTree' => ['湖南省', '湘潭市', '雨湖区'], + 'birthdayCode' => '1993-12-19', 'constellation' => '射手座', 'chineseZodiac' => '酉鸡', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '9', ], + 'sex' => 1, + 'length' => 18, + 'checkBit' => '9',], $idValidator->getInfo('430302199312194239') ); // 非严格模式下,合法 $this->assertEquals( [ - 'addressCode' => '411082', - 'abandoned' => 0, - 'address' => '河南省许昌市长葛市', - 'addressTree' => ['河南省', '许昌市', '长葛市'], - 'birthdayCode' => '1989-01-01', + 'addressCode' => '411082', + 'abandoned' => 0, + 'address' => '河南省许昌市长葛市', + 'addressTree' => ['河南省', '许昌市', '长葛市'], + 'birthdayCode' => '1989-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '巳蛇', - 'sex' => 0, - 'length' => 18, - 'checkBit' => '2', ], + 'sex' => 0, + 'length' => 18, + 'checkBit' => '2',], $idValidator->getInfo('411082198901010002') ); // 严格模式下,非法 $this->assertFalse($idValidator->getInfo('411082198901010002', true)); + + // 历史遗留数据:珠海市市辖区 + $this->assertEquals([ + 'addressCode' => '440401', + 'abandoned' => 1, + 'address' => '广东省珠海市市辖区', + 'addressTree' => ['广东省', '珠海市', '市辖区'], + 'birthdayCode' => '1958-01-01', + 'constellation' => '摩羯座', + 'chineseZodiac' => '戌狗', + 'sex' => 0, + 'length' => 18, + 'checkBit' => 'X', + ], $idValidator->getInfo('44040119580101000X')); + + // 历史遗留数据:太原市市区 + $this->assertEquals([ + 'addressCode' => '140120', + 'abandoned' => 1, + 'address' => '山西省太原市市区', + 'addressTree' => ['山西省', '太原市', '市区'], + 'birthdayCode' => '1979-01-01', + 'constellation' => '摩羯座', + 'chineseZodiac' => '未羊', + 'sex' => 0, + 'length' => 18, + 'checkBit' => '8', + ], $idValidator->getInfo('140120197901010008')); } public function testUpgradeId() From d2332f560debb187c5d777d570d30da42a45f96a Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 26 Mar 2021 18:21:36 +0800 Subject: [PATCH 107/128] Apply fixes from StyleCI (#56) Co-authored-by: jxlwqq --- src/Helper.php | 3 +- tests/IdValidatorTest.php | 144 +++++++++++++++++++------------------- 2 files changed, 73 insertions(+), 74 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 40edfbe..b82f635 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -80,8 +80,7 @@ private function _getAddress($addressCode, $birthdayCode, $strictMode = false) } } } - } - else { + } else { // 修复 \d\d\d\d01 和 \d\d\d\d20 的历史遗留问题 // 以上两种地址码,现实身份证真实存在,但民政部历年公布的官方地址码中却均没有查询到 // 所以这里需要特殊处理 diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index eef1299..3899fa2 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -58,62 +58,62 @@ public function testGetInfo() $idValidator = new IdValidator(); $this->assertEquals( [ - 'addressCode' => '440308', - 'abandoned' => 0, - 'address' => '广东省深圳市盐田区', - 'addressTree' => ['广东省', '深圳市', '盐田区'], - 'birthdayCode' => '1999-01-10', + 'addressCode' => '440308', + 'abandoned' => 0, + 'address' => '广东省深圳市盐田区', + 'addressTree' => ['广东省', '深圳市', '盐田区'], + 'birthdayCode' => '1999-01-10', 'constellation' => '摩羯座', 'chineseZodiac' => '卯兔', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '2',], + 'sex' => 1, + 'length' => 18, + 'checkBit' => '2', ], $idValidator->getInfo('440308199901101512') ); $this->assertEquals( [ - 'addressCode' => '362324', - 'abandoned' => 1, - 'address' => '江西省宜春地区丰城县', - 'addressTree' => ['江西省', '宜春地区', '丰城县'], - 'birthdayCode' => '1980-01-01', + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省宜春地区丰城县', + 'addressTree' => ['江西省', '宜春地区', '丰城县'], + 'birthdayCode' => '1980-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '申猴', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '4', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '4', ], $idValidator->getInfo('362324198001010014') ); $this->assertEquals( [ - 'addressCode' => '362324', - 'abandoned' => 1, - 'address' => '江西省宜春地区丰城县', - 'addressTree' => ['江西省', '宜春地区', '丰城县'], - 'birthdayCode' => '1981-01-01', + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省宜春地区丰城县', + 'addressTree' => ['江西省', '宜春地区', '丰城县'], + 'birthdayCode' => '1981-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '酉鸡', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '1',], + 'sex' => 1, + 'length' => 18, + 'checkBit' => '1', ], $idValidator->getInfo('362324198101010011') ); $this->assertEquals( [ - 'addressCode' => '362324', - 'abandoned' => 1, - 'address' => '江西省上饶地区铅山县', - 'addressTree' => ['江西省', '上饶地区', '铅山县'], - 'birthdayCode' => '1982-01-01', + 'addressCode' => '362324', + 'abandoned' => 1, + 'address' => '江西省上饶地区铅山县', + 'addressTree' => ['江西省', '上饶地区', '铅山县'], + 'birthdayCode' => '1982-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '戌狗', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '9', + 'sex' => 1, + 'length' => 18, + 'checkBit' => '9', ], $idValidator->getInfo('362324198201010019') ); @@ -122,48 +122,48 @@ public function testGetInfo() $this->assertEquals( [ - 'addressCode' => '610104', - 'abandoned' => 0, - 'address' => '陕西省西安市莲湖区', - 'addressTree' => ['陕西省', '西安市', '莲湖区'], - 'birthdayCode' => '1962-09-27', + 'addressCode' => '610104', + 'abandoned' => 0, + 'address' => '陕西省西安市莲湖区', + 'addressTree' => ['陕西省', '西安市', '莲湖区'], + 'birthdayCode' => '1962-09-27', 'constellation' => '天秤座', 'chineseZodiac' => '寅虎', - 'sex' => 0, - 'length' => 15, - 'checkBit' => '',], + 'sex' => 0, + 'length' => 15, + 'checkBit' => '', ], $idValidator->getInfo('610104620927690') ); $this->assertFalse($idValidator->isValid('610104620932690')); $this->assertEquals( [ - 'addressCode' => '430302', - 'abandoned' => 0, - 'address' => '湖南省湘潭市雨湖区', - 'addressTree' => ['湖南省', '湘潭市', '雨湖区'], - 'birthdayCode' => '1993-12-19', + 'addressCode' => '430302', + 'abandoned' => 0, + 'address' => '湖南省湘潭市雨湖区', + 'addressTree' => ['湖南省', '湘潭市', '雨湖区'], + 'birthdayCode' => '1993-12-19', 'constellation' => '射手座', 'chineseZodiac' => '酉鸡', - 'sex' => 1, - 'length' => 18, - 'checkBit' => '9',], + 'sex' => 1, + 'length' => 18, + 'checkBit' => '9', ], $idValidator->getInfo('430302199312194239') ); // 非严格模式下,合法 $this->assertEquals( [ - 'addressCode' => '411082', - 'abandoned' => 0, - 'address' => '河南省许昌市长葛市', - 'addressTree' => ['河南省', '许昌市', '长葛市'], - 'birthdayCode' => '1989-01-01', + 'addressCode' => '411082', + 'abandoned' => 0, + 'address' => '河南省许昌市长葛市', + 'addressTree' => ['河南省', '许昌市', '长葛市'], + 'birthdayCode' => '1989-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '巳蛇', - 'sex' => 0, - 'length' => 18, - 'checkBit' => '2',], + 'sex' => 0, + 'length' => 18, + 'checkBit' => '2', ], $idValidator->getInfo('411082198901010002') ); @@ -172,30 +172,30 @@ public function testGetInfo() // 历史遗留数据:珠海市市辖区 $this->assertEquals([ - 'addressCode' => '440401', - 'abandoned' => 1, - 'address' => '广东省珠海市市辖区', - 'addressTree' => ['广东省', '珠海市', '市辖区'], - 'birthdayCode' => '1958-01-01', + 'addressCode' => '440401', + 'abandoned' => 1, + 'address' => '广东省珠海市市辖区', + 'addressTree' => ['广东省', '珠海市', '市辖区'], + 'birthdayCode' => '1958-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '戌狗', - 'sex' => 0, - 'length' => 18, - 'checkBit' => 'X', + 'sex' => 0, + 'length' => 18, + 'checkBit' => 'X', ], $idValidator->getInfo('44040119580101000X')); // 历史遗留数据:太原市市区 $this->assertEquals([ - 'addressCode' => '140120', - 'abandoned' => 1, - 'address' => '山西省太原市市区', - 'addressTree' => ['山西省', '太原市', '市区'], - 'birthdayCode' => '1979-01-01', + 'addressCode' => '140120', + 'abandoned' => 1, + 'address' => '山西省太原市市区', + 'addressTree' => ['山西省', '太原市', '市区'], + 'birthdayCode' => '1979-01-01', 'constellation' => '摩羯座', 'chineseZodiac' => '未羊', - 'sex' => 0, - 'length' => 18, - 'checkBit' => '8', + 'sex' => 0, + 'length' => 18, + 'checkBit' => '8', ], $idValidator->getInfo('140120197901010008')); } From eb725af88e20352981ba1950815d05a1e75e6ab4 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 26 Mar 2021 18:52:59 +0800 Subject: [PATCH 108/128] check address info --- src/Helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Helper.php b/src/Helper.php index b82f635..45dc21c 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -42,7 +42,7 @@ private function _getAddressInfo($addressCode, $birthdayCode, $strictMode = fals // 县级信息 $addressInfo['district'] = $this->_getAddress($addressCode, $birthdayCode, $strictMode); - return empty($addressInfo['district']) ? false : $addressInfo; + return (empty($addressInfo['district']) or empty($addressInfo['province'])) ? false : $addressInfo; } /** From e6b856710bc549e6a9b708035ad529fda1c585c9 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Mon, 29 Mar 2021 14:10:21 +0800 Subject: [PATCH 109/128] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dxxxx02=E5=92=8Cxxxx11?= =?UTF-8?q?=E5=9C=B0=E5=9D=80=E7=A0=81=E7=9A=84=E5=8E=86=E5=8F=B2=E9=81=97?= =?UTF-8?q?=E7=95=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Helper.php | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 45dc21c..ee6ce63 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -81,16 +81,27 @@ private function _getAddress($addressCode, $birthdayCode, $strictMode = false) } } } else { - // 修复 \d\d\d\d01 和 \d\d\d\d20 的历史遗留问题 - // 以上两种地址码,现实身份证真实存在,但民政部历年公布的官方地址码中却均没有查询到 + // 修复 \d\d\d\d01、\d\d\d\d02、\d\d\d\d11 和 \d\d\d\d20 的历史遗留问题 + // 以上四种地址码,现实身份证真实存在,但民政部历年公布的官方地址码中可能没有查询到 + // 如:440401 450111 等 // 所以这里需要特殊处理 // 1980年、1982年版本中,未有制定省辖市市辖区的代码,所有带县的省辖市给予“××××20”的“市区”代码。 - // 1984年版本开始对地级市(前称省辖市)市辖区制定代码,其中“××××01”表示市辖区的汇总码,同时撤销“××××20”的“市区”代码(追溯至1983年) - if (substr($addressCode, 4, 2) == '20') { - $address = '市区'; - } - if (substr($addressCode, 4, 2) == '01') { - $address = '市辖区'; + // 1984年版本开始对地级市(前称省辖市)市辖区制定代码,其中“××××01”表示市辖区的汇总码,同时撤销“××××20”的“市区”代码(追溯至1983年)。 + // 1984年版本的市辖区代码分为城区和郊区两类,城区由“××××02”开始排起,郊区由“××××11”开始排起,后来版本已不再采用此方式,已制定的代码继续沿用。 + $suffixes = substr($addressCode, 4, 2); + switch ($suffixes) { + case '20': + $address = '市区'; + break; + case '01': + $address = '市辖区'; + break; + case '02': + $address = '城区'; + break; + case '11': + $address = '郊区'; + break; } } From 40d092849f4b10980ea2d0ceb6951d2b5f49da36 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sun, 4 Apr 2021 11:23:54 +0800 Subject: [PATCH 110/128] opt: remove timeline check. --- src/Helper.php | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index ee6ce63..8ad99d6 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -10,9 +10,9 @@ trait Helper /** * 获取地址码信息. * - * @param string $addressCode 地址码 + * @param string $addressCode 地址码 * @param string $birthdayCode 出生日期码 - * @param bool $strictMode 是否启动严格模式检查 + * @param bool $strictMode 是否启动严格模式检查 * * @return bool|mixed|string */ @@ -20,12 +20,12 @@ private function _getAddressInfo($addressCode, $birthdayCode, $strictMode = fals { $addressInfo = [ 'province' => '', - 'city' => '', + 'city' => '', 'district' => '', ]; // 省级信息 - $provinceAddressCode = substr($addressCode, 0, 2).'0000'; + $provinceAddressCode = substr($addressCode, 0, 2) . '0000'; $addressInfo['province'] = $this->_getAddress($provinceAddressCode, $birthdayCode, $strictMode); $firstCharacter = substr($addressCode, 0, 1); // 用于判断是否是港澳台居民居住证(8字开头) @@ -36,21 +36,24 @@ private function _getAddressInfo($addressCode, $birthdayCode, $strictMode = fals } // 市级信息 - $cityAddressCode = substr($addressCode, 0, 4).'00'; + $cityAddressCode = substr($addressCode, 0, 4) . '00'; $addressInfo['city'] = $this->_getAddress($cityAddressCode, $birthdayCode, $strictMode); // 县级信息 $addressInfo['district'] = $this->_getAddress($addressCode, $birthdayCode, $strictMode); + // 这里不判断市级信息的原因: + // 1)直辖市,无市级信息 + // 2)省直辖县或县级市,无市级信息 return (empty($addressInfo['district']) or empty($addressInfo['province'])) ? false : $addressInfo; } /** * 获取省市区地址码. * - * @param string $addressCode 地址码 + * @param string $addressCode 地址码 * @param string $birthdayCode 出生日期码 - * @param bool $strictMode 是否启动严格模式检查 + * @param bool $strictMode 是否启动严格模式检查 * * @return string */ @@ -73,11 +76,10 @@ private function _getAddress($addressCode, $birthdayCode, $strictMode = false) if (empty($address) and !$strictMode) { foreach ($timeline as $key => $val) { // 由于较晚申请户口或身份证等原因,导致会出现地址码正式启用于2000年,但实际1999年出生的新生儿,由于晚了一年报户口,导致身份证上的出生年份早于地址码正式启用的年份 - $end_year = $val['end_year'] != '' ? $val['end_year'] : '9999'; - if ($year <= $end_year) { - $address = $val['address']; - break; - } + // 由于某些地区的地址码已经废弃,但是实际上在之后的几年依然在使用 + // 这里就不做时间判断了 + $address = $val['address']; + break; } } } else { @@ -117,12 +119,12 @@ private function _getAddress($addressCode, $birthdayCode, $strictMode = false) */ private function _getConstellation($birthdayCode) { - $constellationList = include __DIR__.'/../data/constellation.php'; - $month = (int) substr($birthdayCode, 4, 2); - $day = (int) substr($birthdayCode, 6, 2); + $constellationList = include __DIR__ . '/../data/constellation.php'; + $month = (int)substr($birthdayCode, 4, 2); + $day = (int)substr($birthdayCode, 6, 2); $start_date = $constellationList[$month]['start_date']; - $start_day = (int) explode('-', $start_date)[1]; + $start_day = (int)explode('-', $start_date)[1]; if ($day < $start_day) { $tmp_month = $month == 1 ? 12 : $month - 1; @@ -142,7 +144,7 @@ private function _getConstellation($birthdayCode) */ private function _getChineseZodiac($birthdayCode) { - $chineseZodiacList = include __DIR__.'/../data/chineseZodiac.php'; + $chineseZodiacList = include __DIR__ . '/../data/chineseZodiac.php'; $start = 1900; // 子鼠 $end = substr($birthdayCode, 0, 4); $key = ($end - $start) % 12; From b3e175a8470dd3da789fd0e9e26e5b7cd514fd5c Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sun, 4 Apr 2021 11:33:03 +0800 Subject: [PATCH 111/128] Apply fixes from StyleCI (#59) Co-authored-by: jxlwqq --- src/Helper.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 8ad99d6..238c3be 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -10,9 +10,9 @@ trait Helper /** * 获取地址码信息. * - * @param string $addressCode 地址码 + * @param string $addressCode 地址码 * @param string $birthdayCode 出生日期码 - * @param bool $strictMode 是否启动严格模式检查 + * @param bool $strictMode 是否启动严格模式检查 * * @return bool|mixed|string */ @@ -20,12 +20,12 @@ private function _getAddressInfo($addressCode, $birthdayCode, $strictMode = fals { $addressInfo = [ 'province' => '', - 'city' => '', + 'city' => '', 'district' => '', ]; // 省级信息 - $provinceAddressCode = substr($addressCode, 0, 2) . '0000'; + $provinceAddressCode = substr($addressCode, 0, 2).'0000'; $addressInfo['province'] = $this->_getAddress($provinceAddressCode, $birthdayCode, $strictMode); $firstCharacter = substr($addressCode, 0, 1); // 用于判断是否是港澳台居民居住证(8字开头) @@ -36,7 +36,7 @@ private function _getAddressInfo($addressCode, $birthdayCode, $strictMode = fals } // 市级信息 - $cityAddressCode = substr($addressCode, 0, 4) . '00'; + $cityAddressCode = substr($addressCode, 0, 4).'00'; $addressInfo['city'] = $this->_getAddress($cityAddressCode, $birthdayCode, $strictMode); // 县级信息 @@ -51,9 +51,9 @@ private function _getAddressInfo($addressCode, $birthdayCode, $strictMode = fals /** * 获取省市区地址码. * - * @param string $addressCode 地址码 + * @param string $addressCode 地址码 * @param string $birthdayCode 出生日期码 - * @param bool $strictMode 是否启动严格模式检查 + * @param bool $strictMode 是否启动严格模式检查 * * @return string */ @@ -119,12 +119,12 @@ private function _getAddress($addressCode, $birthdayCode, $strictMode = false) */ private function _getConstellation($birthdayCode) { - $constellationList = include __DIR__ . '/../data/constellation.php'; - $month = (int)substr($birthdayCode, 4, 2); - $day = (int)substr($birthdayCode, 6, 2); + $constellationList = include __DIR__.'/../data/constellation.php'; + $month = (int) substr($birthdayCode, 4, 2); + $day = (int) substr($birthdayCode, 6, 2); $start_date = $constellationList[$month]['start_date']; - $start_day = (int)explode('-', $start_date)[1]; + $start_day = (int) explode('-', $start_date)[1]; if ($day < $start_day) { $tmp_month = $month == 1 ? 12 : $month - 1; @@ -144,7 +144,7 @@ private function _getConstellation($birthdayCode) */ private function _getChineseZodiac($birthdayCode) { - $chineseZodiacList = include __DIR__ . '/../data/chineseZodiac.php'; + $chineseZodiacList = include __DIR__.'/../data/chineseZodiac.php'; $start = 1900; // 子鼠 $end = substr($birthdayCode, 0, 4); $key = ($end - $start) % 12; From 8fca561523e2a4f081831960c1263e10363ee593 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 11 May 2021 21:58:50 +0800 Subject: [PATCH 112/128] additional address codes. close #60 (#61) --- data/additionalAddressCodeTimeline.php | 3236 ++++++++++++++++++++++++ phpunit.xml | 30 +- src/IdValidator.php | 2 + tests/IdValidatorTest.php | 1 + 4 files changed, 3250 insertions(+), 19 deletions(-) create mode 100644 data/additionalAddressCodeTimeline.php diff --git a/data/additionalAddressCodeTimeline.php b/data/additionalAddressCodeTimeline.php new file mode 100644 index 0000000..c210d36 --- /dev/null +++ b/data/additionalAddressCodeTimeline.php @@ -0,0 +1,3236 @@ + [ + [ + "address" => "市辖区", + "start_year" => "", + "end_year" => "" + ] + ], + 110200 => [ + [ + "address" => "县", + "start_year" => "", + "end_year" => 2014 + ] + ], + 120100 => [ + [ + "address" => "市辖区", + "start_year" => "", + "end_year" => "" + ] + ], + 120200 => [ + [ + "address" => "县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 130101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130601 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130701 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130801 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 130901 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 131001 => [ + [ + "address" => "市辖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 131101 => [ + [ + "address" => "市辖区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 139000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1988, + "end_year" => 1988 + ] + ], + 140101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 140120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 140201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 140301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 140401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 140501 => [ + [ + "address" => "市辖区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 140511 => [ + [ + "address" => "郊区", + "start_year" => 1985, + "end_year" => 1995 + ] + ], + 140601 => [ + [ + "address" => "市辖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 140701 => [ + [ + "address" => "市辖区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 140801 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 140901 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141001 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 141101 => [ + [ + "address" => "市辖区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 149000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1988, + "end_year" => 1988 + ] + ], + 150101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 150201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 150301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 150427 => [ + [ + "address" => "赤峰县", + "start_year" => 1983, + "end_year" => 1982 + ] + ], + 150501 => [ + [ + "address" => "市辖区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 150601 => [ + [ + "address" => "市辖区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150701 => [ + [ + "address" => "市辖区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 150801 => [ + [ + "address" => "市辖区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 150901 => [ + [ + "address" => "市辖区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 210101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 210120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 210201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 210220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 210301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 210320 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 210401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 210420 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 210501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 210520 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 210601 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 210620 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 210701 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 210720 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 210801 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 210812 => [ + [ + "address" => "鲅鱼圈区", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 210820 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 210901 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 210920 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 211001 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 211020 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 211101 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211201 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211301 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 211401 => [ + [ + "address" => "市辖区", + "start_year" => 1989, + "end_year" => "" + ] + ], + 219000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1986, + "end_year" => 1988 + ] + ], + 220101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 220120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 220201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 220220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 220501 => [ + [ + "address" => "市辖区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 220601 => [ + [ + "address" => "市辖区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 220701 => [ + [ + "address" => "市辖区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 220801 => [ + [ + "address" => "市辖区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 229000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1986, + "end_year" => 1988 + ] + ], + 230101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230601 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230701 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230720 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 230801 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 230901 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 231001 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 231019 => [ + [ + "address" => "镜泊湖市", + "start_year" => 1986, + "end_year" => 1986 + ] + ], + 231082 => [ + [ + "address" => "密山市", + "start_year" => 1989, + "end_year" => 1995 + ] + ], + 231201 => [ + [ + "address" => "市辖区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 232434 => [ + [ + "address" => "友谊县", + "start_year" => 1984, + "end_year" => 1983 + ] + ], + 232702 => [ + [ + "address" => "松岭区", + "start_year" => 1981, + "end_year" => 2017 + ] + ], + 232703 => [ + [ + "address" => "新林区", + "start_year" => 1981, + "end_year" => 2017 + ] + ], + 232704 => [ + [ + "address" => "呼中区", + "start_year" => 1981, + "end_year" => 2017 + ] + ], + 232761 => [ + [ + "address" => "加格达奇区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 232762 => [ + [ + "address" => "松岭区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 232763 => [ + [ + "address" => "新林区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 232764 => [ + [ + "address" => "呼中区", + "start_year" => 2018, + "end_year" => "" + ] + ], + 239000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1986, + "end_year" => 1988 + ] + ], + 310100 => [ + [ + "address" => "市辖区", + "start_year" => "", + "end_year" => "" + ] + ], + 310200 => [ + [ + "address" => "县", + "start_year" => "", + "end_year" => 2015 + ] + ], + 320101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 320201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320212 => [ + [ + "address" => "马山区", + "start_year" => 1987, + "end_year" => 1999 + ] + ], + 320301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320520 => [ + [ + "address" => "常熟市", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 320601 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320613 => [ + [ + "address" => "崇川区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 320614 => [ + [ + "address" => "海门区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 320701 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320801 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 320901 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 321001 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 321020 => [ + [ + "address" => "泰州市", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 321101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 329000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1986, + "end_year" => 1988 + ] + ], + 330101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330113 => [ + [ + "address" => "临平区", + "start_year" => 2021, + "end_year" => "" + ] + ], + 330114 => [ + [ + "address" => "钱塘区", + "start_year" => 2021, + "end_year" => "" + ] + ], + 330120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 330201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 330320 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 330401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330601 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 330719 => [ + [ + "address" => "兰溪市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 330801 => [ + [ + "address" => "市辖区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 330901 => [ + [ + "address" => "市辖区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 331001 => [ + [ + "address" => "市辖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 331101 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 332532 => [ + [ + "address" => "龙游县", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 332533 => [ + [ + "address" => "磐安县", + "start_year" => 1983, + "end_year" => 1984 + ] + ], + 332628 => [ + [ + "address" => "松阳县", + "start_year" => 1982, + "end_year" => 1999 + ] + ], + 332629 => [ + [ + "address" => "景宁畲族自治县", + "start_year" => 1984, + "end_year" => 1999 + ] + ], + 332702 => [ + [ + "address" => "临海市", + "start_year" => 1986, + "end_year" => 1993 + ] + ], + 332703 => [ + [ + "address" => "黄岩市", + "start_year" => 1989, + "end_year" => 1993 + ] + ], + 332704 => [ + [ + "address" => "温岭市", + "start_year" => 1994, + "end_year" => 1993 + ] + ], + 339000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1986, + "end_year" => 1988 + ] + ], + 340101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 340201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340209 => [ + [ + "address" => "弋江区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 340210 => [ + [ + "address" => "湾沚区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 340212 => [ + [ + "address" => "繁昌区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 340220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 340301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340420 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 340501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340601 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340620 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 340701 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340720 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 340801 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 340900 => [ + [ + "address" => "省直辖行政单位", + "start_year" => 1983, + "end_year" => 1986 + ] + ], + 341001 => [ + [ + "address" => "市辖区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 341101 => [ + [ + "address" => "市辖区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 341123 => [ + [ + "address" => "滁县", + "start_year" => "未曾使用", + "end_year" => "" + ] + ], + 341201 => [ + [ + "address" => "市辖区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 341301 => [ + [ + "address" => "市辖区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 341401 => [ + [ + "address" => "市辖区", + "start_year" => 1999, + "end_year" => 2010 + ] + ], + 341501 => [ + [ + "address" => "市辖区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 341601 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341701 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 341801 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 350101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 350201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 350301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 350601 => [ + [ + "address" => "市辖区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 350701 => [ + [ + "address" => "市辖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 350801 => [ + [ + "address" => "市辖区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 350901 => [ + [ + "address" => "市辖区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 352105 => [ + [ + "address" => "建阳市", + "start_year" => 1994, + "end_year" => 1993 + ] + ], + 359000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1986, + "end_year" => 1988 + ] + ], + 360101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 360201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360601 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 360701 => [ + [ + "address" => "市辖区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 360801 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 360901 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361001 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 361101 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 362502 => [ + [ + "address" => "临川市", + "start_year" => 1987, + "end_year" => 1999 + ] + ], + 370101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 370201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 370301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370420 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 370501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370601 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370621 => [ + [ + "address" => "福山县", + "start_year" => 1983, + "end_year" => 1982 + ] + ], + 370626 => [ + [ + "address" => "莱西县", + "start_year" => 1983, + "end_year" => 1982 + ] + ], + 370701 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370801 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 370821 => [ + [ + "address" => "济宁县", + "start_year" => 1983, + "end_year" => 1982 + ] + ], + 370824 => [ + [ + "address" => "泗水县", + "start_year" => 1983, + "end_year" => 1982 + ] + ], + 370919 => [ + [ + "address" => "莱芜市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 370920 => [ + [ + "address" => "新泰市", + "start_year" => 1985, + "end_year" => 1985 + ] + ], + 371001 => [ + [ + "address" => "市辖区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 371101 => [ + [ + "address" => "市辖区", + "start_year" => 1992, + "end_year" => "" + ] + ], + 371201 => [ + [ + "address" => "市辖区", + "start_year" => 1992, + "end_year" => 2018 + ] + ], + 371301 => [ + [ + "address" => "市辖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371401 => [ + [ + "address" => "市辖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 371501 => [ + [ + "address" => "市辖区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 371601 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 371701 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 372802 => [ + [ + "address" => "日照市", + "start_year" => 1985, + "end_year" => 1988 + ] + ], + 379000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1986, + "end_year" => 1988 + ] + ], + 410101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 410201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410307 => [ + [ + "address" => "偃师区", + "start_year" => 2021, + "end_year" => "" + ] + ], + 410308 => [ + [ + "address" => "孟津区", + "start_year" => 2021, + "end_year" => "" + ] + ], + 410401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410601 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410701 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410801 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 410901 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 411001 => [ + [ + "address" => "市辖区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411101 => [ + [ + "address" => "市辖区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411201 => [ + [ + "address" => "市辖区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 411219 => [ + [ + "address" => "义马市", + "start_year" => 1986, + "end_year" => 1985 + ] + ], + 411301 => [ + [ + "address" => "市辖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 411401 => [ + [ + "address" => "市辖区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 411501 => [ + [ + "address" => "市辖区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 411601 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 411701 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 412535 => [ + [ + "address" => "义马矿区", + "start_year" => "", + "end_year" => 1980 + ] + ], + 419000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1986, + "end_year" => "" + ] + ], + 420101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 420120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 420201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 420220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 420301 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 420501 => [ + [ + "address" => "市辖区", + "start_year" => 1986, + "end_year" => "" + ] + ], + 420522 => [ + [ + "address" => "宜都县", + "start_year" => "未曾使用", + "end_year" => "" + ] + ], + 420524 => [ + [ + "address" => "当阳县", + "start_year" => "未曾使用", + "end_year" => "" + ] + ], + 420601 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 420605 => [ + [ + "address" => "郊区", + "start_year" => 1984, + "end_year" => 1994 + ] + ], + 420619 => [ + [ + "address" => "随州市", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 420620 => [ + [ + "address" => "老河口市", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 420681 => [ + [ + "address" => "随州市", + "start_year" => 1989, + "end_year" => 1993 + ] + ], + 420701 => [ + [ + "address" => "市辖区", + "start_year" => 1987, + "end_year" => "" + ] + ], + 420801 => [ + [ + "address" => "市辖区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 421021 => [ + [ + "address" => "松滋县", + "start_year" => 1994, + "end_year" => 1994 + ] + ], + 421084 => [ + [ + "address" => "天门市", + "start_year" => "未曾使用", + "end_year" => "" + ] + ], + 421085 => [ + [ + "address" => "潜江市", + "start_year" => "未曾使用", + "end_year" => "" + ] + ], + 421086 => [ + [ + "address" => "仙桃市", + "start_year" => "未曾使用", + "end_year" => "" + ] + ], + 421088 => [ + [ + "address" => "监利市", + "start_year" => 2020, + "end_year" => "" + ] + ], + 421101 => [ + [ + "address" => "市辖区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 421201 => [ + [ + "address" => "市辖区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 421301 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 421302 => [ + [ + "address" => "曾都区", + "start_year" => 2000, + "end_year" => 2008 + ] + ], + 422900 => [ + [ + "address" => "林区", + "start_year" => 1989, + "end_year" => 1993 + ], + [ + "address" => "林区", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 429000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1986, + "end_year" => "" + ] + ], + 430101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 430120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 430201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 430220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 430301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 430312 => [ + [ + "address" => "韶山区", + "start_year" => 1983, + "end_year" => 1987 + ] + ], + 430401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 430501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 430601 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 430625 => [ + [ + "address" => "汨罗县", + "start_year" => 1986, + "end_year" => 1986 + ] + ], + 430701 => [ + [ + "address" => "市辖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430727 => [ + [ + "address" => "慈利县", + "start_year" => 1988, + "end_year" => 1987 + ] + ], + 430801 => [ + [ + "address" => "市辖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 430901 => [ + [ + "address" => "市辖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431001 => [ + [ + "address" => "市辖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 431101 => [ + [ + "address" => "市辖区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 431201 => [ + [ + "address" => "市辖区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 431301 => [ + [ + "address" => "市辖区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 432128 => [ + [ + "address" => "韶山区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 439000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1986, + "end_year" => 1988 + ] + ], + 440101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 440120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 440201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 440220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 440301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 440302 => [ + [ + "address" => "沙头角区", + "start_year" => 1988, + "end_year" => 1989 + ] + ], + 440320 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 440401 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 440501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 440520 => [ + [ + "address" => "潮州市", + "start_year" => 1983, + "end_year" => 1985 + ] + ], + 440581 => [ + [ + "address" => "潮州市", + "start_year" => 1989, + "end_year" => 1990 + ] + ], + 440601 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 440701 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 440801 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 440901 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 441201 => [ + [ + "address" => "市辖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441281 => [ + [ + "address" => "云浮市", + "start_year" => 1992, + "end_year" => 1993 + ] + ], + 441282 => [ + [ + "address" => "罗定市", + "start_year" => 1993, + "end_year" => 1993 + ] + ], + 441301 => [ + [ + "address" => "市辖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441401 => [ + [ + "address" => "市辖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441501 => [ + [ + "address" => "市辖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441601 => [ + [ + "address" => "市辖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441701 => [ + [ + "address" => "市辖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 441801 => [ + [ + "address" => "市辖区", + "start_year" => 1988, + "end_year" => "" + ] + ], + 442137 => [ + [ + "address" => "西南中沙群岛办事处", + "start_year" => 1987, + "end_year" => 1987 + ] + ], + 442229 => [ + [ + "address" => "西南中沙群岛办事处", + "start_year" => 1984, + "end_year" => 1986 + ] + ], + 442701 => [ + [ + "address" => "佛山市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442702 => [ + [ + "address" => "江门市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442901 => [ + [ + "address" => "湛江市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 442902 => [ + [ + "address" => "茂名市", + "start_year" => "", + "end_year" => 1982 + ] + ], + 445101 => [ + [ + "address" => "市辖区", + "start_year" => 1991, + "end_year" => "" + ] + ], + 445201 => [ + [ + "address" => "市辖区", + "start_year" => 1991, + "end_year" => "" + ] + ], + 445301 => [ + [ + "address" => "市辖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 449000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1986, + "end_year" => 1988 + ] + ], + 450101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 450111 => [ + [ + "address" => "郊区", + "start_year" => 1984, + "end_year" => 2000 + ] + ], + 450201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 450211 => [ + [ + "address" => "郊区", + "start_year" => 1984, + "end_year" => 2001 + ] + ], + 450301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 450320 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 450401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 450411 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 2002 + ] + ], + 450501 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 450511 => [ + [ + "address" => "郊区", + "start_year" => 1984, + "end_year" => 1993 + ] + ], + 450601 => [ + [ + "address" => "市辖区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 450701 => [ + [ + "address" => "市辖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 450801 => [ + [ + "address" => "市辖区", + "start_year" => 1995, + "end_year" => "" + ] + ], + 450901 => [ + [ + "address" => "市辖区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 451001 => [ + [ + "address" => "市辖区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451101 => [ + [ + "address" => "市辖区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451201 => [ + [ + "address" => "市辖区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451301 => [ + [ + "address" => "市辖区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 451401 => [ + [ + "address" => "市辖区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 460037 => [ + [ + "address" => "西沙群岛", + "start_year" => 1988, + "end_year" => 2001 + ] + ], + 460038 => [ + [ + "address" => "南沙群岛", + "start_year" => 1988, + "end_year" => 2001 + ] + ], + 460039 => [ + [ + "address" => "中沙群岛的岛礁及其海域", + "start_year" => 1988, + "end_year" => 2001 + ] + ], + 460101 => [ + [ + "address" => "市辖区", + "start_year" => 1990, + "end_year" => "" + ] + ], + 460201 => [ + [ + "address" => "市辖区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 460301 => [ + [ + "address" => "市辖区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 460302 => [ + [ + "address" => "西沙区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 460303 => [ + [ + "address" => "南沙区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 469000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 2002, + "end_year" => "" + ] + ], + 469004 => [ + [ + "address" => "琼山市", + "start_year" => 2002, + "end_year" => 2001 + ] + ], + 469031 => [ + [ + "address" => "西沙群岛", + "start_year" => 2002, + "end_year" => 2011 + ] + ], + 469032 => [ + [ + "address" => "南沙群岛", + "start_year" => 2002, + "end_year" => 2011 + ] + ], + 469033 => [ + [ + "address" => "中沙群岛的岛礁及其海域", + "start_year" => 2002, + "end_year" => 2011 + ] + ], + 500100 => [ + [ + "address" => "市辖区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500200 => [ + [ + "address" => "县", + "start_year" => 1997, + "end_year" => "" + ] + ], + 500300 => [ + [ + "address" => "市", + "start_year" => 1997, + "end_year" => 2005 + ] + ], + 510101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 510201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => 1996 + ] + ], + 510220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 510301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510320 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 510401 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510420 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 510501 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 510601 => [ + [ + "address" => "市辖区", + "start_year" => 1984, + "end_year" => "" + ] + ], + 510701 => [ + [ + "address" => "市辖区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510801 => [ + [ + "address" => "市辖区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 510901 => [ + [ + "address" => "市辖区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511001 => [ + [ + "address" => "市辖区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511101 => [ + [ + "address" => "市辖区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 511201 => [ + [ + "address" => "市辖区", + "start_year" => 1992, + "end_year" => 1996 + ] + ], + 511301 => [ + [ + "address" => "市辖区", + "start_year" => 1993, + "end_year" => "" + ] + ], + 511401 => [ + [ + "address" => "市辖区", + "start_year" => 1995, + "end_year" => 1996 + ], + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511481 => [ + [ + "address" => "南川市", + "start_year" => 1995, + "end_year" => 1996 + ] + ], + 511501 => [ + [ + "address" => "市辖区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 511601 => [ + [ + "address" => "市辖区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 511701 => [ + [ + "address" => "市辖区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 511801 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 511901 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 512001 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 517001 => [ + [ + "address" => "市辖区", + "start_year" => "未曾使用", + "end_year" => "" + ] + ], + 519000 => [ + [ + "address" => "省直辖县级行政单位", + "start_year" => 1988, + "end_year" => 1988 + ] + ], + 520101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 520204 => [ + [ + "address" => "水城区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 520301 => [ + [ + "address" => "市辖区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 520401 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 520501 => [ + [ + "address" => "市辖区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 520601 => [ + [ + "address" => "市辖区", + "start_year" => 2011, + "end_year" => "" + ] + ], + 530101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 530120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 530201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => 1997 + ] + ], + 530301 => [ + [ + "address" => "市辖区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530401 => [ + [ + "address" => "市辖区", + "start_year" => 1997, + "end_year" => "" + ] + ], + 530501 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 530601 => [ + [ + "address" => "市辖区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 530701 => [ + [ + "address" => "市辖区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 530801 => [ + [ + "address" => "市辖区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 530901 => [ + [ + "address" => "市辖区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 540101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 540120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 540201 => [ + [ + "address" => "市辖区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540301 => [ + [ + "address" => "市辖区", + "start_year" => 2014, + "end_year" => "" + ] + ], + 540401 => [ + [ + "address" => "市辖区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 540501 => [ + [ + "address" => "市辖区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 540601 => [ + [ + "address" => "市辖区", + "start_year" => 2017, + "end_year" => "" + ] + ], + 610101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 610201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 610301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 610320 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 610501 => [ + [ + "address" => "市辖区", + "start_year" => 1994, + "end_year" => "" + ] + ], + 610601 => [ + [ + "address" => "市辖区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610701 => [ + [ + "address" => "市辖区", + "start_year" => 1996, + "end_year" => "" + ] + ], + 610801 => [ + [ + "address" => "市辖区", + "start_year" => 1999, + "end_year" => "" + ] + ], + 610901 => [ + [ + "address" => "市辖区", + "start_year" => 2000, + "end_year" => "" + ] + ], + 611001 => [ + [ + "address" => "市辖区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 620101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 620120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 620201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 620301 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 620320 => [ + [ + "address" => "市区", + "start_year" => 1981, + "end_year" => 1982 + ] + ], + 620401 => [ + [ + "address" => "市辖区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620501 => [ + [ + "address" => "市辖区", + "start_year" => 1985, + "end_year" => "" + ] + ], + 620601 => [ + [ + "address" => "市辖区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 620701 => [ + [ + "address" => "市辖区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620801 => [ + [ + "address" => "市辖区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 620901 => [ + [ + "address" => "市辖区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621001 => [ + [ + "address" => "市辖区", + "start_year" => 2002, + "end_year" => "" + ] + ], + 621101 => [ + [ + "address" => "市辖区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 621201 => [ + [ + "address" => "市辖区", + "start_year" => 2004, + "end_year" => "" + ] + ], + 630101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 630120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 630201 => [ + [ + "address" => "市辖区", + "start_year" => 2013, + "end_year" => "" + ] + ], + 632400 => [ + [ + "address" => "省直辖行政单位", + "start_year" => "", + "end_year" => 1987 + ] + ], + 632857 => [ + [ + "address" => "大柴旦行政委员会", + "start_year" => "", + "end_year" => "" + ] + ], + 632858 => [ + [ + "address" => "冷湖行政委员会", + "start_year" => "", + "end_year" => 2017 + ] + ], + 632859 => [ + [ + "address" => "茫崖行政委员会", + "start_year" => "", + "end_year" => 2017 + ] + ], + 640101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 640111 => [ + [ + "address" => "郊区", + "start_year" => 1983, + "end_year" => 2001 + ] + ], + 640120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 640201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 640203 => [ + [ + "address" => "石嘴山区", + "start_year" => 1983, + "end_year" => 2002 + ] + ], + 640220 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 640301 => [ + [ + "address" => "市辖区", + "start_year" => 1998, + "end_year" => "" + ] + ], + 640401 => [ + [ + "address" => "市辖区", + "start_year" => 2001, + "end_year" => "" + ] + ], + 640501 => [ + [ + "address" => "市辖区", + "start_year" => 2003, + "end_year" => "" + ] + ], + 650101 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 650120 => [ + [ + "address" => "市区", + "start_year" => "", + "end_year" => 1982 + ] + ], + 650201 => [ + [ + "address" => "市辖区", + "start_year" => 1983, + "end_year" => "" + ] + ], + 650401 => [ + [ + "address" => "市辖区", + "start_year" => 2015, + "end_year" => "" + ] + ], + 650501 => [ + [ + "address" => "市辖区", + "start_year" => 2016, + "end_year" => "" + ] + ], + 659000 => [ + [ + "address" => "自治区直辖县级行政单位", + "start_year" => 1986, + "end_year" => "" + ] + ] +]; diff --git a/phpunit.xml b/phpunit.xml index e47284c..b2daa31 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,21 +1,13 @@ - - - - ./tests/ - - - - - src/ - - + + + + src/ + + + + + ./tests/ + + diff --git a/src/IdValidator.php b/src/IdValidator.php index 48b6c50..cf47aad 100644 --- a/src/IdValidator.php +++ b/src/IdValidator.php @@ -20,6 +20,8 @@ public function __construct() { $this->_addressCodeList = include __DIR__.'/../data/addressCode.php'; $this->_addressCodeTimeline = include __DIR__.'/../data/addressCodeTimeline.php'; + $additionalAddressCodeTimeline = include __DIR__.'/../data/additionalAddressCodeTimeline.php'; + $this->_addressCodeTimeline = $additionalAddressCodeTimeline + $this->_addressCodeTimeline; } /** diff --git a/tests/IdValidatorTest.php b/tests/IdValidatorTest.php index 3899fa2..57bc00b 100644 --- a/tests/IdValidatorTest.php +++ b/tests/IdValidatorTest.php @@ -34,6 +34,7 @@ public function testIsValid() $this->assertTrue($idValidator->isValid('830000199201300022')); // 台湾居民居住证 18 位 $this->assertTrue($idValidator->isValid('44040119580101000X')); // 历史遗留数据:珠海市市辖区 $this->assertTrue($idValidator->isValid('140120197901010008')); // 历史遗留数据:太原市市区 + $this->assertTrue($idValidator->isValid('441282198101011230')); // 历史遗留数据:广东省肇庆市罗定市 } public function testFakeId() From 24f6af6ea66f84df823730d36b32b2d4139bf3b8 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Tue, 11 May 2021 23:54:52 +0800 Subject: [PATCH 113/128] =?UTF-8?q?=E5=9C=B0=E5=9D=80=E7=A0=81=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E8=87=B32020=E5=B9=B412=E6=9C=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/additionalAddressCodeTimeline.php | 49 ---------------- data/addressCode.php | 21 +++---- data/addressCodeTimeline.php | 78 ++++++++++++++++++++++---- 3 files changed, 76 insertions(+), 72 deletions(-) diff --git a/data/additionalAddressCodeTimeline.php b/data/additionalAddressCodeTimeline.php index c210d36..c9e8de2 100644 --- a/data/additionalAddressCodeTimeline.php +++ b/data/additionalAddressCodeTimeline.php @@ -794,20 +794,6 @@ "end_year" => "" ] ], - 320613 => [ - [ - "address" => "崇川区", - "start_year" => 2020, - "end_year" => "" - ] - ], - 320614 => [ - [ - "address" => "海门区", - "start_year" => 2020, - "end_year" => "" - ] - ], 320701 => [ [ "address" => "市辖区", @@ -1039,27 +1025,6 @@ "end_year" => "" ] ], - 340209 => [ - [ - "address" => "弋江区", - "start_year" => 2020, - "end_year" => "" - ] - ], - 340210 => [ - [ - "address" => "湾沚区", - "start_year" => 2020, - "end_year" => "" - ] - ], - 340212 => [ - [ - "address" => "繁昌区", - "start_year" => 2020, - "end_year" => "" - ] - ], 340220 => [ [ "address" => "市区", @@ -1865,13 +1830,6 @@ "end_year" => "" ] ], - 421088 => [ - [ - "address" => "监利市", - "start_year" => 2020, - "end_year" => "" - ] - ], 421101 => [ [ "address" => "市辖区", @@ -2743,13 +2701,6 @@ "end_year" => "" ] ], - 520204 => [ - [ - "address" => "水城区", - "start_year" => 2020, - "end_year" => "" - ] - ], 520301 => [ [ "address" => "市辖区", diff --git a/data/addressCode.php b/data/addressCode.php index d0fd3f6..aad11b2 100644 --- a/data/addressCode.php +++ b/data/addressCode.php @@ -859,13 +859,12 @@ 320583 => "昆山市", 320585 => "太仓市", 320600 => "南通市", - 320602 => "崇川区", - 320611 => "港闸区", 320612 => "通州区", + 320613 => "崇川区", + 320614 => "海门区", 320623 => "如东县", 320681 => "启东市", 320682 => "如皋市", - 320684 => "海门市", 320685 => "海安市", 320700 => "连云港市", 320703 => "连云区", @@ -1034,11 +1033,10 @@ 340181 => "巢湖市", 340200 => "芜湖市", 340202 => "镜湖区", - 340203 => "弋江区", 340207 => "鸠江区", - 340208 => "三山区", - 340221 => "芜湖县", - 340222 => "繁昌县", + 340209 => "弋江区", + 340210 => "湾沚区", + 340212 => "繁昌区", 340223 => "南陵县", 340281 => "无为市", 340300 => "蚌埠市", @@ -1402,11 +1400,10 @@ 370611 => "福山区", 370612 => "牟平区", 370613 => "莱山区", - 370634 => "长岛县", + 370614 => "蓬莱区", 370681 => "龙口市", 370682 => "莱阳市", 370683 => "莱州市", - 370684 => "蓬莱市", 370685 => "招远市", 370686 => "栖霞市", 370687 => "海阳市", @@ -1757,11 +1754,11 @@ 421002 => "沙市区", 421003 => "荆州区", 421022 => "公安县", - 421023 => "监利县", 421024 => "江陵县", 421081 => "石首市", 421083 => "洪湖市", 421087 => "松滋市", + 421088 => "监利市", 421100 => "黄冈市", 421102 => "黄州区", 421121 => "团风县", @@ -2491,7 +2488,7 @@ 520200 => "六盘水市", 520201 => "钟山区", 520203 => "六枝特区", - 520221 => "水城县", + 520204 => "水城区", 520281 => "盘州市", 520300 => "遵义市", 520302 => "红花岗区", @@ -3226,4 +3223,4 @@ 810000 => "香港特别行政区", 820000 => "澳门特别行政区", 830000 => "台湾省" -]; +]; \ No newline at end of file diff --git a/data/addressCodeTimeline.php b/data/addressCodeTimeline.php index c245a83..db76617 100644 --- a/data/addressCodeTimeline.php +++ b/data/addressCodeTimeline.php @@ -13704,7 +13704,7 @@ [ "address" => "崇川区", "start_year" => 1991, - "end_year" => "" + "end_year" => 2019 ] ], 320603 => [ @@ -13723,7 +13723,7 @@ [ "address" => "港闸区", "start_year" => 1991, - "end_year" => "" + "end_year" => 2019 ] ], 320612 => [ @@ -13733,6 +13733,20 @@ "end_year" => "" ] ], + 320613 => [ + [ + "address" => "崇川区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 320614 => [ + [ + "address" => "海门区", + "start_year" => 2020, + "end_year" => "" + ] + ], 320621 => [ [ "address" => "海安县", @@ -13800,7 +13814,7 @@ [ "address" => "海门市", "start_year" => 1995, - "end_year" => "" + "end_year" => 2019 ] ], 320685 => [ @@ -17408,7 +17422,7 @@ [ "address" => "弋江区", "start_year" => 2005, - "end_year" => "" + "end_year" => 2019 ] ], 340204 => [ @@ -17448,6 +17462,20 @@ [ "address" => "三山区", "start_year" => 2005, + "end_year" => 2019 + ] + ], + 340209 => [ + [ + "address" => "弋江区", + "start_year" => 2020, + "end_year" => "" + ] + ], + 340210 => [ + [ + "address" => "湾沚区", + "start_year" => 2020, "end_year" => "" ] ], @@ -17458,18 +17486,25 @@ "end_year" => 1989 ] ], + 340212 => [ + [ + "address" => "繁昌区", + "start_year" => 2020, + "end_year" => "" + ] + ], 340221 => [ [ "address" => "芜湖县", "start_year" => "", - "end_year" => "" + "end_year" => 2019 ] ], 340222 => [ [ "address" => "繁昌县", "start_year" => "", - "end_year" => "" + "end_year" => 2019 ] ], 340223 => [ @@ -23531,6 +23566,13 @@ "end_year" => "" ] ], + 370614 => [ + [ + "address" => "蓬莱区", + "start_year" => 2020, + "end_year" => "" + ] + ], 370620 => [ [ "address" => "威海市", @@ -23619,7 +23661,7 @@ [ "address" => "长岛县", "start_year" => 1983, - "end_year" => "" + "end_year" => 2019 ] ], 370681 => [ @@ -23647,7 +23689,7 @@ [ "address" => "蓬莱市", "start_year" => 1995, - "end_year" => "" + "end_year" => 2019 ] ], 370685 => [ @@ -29144,7 +29186,7 @@ [ "address" => "监利县", "start_year" => 1994, - "end_year" => "" + "end_year" => 2019 ] ], 421024 => [ @@ -29194,6 +29236,13 @@ "end_year" => "" ] ], + 421088 => [ + [ + "address" => "监利市", + "start_year" => 2020, + "end_year" => "" + ] + ], 421100 => [ [ "address" => "黄冈市", @@ -42473,11 +42522,18 @@ "end_year" => "" ] ], + 520204 => [ + [ + "address" => "水城区", + "start_year" => 2020, + "end_year" => "" + ] + ], 520221 => [ [ "address" => "水城县", "start_year" => 1987, - "end_year" => "" + "end_year" => 2019 ] ], 520222 => [ @@ -51711,4 +51767,4 @@ "end_year" => "" ] ] -]; +]; \ No newline at end of file From 1336fdbb6fe83c1b652ecacaead8e28946671629 Mon Sep 17 00:00:00 2001 From: guanguans Date: Sat, 22 May 2021 22:21:20 +0800 Subject: [PATCH 114/128] Update README.md (#63) --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index ee32abc..b3ebdfd 100644 --- a/README.md +++ b/README.md @@ -56,16 +56,16 @@ $idValidator->getInfo('610104620927690'); // 15 位 ```php [ -'addressCode' => '440308', // 地址码 -'abandoned' => 0, // 地址码是否废弃,1 为废弃的,0 为正在使用的 -'address' => '广东省深圳市盐田区', // 地址 -'addressTree' => ['广东省', '深圳市', '盐田区'] // 省市区三级列表 -'birthdayCode' => '1999-01-10', // 出生日期 -'constellation' => '水瓶座', // 星座 -'chineseZodiac' => '卯兔', // 生肖 -'sex' => 1, // 性别,1 为男性,0 为女性 -'length' => 18, // 号码长度 -'checkBit' => '2', // 校验码 + 'addressCode' => '440308', // 地址码 + 'abandoned' => 0, // 地址码是否废弃,1 为废弃的,0 为正在使用的 + 'address' => '广东省深圳市盐田区', // 地址 + 'addressTree' => ['广东省', '深圳市', '盐田区'] // 省市区三级列表 + 'birthdayCode' => '1999-01-10', // 出生日期 + 'constellation' => '水瓶座', // 星座 + 'chineseZodiac' => '卯兔', // 生肖 + 'sex' => 1, // 性别,1 为男性,0 为女性 + 'length' => 18, // 号码长度 + 'checkBit' => '2', // 校验码 ] ``` @@ -88,8 +88,8 @@ $idValidator->fakeId(); // 18 位 $idValidator->fakeId(false); // 15 位 $idValidator->fakeId(true, '上海市', '2000', 1); // 生成出生于 2000 年上海市的男性居民身份证 $idValidator->fakeId(true, '南山区', '1999', 0); // 生成出生于 1999 年广东省深圳市南山区的女性居民身份证 -$idValidator->fakeId(true, '江苏省', '200001', 1)); // 生成出生于 2000 年 1 月江苏省的男性居民身份证 -$idValidator->fakeId(true, '厦门市', '199701', 0)); // 生成出生于 1997 年 1 月福建省厦门市的女性居民身份证 +$idValidator->fakeId(true, '江苏省', '200001', 1); // 生成出生于 2000 年 1 月江苏省的男性居民身份证 +$idValidator->fakeId(true, '厦门市', '199701', 0); // 生成出生于 1997 年 1 月福建省厦门市的女性居民身份证 $idValidator->fakeId(true, '台湾省', '20131010', 0); // 生成出生于 2013 年 10 月 10 日台湾省的女性居民居住证 $idValidator->fakeId(true, '香港特别行政区', '19970701', 0); // 生成出生于 1997 年 7 月 1 日香港特别行政区的女性居民居住证 ``` From 27d5f7fc1b105644af3bdfafd7ab642b941ca4dc Mon Sep 17 00:00:00 2001 From: yaozm Date: Sun, 23 May 2021 01:10:54 +0800 Subject: [PATCH 115/128] perf: Optimize some code --- src/Checker.php | 4 +++- src/Generator.php | 23 ++++++++++--------- src/Helper.php | 56 ++++++++++++++++++++++++----------------------- 3 files changed, 43 insertions(+), 40 deletions(-) diff --git a/src/Checker.php b/src/Checker.php index 9d947d7..679f78c 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -23,7 +23,9 @@ private function _checkIdArgument($id) if ($length === 15) { return $this->_generateShortType($id); - } elseif ($length === 18) { + } + + if ($length === 18) { return $this->_generatelongType($id); } diff --git a/src/Generator.php b/src/Generator.php index c7033bb..08d85ca 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -16,7 +16,7 @@ trait Generator */ private function _generatorOrderCode($sex) { - $orderCode = rand(111, 999); + $orderCode = mt_rand(111, 999); if ($sex !== null && $sex !== $orderCode % 2) { $orderCode -= 1; @@ -43,7 +43,7 @@ private function _generatorBirthdayCode($addressCode, $address, $birthday) $day = $this->_datePad(substr($birthday, 6, 2), 'day'); if ($year < 1800 || $year > date('Y')) { - $year = $this->_datePad(rand(1950, date('Y') - 1), 'year'); + $year = $this->_datePad(mt_rand(1950, date('Y') - 1), 'year'); } if (isset($this->_addressCodeTimeline[$addressCode])) { @@ -64,17 +64,17 @@ private function _generatorBirthdayCode($addressCode, $address, $birthday) } if ($month < 1 || $month > 12) { - $month = $this->_datePad(rand(1, 12), 'month'); + $month = $this->_datePad(mt_rand(1, 12), 'month'); } if ($day < 1 || $day > 31) { - $day = $this->_datePad(rand(1, 28), 'day'); + $day = $this->_datePad(mt_rand(1, 28), 'day'); } if (!checkdate((int) $month, (int) $day, (int) $year)) { - $year = $this->_datePad(rand(max($start_year, 1950), min($end_year, date('Y')) - 1), 'year'); - $month = $this->_datePad(rand(1, 12), 'month'); - $day = $this->_datePad(rand(1, 28), 'day'); + $year = $this->_datePad(mt_rand(max($start_year, 1950), min($end_year, date('Y')) - 1), 'year'); + $month = $this->_datePad(mt_rand(1, 12), 'month'); + $day = $this->_datePad(mt_rand(1, 28), 'day'); } return $year.$month.$day; @@ -124,7 +124,7 @@ private function _generatorCheckBit($body) // 位置加权 $posWeight = []; for ($i = 18; $i > 1; $i--) { - $weight = pow(2, $i - 1) % 11; + $weight = (2 ** ($i - 1)) % 11; $posWeight[$i] = $weight; } @@ -133,7 +133,7 @@ private function _generatorCheckBit($body) $bodyArray = str_split($body); $count = count($bodyArray); for ($j = 0; $j < $count; $j++) { - $bodySum += (intval($bodyArray[$j]) * $posWeight[18 - $j]); + $bodySum += ((int)$bodyArray[$j] * $posWeight[18 - $j]); } // 生成校验码 @@ -196,9 +196,8 @@ private function _getRandAddressCode($pattern) */ private function _datePad($date, $type = 'year') { - $padLength = $type == 'year' ? 4 : 2; - $newDate = str_pad($date, $padLength, '0', STR_PAD_LEFT); + $padLength = $type === 'year' ? 4 : 2; - return $newDate; + return str_pad($date, $padLength, '0', STR_PAD_LEFT); } } diff --git a/src/Helper.php b/src/Helper.php index 238c3be..89abc13 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -28,7 +28,7 @@ private function _getAddressInfo($addressCode, $birthdayCode, $strictMode = fals $provinceAddressCode = substr($addressCode, 0, 2).'0000'; $addressInfo['province'] = $this->_getAddress($provinceAddressCode, $birthdayCode, $strictMode); - $firstCharacter = substr($addressCode, 0, 1); // 用于判断是否是港澳台居民居住证(8字开头) + $firstCharacter = $addressCode[0]; // 用于判断是否是港澳台居民居住证(8字开头) // 港澳台居民居住证无市级、县级信息 if ($firstCharacter == '8') { @@ -73,7 +73,7 @@ private function _getAddress($addressCode, $birthdayCode, $strictMode = false) } // 非严格模式下,则不会检查【地址码正式启用的年份】与【身份证上的出生年份】的关系 - if (empty($address) and !$strictMode) { + if (empty($address) and ! $strictMode) { foreach ($timeline as $key => $val) { // 由于较晚申请户口或身份证等原因,导致会出现地址码正式启用于2000年,但实际1999年出生的新生儿,由于晚了一年报户口,导致身份证上的出生年份早于地址码正式启用的年份 // 由于某些地区的地址码已经废弃,但是实际上在之后的几年依然在使用 @@ -82,29 +82,31 @@ private function _getAddress($addressCode, $birthdayCode, $strictMode = false) break; } } - } else { - // 修复 \d\d\d\d01、\d\d\d\d02、\d\d\d\d11 和 \d\d\d\d20 的历史遗留问题 - // 以上四种地址码,现实身份证真实存在,但民政部历年公布的官方地址码中可能没有查询到 - // 如:440401 450111 等 - // 所以这里需要特殊处理 - // 1980年、1982年版本中,未有制定省辖市市辖区的代码,所有带县的省辖市给予“××××20”的“市区”代码。 - // 1984年版本开始对地级市(前称省辖市)市辖区制定代码,其中“××××01”表示市辖区的汇总码,同时撤销“××××20”的“市区”代码(追溯至1983年)。 - // 1984年版本的市辖区代码分为城区和郊区两类,城区由“××××02”开始排起,郊区由“××××11”开始排起,后来版本已不再采用此方式,已制定的代码继续沿用。 - $suffixes = substr($addressCode, 4, 2); - switch ($suffixes) { - case '20': - $address = '市区'; - break; - case '01': - $address = '市辖区'; - break; - case '02': - $address = '城区'; - break; - case '11': - $address = '郊区'; - break; - } + + return $address; + } + + // 修复 \d\d\d\d01、\d\d\d\d02、\d\d\d\d11 和 \d\d\d\d20 的历史遗留问题 + // 以上四种地址码,现实身份证真实存在,但民政部历年公布的官方地址码中可能没有查询到 + // 如:440401 450111 等 + // 所以这里需要特殊处理 + // 1980年、1982年版本中,未有制定省辖市市辖区的代码,所有带县的省辖市给予“××××20”的“市区”代码。 + // 1984年版本开始对地级市(前称省辖市)市辖区制定代码,其中“××××01”表示市辖区的汇总码,同时撤销“××××20”的“市区”代码(追溯至1983年)。 + // 1984年版本的市辖区代码分为城区和郊区两类,城区由“××××02”开始排起,郊区由“××××11”开始排起,后来版本已不再采用此方式,已制定的代码继续沿用。 + $suffixes = substr($addressCode, 4, 2); + switch ($suffixes) { + case '20': + $address = '市区'; + break; + case '01': + $address = '市辖区'; + break; + case '02': + $address = '城区'; + break; + case '11': + $address = '郊区'; + break; } return $address; @@ -130,9 +132,9 @@ private function _getConstellation($birthdayCode) $tmp_month = $month == 1 ? 12 : $month - 1; return $constellationList[$tmp_month]['name']; - } else { - return $constellationList[$month]['name']; } + + return $constellationList[$month]['name']; } /** From 2401eda00b6dac98f5b0926dbd4b94e750973343 Mon Sep 17 00:00:00 2001 From: yaozm Date: Sun, 23 May 2021 01:12:35 +0800 Subject: [PATCH 116/128] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b3ebdfd..b11cf3a 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ $idValidator->getInfo('610104620927690'); // 15 位 'addressCode' => '440308', // 地址码 'abandoned' => 0, // 地址码是否废弃,1 为废弃的,0 为正在使用的 'address' => '广东省深圳市盐田区', // 地址 - 'addressTree' => ['广东省', '深圳市', '盐田区'] // 省市区三级列表 + 'addressTree' => ['广东省', '深圳市', '盐田区'], // 省市区三级列表 'birthdayCode' => '1999-01-10', // 出生日期 'constellation' => '水瓶座', // 星座 'chineseZodiac' => '卯兔', // 生肖 From b9220081ae50641dac9f4b31e21add3e1e39160a Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sun, 23 May 2021 03:04:53 +0000 Subject: [PATCH 117/128] Apply fixes from StyleCI --- src/Generator.php | 2 +- src/Helper.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Generator.php b/src/Generator.php index 08d85ca..e629ec4 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -133,7 +133,7 @@ private function _generatorCheckBit($body) $bodyArray = str_split($body); $count = count($bodyArray); for ($j = 0; $j < $count; $j++) { - $bodySum += ((int)$bodyArray[$j] * $posWeight[18 - $j]); + $bodySum += ((int) $bodyArray[$j] * $posWeight[18 - $j]); } // 生成校验码 diff --git a/src/Helper.php b/src/Helper.php index 89abc13..64f9b58 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -73,7 +73,7 @@ private function _getAddress($addressCode, $birthdayCode, $strictMode = false) } // 非严格模式下,则不会检查【地址码正式启用的年份】与【身份证上的出生年份】的关系 - if (empty($address) and ! $strictMode) { + if (empty($address) and !$strictMode) { foreach ($timeline as $key => $val) { // 由于较晚申请户口或身份证等原因,导致会出现地址码正式启用于2000年,但实际1999年出生的新生儿,由于晚了一年报户口,导致身份证上的出生年份早于地址码正式启用的年份 // 由于某些地区的地址码已经废弃,但是实际上在之后的几年依然在使用 From d32fac63025ce1b4e7ec42bb360d157aab666c9a Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 27 Aug 2021 14:43:00 +0800 Subject: [PATCH 118/128] fix: modify involid value --- data/additionalAddressCodeTimeline.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/data/additionalAddressCodeTimeline.php b/data/additionalAddressCodeTimeline.php index c9e8de2..abde120 100644 --- a/data/additionalAddressCodeTimeline.php +++ b/data/additionalAddressCodeTimeline.php @@ -1119,7 +1119,7 @@ 341123 => [ [ "address" => "滁县", - "start_year" => "未曾使用", + "start_year" => "", "end_year" => "" ] ], @@ -1742,14 +1742,14 @@ 420522 => [ [ "address" => "宜都县", - "start_year" => "未曾使用", + "start_year" => "", "end_year" => "" ] ], 420524 => [ [ "address" => "当阳县", - "start_year" => "未曾使用", + "start_year" => "", "end_year" => "" ] ], @@ -1812,21 +1812,21 @@ 421084 => [ [ "address" => "天门市", - "start_year" => "未曾使用", + "start_year" => "", "end_year" => "" ] ], 421085 => [ [ "address" => "潜江市", - "start_year" => "未曾使用", + "start_year" => "", "end_year" => "" ] ], 421086 => [ [ "address" => "仙桃市", - "start_year" => "未曾使用", + "start_year" => "", "end_year" => "" ] ], @@ -2683,7 +2683,7 @@ 517001 => [ [ "address" => "市辖区", - "start_year" => "未曾使用", + "start_year" => "", "end_year" => "" ] ], From 4114741a464643d794c73aa0adb5e774abbf501e Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 1 Sep 2021 17:10:55 +0800 Subject: [PATCH 119/128] Create php.yml --- .github/workflows/php.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/php.yml diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml new file mode 100644 index 0000000..512095e --- /dev/null +++ b/.github/workflows/php.yml @@ -0,0 +1,33 @@ +name: PHP Composer + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Validate composer.json and composer.lock + run: composer validate --strict + + - name: Cache Composer packages + id: composer-cache + uses: actions/cache@v2 + with: + path: vendor + key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} + restore-keys: | + ${{ runner.os }}-php- + + - name: Install dependencies + run: composer install --prefer-dist --no-progress + + - name: Run test suite + run: composer run-script test From f4f8a8dc0459be918704a9333532ea43e587ebb6 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 1 Sep 2021 17:25:17 +0800 Subject: [PATCH 120/128] multi version php testing in action --- .github/workflows/php.yml | 33 ----------------------------- .github/workflows/testing.yml | 40 +++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 33 deletions(-) delete mode 100644 .github/workflows/php.yml create mode 100644 .github/workflows/testing.yml diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml deleted file mode 100644 index 512095e..0000000 --- a/.github/workflows/php.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: PHP Composer - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Validate composer.json and composer.lock - run: composer validate --strict - - - name: Cache Composer packages - id: composer-cache - uses: actions/cache@v2 - with: - path: vendor - key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-php- - - - name: Install dependencies - run: composer install --prefer-dist --no-progress - - - name: Run test suite - run: composer run-script test diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml new file mode 100644 index 0000000..333526a --- /dev/null +++ b/.github/workflows/testing.yml @@ -0,0 +1,40 @@ +name: Testing + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + run: + runs-on: ${{ matrix.operating-system }} + strategy: + matrix: + operating-system: [ 'ubuntu-latest' ] + php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ] + steps: + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + + - uses: actions/checkout@v2 + + - name: Validate composer.json and composer.lock + run: composer validate --strict + + - name: Cache Composer packages + id: composer-cache + uses: actions/cache@v2 + with: + path: vendor + key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} + restore-keys: | + ${{ runner.os }}-php- + + - name: Install dependencies + run: composer install --prefer-dist --no-progress + + - name: Run test suite + run: composer run-script test From a7dc54aee4f3148b28d61c0bdd580ea2dd1c0f1f Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 1 Sep 2021 17:45:01 +0800 Subject: [PATCH 121/128] remove travis ci --- .travis.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 6c03d11..0000000 --- a/.travis.yml +++ /dev/null @@ -1,21 +0,0 @@ -language: php - -php: - - '5.6' - - '7.0' - - '7.1' - - '7.2' - - '7.3' - - '7.4' - - '8.0' - -matrix: - fast_finish: true - allow_failures: - - php: hhvm - -sudo: false - -install: travis_retry composer install --no-interaction --prefer-source - -script: vendor/bin/phpunit --verbose -c phpunit.xml From a26e45aabf61e17fb665adc138aca1a7090abb71 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 1 Sep 2021 17:45:27 +0800 Subject: [PATCH 122/128] add action status badge --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b11cf3a..db07d67 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,7 @@ * [Ruby 版本](https://github.com/renyijiu/id_validator) * [JavaScript 版本](https://github.com/mc-zone/IDValidator) - -[![Build Status](https://travis-ci.org/jxlwqq/id-validator.svg?branch=master)](https://travis-ci.org/jxlwqq/id-validator) +[![Testing](https://github.com/jxlwqq/id-validator/actions/workflows/php.yml/badge.svg)](https://github.com/jxlwqq/id-validator/actions/workflows/php.yml) [![StyleCI](https://github.styleci.io/repos/147758862/shield?branch=master)](https://github.styleci.io/repos/147758862) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/jxlwqq/id-validator/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/jxlwqq/id-validator/?branch=master) [![Maintainability](https://api.codeclimate.com/v1/badges/98880a5cb713e2652450/maintainability)](https://codeclimate.com/github/jxlwqq/id-validator/maintainability) From 450f96d5970a1c70b65e22c1b1eed121215249d7 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Thu, 30 Sep 2021 09:59:57 +0800 Subject: [PATCH 123/128] update action badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db07d67..7bc312a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ * [Ruby 版本](https://github.com/renyijiu/id_validator) * [JavaScript 版本](https://github.com/mc-zone/IDValidator) -[![Testing](https://github.com/jxlwqq/id-validator/actions/workflows/php.yml/badge.svg)](https://github.com/jxlwqq/id-validator/actions/workflows/php.yml) +[![Testing](https://github.com/jxlwqq/id-validator/actions/workflows/testing.yml/badge.svg)](https://github.com/jxlwqq/id-validator/actions/workflows/testing.yml) [![StyleCI](https://github.styleci.io/repos/147758862/shield?branch=master)](https://github.styleci.io/repos/147758862) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/jxlwqq/id-validator/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/jxlwqq/id-validator/?branch=master) [![Maintainability](https://api.codeclimate.com/v1/badges/98880a5cb713e2652450/maintainability)](https://codeclimate.com/github/jxlwqq/id-validator/maintainability) From 0336c007dd6caf67fa190c8391aa8911f882faa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=81=E6=B5=B7=E5=86=9B?= Date: Wed, 24 Nov 2021 16:18:27 +0800 Subject: [PATCH 124/128] =?UTF-8?q?=E9=9D=9E=E4=B8=A5=E6=A0=BC=E6=A8=A1?= =?UTF-8?q?=E5=BC=8F=E4=B8=8B=EF=BC=8C=E4=BC=98=E5=85=88=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E8=BE=83=E6=96=B0=E7=9A=84=E5=9C=B0=E5=9D=80=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Helper.php | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/Helper.php b/src/Helper.php index 64f9b58..f6d6a3b 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -64,7 +64,7 @@ private function _getAddress($addressCode, $birthdayCode, $strictMode = false) $timeline = $this->_addressCodeTimeline[$addressCode]; $year = substr($birthdayCode, 0, 4); // 严格模式下,会检查【地址码正式启用的年份】与【身份证上的出生年份】 - foreach ($timeline as $key => $val) { + foreach ($timeline as $val) { $start_year = $val['start_year'] != '' ? $val['start_year'] : '0001'; $end_year = $val['end_year'] != '' ? $val['end_year'] : '9999'; if ($year >= $start_year and $year <= $end_year) { @@ -74,13 +74,10 @@ private function _getAddress($addressCode, $birthdayCode, $strictMode = false) // 非严格模式下,则不会检查【地址码正式启用的年份】与【身份证上的出生年份】的关系 if (empty($address) and !$strictMode) { - foreach ($timeline as $key => $val) { - // 由于较晚申请户口或身份证等原因,导致会出现地址码正式启用于2000年,但实际1999年出生的新生儿,由于晚了一年报户口,导致身份证上的出生年份早于地址码正式启用的年份 - // 由于某些地区的地址码已经废弃,但是实际上在之后的几年依然在使用 - // 这里就不做时间判断了 - $address = $val['address']; - break; - } + // 由于较晚申请户口或身份证等原因,导致会出现地址码正式启用于2000年,但实际1999年出生的新生儿,由于晚了一年报户口,导致身份证上的出生年份早于地址码正式启用的年份 + // 由于某些地区的地址码已经废弃,但是实际上在之后的几年依然在使用 + // 这里就不做时间判断了 + return array_pop($timeline)['address']; } return $address; From d1fac0e4f48160d1915681cbd4f35bdb1adeafc1 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Wed, 24 Nov 2021 16:40:37 +0800 Subject: [PATCH 125/128] ci: add php 8.1 close #68 --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 333526a..e469046 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: operating-system: [ 'ubuntu-latest' ] - php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ] + php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ] steps: - name: Setup PHP uses: shivammathur/setup-php@v2 From 2884acaebc6149aeeb4444a90afad8614135f577 Mon Sep 17 00:00:00 2001 From: liuzhengjian Date: Fri, 10 Dec 2021 14:22:36 +0800 Subject: [PATCH 126/128] =?UTF-8?q?fix=20Call=20to=20a=20member=20function?= =?UTF-8?q?=20format()=20on=20boolean=20,=20=E7=94=9F=E6=97=A5=E5=8C=BA?= =?UTF-8?q?=E9=97=B4=E5=A6=82=E6=9E=9C=E6=9C=89=E4=BB=BB=E6=84=8F=E5=AD=97?= =?UTF-8?q?=E7=AC=A6=E5=A6=82=EF=BC=9A15030319O20807078X=20=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E7=A8=8B=E5=BA=8F=E5=87=BA=E9=94=99=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E8=BF=90=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Checker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Checker.php b/src/Checker.php index 679f78c..3c1db5b 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -111,6 +111,6 @@ private function _checkBirthdayCode($birthdayCode) { $date = DateTime::createFromFormat($format = 'Ymd', $birthdayCode); - return $date->format($format) === $birthdayCode && (int) $date->format('Y') >= 1800; + return $date && $date->format($format) === $birthdayCode && (int) $date->format('Y') >= 1800; } } From a85a3f5f2ec3682cdfce99640b8076329ddc569f Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Fri, 1 Apr 2022 16:39:39 +0800 Subject: [PATCH 127/128] use action v3 --- .github/workflows/testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index e469046..8d3565a 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -19,14 +19,14 @@ jobs: with: php-version: ${{ matrix.php-versions }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Validate composer.json and composer.lock run: composer validate --strict - name: Cache Composer packages id: composer-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: vendor key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} From e14ed5c16c247deb3ca298fd2ae22f098e459cb4 Mon Sep 17 00:00:00 2001 From: jxlwqq Date: Sat, 10 Dec 2022 19:02:09 +0800 Subject: [PATCH 128/128] add PHP 8.2 --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 8d3565a..c7d04a1 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: operating-system: [ 'ubuntu-latest' ] - php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ] + php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] steps: - name: Setup PHP uses: shivammathur/setup-php@v2