├── .browserslistrc ├── .editorconfig ├── .env.development ├── .env.production ├── .eslintrc.js ├── .gitignore ├── .npmrc ├── README.md ├── babel.config.js ├── changelog ├── v-dialogs.md ├── v-dropdown.md ├── v-page.md └── v-region.md ├── cypress.json ├── jsconfig.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── favicon.ico ├── index.css └── index.html ├── src ├── App.vue ├── assets │ ├── gallery │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── logo.png │ └── sample.pdf ├── components │ ├── v-dialogs │ │ ├── Container.js │ │ ├── components │ │ │ ├── Alert.js │ │ │ ├── Drawer.js │ │ │ ├── Mask.js │ │ │ ├── Modal.js │ │ │ └── Toast.js │ │ ├── constants.js │ │ ├── index.js │ │ ├── language.js │ │ ├── mixins │ │ │ ├── index.js │ │ │ └── render.js │ │ ├── styles │ │ │ ├── alert.sass │ │ │ ├── animated.sass │ │ │ ├── dialog.sass │ │ │ ├── icon.scss │ │ │ ├── mask.sass │ │ │ ├── modal.sass │ │ │ └── toast.sass │ │ └── utils │ │ │ ├── helper.js │ │ │ ├── instance.js │ │ │ └── options.js │ ├── v-dropdown │ │ ├── Dropdown.js │ │ ├── dropdown.styl │ │ └── index.js │ ├── v-gallery │ │ ├── Gallery.vue │ │ ├── gallery.scss │ │ └── index.js │ ├── v-page │ │ ├── Page.js │ │ ├── helper.js │ │ ├── index.js │ │ ├── language.js │ │ └── page.sass │ ├── v-playback │ │ ├── Playback.js │ │ └── index.js │ ├── v-region │ │ ├── RegionCityPicker.js │ │ ├── RegionColumns.js │ │ ├── RegionGroup.js │ │ ├── RegionSelects.js │ │ ├── RegionText.js │ │ ├── components │ │ │ ├── Column.js │ │ │ ├── ColumnItem.js │ │ │ ├── Columns.js │ │ │ ├── Group.js │ │ │ └── Select.js │ │ ├── constants.js │ │ ├── data.json │ │ ├── formatted.js │ │ ├── index.js │ │ ├── language.js │ │ ├── mixins │ │ │ ├── data.js │ │ │ ├── method.js │ │ │ └── selector.js │ │ ├── styles │ │ │ ├── city.styl │ │ │ ├── column.styl │ │ │ ├── group.styl │ │ │ ├── icons.styl │ │ │ ├── region.styl │ │ │ └── select.styl │ │ ├── town │ │ │ ├── 110101.json │ │ │ ├── 110102.json │ │ │ ├── 110105.json │ │ │ ├── 110106.json │ │ │ ├── 110107.json │ │ │ ├── 110108.json │ │ │ ├── 110109.json │ │ │ ├── 110111.json │ │ │ ├── 110112.json │ │ │ ├── 110113.json │ │ │ ├── 110114.json │ │ │ ├── 110115.json │ │ │ ├── 110116.json │ │ │ ├── 110117.json │ │ │ ├── 110118.json │ │ │ ├── 110119.json │ │ │ ├── 110228.json │ │ │ ├── 110229.json │ │ │ ├── 120101.json │ │ │ ├── 120102.json │ │ │ ├── 120103.json │ │ │ ├── 120104.json │ │ │ ├── 120105.json │ │ │ ├── 120106.json │ │ │ ├── 120110.json │ │ │ ├── 120111.json │ │ │ ├── 120112.json │ │ │ ├── 120113.json │ │ │ ├── 120114.json │ │ │ ├── 120115.json │ │ │ ├── 120116.json │ │ │ ├── 120117.json │ │ │ ├── 120118.json │ │ │ ├── 120119.json │ │ │ ├── 120225.json │ │ │ ├── 130102.json │ │ │ ├── 130104.json │ │ │ ├── 130105.json │ │ │ ├── 130107.json │ │ │ ├── 130108.json │ │ │ ├── 130109.json │ │ │ ├── 130110.json │ │ │ ├── 130111.json │ │ │ ├── 130121.json │ │ │ ├── 130123.json │ │ │ ├── 130125.json │ │ │ ├── 130126.json │ │ │ ├── 130127.json │ │ │ ├── 130128.json │ │ │ ├── 130129.json │ │ │ ├── 130130.json │ │ │ ├── 130131.json │ │ │ ├── 130132.json │ │ │ ├── 130133.json │ │ │ ├── 130171.json │ │ │ ├── 130172.json │ │ │ ├── 130181.json │ │ │ ├── 130183.json │ │ │ ├── 130184.json │ │ │ ├── 130202.json │ │ │ ├── 130203.json │ │ │ ├── 130204.json │ │ │ ├── 130205.json │ │ │ ├── 130207.json │ │ │ ├── 130208.json │ │ │ ├── 130209.json │ │ │ ├── 130223.json │ │ │ ├── 130224.json │ │ │ ├── 130225.json │ │ │ ├── 130227.json │ │ │ ├── 130229.json │ │ │ ├── 130271.json │ │ │ ├── 130272.json │ │ │ ├── 130273.json │ │ │ ├── 130274.json │ │ │ ├── 130281.json │ │ │ ├── 130283.json │ │ │ ├── 130284.json │ │ │ ├── 130302.json │ │ │ ├── 130303.json │ │ │ ├── 130304.json │ │ │ ├── 130306.json │ │ │ ├── 130321.json │ │ │ ├── 130322.json │ │ │ ├── 130324.json │ │ │ ├── 130371.json │ │ │ ├── 130372.json │ │ │ ├── 130402.json │ │ │ ├── 130403.json │ │ │ ├── 130404.json │ │ │ ├── 130406.json │ │ │ ├── 130407.json │ │ │ ├── 130408.json │ │ │ ├── 130421.json │ │ │ ├── 130423.json │ │ │ ├── 130424.json │ │ │ ├── 130425.json │ │ │ ├── 130426.json │ │ │ ├── 130427.json │ │ │ ├── 130428.json │ │ │ ├── 130429.json │ │ │ ├── 130430.json │ │ │ ├── 130431.json │ │ │ ├── 130432.json │ │ │ ├── 130433.json │ │ │ ├── 130434.json │ │ │ ├── 130435.json │ │ │ ├── 130471.json │ │ │ ├── 130473.json │ │ │ ├── 130481.json │ │ │ ├── 130502.json │ │ │ ├── 130503.json │ │ │ ├── 130505.json │ │ │ ├── 130506.json │ │ │ ├── 130521.json │ │ │ ├── 130522.json │ │ │ ├── 130523.json │ │ │ ├── 130524.json │ │ │ ├── 130525.json │ │ │ ├── 130526.json │ │ │ ├── 130527.json │ │ │ ├── 130528.json │ │ │ ├── 130529.json │ │ │ ├── 130530.json │ │ │ ├── 130531.json │ │ │ ├── 130532.json │ │ │ ├── 130533.json │ │ │ ├── 130534.json │ │ │ ├── 130535.json │ │ │ ├── 130571.json │ │ │ ├── 130581.json │ │ │ ├── 130582.json │ │ │ ├── 130602.json │ │ │ ├── 130606.json │ │ │ ├── 130607.json │ │ │ ├── 130608.json │ │ │ ├── 130609.json │ │ │ ├── 130623.json │ │ │ ├── 130624.json │ │ │ ├── 130626.json │ │ │ ├── 130627.json │ │ │ ├── 130628.json │ │ │ ├── 130629.json │ │ │ ├── 130630.json │ │ │ ├── 130631.json │ │ │ ├── 130632.json │ │ │ ├── 130633.json │ │ │ ├── 130634.json │ │ │ ├── 130635.json │ │ │ ├── 130636.json │ │ │ ├── 130637.json │ │ │ ├── 130638.json │ │ │ ├── 130671.json │ │ │ ├── 130672.json │ │ │ ├── 130681.json │ │ │ ├── 130682.json │ │ │ ├── 130683.json │ │ │ ├── 130684.json │ │ │ ├── 130702.json │ │ │ ├── 130703.json │ │ │ ├── 130705.json │ │ │ ├── 130706.json │ │ │ ├── 130708.json │ │ │ ├── 130709.json │ │ │ ├── 130721.json │ │ │ ├── 130722.json │ │ │ ├── 130723.json │ │ │ ├── 130724.json │ │ │ ├── 130725.json │ │ │ ├── 130726.json │ │ │ ├── 130727.json │ │ │ ├── 130728.json │ │ │ ├── 130729.json │ │ │ ├── 130730.json │ │ │ ├── 130731.json │ │ │ ├── 130732.json │ │ │ ├── 130733.json │ │ │ ├── 130771.json │ │ │ ├── 130772.json │ │ │ ├── 130773.json │ │ │ ├── 130802.json │ │ │ ├── 130803.json │ │ │ ├── 130804.json │ │ │ ├── 130821.json │ │ │ ├── 130822.json │ │ │ ├── 130823.json │ │ │ ├── 130824.json │ │ │ ├── 130825.json │ │ │ ├── 130826.json │ │ │ ├── 130827.json │ │ │ ├── 130828.json │ │ │ ├── 130871.json │ │ │ ├── 130881.json │ │ │ ├── 130902.json │ │ │ ├── 130903.json │ │ │ ├── 130921.json │ │ │ ├── 130922.json │ │ │ ├── 130923.json │ │ │ ├── 130924.json │ │ │ ├── 130925.json │ │ │ ├── 130926.json │ │ │ ├── 130927.json │ │ │ ├── 130928.json │ │ │ ├── 130929.json │ │ │ ├── 130930.json │ │ │ ├── 130971.json │ │ │ ├── 130972.json │ │ │ ├── 130973.json │ │ │ ├── 130981.json │ │ │ ├── 130982.json │ │ │ ├── 130983.json │ │ │ ├── 130984.json │ │ │ ├── 131002.json │ │ │ ├── 131003.json │ │ │ ├── 131022.json │ │ │ ├── 131023.json │ │ │ ├── 131024.json │ │ │ ├── 131025.json │ │ │ ├── 131026.json │ │ │ ├── 131028.json │ │ │ ├── 131071.json │ │ │ ├── 131081.json │ │ │ ├── 131082.json │ │ │ ├── 131102.json │ │ │ ├── 131103.json │ │ │ ├── 131121.json │ │ │ ├── 131122.json │ │ │ ├── 131123.json │ │ │ ├── 131124.json │ │ │ ├── 131125.json │ │ │ ├── 131126.json │ │ │ ├── 131127.json │ │ │ ├── 131128.json │ │ │ ├── 131171.json │ │ │ ├── 131172.json │ │ │ ├── 131181.json │ │ │ ├── 131182.json │ │ │ ├── 139001.json │ │ │ ├── 139002.json │ │ │ ├── 140105.json │ │ │ ├── 140106.json │ │ │ ├── 140107.json │ │ │ ├── 140108.json │ │ │ ├── 140109.json │ │ │ ├── 140110.json │ │ │ ├── 140121.json │ │ │ ├── 140122.json │ │ │ ├── 140123.json │ │ │ ├── 140171.json │ │ │ ├── 140181.json │ │ │ ├── 140202.json │ │ │ ├── 140203.json │ │ │ ├── 140211.json │ │ │ ├── 140212.json │ │ │ ├── 140213.json │ │ │ ├── 140214.json │ │ │ ├── 140215.json │ │ │ ├── 140221.json │ │ │ ├── 140222.json │ │ │ ├── 140223.json │ │ │ ├── 140224.json │ │ │ ├── 140225.json │ │ │ ├── 140226.json │ │ │ ├── 140227.json │ │ │ ├── 140271.json │ │ │ ├── 140302.json │ │ │ ├── 140303.json │ │ │ ├── 140311.json │ │ │ ├── 140321.json │ │ │ ├── 140322.json │ │ │ ├── 140402.json │ │ │ ├── 140403.json │ │ │ ├── 140404.json │ │ │ ├── 140405.json │ │ │ ├── 140406.json │ │ │ ├── 140411.json │ │ │ ├── 140421.json │ │ │ ├── 140423.json │ │ │ ├── 140424.json │ │ │ ├── 140425.json │ │ │ ├── 140426.json │ │ │ ├── 140427.json │ │ │ ├── 140428.json │ │ │ ├── 140429.json │ │ │ ├── 140430.json │ │ │ ├── 140431.json │ │ │ ├── 140471.json │ │ │ ├── 140481.json │ │ │ ├── 140502.json │ │ │ ├── 140521.json │ │ │ ├── 140522.json │ │ │ ├── 140524.json │ │ │ ├── 140525.json │ │ │ ├── 140581.json │ │ │ ├── 140602.json │ │ │ ├── 140603.json │ │ │ ├── 140621.json │ │ │ ├── 140622.json │ │ │ ├── 140623.json │ │ │ ├── 140624.json │ │ │ ├── 140671.json │ │ │ ├── 140681.json │ │ │ ├── 140702.json │ │ │ ├── 140703.json │ │ │ ├── 140721.json │ │ │ ├── 140722.json │ │ │ ├── 140723.json │ │ │ ├── 140724.json │ │ │ ├── 140725.json │ │ │ ├── 140726.json │ │ │ ├── 140727.json │ │ │ ├── 140728.json │ │ │ ├── 140729.json │ │ │ ├── 140781.json │ │ │ ├── 140802.json │ │ │ ├── 140821.json │ │ │ ├── 140822.json │ │ │ ├── 140823.json │ │ │ ├── 140824.json │ │ │ ├── 140825.json │ │ │ ├── 140826.json │ │ │ ├── 140827.json │ │ │ ├── 140828.json │ │ │ ├── 140829.json │ │ │ ├── 140830.json │ │ │ ├── 140881.json │ │ │ ├── 140882.json │ │ │ ├── 140902.json │ │ │ ├── 140921.json │ │ │ ├── 140922.json │ │ │ ├── 140923.json │ │ │ ├── 140924.json │ │ │ ├── 140925.json │ │ │ ├── 140926.json │ │ │ ├── 140927.json │ │ │ ├── 140928.json │ │ │ ├── 140929.json │ │ │ ├── 140930.json │ │ │ ├── 140931.json │ │ │ ├── 140932.json │ │ │ ├── 140971.json │ │ │ ├── 140981.json │ │ │ ├── 141002.json │ │ │ ├── 141021.json │ │ │ ├── 141022.json │ │ │ ├── 141023.json │ │ │ ├── 141024.json │ │ │ ├── 141025.json │ │ │ ├── 141026.json │ │ │ ├── 141027.json │ │ │ ├── 141028.json │ │ │ ├── 141029.json │ │ │ ├── 141030.json │ │ │ ├── 141031.json │ │ │ ├── 141032.json │ │ │ ├── 141033.json │ │ │ ├── 141034.json │ │ │ ├── 141081.json │ │ │ ├── 141082.json │ │ │ ├── 141102.json │ │ │ ├── 141121.json │ │ │ ├── 141122.json │ │ │ ├── 141123.json │ │ │ ├── 141124.json │ │ │ ├── 141125.json │ │ │ ├── 141126.json │ │ │ ├── 141127.json │ │ │ ├── 141128.json │ │ │ ├── 141129.json │ │ │ ├── 141130.json │ │ │ ├── 141181.json │ │ │ ├── 141182.json │ │ │ ├── 150102.json │ │ │ ├── 150103.json │ │ │ ├── 150104.json │ │ │ ├── 150105.json │ │ │ ├── 150121.json │ │ │ ├── 150122.json │ │ │ ├── 150123.json │ │ │ ├── 150124.json │ │ │ ├── 150125.json │ │ │ ├── 150171.json │ │ │ ├── 150172.json │ │ │ ├── 150202.json │ │ │ ├── 150203.json │ │ │ ├── 150204.json │ │ │ ├── 150205.json │ │ │ ├── 150206.json │ │ │ ├── 150207.json │ │ │ ├── 150221.json │ │ │ ├── 150222.json │ │ │ ├── 150223.json │ │ │ ├── 150271.json │ │ │ ├── 150302.json │ │ │ ├── 150303.json │ │ │ ├── 150304.json │ │ │ ├── 150402.json │ │ │ ├── 150403.json │ │ │ ├── 150404.json │ │ │ ├── 150421.json │ │ │ ├── 150422.json │ │ │ ├── 150423.json │ │ │ ├── 150424.json │ │ │ ├── 150425.json │ │ │ ├── 150426.json │ │ │ ├── 150428.json │ │ │ ├── 150429.json │ │ │ ├── 150430.json │ │ │ ├── 150502.json │ │ │ ├── 150521.json │ │ │ ├── 150522.json │ │ │ ├── 150523.json │ │ │ ├── 150524.json │ │ │ ├── 150525.json │ │ │ ├── 150526.json │ │ │ ├── 150571.json │ │ │ ├── 150581.json │ │ │ ├── 150602.json │ │ │ ├── 150603.json │ │ │ ├── 150621.json │ │ │ ├── 150622.json │ │ │ ├── 150623.json │ │ │ ├── 150624.json │ │ │ ├── 150625.json │ │ │ ├── 150626.json │ │ │ ├── 150627.json │ │ │ ├── 150702.json │ │ │ ├── 150703.json │ │ │ ├── 150721.json │ │ │ ├── 150722.json │ │ │ ├── 150723.json │ │ │ ├── 150724.json │ │ │ ├── 150725.json │ │ │ ├── 150726.json │ │ │ ├── 150727.json │ │ │ ├── 150781.json │ │ │ ├── 150782.json │ │ │ ├── 150783.json │ │ │ ├── 150784.json │ │ │ ├── 150785.json │ │ │ ├── 150802.json │ │ │ ├── 150821.json │ │ │ ├── 150822.json │ │ │ ├── 150823.json │ │ │ ├── 150824.json │ │ │ ├── 150825.json │ │ │ ├── 150826.json │ │ │ ├── 150902.json │ │ │ ├── 150921.json │ │ │ ├── 150922.json │ │ │ ├── 150923.json │ │ │ ├── 150924.json │ │ │ ├── 150925.json │ │ │ ├── 150926.json │ │ │ ├── 150927.json │ │ │ ├── 150928.json │ │ │ ├── 150929.json │ │ │ ├── 150981.json │ │ │ ├── 152201.json │ │ │ ├── 152202.json │ │ │ ├── 152221.json │ │ │ ├── 152222.json │ │ │ ├── 152223.json │ │ │ ├── 152224.json │ │ │ ├── 152501.json │ │ │ ├── 152502.json │ │ │ ├── 152522.json │ │ │ ├── 152523.json │ │ │ ├── 152524.json │ │ │ ├── 152525.json │ │ │ ├── 152526.json │ │ │ ├── 152527.json │ │ │ ├── 152528.json │ │ │ ├── 152529.json │ │ │ ├── 152530.json │ │ │ ├── 152531.json │ │ │ ├── 152571.json │ │ │ ├── 152921.json │ │ │ ├── 152922.json │ │ │ ├── 152923.json │ │ │ ├── 152971.json │ │ │ ├── 210102.json │ │ │ ├── 210103.json │ │ │ ├── 210104.json │ │ │ ├── 210105.json │ │ │ ├── 210106.json │ │ │ ├── 210111.json │ │ │ ├── 210112.json │ │ │ ├── 210113.json │ │ │ ├── 210114.json │ │ │ ├── 210115.json │ │ │ ├── 210122.json │ │ │ ├── 210123.json │ │ │ ├── 210124.json │ │ │ ├── 210181.json │ │ │ ├── 210202.json │ │ │ ├── 210203.json │ │ │ ├── 210204.json │ │ │ ├── 210211.json │ │ │ ├── 210212.json │ │ │ ├── 210213.json │ │ │ ├── 210214.json │ │ │ ├── 210224.json │ │ │ ├── 210281.json │ │ │ ├── 210282.json │ │ │ ├── 210283.json │ │ │ ├── 210302.json │ │ │ ├── 210303.json │ │ │ ├── 210304.json │ │ │ ├── 210311.json │ │ │ ├── 210321.json │ │ │ ├── 210323.json │ │ │ ├── 210381.json │ │ │ ├── 210402.json │ │ │ ├── 210403.json │ │ │ ├── 210404.json │ │ │ ├── 210411.json │ │ │ ├── 210421.json │ │ │ ├── 210422.json │ │ │ ├── 210423.json │ │ │ ├── 210502.json │ │ │ ├── 210503.json │ │ │ ├── 210504.json │ │ │ ├── 210505.json │ │ │ ├── 210521.json │ │ │ ├── 210522.json │ │ │ ├── 210602.json │ │ │ ├── 210603.json │ │ │ ├── 210604.json │ │ │ ├── 210624.json │ │ │ ├── 210681.json │ │ │ ├── 210682.json │ │ │ ├── 210702.json │ │ │ ├── 210703.json │ │ │ ├── 210711.json │ │ │ ├── 210726.json │ │ │ ├── 210727.json │ │ │ ├── 210781.json │ │ │ ├── 210782.json │ │ │ ├── 210802.json │ │ │ ├── 210803.json │ │ │ ├── 210804.json │ │ │ ├── 210811.json │ │ │ ├── 210881.json │ │ │ ├── 210882.json │ │ │ ├── 210902.json │ │ │ ├── 210903.json │ │ │ ├── 210904.json │ │ │ ├── 210905.json │ │ │ ├── 210911.json │ │ │ ├── 210921.json │ │ │ ├── 210922.json │ │ │ ├── 211002.json │ │ │ ├── 211003.json │ │ │ ├── 211004.json │ │ │ ├── 211005.json │ │ │ ├── 211011.json │ │ │ ├── 211021.json │ │ │ ├── 211081.json │ │ │ ├── 211102.json │ │ │ ├── 211103.json │ │ │ ├── 211104.json │ │ │ ├── 211121.json │ │ │ ├── 211122.json │ │ │ ├── 211202.json │ │ │ ├── 211204.json │ │ │ ├── 211221.json │ │ │ ├── 211223.json │ │ │ ├── 211224.json │ │ │ ├── 211281.json │ │ │ ├── 211282.json │ │ │ ├── 211302.json │ │ │ ├── 211303.json │ │ │ ├── 211321.json │ │ │ ├── 211322.json │ │ │ ├── 211324.json │ │ │ ├── 211381.json │ │ │ ├── 211382.json │ │ │ ├── 211402.json │ │ │ ├── 211403.json │ │ │ ├── 211404.json │ │ │ ├── 211421.json │ │ │ ├── 211422.json │ │ │ ├── 211481.json │ │ │ ├── 220102.json │ │ │ ├── 220103.json │ │ │ ├── 220104.json │ │ │ ├── 220105.json │ │ │ ├── 220106.json │ │ │ ├── 220112.json │ │ │ ├── 220113.json │ │ │ ├── 220122.json │ │ │ ├── 220171.json │ │ │ ├── 220172.json │ │ │ ├── 220173.json │ │ │ ├── 220174.json │ │ │ ├── 220182.json │ │ │ ├── 220183.json │ │ │ ├── 220184.json │ │ │ ├── 220202.json │ │ │ ├── 220203.json │ │ │ ├── 220204.json │ │ │ ├── 220211.json │ │ │ ├── 220221.json │ │ │ ├── 220271.json │ │ │ ├── 220272.json │ │ │ ├── 220273.json │ │ │ ├── 220281.json │ │ │ ├── 220282.json │ │ │ ├── 220283.json │ │ │ ├── 220284.json │ │ │ ├── 220302.json │ │ │ ├── 220303.json │ │ │ ├── 220322.json │ │ │ ├── 220323.json │ │ │ ├── 220381.json │ │ │ ├── 220382.json │ │ │ ├── 220402.json │ │ │ ├── 220403.json │ │ │ ├── 220421.json │ │ │ ├── 220422.json │ │ │ ├── 220502.json │ │ │ ├── 220503.json │ │ │ ├── 220521.json │ │ │ ├── 220523.json │ │ │ ├── 220524.json │ │ │ ├── 220581.json │ │ │ ├── 220582.json │ │ │ ├── 220602.json │ │ │ ├── 220605.json │ │ │ ├── 220621.json │ │ │ ├── 220622.json │ │ │ ├── 220623.json │ │ │ ├── 220681.json │ │ │ ├── 220702.json │ │ │ ├── 220721.json │ │ │ ├── 220722.json │ │ │ ├── 220723.json │ │ │ ├── 220771.json │ │ │ ├── 220781.json │ │ │ ├── 220802.json │ │ │ ├── 220821.json │ │ │ ├── 220822.json │ │ │ ├── 220871.json │ │ │ ├── 220881.json │ │ │ ├── 220882.json │ │ │ ├── 222401.json │ │ │ ├── 222402.json │ │ │ ├── 222403.json │ │ │ ├── 222404.json │ │ │ ├── 222405.json │ │ │ ├── 222406.json │ │ │ ├── 222424.json │ │ │ ├── 222426.json │ │ │ ├── 230102.json │ │ │ ├── 230103.json │ │ │ ├── 230104.json │ │ │ ├── 230108.json │ │ │ ├── 230109.json │ │ │ ├── 230110.json │ │ │ ├── 230111.json │ │ │ ├── 230112.json │ │ │ ├── 230113.json │ │ │ ├── 230123.json │ │ │ ├── 230124.json │ │ │ ├── 230125.json │ │ │ ├── 230126.json │ │ │ ├── 230127.json │ │ │ ├── 230128.json │ │ │ ├── 230129.json │ │ │ ├── 230183.json │ │ │ ├── 230184.json │ │ │ ├── 230202.json │ │ │ ├── 230203.json │ │ │ ├── 230204.json │ │ │ ├── 230205.json │ │ │ ├── 230206.json │ │ │ ├── 230207.json │ │ │ ├── 230208.json │ │ │ ├── 230221.json │ │ │ ├── 230223.json │ │ │ ├── 230224.json │ │ │ ├── 230225.json │ │ │ ├── 230227.json │ │ │ ├── 230229.json │ │ │ ├── 230230.json │ │ │ ├── 230231.json │ │ │ ├── 230281.json │ │ │ ├── 230302.json │ │ │ ├── 230303.json │ │ │ ├── 230304.json │ │ │ ├── 230305.json │ │ │ ├── 230306.json │ │ │ ├── 230307.json │ │ │ ├── 230321.json │ │ │ ├── 230381.json │ │ │ ├── 230382.json │ │ │ ├── 230402.json │ │ │ ├── 230403.json │ │ │ ├── 230404.json │ │ │ ├── 230405.json │ │ │ ├── 230406.json │ │ │ ├── 230407.json │ │ │ ├── 230421.json │ │ │ ├── 230422.json │ │ │ ├── 230502.json │ │ │ ├── 230503.json │ │ │ ├── 230505.json │ │ │ ├── 230506.json │ │ │ ├── 230521.json │ │ │ ├── 230522.json │ │ │ ├── 230523.json │ │ │ ├── 230524.json │ │ │ ├── 230602.json │ │ │ ├── 230603.json │ │ │ ├── 230604.json │ │ │ ├── 230605.json │ │ │ ├── 230606.json │ │ │ ├── 230621.json │ │ │ ├── 230622.json │ │ │ ├── 230623.json │ │ │ ├── 230624.json │ │ │ ├── 230671.json │ │ │ ├── 230702.json │ │ │ ├── 230703.json │ │ │ ├── 230704.json │ │ │ ├── 230705.json │ │ │ ├── 230706.json │ │ │ ├── 230707.json │ │ │ ├── 230708.json │ │ │ ├── 230709.json │ │ │ ├── 230710.json │ │ │ ├── 230711.json │ │ │ ├── 230712.json │ │ │ ├── 230713.json │ │ │ ├── 230714.json │ │ │ ├── 230715.json │ │ │ ├── 230716.json │ │ │ ├── 230717.json │ │ │ ├── 230718.json │ │ │ ├── 230719.json │ │ │ ├── 230722.json │ │ │ ├── 230723.json │ │ │ ├── 230724.json │ │ │ ├── 230725.json │ │ │ ├── 230726.json │ │ │ ├── 230751.json │ │ │ ├── 230781.json │ │ │ ├── 230803.json │ │ │ ├── 230804.json │ │ │ ├── 230805.json │ │ │ ├── 230811.json │ │ │ ├── 230822.json │ │ │ ├── 230826.json │ │ │ ├── 230828.json │ │ │ ├── 230833.json │ │ │ ├── 230881.json │ │ │ ├── 230882.json │ │ │ ├── 230883.json │ │ │ ├── 230902.json │ │ │ ├── 230903.json │ │ │ ├── 230904.json │ │ │ ├── 230921.json │ │ │ ├── 231002.json │ │ │ ├── 231003.json │ │ │ ├── 231004.json │ │ │ ├── 231005.json │ │ │ ├── 231024.json │ │ │ ├── 231025.json │ │ │ ├── 231071.json │ │ │ ├── 231081.json │ │ │ ├── 231083.json │ │ │ ├── 231084.json │ │ │ ├── 231085.json │ │ │ ├── 231086.json │ │ │ ├── 231102.json │ │ │ ├── 231121.json │ │ │ ├── 231123.json │ │ │ ├── 231124.json │ │ │ ├── 231181.json │ │ │ ├── 231182.json │ │ │ ├── 231183.json │ │ │ ├── 231202.json │ │ │ ├── 231221.json │ │ │ ├── 231222.json │ │ │ ├── 231223.json │ │ │ ├── 231224.json │ │ │ ├── 231225.json │ │ │ ├── 231226.json │ │ │ ├── 231281.json │ │ │ ├── 231282.json │ │ │ ├── 231283.json │ │ │ ├── 232701.json │ │ │ ├── 232721.json │ │ │ ├── 232722.json │ │ │ ├── 232723.json │ │ │ ├── 232761.json │ │ │ ├── 232762.json │ │ │ ├── 232763.json │ │ │ ├── 232764.json │ │ │ ├── 310101.json │ │ │ ├── 310104.json │ │ │ ├── 310105.json │ │ │ ├── 310106.json │ │ │ ├── 310107.json │ │ │ ├── 310108.json │ │ │ ├── 310109.json │ │ │ ├── 310110.json │ │ │ ├── 310112.json │ │ │ ├── 310113.json │ │ │ ├── 310114.json │ │ │ ├── 310115.json │ │ │ ├── 310116.json │ │ │ ├── 310117.json │ │ │ ├── 310118.json │ │ │ ├── 310120.json │ │ │ ├── 310151.json │ │ │ ├── 310230.json │ │ │ ├── 320102.json │ │ │ ├── 320104.json │ │ │ ├── 320105.json │ │ │ ├── 320106.json │ │ │ ├── 320111.json │ │ │ ├── 320113.json │ │ │ ├── 320114.json │ │ │ ├── 320115.json │ │ │ ├── 320116.json │ │ │ ├── 320117.json │ │ │ ├── 320118.json │ │ │ ├── 320202.json │ │ │ ├── 320203.json │ │ │ ├── 320204.json │ │ │ ├── 320205.json │ │ │ ├── 320206.json │ │ │ ├── 320211.json │ │ │ ├── 320213.json │ │ │ ├── 320214.json │ │ │ ├── 320281.json │ │ │ ├── 320282.json │ │ │ ├── 320302.json │ │ │ ├── 320303.json │ │ │ ├── 320305.json │ │ │ ├── 320311.json │ │ │ ├── 320312.json │ │ │ ├── 320321.json │ │ │ ├── 320322.json │ │ │ ├── 320324.json │ │ │ ├── 320371.json │ │ │ ├── 320381.json │ │ │ ├── 320382.json │ │ │ ├── 320402.json │ │ │ ├── 320404.json │ │ │ ├── 320411.json │ │ │ ├── 320412.json │ │ │ ├── 320413.json │ │ │ ├── 320481.json │ │ │ ├── 320505.json │ │ │ ├── 320506.json │ │ │ ├── 320507.json │ │ │ ├── 320508.json │ │ │ ├── 320509.json │ │ │ ├── 320571.json │ │ │ ├── 320581.json │ │ │ ├── 320582.json │ │ │ ├── 320583.json │ │ │ ├── 320585.json │ │ │ ├── 320602.json │ │ │ ├── 320611.json │ │ │ ├── 320612.json │ │ │ ├── 320613.json │ │ │ ├── 320614.json │ │ │ ├── 320621.json │ │ │ ├── 320623.json │ │ │ ├── 320671.json │ │ │ ├── 320681.json │ │ │ ├── 320682.json │ │ │ ├── 320684.json │ │ │ ├── 320685.json │ │ │ ├── 320703.json │ │ │ ├── 320706.json │ │ │ ├── 320707.json │ │ │ ├── 320722.json │ │ │ ├── 320723.json │ │ │ ├── 320724.json │ │ │ ├── 320771.json │ │ │ ├── 320772.json │ │ │ ├── 320802.json │ │ │ ├── 320803.json │ │ │ ├── 320804.json │ │ │ ├── 320811.json │ │ │ ├── 320812.json │ │ │ ├── 320813.json │ │ │ ├── 320826.json │ │ │ ├── 320829.json │ │ │ ├── 320830.json │ │ │ ├── 320831.json │ │ │ ├── 320871.json │ │ │ ├── 320902.json │ │ │ ├── 320903.json │ │ │ ├── 320904.json │ │ │ ├── 320921.json │ │ │ ├── 320922.json │ │ │ ├── 320923.json │ │ │ ├── 320924.json │ │ │ ├── 320925.json │ │ │ ├── 320971.json │ │ │ ├── 320981.json │ │ │ ├── 321002.json │ │ │ ├── 321003.json │ │ │ ├── 321012.json │ │ │ ├── 321023.json │ │ │ ├── 321071.json │ │ │ ├── 321081.json │ │ │ ├── 321084.json │ │ │ ├── 321102.json │ │ │ ├── 321111.json │ │ │ ├── 321112.json │ │ │ ├── 321171.json │ │ │ ├── 321181.json │ │ │ ├── 321182.json │ │ │ ├── 321183.json │ │ │ ├── 321202.json │ │ │ ├── 321203.json │ │ │ ├── 321204.json │ │ │ ├── 321271.json │ │ │ ├── 321281.json │ │ │ ├── 321282.json │ │ │ ├── 321283.json │ │ │ ├── 321302.json │ │ │ ├── 321311.json │ │ │ ├── 321322.json │ │ │ ├── 321323.json │ │ │ ├── 321324.json │ │ │ ├── 321371.json │ │ │ ├── 330102.json │ │ │ ├── 330103.json │ │ │ ├── 330104.json │ │ │ ├── 330105.json │ │ │ ├── 330106.json │ │ │ ├── 330108.json │ │ │ ├── 330109.json │ │ │ ├── 330110.json │ │ │ ├── 330111.json │ │ │ ├── 330112.json │ │ │ ├── 330113.json │ │ │ ├── 330114.json │ │ │ ├── 330122.json │ │ │ ├── 330127.json │ │ │ ├── 330182.json │ │ │ ├── 330185.json │ │ │ ├── 330203.json │ │ │ ├── 330204.json │ │ │ ├── 330205.json │ │ │ ├── 330206.json │ │ │ ├── 330211.json │ │ │ ├── 330212.json │ │ │ ├── 330213.json │ │ │ ├── 330225.json │ │ │ ├── 330226.json │ │ │ ├── 330281.json │ │ │ ├── 330282.json │ │ │ ├── 330283.json │ │ │ ├── 330302.json │ │ │ ├── 330303.json │ │ │ ├── 330304.json │ │ │ ├── 330305.json │ │ │ ├── 330324.json │ │ │ ├── 330326.json │ │ │ ├── 330327.json │ │ │ ├── 330328.json │ │ │ ├── 330329.json │ │ │ ├── 330371.json │ │ │ ├── 330381.json │ │ │ ├── 330382.json │ │ │ ├── 330383.json │ │ │ ├── 330402.json │ │ │ ├── 330411.json │ │ │ ├── 330421.json │ │ │ ├── 330424.json │ │ │ ├── 330481.json │ │ │ ├── 330482.json │ │ │ ├── 330483.json │ │ │ ├── 330502.json │ │ │ ├── 330503.json │ │ │ ├── 330521.json │ │ │ ├── 330522.json │ │ │ ├── 330523.json │ │ │ ├── 330602.json │ │ │ ├── 330603.json │ │ │ ├── 330604.json │ │ │ ├── 330624.json │ │ │ ├── 330681.json │ │ │ ├── 330683.json │ │ │ ├── 330702.json │ │ │ ├── 330703.json │ │ │ ├── 330723.json │ │ │ ├── 330726.json │ │ │ ├── 330727.json │ │ │ ├── 330781.json │ │ │ ├── 330782.json │ │ │ ├── 330783.json │ │ │ ├── 330784.json │ │ │ ├── 330802.json │ │ │ ├── 330803.json │ │ │ ├── 330822.json │ │ │ ├── 330824.json │ │ │ ├── 330825.json │ │ │ ├── 330881.json │ │ │ ├── 330902.json │ │ │ ├── 330903.json │ │ │ ├── 330921.json │ │ │ ├── 330922.json │ │ │ ├── 331002.json │ │ │ ├── 331003.json │ │ │ ├── 331004.json │ │ │ ├── 331021.json │ │ │ ├── 331022.json │ │ │ ├── 331023.json │ │ │ ├── 331024.json │ │ │ ├── 331081.json │ │ │ ├── 331082.json │ │ │ ├── 331083.json │ │ │ ├── 331102.json │ │ │ ├── 331121.json │ │ │ ├── 331122.json │ │ │ ├── 331123.json │ │ │ ├── 331124.json │ │ │ ├── 331125.json │ │ │ ├── 331126.json │ │ │ ├── 331127.json │ │ │ ├── 331181.json │ │ │ ├── 340102.json │ │ │ ├── 340103.json │ │ │ ├── 340104.json │ │ │ ├── 340111.json │ │ │ ├── 340121.json │ │ │ ├── 340122.json │ │ │ ├── 340123.json │ │ │ ├── 340124.json │ │ │ ├── 340171.json │ │ │ ├── 340172.json │ │ │ ├── 340173.json │ │ │ ├── 340181.json │ │ │ ├── 340202.json │ │ │ ├── 340203.json │ │ │ ├── 340207.json │ │ │ ├── 340208.json │ │ │ ├── 340209.json │ │ │ ├── 340210.json │ │ │ ├── 340212.json │ │ │ ├── 340221.json │ │ │ ├── 340222.json │ │ │ ├── 340223.json │ │ │ ├── 340225.json │ │ │ ├── 340271.json │ │ │ ├── 340272.json │ │ │ ├── 340281.json │ │ │ ├── 340302.json │ │ │ ├── 340303.json │ │ │ ├── 340304.json │ │ │ ├── 340311.json │ │ │ ├── 340321.json │ │ │ ├── 340322.json │ │ │ ├── 340323.json │ │ │ ├── 340371.json │ │ │ ├── 340372.json │ │ │ ├── 340402.json │ │ │ ├── 340403.json │ │ │ ├── 340404.json │ │ │ ├── 340405.json │ │ │ ├── 340406.json │ │ │ ├── 340421.json │ │ │ ├── 340422.json │ │ │ ├── 340503.json │ │ │ ├── 340504.json │ │ │ ├── 340506.json │ │ │ ├── 340521.json │ │ │ ├── 340522.json │ │ │ ├── 340523.json │ │ │ ├── 340602.json │ │ │ ├── 340603.json │ │ │ ├── 340604.json │ │ │ ├── 340621.json │ │ │ ├── 340702.json │ │ │ ├── 340703.json │ │ │ ├── 340705.json │ │ │ ├── 340706.json │ │ │ ├── 340711.json │ │ │ ├── 340721.json │ │ │ ├── 340722.json │ │ │ ├── 340802.json │ │ │ ├── 340803.json │ │ │ ├── 340811.json │ │ │ ├── 340822.json │ │ │ ├── 340823.json │ │ │ ├── 340824.json │ │ │ ├── 340825.json │ │ │ ├── 340826.json │ │ │ ├── 340827.json │ │ │ ├── 340828.json │ │ │ ├── 340871.json │ │ │ ├── 340881.json │ │ │ ├── 340882.json │ │ │ ├── 341002.json │ │ │ ├── 341003.json │ │ │ ├── 341004.json │ │ │ ├── 341021.json │ │ │ ├── 341022.json │ │ │ ├── 341023.json │ │ │ ├── 341024.json │ │ │ ├── 341102.json │ │ │ ├── 341103.json │ │ │ ├── 341122.json │ │ │ ├── 341124.json │ │ │ ├── 341125.json │ │ │ ├── 341126.json │ │ │ ├── 341171.json │ │ │ ├── 341172.json │ │ │ ├── 341181.json │ │ │ ├── 341182.json │ │ │ ├── 341202.json │ │ │ ├── 341203.json │ │ │ ├── 341204.json │ │ │ ├── 341221.json │ │ │ ├── 341222.json │ │ │ ├── 341225.json │ │ │ ├── 341226.json │ │ │ ├── 341271.json │ │ │ ├── 341272.json │ │ │ ├── 341282.json │ │ │ ├── 341302.json │ │ │ ├── 341321.json │ │ │ ├── 341322.json │ │ │ ├── 341323.json │ │ │ ├── 341324.json │ │ │ ├── 341371.json │ │ │ ├── 341372.json │ │ │ ├── 341502.json │ │ │ ├── 341503.json │ │ │ ├── 341504.json │ │ │ ├── 341521.json │ │ │ ├── 341522.json │ │ │ ├── 341523.json │ │ │ ├── 341524.json │ │ │ ├── 341525.json │ │ │ ├── 341602.json │ │ │ ├── 341621.json │ │ │ ├── 341622.json │ │ │ ├── 341623.json │ │ │ ├── 341702.json │ │ │ ├── 341721.json │ │ │ ├── 341722.json │ │ │ ├── 341723.json │ │ │ ├── 341802.json │ │ │ ├── 341821.json │ │ │ ├── 341822.json │ │ │ ├── 341823.json │ │ │ ├── 341824.json │ │ │ ├── 341825.json │ │ │ ├── 341871.json │ │ │ ├── 341881.json │ │ │ ├── 341882.json │ │ │ ├── 350102.json │ │ │ ├── 350103.json │ │ │ ├── 350104.json │ │ │ ├── 350105.json │ │ │ ├── 350111.json │ │ │ ├── 350112.json │ │ │ ├── 350121.json │ │ │ ├── 350122.json │ │ │ ├── 350123.json │ │ │ ├── 350124.json │ │ │ ├── 350125.json │ │ │ ├── 350128.json │ │ │ ├── 350181.json │ │ │ ├── 350182.json │ │ │ ├── 350203.json │ │ │ ├── 350205.json │ │ │ ├── 350206.json │ │ │ ├── 350211.json │ │ │ ├── 350212.json │ │ │ ├── 350213.json │ │ │ ├── 350302.json │ │ │ ├── 350303.json │ │ │ ├── 350304.json │ │ │ ├── 350305.json │ │ │ ├── 350322.json │ │ │ ├── 350402.json │ │ │ ├── 350403.json │ │ │ ├── 350404.json │ │ │ ├── 350405.json │ │ │ ├── 350421.json │ │ │ ├── 350423.json │ │ │ ├── 350424.json │ │ │ ├── 350425.json │ │ │ ├── 350426.json │ │ │ ├── 350427.json │ │ │ ├── 350428.json │ │ │ ├── 350429.json │ │ │ ├── 350430.json │ │ │ ├── 350481.json │ │ │ ├── 350502.json │ │ │ ├── 350503.json │ │ │ ├── 350504.json │ │ │ ├── 350505.json │ │ │ ├── 350521.json │ │ │ ├── 350524.json │ │ │ ├── 350525.json │ │ │ ├── 350526.json │ │ │ ├── 350581.json │ │ │ ├── 350582.json │ │ │ ├── 350583.json │ │ │ ├── 350602.json │ │ │ ├── 350603.json │ │ │ ├── 350604.json │ │ │ ├── 350605.json │ │ │ ├── 350622.json │ │ │ ├── 350623.json │ │ │ ├── 350624.json │ │ │ ├── 350625.json │ │ │ ├── 350626.json │ │ │ ├── 350627.json │ │ │ ├── 350628.json │ │ │ ├── 350629.json │ │ │ ├── 350681.json │ │ │ ├── 350702.json │ │ │ ├── 350703.json │ │ │ ├── 350721.json │ │ │ ├── 350722.json │ │ │ ├── 350723.json │ │ │ ├── 350724.json │ │ │ ├── 350725.json │ │ │ ├── 350781.json │ │ │ ├── 350782.json │ │ │ ├── 350783.json │ │ │ ├── 350802.json │ │ │ ├── 350803.json │ │ │ ├── 350821.json │ │ │ ├── 350823.json │ │ │ ├── 350824.json │ │ │ ├── 350825.json │ │ │ ├── 350881.json │ │ │ ├── 350902.json │ │ │ ├── 350921.json │ │ │ ├── 350922.json │ │ │ ├── 350923.json │ │ │ ├── 350924.json │ │ │ ├── 350925.json │ │ │ ├── 350926.json │ │ │ ├── 350981.json │ │ │ ├── 350982.json │ │ │ ├── 360102.json │ │ │ ├── 360103.json │ │ │ ├── 360104.json │ │ │ ├── 360105.json │ │ │ ├── 360111.json │ │ │ ├── 360112.json │ │ │ ├── 360113.json │ │ │ ├── 360121.json │ │ │ ├── 360123.json │ │ │ ├── 360124.json │ │ │ ├── 360202.json │ │ │ ├── 360203.json │ │ │ ├── 360222.json │ │ │ ├── 360281.json │ │ │ ├── 360302.json │ │ │ ├── 360313.json │ │ │ ├── 360321.json │ │ │ ├── 360322.json │ │ │ ├── 360323.json │ │ │ ├── 360402.json │ │ │ ├── 360403.json │ │ │ ├── 360404.json │ │ │ ├── 360421.json │ │ │ ├── 360423.json │ │ │ ├── 360424.json │ │ │ ├── 360425.json │ │ │ ├── 360426.json │ │ │ ├── 360427.json │ │ │ ├── 360428.json │ │ │ ├── 360429.json │ │ │ ├── 360430.json │ │ │ ├── 360481.json │ │ │ ├── 360482.json │ │ │ ├── 360483.json │ │ │ ├── 360502.json │ │ │ ├── 360521.json │ │ │ ├── 360602.json │ │ │ ├── 360603.json │ │ │ ├── 360622.json │ │ │ ├── 360681.json │ │ │ ├── 360702.json │ │ │ ├── 360703.json │ │ │ ├── 360704.json │ │ │ ├── 360721.json │ │ │ ├── 360722.json │ │ │ ├── 360723.json │ │ │ ├── 360724.json │ │ │ ├── 360725.json │ │ │ ├── 360726.json │ │ │ ├── 360727.json │ │ │ ├── 360728.json │ │ │ ├── 360729.json │ │ │ ├── 360730.json │ │ │ ├── 360731.json │ │ │ ├── 360732.json │ │ │ ├── 360733.json │ │ │ ├── 360734.json │ │ │ ├── 360735.json │ │ │ ├── 360781.json │ │ │ ├── 360783.json │ │ │ ├── 360802.json │ │ │ ├── 360803.json │ │ │ ├── 360821.json │ │ │ ├── 360822.json │ │ │ ├── 360823.json │ │ │ ├── 360824.json │ │ │ ├── 360825.json │ │ │ ├── 360826.json │ │ │ ├── 360827.json │ │ │ ├── 360828.json │ │ │ ├── 360829.json │ │ │ ├── 360830.json │ │ │ ├── 360881.json │ │ │ ├── 360902.json │ │ │ ├── 360921.json │ │ │ ├── 360922.json │ │ │ ├── 360923.json │ │ │ ├── 360924.json │ │ │ ├── 360925.json │ │ │ ├── 360926.json │ │ │ ├── 360981.json │ │ │ ├── 360982.json │ │ │ ├── 360983.json │ │ │ ├── 361002.json │ │ │ ├── 361003.json │ │ │ ├── 361021.json │ │ │ ├── 361022.json │ │ │ ├── 361023.json │ │ │ ├── 361024.json │ │ │ ├── 361025.json │ │ │ ├── 361026.json │ │ │ ├── 361027.json │ │ │ ├── 361028.json │ │ │ ├── 361029.json │ │ │ ├── 361030.json │ │ │ ├── 361102.json │ │ │ ├── 361103.json │ │ │ ├── 361104.json │ │ │ ├── 361121.json │ │ │ ├── 361123.json │ │ │ ├── 361124.json │ │ │ ├── 361125.json │ │ │ ├── 361126.json │ │ │ ├── 361127.json │ │ │ ├── 361128.json │ │ │ ├── 361129.json │ │ │ ├── 361130.json │ │ │ ├── 361181.json │ │ │ ├── 370102.json │ │ │ ├── 370103.json │ │ │ ├── 370104.json │ │ │ ├── 370105.json │ │ │ ├── 370112.json │ │ │ ├── 370113.json │ │ │ ├── 370114.json │ │ │ ├── 370115.json │ │ │ ├── 370116.json │ │ │ ├── 370117.json │ │ │ ├── 370124.json │ │ │ ├── 370125.json │ │ │ ├── 370126.json │ │ │ ├── 370171.json │ │ │ ├── 370181.json │ │ │ ├── 370202.json │ │ │ ├── 370203.json │ │ │ ├── 370211.json │ │ │ ├── 370212.json │ │ │ ├── 370213.json │ │ │ ├── 370214.json │ │ │ ├── 370215.json │ │ │ ├── 370271.json │ │ │ ├── 370281.json │ │ │ ├── 370282.json │ │ │ ├── 370283.json │ │ │ ├── 370285.json │ │ │ ├── 370302.json │ │ │ ├── 370303.json │ │ │ ├── 370304.json │ │ │ ├── 370305.json │ │ │ ├── 370306.json │ │ │ ├── 370321.json │ │ │ ├── 370322.json │ │ │ ├── 370323.json │ │ │ ├── 370402.json │ │ │ ├── 370403.json │ │ │ ├── 370404.json │ │ │ ├── 370405.json │ │ │ ├── 370406.json │ │ │ ├── 370481.json │ │ │ ├── 370502.json │ │ │ ├── 370503.json │ │ │ ├── 370505.json │ │ │ ├── 370521.json │ │ │ ├── 370522.json │ │ │ ├── 370523.json │ │ │ ├── 370571.json │ │ │ ├── 370572.json │ │ │ ├── 370602.json │ │ │ ├── 370611.json │ │ │ ├── 370612.json │ │ │ ├── 370613.json │ │ │ ├── 370614.json │ │ │ ├── 370634.json │ │ │ ├── 370671.json │ │ │ ├── 370672.json │ │ │ ├── 370681.json │ │ │ ├── 370682.json │ │ │ ├── 370683.json │ │ │ ├── 370684.json │ │ │ ├── 370685.json │ │ │ ├── 370686.json │ │ │ ├── 370687.json │ │ │ ├── 370702.json │ │ │ ├── 370703.json │ │ │ ├── 370704.json │ │ │ ├── 370705.json │ │ │ ├── 370724.json │ │ │ ├── 370725.json │ │ │ ├── 370772.json │ │ │ ├── 370781.json │ │ │ ├── 370782.json │ │ │ ├── 370783.json │ │ │ ├── 370784.json │ │ │ ├── 370785.json │ │ │ ├── 370786.json │ │ │ ├── 370811.json │ │ │ ├── 370812.json │ │ │ ├── 370826.json │ │ │ ├── 370827.json │ │ │ ├── 370828.json │ │ │ ├── 370829.json │ │ │ ├── 370830.json │ │ │ ├── 370831.json │ │ │ ├── 370832.json │ │ │ ├── 370871.json │ │ │ ├── 370881.json │ │ │ ├── 370883.json │ │ │ ├── 370902.json │ │ │ ├── 370911.json │ │ │ ├── 370921.json │ │ │ ├── 370923.json │ │ │ ├── 370982.json │ │ │ ├── 370983.json │ │ │ ├── 371002.json │ │ │ ├── 371003.json │ │ │ ├── 371071.json │ │ │ ├── 371072.json │ │ │ ├── 371073.json │ │ │ ├── 371082.json │ │ │ ├── 371083.json │ │ │ ├── 371102.json │ │ │ ├── 371103.json │ │ │ ├── 371121.json │ │ │ ├── 371122.json │ │ │ ├── 371171.json │ │ │ ├── 371202.json │ │ │ ├── 371203.json │ │ │ ├── 371302.json │ │ │ ├── 371311.json │ │ │ ├── 371312.json │ │ │ ├── 371321.json │ │ │ ├── 371322.json │ │ │ ├── 371323.json │ │ │ ├── 371324.json │ │ │ ├── 371325.json │ │ │ ├── 371326.json │ │ │ ├── 371327.json │ │ │ ├── 371328.json │ │ │ ├── 371329.json │ │ │ ├── 371371.json │ │ │ ├── 371372.json │ │ │ ├── 371373.json │ │ │ ├── 371402.json │ │ │ ├── 371403.json │ │ │ ├── 371422.json │ │ │ ├── 371423.json │ │ │ ├── 371424.json │ │ │ ├── 371425.json │ │ │ ├── 371426.json │ │ │ ├── 371427.json │ │ │ ├── 371428.json │ │ │ ├── 371471.json │ │ │ ├── 371472.json │ │ │ ├── 371481.json │ │ │ ├── 371482.json │ │ │ ├── 371502.json │ │ │ ├── 371503.json │ │ │ ├── 371521.json │ │ │ ├── 371522.json │ │ │ ├── 371523.json │ │ │ ├── 371524.json │ │ │ ├── 371525.json │ │ │ ├── 371526.json │ │ │ ├── 371581.json │ │ │ ├── 371602.json │ │ │ ├── 371603.json │ │ │ ├── 371621.json │ │ │ ├── 371622.json │ │ │ ├── 371623.json │ │ │ ├── 371625.json │ │ │ ├── 371626.json │ │ │ ├── 371681.json │ │ │ ├── 371702.json │ │ │ ├── 371703.json │ │ │ ├── 371721.json │ │ │ ├── 371722.json │ │ │ ├── 371723.json │ │ │ ├── 371724.json │ │ │ ├── 371725.json │ │ │ ├── 371726.json │ │ │ ├── 371727.json │ │ │ ├── 371728.json │ │ │ ├── 371771.json │ │ │ ├── 371772.json │ │ │ ├── 410102.json │ │ │ ├── 410103.json │ │ │ ├── 410104.json │ │ │ ├── 410105.json │ │ │ ├── 410106.json │ │ │ ├── 410108.json │ │ │ ├── 410122.json │ │ │ ├── 410171.json │ │ │ ├── 410172.json │ │ │ ├── 410173.json │ │ │ ├── 410181.json │ │ │ ├── 410182.json │ │ │ ├── 410183.json │ │ │ ├── 410184.json │ │ │ ├── 410185.json │ │ │ ├── 410202.json │ │ │ ├── 410203.json │ │ │ ├── 410204.json │ │ │ ├── 410205.json │ │ │ ├── 410211.json │ │ │ ├── 410212.json │ │ │ ├── 410221.json │ │ │ ├── 410222.json │ │ │ ├── 410223.json │ │ │ ├── 410225.json │ │ │ ├── 410302.json │ │ │ ├── 410303.json │ │ │ ├── 410304.json │ │ │ ├── 410305.json │ │ │ ├── 410306.json │ │ │ ├── 410307.json │ │ │ ├── 410308.json │ │ │ ├── 410311.json │ │ │ ├── 410322.json │ │ │ ├── 410323.json │ │ │ ├── 410324.json │ │ │ ├── 410325.json │ │ │ ├── 410326.json │ │ │ ├── 410327.json │ │ │ ├── 410328.json │ │ │ ├── 410329.json │ │ │ ├── 410371.json │ │ │ ├── 410381.json │ │ │ ├── 410402.json │ │ │ ├── 410403.json │ │ │ ├── 410404.json │ │ │ ├── 410411.json │ │ │ ├── 410421.json │ │ │ ├── 410422.json │ │ │ ├── 410423.json │ │ │ ├── 410425.json │ │ │ ├── 410471.json │ │ │ ├── 410472.json │ │ │ ├── 410481.json │ │ │ ├── 410482.json │ │ │ ├── 410502.json │ │ │ ├── 410503.json │ │ │ ├── 410505.json │ │ │ ├── 410506.json │ │ │ ├── 410522.json │ │ │ ├── 410523.json │ │ │ ├── 410526.json │ │ │ ├── 410527.json │ │ │ ├── 410571.json │ │ │ ├── 410581.json │ │ │ ├── 410602.json │ │ │ ├── 410603.json │ │ │ ├── 410611.json │ │ │ ├── 410621.json │ │ │ ├── 410622.json │ │ │ ├── 410671.json │ │ │ ├── 410702.json │ │ │ ├── 410703.json │ │ │ ├── 410704.json │ │ │ ├── 410711.json │ │ │ ├── 410721.json │ │ │ ├── 410724.json │ │ │ ├── 410725.json │ │ │ ├── 410726.json │ │ │ ├── 410727.json │ │ │ ├── 410728.json │ │ │ ├── 410771.json │ │ │ ├── 410772.json │ │ │ ├── 410773.json │ │ │ ├── 410781.json │ │ │ ├── 410782.json │ │ │ ├── 410783.json │ │ │ ├── 410802.json │ │ │ ├── 410803.json │ │ │ ├── 410804.json │ │ │ ├── 410811.json │ │ │ ├── 410821.json │ │ │ ├── 410822.json │ │ │ ├── 410823.json │ │ │ ├── 410825.json │ │ │ ├── 410871.json │ │ │ ├── 410882.json │ │ │ ├── 410883.json │ │ │ ├── 410902.json │ │ │ ├── 410922.json │ │ │ ├── 410923.json │ │ │ ├── 410926.json │ │ │ ├── 410927.json │ │ │ ├── 410928.json │ │ │ ├── 410971.json │ │ │ ├── 410972.json │ │ │ ├── 411002.json │ │ │ ├── 411003.json │ │ │ ├── 411023.json │ │ │ ├── 411024.json │ │ │ ├── 411025.json │ │ │ ├── 411071.json │ │ │ ├── 411081.json │ │ │ ├── 411082.json │ │ │ ├── 411102.json │ │ │ ├── 411103.json │ │ │ ├── 411104.json │ │ │ ├── 411121.json │ │ │ ├── 411122.json │ │ │ ├── 411171.json │ │ │ ├── 411202.json │ │ │ ├── 411203.json │ │ │ ├── 411221.json │ │ │ ├── 411222.json │ │ │ ├── 411224.json │ │ │ ├── 411271.json │ │ │ ├── 411281.json │ │ │ ├── 411282.json │ │ │ ├── 411302.json │ │ │ ├── 411303.json │ │ │ ├── 411321.json │ │ │ ├── 411322.json │ │ │ ├── 411323.json │ │ │ ├── 411324.json │ │ │ ├── 411325.json │ │ │ ├── 411326.json │ │ │ ├── 411327.json │ │ │ ├── 411328.json │ │ │ ├── 411329.json │ │ │ ├── 411330.json │ │ │ ├── 411371.json │ │ │ ├── 411372.json │ │ │ ├── 411381.json │ │ │ ├── 411402.json │ │ │ ├── 411403.json │ │ │ ├── 411421.json │ │ │ ├── 411422.json │ │ │ ├── 411423.json │ │ │ ├── 411424.json │ │ │ ├── 411425.json │ │ │ ├── 411426.json │ │ │ ├── 411471.json │ │ │ ├── 411472.json │ │ │ ├── 411481.json │ │ │ ├── 411502.json │ │ │ ├── 411503.json │ │ │ ├── 411521.json │ │ │ ├── 411522.json │ │ │ ├── 411523.json │ │ │ ├── 411524.json │ │ │ ├── 411525.json │ │ │ ├── 411526.json │ │ │ ├── 411527.json │ │ │ ├── 411528.json │ │ │ ├── 411571.json │ │ │ ├── 411602.json │ │ │ ├── 411603.json │ │ │ ├── 411621.json │ │ │ ├── 411622.json │ │ │ ├── 411623.json │ │ │ ├── 411624.json │ │ │ ├── 411625.json │ │ │ ├── 411626.json │ │ │ ├── 411627.json │ │ │ ├── 411628.json │ │ │ ├── 411671.json │ │ │ ├── 411681.json │ │ │ ├── 411702.json │ │ │ ├── 411721.json │ │ │ ├── 411722.json │ │ │ ├── 411723.json │ │ │ ├── 411724.json │ │ │ ├── 411725.json │ │ │ ├── 411726.json │ │ │ ├── 411727.json │ │ │ ├── 411728.json │ │ │ ├── 411729.json │ │ │ ├── 411771.json │ │ │ ├── 419001.json │ │ │ ├── 420102.json │ │ │ ├── 420103.json │ │ │ ├── 420104.json │ │ │ ├── 420105.json │ │ │ ├── 420106.json │ │ │ ├── 420107.json │ │ │ ├── 420111.json │ │ │ ├── 420112.json │ │ │ ├── 420113.json │ │ │ ├── 420114.json │ │ │ ├── 420115.json │ │ │ ├── 420116.json │ │ │ ├── 420117.json │ │ │ ├── 420202.json │ │ │ ├── 420203.json │ │ │ ├── 420204.json │ │ │ ├── 420205.json │ │ │ ├── 420222.json │ │ │ ├── 420281.json │ │ │ ├── 420302.json │ │ │ ├── 420303.json │ │ │ ├── 420304.json │ │ │ ├── 420322.json │ │ │ ├── 420323.json │ │ │ ├── 420324.json │ │ │ ├── 420325.json │ │ │ ├── 420381.json │ │ │ ├── 420502.json │ │ │ ├── 420503.json │ │ │ ├── 420504.json │ │ │ ├── 420505.json │ │ │ ├── 420506.json │ │ │ ├── 420525.json │ │ │ ├── 420526.json │ │ │ ├── 420527.json │ │ │ ├── 420528.json │ │ │ ├── 420529.json │ │ │ ├── 420581.json │ │ │ ├── 420582.json │ │ │ ├── 420583.json │ │ │ ├── 420602.json │ │ │ ├── 420606.json │ │ │ ├── 420607.json │ │ │ ├── 420624.json │ │ │ ├── 420625.json │ │ │ ├── 420626.json │ │ │ ├── 420682.json │ │ │ ├── 420683.json │ │ │ ├── 420684.json │ │ │ ├── 420702.json │ │ │ ├── 420703.json │ │ │ ├── 420704.json │ │ │ ├── 420802.json │ │ │ ├── 420804.json │ │ │ ├── 420821.json │ │ │ ├── 420822.json │ │ │ ├── 420881.json │ │ │ ├── 420882.json │ │ │ ├── 420902.json │ │ │ ├── 420921.json │ │ │ ├── 420922.json │ │ │ ├── 420923.json │ │ │ ├── 420981.json │ │ │ ├── 420982.json │ │ │ ├── 420984.json │ │ │ ├── 421002.json │ │ │ ├── 421003.json │ │ │ ├── 421022.json │ │ │ ├── 421023.json │ │ │ ├── 421024.json │ │ │ ├── 421071.json │ │ │ ├── 421081.json │ │ │ ├── 421083.json │ │ │ ├── 421087.json │ │ │ ├── 421088.json │ │ │ ├── 421102.json │ │ │ ├── 421121.json │ │ │ ├── 421122.json │ │ │ ├── 421123.json │ │ │ ├── 421124.json │ │ │ ├── 421125.json │ │ │ ├── 421126.json │ │ │ ├── 421127.json │ │ │ ├── 421171.json │ │ │ ├── 421181.json │ │ │ ├── 421182.json │ │ │ ├── 421202.json │ │ │ ├── 421221.json │ │ │ ├── 421222.json │ │ │ ├── 421223.json │ │ │ ├── 421224.json │ │ │ ├── 421281.json │ │ │ ├── 421303.json │ │ │ ├── 421321.json │ │ │ ├── 421381.json │ │ │ ├── 422801.json │ │ │ ├── 422802.json │ │ │ ├── 422822.json │ │ │ ├── 422823.json │ │ │ ├── 422825.json │ │ │ ├── 422826.json │ │ │ ├── 422827.json │ │ │ ├── 422828.json │ │ │ ├── 429004.json │ │ │ ├── 429005.json │ │ │ ├── 429006.json │ │ │ ├── 429021.json │ │ │ ├── 430102.json │ │ │ ├── 430103.json │ │ │ ├── 430104.json │ │ │ ├── 430105.json │ │ │ ├── 430111.json │ │ │ ├── 430112.json │ │ │ ├── 430121.json │ │ │ ├── 430124.json │ │ │ ├── 430181.json │ │ │ ├── 430182.json │ │ │ ├── 430202.json │ │ │ ├── 430203.json │ │ │ ├── 430204.json │ │ │ ├── 430211.json │ │ │ ├── 430212.json │ │ │ ├── 430221.json │ │ │ ├── 430223.json │ │ │ ├── 430224.json │ │ │ ├── 430225.json │ │ │ ├── 430271.json │ │ │ ├── 430281.json │ │ │ ├── 430302.json │ │ │ ├── 430304.json │ │ │ ├── 430321.json │ │ │ ├── 430371.json │ │ │ ├── 430372.json │ │ │ ├── 430373.json │ │ │ ├── 430381.json │ │ │ ├── 430382.json │ │ │ ├── 430405.json │ │ │ ├── 430406.json │ │ │ ├── 430407.json │ │ │ ├── 430408.json │ │ │ ├── 430412.json │ │ │ ├── 430421.json │ │ │ ├── 430422.json │ │ │ ├── 430423.json │ │ │ ├── 430424.json │ │ │ ├── 430426.json │ │ │ ├── 430471.json │ │ │ ├── 430472.json │ │ │ ├── 430473.json │ │ │ ├── 430481.json │ │ │ ├── 430482.json │ │ │ ├── 430502.json │ │ │ ├── 430503.json │ │ │ ├── 430511.json │ │ │ ├── 430521.json │ │ │ ├── 430522.json │ │ │ ├── 430523.json │ │ │ ├── 430524.json │ │ │ ├── 430525.json │ │ │ ├── 430527.json │ │ │ ├── 430528.json │ │ │ ├── 430529.json │ │ │ ├── 430581.json │ │ │ ├── 430582.json │ │ │ ├── 430602.json │ │ │ ├── 430603.json │ │ │ ├── 430611.json │ │ │ ├── 430621.json │ │ │ ├── 430623.json │ │ │ ├── 430624.json │ │ │ ├── 430626.json │ │ │ ├── 430671.json │ │ │ ├── 430681.json │ │ │ ├── 430682.json │ │ │ ├── 430702.json │ │ │ ├── 430703.json │ │ │ ├── 430721.json │ │ │ ├── 430722.json │ │ │ ├── 430723.json │ │ │ ├── 430724.json │ │ │ ├── 430725.json │ │ │ ├── 430726.json │ │ │ ├── 430771.json │ │ │ ├── 430781.json │ │ │ ├── 430802.json │ │ │ ├── 430811.json │ │ │ ├── 430821.json │ │ │ ├── 430822.json │ │ │ ├── 430902.json │ │ │ ├── 430903.json │ │ │ ├── 430921.json │ │ │ ├── 430922.json │ │ │ ├── 430923.json │ │ │ ├── 430971.json │ │ │ ├── 430972.json │ │ │ ├── 430981.json │ │ │ ├── 431002.json │ │ │ ├── 431003.json │ │ │ ├── 431021.json │ │ │ ├── 431022.json │ │ │ ├── 431023.json │ │ │ ├── 431024.json │ │ │ ├── 431025.json │ │ │ ├── 431026.json │ │ │ ├── 431027.json │ │ │ ├── 431028.json │ │ │ ├── 431081.json │ │ │ ├── 431102.json │ │ │ ├── 431103.json │ │ │ ├── 431121.json │ │ │ ├── 431122.json │ │ │ ├── 431123.json │ │ │ ├── 431124.json │ │ │ ├── 431125.json │ │ │ ├── 431126.json │ │ │ ├── 431127.json │ │ │ ├── 431128.json │ │ │ ├── 431129.json │ │ │ ├── 431171.json │ │ │ ├── 431172.json │ │ │ ├── 431173.json │ │ │ ├── 431181.json │ │ │ ├── 431202.json │ │ │ ├── 431221.json │ │ │ ├── 431222.json │ │ │ ├── 431223.json │ │ │ ├── 431224.json │ │ │ ├── 431225.json │ │ │ ├── 431226.json │ │ │ ├── 431227.json │ │ │ ├── 431228.json │ │ │ ├── 431229.json │ │ │ ├── 431230.json │ │ │ ├── 431271.json │ │ │ ├── 431281.json │ │ │ ├── 431302.json │ │ │ ├── 431321.json │ │ │ ├── 431322.json │ │ │ ├── 431381.json │ │ │ ├── 431382.json │ │ │ ├── 433101.json │ │ │ ├── 433122.json │ │ │ ├── 433123.json │ │ │ ├── 433124.json │ │ │ ├── 433125.json │ │ │ ├── 433126.json │ │ │ ├── 433127.json │ │ │ ├── 433130.json │ │ │ ├── 433172.json │ │ │ ├── 433173.json │ │ │ ├── 440103.json │ │ │ ├── 440104.json │ │ │ ├── 440105.json │ │ │ ├── 440106.json │ │ │ ├── 440111.json │ │ │ ├── 440112.json │ │ │ ├── 440113.json │ │ │ ├── 440114.json │ │ │ ├── 440115.json │ │ │ ├── 440117.json │ │ │ ├── 440118.json │ │ │ ├── 440203.json │ │ │ ├── 440204.json │ │ │ ├── 440205.json │ │ │ ├── 440222.json │ │ │ ├── 440224.json │ │ │ ├── 440229.json │ │ │ ├── 440232.json │ │ │ ├── 440233.json │ │ │ ├── 440281.json │ │ │ ├── 440282.json │ │ │ ├── 440303.json │ │ │ ├── 440304.json │ │ │ ├── 440305.json │ │ │ ├── 440306.json │ │ │ ├── 440307.json │ │ │ ├── 440308.json │ │ │ ├── 440309.json │ │ │ ├── 440310.json │ │ │ ├── 440311.json │ │ │ ├── 440402.json │ │ │ ├── 440403.json │ │ │ ├── 440404.json │ │ │ ├── 440507.json │ │ │ ├── 440511.json │ │ │ ├── 440512.json │ │ │ ├── 440513.json │ │ │ ├── 440514.json │ │ │ ├── 440515.json │ │ │ ├── 440523.json │ │ │ ├── 440604.json │ │ │ ├── 440605.json │ │ │ ├── 440606.json │ │ │ ├── 440607.json │ │ │ ├── 440608.json │ │ │ ├── 440703.json │ │ │ ├── 440704.json │ │ │ ├── 440705.json │ │ │ ├── 440781.json │ │ │ ├── 440783.json │ │ │ ├── 440784.json │ │ │ ├── 440785.json │ │ │ ├── 440802.json │ │ │ ├── 440803.json │ │ │ ├── 440804.json │ │ │ ├── 440811.json │ │ │ ├── 440823.json │ │ │ ├── 440825.json │ │ │ ├── 440881.json │ │ │ ├── 440882.json │ │ │ ├── 440883.json │ │ │ ├── 440902.json │ │ │ ├── 440904.json │ │ │ ├── 440981.json │ │ │ ├── 440982.json │ │ │ ├── 440983.json │ │ │ ├── 441202.json │ │ │ ├── 441203.json │ │ │ ├── 441204.json │ │ │ ├── 441223.json │ │ │ ├── 441224.json │ │ │ ├── 441225.json │ │ │ ├── 441226.json │ │ │ ├── 441284.json │ │ │ ├── 441302.json │ │ │ ├── 441303.json │ │ │ ├── 441322.json │ │ │ ├── 441323.json │ │ │ ├── 441324.json │ │ │ ├── 441402.json │ │ │ ├── 441403.json │ │ │ ├── 441422.json │ │ │ ├── 441423.json │ │ │ ├── 441424.json │ │ │ ├── 441426.json │ │ │ ├── 441427.json │ │ │ ├── 441481.json │ │ │ ├── 441502.json │ │ │ ├── 441521.json │ │ │ ├── 441523.json │ │ │ ├── 441581.json │ │ │ ├── 441602.json │ │ │ ├── 441621.json │ │ │ ├── 441622.json │ │ │ ├── 441623.json │ │ │ ├── 441624.json │ │ │ ├── 441625.json │ │ │ ├── 441702.json │ │ │ ├── 441704.json │ │ │ ├── 441721.json │ │ │ ├── 441781.json │ │ │ ├── 441802.json │ │ │ ├── 441803.json │ │ │ ├── 441821.json │ │ │ ├── 441823.json │ │ │ ├── 441825.json │ │ │ ├── 441826.json │ │ │ ├── 441881.json │ │ │ ├── 441882.json │ │ │ ├── 441900.json │ │ │ ├── 442000.json │ │ │ ├── 445102.json │ │ │ ├── 445103.json │ │ │ ├── 445122.json │ │ │ ├── 445202.json │ │ │ ├── 445203.json │ │ │ ├── 445222.json │ │ │ ├── 445224.json │ │ │ ├── 445281.json │ │ │ ├── 445302.json │ │ │ ├── 445303.json │ │ │ ├── 445321.json │ │ │ ├── 445322.json │ │ │ ├── 445381.json │ │ │ ├── 450102.json │ │ │ ├── 450103.json │ │ │ ├── 450105.json │ │ │ ├── 450107.json │ │ │ ├── 450108.json │ │ │ ├── 450109.json │ │ │ ├── 450110.json │ │ │ ├── 450123.json │ │ │ ├── 450124.json │ │ │ ├── 450125.json │ │ │ ├── 450126.json │ │ │ ├── 450127.json │ │ │ ├── 450181.json │ │ │ ├── 450202.json │ │ │ ├── 450203.json │ │ │ ├── 450204.json │ │ │ ├── 450205.json │ │ │ ├── 450206.json │ │ │ ├── 450221.json │ │ │ ├── 450222.json │ │ │ ├── 450223.json │ │ │ ├── 450224.json │ │ │ ├── 450225.json │ │ │ ├── 450226.json │ │ │ ├── 450302.json │ │ │ ├── 450303.json │ │ │ ├── 450304.json │ │ │ ├── 450305.json │ │ │ ├── 450311.json │ │ │ ├── 450312.json │ │ │ ├── 450321.json │ │ │ ├── 450323.json │ │ │ ├── 450324.json │ │ │ ├── 450325.json │ │ │ ├── 450326.json │ │ │ ├── 450327.json │ │ │ ├── 450328.json │ │ │ ├── 450329.json │ │ │ ├── 450330.json │ │ │ ├── 450331.json │ │ │ ├── 450332.json │ │ │ ├── 450381.json │ │ │ ├── 450403.json │ │ │ ├── 450405.json │ │ │ ├── 450406.json │ │ │ ├── 450421.json │ │ │ ├── 450422.json │ │ │ ├── 450423.json │ │ │ ├── 450481.json │ │ │ ├── 450502.json │ │ │ ├── 450503.json │ │ │ ├── 450512.json │ │ │ ├── 450521.json │ │ │ ├── 450602.json │ │ │ ├── 450603.json │ │ │ ├── 450621.json │ │ │ ├── 450681.json │ │ │ ├── 450702.json │ │ │ ├── 450703.json │ │ │ ├── 450721.json │ │ │ ├── 450722.json │ │ │ ├── 450802.json │ │ │ ├── 450803.json │ │ │ ├── 450804.json │ │ │ ├── 450821.json │ │ │ ├── 450881.json │ │ │ ├── 450902.json │ │ │ ├── 450903.json │ │ │ ├── 450921.json │ │ │ ├── 450922.json │ │ │ ├── 450923.json │ │ │ ├── 450924.json │ │ │ ├── 450981.json │ │ │ ├── 451002.json │ │ │ ├── 451003.json │ │ │ ├── 451021.json │ │ │ ├── 451022.json │ │ │ ├── 451023.json │ │ │ ├── 451024.json │ │ │ ├── 451026.json │ │ │ ├── 451027.json │ │ │ ├── 451028.json │ │ │ ├── 451029.json │ │ │ ├── 451030.json │ │ │ ├── 451031.json │ │ │ ├── 451081.json │ │ │ ├── 451082.json │ │ │ ├── 451102.json │ │ │ ├── 451103.json │ │ │ ├── 451121.json │ │ │ ├── 451122.json │ │ │ ├── 451123.json │ │ │ ├── 451202.json │ │ │ ├── 451203.json │ │ │ ├── 451221.json │ │ │ ├── 451222.json │ │ │ ├── 451223.json │ │ │ ├── 451224.json │ │ │ ├── 451225.json │ │ │ ├── 451226.json │ │ │ ├── 451227.json │ │ │ ├── 451228.json │ │ │ ├── 451229.json │ │ │ ├── 451281.json │ │ │ ├── 451302.json │ │ │ ├── 451321.json │ │ │ ├── 451322.json │ │ │ ├── 451323.json │ │ │ ├── 451324.json │ │ │ ├── 451381.json │ │ │ ├── 451402.json │ │ │ ├── 451421.json │ │ │ ├── 451422.json │ │ │ ├── 451423.json │ │ │ ├── 451424.json │ │ │ ├── 451425.json │ │ │ ├── 451481.json │ │ │ ├── 460105.json │ │ │ ├── 460106.json │ │ │ ├── 460107.json │ │ │ ├── 460108.json │ │ │ ├── 460201.json │ │ │ ├── 460202.json │ │ │ ├── 460203.json │ │ │ ├── 460204.json │ │ │ ├── 460205.json │ │ │ ├── 460321.json │ │ │ ├── 460322.json │ │ │ ├── 460323.json │ │ │ ├── 460400.json │ │ │ ├── 469001.json │ │ │ ├── 469002.json │ │ │ ├── 469003.json │ │ │ ├── 469005.json │ │ │ ├── 469006.json │ │ │ ├── 469007.json │ │ │ ├── 469021.json │ │ │ ├── 469022.json │ │ │ ├── 469023.json │ │ │ ├── 469024.json │ │ │ ├── 469025.json │ │ │ ├── 469026.json │ │ │ ├── 469027.json │ │ │ ├── 469028.json │ │ │ ├── 469029.json │ │ │ ├── 469030.json │ │ │ ├── 500101.json │ │ │ ├── 500102.json │ │ │ ├── 500103.json │ │ │ ├── 500104.json │ │ │ ├── 500105.json │ │ │ ├── 500106.json │ │ │ ├── 500107.json │ │ │ ├── 500108.json │ │ │ ├── 500109.json │ │ │ ├── 500110.json │ │ │ ├── 500111.json │ │ │ ├── 500112.json │ │ │ ├── 500113.json │ │ │ ├── 500114.json │ │ │ ├── 500115.json │ │ │ ├── 500116.json │ │ │ ├── 500117.json │ │ │ ├── 500118.json │ │ │ ├── 500119.json │ │ │ ├── 500120.json │ │ │ ├── 500151.json │ │ │ ├── 500152.json │ │ │ ├── 500153.json │ │ │ ├── 500154.json │ │ │ ├── 500155.json │ │ │ ├── 500156.json │ │ │ ├── 500228.json │ │ │ ├── 500229.json │ │ │ ├── 500230.json │ │ │ ├── 500231.json │ │ │ ├── 500232.json │ │ │ ├── 500233.json │ │ │ ├── 500234.json │ │ │ ├── 500235.json │ │ │ ├── 500236.json │ │ │ ├── 500237.json │ │ │ ├── 500238.json │ │ │ ├── 500240.json │ │ │ ├── 500241.json │ │ │ ├── 500242.json │ │ │ ├── 500243.json │ │ │ ├── 510104.json │ │ │ ├── 510105.json │ │ │ ├── 510106.json │ │ │ ├── 510107.json │ │ │ ├── 510108.json │ │ │ ├── 510112.json │ │ │ ├── 510113.json │ │ │ ├── 510114.json │ │ │ ├── 510115.json │ │ │ ├── 510116.json │ │ │ ├── 510117.json │ │ │ ├── 510118.json │ │ │ ├── 510121.json │ │ │ ├── 510122.json │ │ │ ├── 510124.json │ │ │ ├── 510129.json │ │ │ ├── 510131.json │ │ │ ├── 510132.json │ │ │ ├── 510181.json │ │ │ ├── 510182.json │ │ │ ├── 510183.json │ │ │ ├── 510184.json │ │ │ ├── 510185.json │ │ │ ├── 510302.json │ │ │ ├── 510303.json │ │ │ ├── 510304.json │ │ │ ├── 510311.json │ │ │ ├── 510321.json │ │ │ ├── 510322.json │ │ │ ├── 510402.json │ │ │ ├── 510403.json │ │ │ ├── 510411.json │ │ │ ├── 510421.json │ │ │ ├── 510422.json │ │ │ ├── 510502.json │ │ │ ├── 510503.json │ │ │ ├── 510504.json │ │ │ ├── 510521.json │ │ │ ├── 510522.json │ │ │ ├── 510524.json │ │ │ ├── 510525.json │ │ │ ├── 510603.json │ │ │ ├── 510604.json │ │ │ ├── 510623.json │ │ │ ├── 510626.json │ │ │ ├── 510681.json │ │ │ ├── 510682.json │ │ │ ├── 510683.json │ │ │ ├── 510703.json │ │ │ ├── 510704.json │ │ │ ├── 510705.json │ │ │ ├── 510722.json │ │ │ ├── 510723.json │ │ │ ├── 510724.json │ │ │ ├── 510725.json │ │ │ ├── 510726.json │ │ │ ├── 510727.json │ │ │ ├── 510781.json │ │ │ ├── 510802.json │ │ │ ├── 510811.json │ │ │ ├── 510812.json │ │ │ ├── 510821.json │ │ │ ├── 510822.json │ │ │ ├── 510823.json │ │ │ ├── 510824.json │ │ │ ├── 510903.json │ │ │ ├── 510904.json │ │ │ ├── 510921.json │ │ │ ├── 510922.json │ │ │ ├── 510923.json │ │ │ ├── 510981.json │ │ │ ├── 511002.json │ │ │ ├── 511011.json │ │ │ ├── 511024.json │ │ │ ├── 511025.json │ │ │ ├── 511028.json │ │ │ ├── 511071.json │ │ │ ├── 511083.json │ │ │ ├── 511102.json │ │ │ ├── 511111.json │ │ │ ├── 511112.json │ │ │ ├── 511113.json │ │ │ ├── 511123.json │ │ │ ├── 511124.json │ │ │ ├── 511126.json │ │ │ ├── 511129.json │ │ │ ├── 511132.json │ │ │ ├── 511133.json │ │ │ ├── 511181.json │ │ │ ├── 511302.json │ │ │ ├── 511303.json │ │ │ ├── 511304.json │ │ │ ├── 511321.json │ │ │ ├── 511322.json │ │ │ ├── 511323.json │ │ │ ├── 511324.json │ │ │ ├── 511325.json │ │ │ ├── 511381.json │ │ │ ├── 511402.json │ │ │ ├── 511403.json │ │ │ ├── 511421.json │ │ │ ├── 511423.json │ │ │ ├── 511424.json │ │ │ ├── 511425.json │ │ │ ├── 511502.json │ │ │ ├── 511503.json │ │ │ ├── 511504.json │ │ │ ├── 511521.json │ │ │ ├── 511523.json │ │ │ ├── 511524.json │ │ │ ├── 511525.json │ │ │ ├── 511526.json │ │ │ ├── 511527.json │ │ │ ├── 511528.json │ │ │ ├── 511529.json │ │ │ ├── 511602.json │ │ │ ├── 511603.json │ │ │ ├── 511621.json │ │ │ ├── 511622.json │ │ │ ├── 511623.json │ │ │ ├── 511681.json │ │ │ ├── 511702.json │ │ │ ├── 511703.json │ │ │ ├── 511722.json │ │ │ ├── 511723.json │ │ │ ├── 511724.json │ │ │ ├── 511725.json │ │ │ ├── 511771.json │ │ │ ├── 511781.json │ │ │ ├── 511802.json │ │ │ ├── 511803.json │ │ │ ├── 511822.json │ │ │ ├── 511823.json │ │ │ ├── 511824.json │ │ │ ├── 511825.json │ │ │ ├── 511826.json │ │ │ ├── 511827.json │ │ │ ├── 511902.json │ │ │ ├── 511903.json │ │ │ ├── 511921.json │ │ │ ├── 511922.json │ │ │ ├── 511923.json │ │ │ ├── 511971.json │ │ │ ├── 512002.json │ │ │ ├── 512021.json │ │ │ ├── 512022.json │ │ │ ├── 512081.json │ │ │ ├── 513201.json │ │ │ ├── 513221.json │ │ │ ├── 513222.json │ │ │ ├── 513223.json │ │ │ ├── 513224.json │ │ │ ├── 513225.json │ │ │ ├── 513226.json │ │ │ ├── 513227.json │ │ │ ├── 513228.json │ │ │ ├── 513229.json │ │ │ ├── 513230.json │ │ │ ├── 513231.json │ │ │ ├── 513232.json │ │ │ ├── 513233.json │ │ │ ├── 513301.json │ │ │ ├── 513322.json │ │ │ ├── 513323.json │ │ │ ├── 513324.json │ │ │ ├── 513325.json │ │ │ ├── 513326.json │ │ │ ├── 513327.json │ │ │ ├── 513328.json │ │ │ ├── 513329.json │ │ │ ├── 513330.json │ │ │ ├── 513331.json │ │ │ ├── 513332.json │ │ │ ├── 513333.json │ │ │ ├── 513334.json │ │ │ ├── 513335.json │ │ │ ├── 513336.json │ │ │ ├── 513337.json │ │ │ ├── 513338.json │ │ │ ├── 513401.json │ │ │ ├── 513402.json │ │ │ ├── 513422.json │ │ │ ├── 513423.json │ │ │ ├── 513424.json │ │ │ ├── 513425.json │ │ │ ├── 513426.json │ │ │ ├── 513427.json │ │ │ ├── 513428.json │ │ │ ├── 513429.json │ │ │ ├── 513430.json │ │ │ ├── 513431.json │ │ │ ├── 513432.json │ │ │ ├── 513433.json │ │ │ ├── 513434.json │ │ │ ├── 513435.json │ │ │ ├── 513436.json │ │ │ ├── 513437.json │ │ │ ├── 520102.json │ │ │ ├── 520103.json │ │ │ ├── 520111.json │ │ │ ├── 520112.json │ │ │ ├── 520113.json │ │ │ ├── 520115.json │ │ │ ├── 520121.json │ │ │ ├── 520122.json │ │ │ ├── 520123.json │ │ │ ├── 520181.json │ │ │ ├── 520201.json │ │ │ ├── 520203.json │ │ │ ├── 520204.json │ │ │ ├── 520221.json │ │ │ ├── 520222.json │ │ │ ├── 520281.json │ │ │ ├── 520302.json │ │ │ ├── 520303.json │ │ │ ├── 520304.json │ │ │ ├── 520321.json │ │ │ ├── 520322.json │ │ │ ├── 520323.json │ │ │ ├── 520324.json │ │ │ ├── 520325.json │ │ │ ├── 520326.json │ │ │ ├── 520327.json │ │ │ ├── 520328.json │ │ │ ├── 520329.json │ │ │ ├── 520330.json │ │ │ ├── 520381.json │ │ │ ├── 520382.json │ │ │ ├── 520402.json │ │ │ ├── 520403.json │ │ │ ├── 520422.json │ │ │ ├── 520423.json │ │ │ ├── 520424.json │ │ │ ├── 520425.json │ │ │ ├── 520502.json │ │ │ ├── 520521.json │ │ │ ├── 520522.json │ │ │ ├── 520523.json │ │ │ ├── 520524.json │ │ │ ├── 520525.json │ │ │ ├── 520526.json │ │ │ ├── 520527.json │ │ │ ├── 520581.json │ │ │ ├── 520602.json │ │ │ ├── 520603.json │ │ │ ├── 520621.json │ │ │ ├── 520622.json │ │ │ ├── 520623.json │ │ │ ├── 520624.json │ │ │ ├── 520625.json │ │ │ ├── 520626.json │ │ │ ├── 520627.json │ │ │ ├── 520628.json │ │ │ ├── 522301.json │ │ │ ├── 522302.json │ │ │ ├── 522322.json │ │ │ ├── 522323.json │ │ │ ├── 522324.json │ │ │ ├── 522325.json │ │ │ ├── 522326.json │ │ │ ├── 522327.json │ │ │ ├── 522328.json │ │ │ ├── 522601.json │ │ │ ├── 522622.json │ │ │ ├── 522623.json │ │ │ ├── 522624.json │ │ │ ├── 522625.json │ │ │ ├── 522626.json │ │ │ ├── 522627.json │ │ │ ├── 522628.json │ │ │ ├── 522629.json │ │ │ ├── 522630.json │ │ │ ├── 522631.json │ │ │ ├── 522632.json │ │ │ ├── 522633.json │ │ │ ├── 522634.json │ │ │ ├── 522635.json │ │ │ ├── 522636.json │ │ │ ├── 522701.json │ │ │ ├── 522702.json │ │ │ ├── 522722.json │ │ │ ├── 522723.json │ │ │ ├── 522725.json │ │ │ ├── 522726.json │ │ │ ├── 522727.json │ │ │ ├── 522728.json │ │ │ ├── 522729.json │ │ │ ├── 522730.json │ │ │ ├── 522731.json │ │ │ ├── 522732.json │ │ │ ├── 530102.json │ │ │ ├── 530103.json │ │ │ ├── 530111.json │ │ │ ├── 530112.json │ │ │ ├── 530113.json │ │ │ ├── 530114.json │ │ │ ├── 530115.json │ │ │ ├── 530122.json │ │ │ ├── 530124.json │ │ │ ├── 530125.json │ │ │ ├── 530126.json │ │ │ ├── 530127.json │ │ │ ├── 530128.json │ │ │ ├── 530129.json │ │ │ ├── 530181.json │ │ │ ├── 530302.json │ │ │ ├── 530303.json │ │ │ ├── 530304.json │ │ │ ├── 530321.json │ │ │ ├── 530322.json │ │ │ ├── 530323.json │ │ │ ├── 530324.json │ │ │ ├── 530325.json │ │ │ ├── 530326.json │ │ │ ├── 530328.json │ │ │ ├── 530381.json │ │ │ ├── 530402.json │ │ │ ├── 530403.json │ │ │ ├── 530421.json │ │ │ ├── 530422.json │ │ │ ├── 530423.json │ │ │ ├── 530424.json │ │ │ ├── 530425.json │ │ │ ├── 530426.json │ │ │ ├── 530427.json │ │ │ ├── 530428.json │ │ │ ├── 530481.json │ │ │ ├── 530502.json │ │ │ ├── 530521.json │ │ │ ├── 530523.json │ │ │ ├── 530524.json │ │ │ ├── 530581.json │ │ │ ├── 530602.json │ │ │ ├── 530621.json │ │ │ ├── 530622.json │ │ │ ├── 530623.json │ │ │ ├── 530624.json │ │ │ ├── 530625.json │ │ │ ├── 530626.json │ │ │ ├── 530627.json │ │ │ ├── 530628.json │ │ │ ├── 530629.json │ │ │ ├── 530630.json │ │ │ ├── 530681.json │ │ │ ├── 530702.json │ │ │ ├── 530721.json │ │ │ ├── 530722.json │ │ │ ├── 530723.json │ │ │ ├── 530724.json │ │ │ ├── 530802.json │ │ │ ├── 530821.json │ │ │ ├── 530822.json │ │ │ ├── 530823.json │ │ │ ├── 530824.json │ │ │ ├── 530825.json │ │ │ ├── 530826.json │ │ │ ├── 530827.json │ │ │ ├── 530828.json │ │ │ ├── 530829.json │ │ │ ├── 530902.json │ │ │ ├── 530921.json │ │ │ ├── 530922.json │ │ │ ├── 530923.json │ │ │ ├── 530924.json │ │ │ ├── 530925.json │ │ │ ├── 530926.json │ │ │ ├── 530927.json │ │ │ ├── 532301.json │ │ │ ├── 532302.json │ │ │ ├── 532322.json │ │ │ ├── 532323.json │ │ │ ├── 532324.json │ │ │ ├── 532325.json │ │ │ ├── 532326.json │ │ │ ├── 532327.json │ │ │ ├── 532328.json │ │ │ ├── 532329.json │ │ │ ├── 532331.json │ │ │ ├── 532501.json │ │ │ ├── 532502.json │ │ │ ├── 532503.json │ │ │ ├── 532504.json │ │ │ ├── 532523.json │ │ │ ├── 532524.json │ │ │ ├── 532525.json │ │ │ ├── 532527.json │ │ │ ├── 532528.json │ │ │ ├── 532529.json │ │ │ ├── 532530.json │ │ │ ├── 532531.json │ │ │ ├── 532532.json │ │ │ ├── 532601.json │ │ │ ├── 532622.json │ │ │ ├── 532623.json │ │ │ ├── 532624.json │ │ │ ├── 532625.json │ │ │ ├── 532626.json │ │ │ ├── 532627.json │ │ │ ├── 532628.json │ │ │ ├── 532801.json │ │ │ ├── 532822.json │ │ │ ├── 532823.json │ │ │ ├── 532901.json │ │ │ ├── 532922.json │ │ │ ├── 532923.json │ │ │ ├── 532924.json │ │ │ ├── 532925.json │ │ │ ├── 532926.json │ │ │ ├── 532927.json │ │ │ ├── 532928.json │ │ │ ├── 532929.json │ │ │ ├── 532930.json │ │ │ ├── 532931.json │ │ │ ├── 532932.json │ │ │ ├── 533102.json │ │ │ ├── 533103.json │ │ │ ├── 533122.json │ │ │ ├── 533123.json │ │ │ ├── 533124.json │ │ │ ├── 533301.json │ │ │ ├── 533321.json │ │ │ ├── 533323.json │ │ │ ├── 533324.json │ │ │ ├── 533325.json │ │ │ ├── 533401.json │ │ │ ├── 533422.json │ │ │ ├── 533423.json │ │ │ ├── 540102.json │ │ │ ├── 540103.json │ │ │ ├── 540104.json │ │ │ ├── 540121.json │ │ │ ├── 540122.json │ │ │ ├── 540123.json │ │ │ ├── 540124.json │ │ │ ├── 540125.json │ │ │ ├── 540126.json │ │ │ ├── 540127.json │ │ │ ├── 540171.json │ │ │ ├── 540172.json │ │ │ ├── 540173.json │ │ │ ├── 540174.json │ │ │ ├── 540202.json │ │ │ ├── 540221.json │ │ │ ├── 540222.json │ │ │ ├── 540223.json │ │ │ ├── 540224.json │ │ │ ├── 540225.json │ │ │ ├── 540226.json │ │ │ ├── 540227.json │ │ │ ├── 540228.json │ │ │ ├── 540229.json │ │ │ ├── 540230.json │ │ │ ├── 540231.json │ │ │ ├── 540232.json │ │ │ ├── 540233.json │ │ │ ├── 540234.json │ │ │ ├── 540235.json │ │ │ ├── 540236.json │ │ │ ├── 540237.json │ │ │ ├── 540302.json │ │ │ ├── 540321.json │ │ │ ├── 540322.json │ │ │ ├── 540323.json │ │ │ ├── 540324.json │ │ │ ├── 540325.json │ │ │ ├── 540326.json │ │ │ ├── 540327.json │ │ │ ├── 540328.json │ │ │ ├── 540329.json │ │ │ ├── 540330.json │ │ │ ├── 540402.json │ │ │ ├── 540421.json │ │ │ ├── 540422.json │ │ │ ├── 540423.json │ │ │ ├── 540424.json │ │ │ ├── 540425.json │ │ │ ├── 540426.json │ │ │ ├── 540502.json │ │ │ ├── 540521.json │ │ │ ├── 540522.json │ │ │ ├── 540523.json │ │ │ ├── 540524.json │ │ │ ├── 540525.json │ │ │ ├── 540526.json │ │ │ ├── 540527.json │ │ │ ├── 540528.json │ │ │ ├── 540529.json │ │ │ ├── 540530.json │ │ │ ├── 540531.json │ │ │ ├── 540602.json │ │ │ ├── 540621.json │ │ │ ├── 540622.json │ │ │ ├── 540623.json │ │ │ ├── 540624.json │ │ │ ├── 540625.json │ │ │ ├── 540626.json │ │ │ ├── 540627.json │ │ │ ├── 540628.json │ │ │ ├── 540629.json │ │ │ ├── 540630.json │ │ │ ├── 542221.json │ │ │ ├── 542222.json │ │ │ ├── 542223.json │ │ │ ├── 542224.json │ │ │ ├── 542225.json │ │ │ ├── 542226.json │ │ │ ├── 542227.json │ │ │ ├── 542228.json │ │ │ ├── 542229.json │ │ │ ├── 542231.json │ │ │ ├── 542232.json │ │ │ ├── 542233.json │ │ │ ├── 542421.json │ │ │ ├── 542422.json │ │ │ ├── 542423.json │ │ │ ├── 542424.json │ │ │ ├── 542425.json │ │ │ ├── 542426.json │ │ │ ├── 542427.json │ │ │ ├── 542428.json │ │ │ ├── 542429.json │ │ │ ├── 542430.json │ │ │ ├── 542431.json │ │ │ ├── 542521.json │ │ │ ├── 542522.json │ │ │ ├── 542523.json │ │ │ ├── 542524.json │ │ │ ├── 542525.json │ │ │ ├── 542526.json │ │ │ ├── 542527.json │ │ │ ├── 610102.json │ │ │ ├── 610103.json │ │ │ ├── 610104.json │ │ │ ├── 610111.json │ │ │ ├── 610112.json │ │ │ ├── 610113.json │ │ │ ├── 610114.json │ │ │ ├── 610115.json │ │ │ ├── 610116.json │ │ │ ├── 610117.json │ │ │ ├── 610118.json │ │ │ ├── 610122.json │ │ │ ├── 610124.json │ │ │ ├── 610125.json │ │ │ ├── 610202.json │ │ │ ├── 610203.json │ │ │ ├── 610204.json │ │ │ ├── 610222.json │ │ │ ├── 610302.json │ │ │ ├── 610303.json │ │ │ ├── 610304.json │ │ │ ├── 610305.json │ │ │ ├── 610322.json │ │ │ ├── 610323.json │ │ │ ├── 610324.json │ │ │ ├── 610326.json │ │ │ ├── 610327.json │ │ │ ├── 610328.json │ │ │ ├── 610329.json │ │ │ ├── 610330.json │ │ │ ├── 610331.json │ │ │ ├── 610402.json │ │ │ ├── 610403.json │ │ │ ├── 610404.json │ │ │ ├── 610422.json │ │ │ ├── 610423.json │ │ │ ├── 610424.json │ │ │ ├── 610425.json │ │ │ ├── 610426.json │ │ │ ├── 610427.json │ │ │ ├── 610428.json │ │ │ ├── 610429.json │ │ │ ├── 610430.json │ │ │ ├── 610431.json │ │ │ ├── 610481.json │ │ │ ├── 610482.json │ │ │ ├── 610502.json │ │ │ ├── 610503.json │ │ │ ├── 610521.json │ │ │ ├── 610522.json │ │ │ ├── 610523.json │ │ │ ├── 610524.json │ │ │ ├── 610525.json │ │ │ ├── 610526.json │ │ │ ├── 610527.json │ │ │ ├── 610528.json │ │ │ ├── 610581.json │ │ │ ├── 610582.json │ │ │ ├── 610602.json │ │ │ ├── 610603.json │ │ │ ├── 610621.json │ │ │ ├── 610622.json │ │ │ ├── 610623.json │ │ │ ├── 610624.json │ │ │ ├── 610625.json │ │ │ ├── 610626.json │ │ │ ├── 610627.json │ │ │ ├── 610628.json │ │ │ ├── 610629.json │ │ │ ├── 610630.json │ │ │ ├── 610631.json │ │ │ ├── 610632.json │ │ │ ├── 610681.json │ │ │ ├── 610702.json │ │ │ ├── 610703.json │ │ │ ├── 610721.json │ │ │ ├── 610722.json │ │ │ ├── 610723.json │ │ │ ├── 610724.json │ │ │ ├── 610725.json │ │ │ ├── 610726.json │ │ │ ├── 610727.json │ │ │ ├── 610728.json │ │ │ ├── 610729.json │ │ │ ├── 610730.json │ │ │ ├── 610802.json │ │ │ ├── 610803.json │ │ │ ├── 610821.json │ │ │ ├── 610822.json │ │ │ ├── 610823.json │ │ │ ├── 610824.json │ │ │ ├── 610825.json │ │ │ ├── 610826.json │ │ │ ├── 610827.json │ │ │ ├── 610828.json │ │ │ ├── 610829.json │ │ │ ├── 610830.json │ │ │ ├── 610831.json │ │ │ ├── 610881.json │ │ │ ├── 610902.json │ │ │ ├── 610921.json │ │ │ ├── 610922.json │ │ │ ├── 610923.json │ │ │ ├── 610924.json │ │ │ ├── 610925.json │ │ │ ├── 610926.json │ │ │ ├── 610927.json │ │ │ ├── 610928.json │ │ │ ├── 610929.json │ │ │ ├── 610981.json │ │ │ ├── 611002.json │ │ │ ├── 611021.json │ │ │ ├── 611022.json │ │ │ ├── 611023.json │ │ │ ├── 611024.json │ │ │ ├── 611025.json │ │ │ ├── 611026.json │ │ │ ├── 620102.json │ │ │ ├── 620103.json │ │ │ ├── 620104.json │ │ │ ├── 620105.json │ │ │ ├── 620111.json │ │ │ ├── 620121.json │ │ │ ├── 620122.json │ │ │ ├── 620123.json │ │ │ ├── 620171.json │ │ │ ├── 620201.json │ │ │ ├── 620302.json │ │ │ ├── 620321.json │ │ │ ├── 620402.json │ │ │ ├── 620403.json │ │ │ ├── 620421.json │ │ │ ├── 620422.json │ │ │ ├── 620423.json │ │ │ ├── 620502.json │ │ │ ├── 620503.json │ │ │ ├── 620521.json │ │ │ ├── 620522.json │ │ │ ├── 620523.json │ │ │ ├── 620524.json │ │ │ ├── 620525.json │ │ │ ├── 620602.json │ │ │ ├── 620621.json │ │ │ ├── 620622.json │ │ │ ├── 620623.json │ │ │ ├── 620702.json │ │ │ ├── 620721.json │ │ │ ├── 620722.json │ │ │ ├── 620723.json │ │ │ ├── 620724.json │ │ │ ├── 620725.json │ │ │ ├── 620802.json │ │ │ ├── 620821.json │ │ │ ├── 620822.json │ │ │ ├── 620823.json │ │ │ ├── 620824.json │ │ │ ├── 620825.json │ │ │ ├── 620826.json │ │ │ ├── 620881.json │ │ │ ├── 620902.json │ │ │ ├── 620921.json │ │ │ ├── 620922.json │ │ │ ├── 620923.json │ │ │ ├── 620924.json │ │ │ ├── 620981.json │ │ │ ├── 620982.json │ │ │ ├── 621002.json │ │ │ ├── 621021.json │ │ │ ├── 621022.json │ │ │ ├── 621023.json │ │ │ ├── 621024.json │ │ │ ├── 621025.json │ │ │ ├── 621026.json │ │ │ ├── 621027.json │ │ │ ├── 621102.json │ │ │ ├── 621121.json │ │ │ ├── 621122.json │ │ │ ├── 621123.json │ │ │ ├── 621124.json │ │ │ ├── 621125.json │ │ │ ├── 621126.json │ │ │ ├── 621202.json │ │ │ ├── 621221.json │ │ │ ├── 621222.json │ │ │ ├── 621223.json │ │ │ ├── 621224.json │ │ │ ├── 621225.json │ │ │ ├── 621226.json │ │ │ ├── 621227.json │ │ │ ├── 621228.json │ │ │ ├── 622901.json │ │ │ ├── 622921.json │ │ │ ├── 622922.json │ │ │ ├── 622923.json │ │ │ ├── 622924.json │ │ │ ├── 622925.json │ │ │ ├── 622926.json │ │ │ ├── 622927.json │ │ │ ├── 623001.json │ │ │ ├── 623021.json │ │ │ ├── 623022.json │ │ │ ├── 623023.json │ │ │ ├── 623024.json │ │ │ ├── 623025.json │ │ │ ├── 623026.json │ │ │ ├── 623027.json │ │ │ ├── 630102.json │ │ │ ├── 630103.json │ │ │ ├── 630104.json │ │ │ ├── 630105.json │ │ │ ├── 630106.json │ │ │ ├── 630121.json │ │ │ ├── 630122.json │ │ │ ├── 630123.json │ │ │ ├── 630202.json │ │ │ ├── 630203.json │ │ │ ├── 630222.json │ │ │ ├── 630223.json │ │ │ ├── 630224.json │ │ │ ├── 630225.json │ │ │ ├── 632221.json │ │ │ ├── 632222.json │ │ │ ├── 632223.json │ │ │ ├── 632224.json │ │ │ ├── 632301.json │ │ │ ├── 632321.json │ │ │ ├── 632322.json │ │ │ ├── 632323.json │ │ │ ├── 632324.json │ │ │ ├── 632521.json │ │ │ ├── 632522.json │ │ │ ├── 632523.json │ │ │ ├── 632524.json │ │ │ ├── 632525.json │ │ │ ├── 632621.json │ │ │ ├── 632622.json │ │ │ ├── 632623.json │ │ │ ├── 632624.json │ │ │ ├── 632625.json │ │ │ ├── 632626.json │ │ │ ├── 632701.json │ │ │ ├── 632722.json │ │ │ ├── 632723.json │ │ │ ├── 632724.json │ │ │ ├── 632725.json │ │ │ ├── 632726.json │ │ │ ├── 632801.json │ │ │ ├── 632802.json │ │ │ ├── 632803.json │ │ │ ├── 632821.json │ │ │ ├── 632822.json │ │ │ ├── 632823.json │ │ │ ├── 632857.json │ │ │ ├── 632858.json │ │ │ ├── 632859.json │ │ │ ├── 640104.json │ │ │ ├── 640105.json │ │ │ ├── 640106.json │ │ │ ├── 640121.json │ │ │ ├── 640122.json │ │ │ ├── 640181.json │ │ │ ├── 640202.json │ │ │ ├── 640205.json │ │ │ ├── 640221.json │ │ │ ├── 640302.json │ │ │ ├── 640303.json │ │ │ ├── 640323.json │ │ │ ├── 640324.json │ │ │ ├── 640381.json │ │ │ ├── 640402.json │ │ │ ├── 640422.json │ │ │ ├── 640423.json │ │ │ ├── 640424.json │ │ │ ├── 640425.json │ │ │ ├── 640502.json │ │ │ ├── 640521.json │ │ │ ├── 640522.json │ │ │ ├── 650102.json │ │ │ ├── 650103.json │ │ │ ├── 650104.json │ │ │ ├── 650105.json │ │ │ ├── 650106.json │ │ │ ├── 650107.json │ │ │ ├── 650109.json │ │ │ ├── 650121.json │ │ │ ├── 650171.json │ │ │ ├── 650172.json │ │ │ ├── 650202.json │ │ │ ├── 650203.json │ │ │ ├── 650204.json │ │ │ ├── 650205.json │ │ │ ├── 650402.json │ │ │ ├── 650421.json │ │ │ ├── 650422.json │ │ │ ├── 650502.json │ │ │ ├── 650521.json │ │ │ ├── 650522.json │ │ │ ├── 652201.json │ │ │ ├── 652222.json │ │ │ ├── 652223.json │ │ │ ├── 652301.json │ │ │ ├── 652302.json │ │ │ ├── 652323.json │ │ │ ├── 652324.json │ │ │ ├── 652325.json │ │ │ ├── 652327.json │ │ │ ├── 652328.json │ │ │ ├── 652701.json │ │ │ ├── 652702.json │ │ │ ├── 652722.json │ │ │ ├── 652723.json │ │ │ ├── 652801.json │ │ │ ├── 652822.json │ │ │ ├── 652823.json │ │ │ ├── 652824.json │ │ │ ├── 652825.json │ │ │ ├── 652826.json │ │ │ ├── 652827.json │ │ │ ├── 652828.json │ │ │ ├── 652829.json │ │ │ ├── 652871.json │ │ │ ├── 652901.json │ │ │ ├── 652902.json │ │ │ ├── 652922.json │ │ │ ├── 652923.json │ │ │ ├── 652924.json │ │ │ ├── 652925.json │ │ │ ├── 652926.json │ │ │ ├── 652927.json │ │ │ ├── 652928.json │ │ │ ├── 652929.json │ │ │ ├── 653001.json │ │ │ ├── 653022.json │ │ │ ├── 653023.json │ │ │ ├── 653024.json │ │ │ ├── 653101.json │ │ │ ├── 653121.json │ │ │ ├── 653122.json │ │ │ ├── 653123.json │ │ │ ├── 653124.json │ │ │ ├── 653125.json │ │ │ ├── 653126.json │ │ │ ├── 653127.json │ │ │ ├── 653128.json │ │ │ ├── 653129.json │ │ │ ├── 653130.json │ │ │ ├── 653131.json │ │ │ ├── 653201.json │ │ │ ├── 653221.json │ │ │ ├── 653222.json │ │ │ ├── 653223.json │ │ │ ├── 653224.json │ │ │ ├── 653225.json │ │ │ ├── 653226.json │ │ │ ├── 653227.json │ │ │ ├── 654002.json │ │ │ ├── 654003.json │ │ │ ├── 654004.json │ │ │ ├── 654021.json │ │ │ ├── 654022.json │ │ │ ├── 654023.json │ │ │ ├── 654024.json │ │ │ ├── 654025.json │ │ │ ├── 654026.json │ │ │ ├── 654027.json │ │ │ ├── 654028.json │ │ │ ├── 654201.json │ │ │ ├── 654202.json │ │ │ ├── 654203.json │ │ │ ├── 654221.json │ │ │ ├── 654223.json │ │ │ ├── 654224.json │ │ │ ├── 654225.json │ │ │ ├── 654226.json │ │ │ ├── 654301.json │ │ │ ├── 654321.json │ │ │ ├── 654322.json │ │ │ ├── 654323.json │ │ │ ├── 654324.json │ │ │ ├── 654325.json │ │ │ ├── 654326.json │ │ │ ├── 659001.json │ │ │ ├── 659002.json │ │ │ ├── 659003.json │ │ │ ├── 659004.json │ │ │ ├── 659005.json │ │ │ ├── 659006.json │ │ │ ├── 659007.json │ │ │ ├── 659008.json │ │ │ ├── 659009.json │ │ │ ├── 659010.json │ │ │ └── 659011.json │ │ └── utils │ │ │ ├── helper.js │ │ │ └── parse.js │ ├── v-selectmenu │ │ ├── SelectMenu.js │ │ ├── components │ │ │ ├── advanced │ │ │ │ ├── List.js │ │ │ │ └── Row.js │ │ │ └── regular │ │ │ │ ├── Item.js │ │ │ │ └── Menu.js │ │ ├── constants.js │ │ ├── helper.js │ │ ├── index.js │ │ ├── mixins │ │ │ ├── data.js │ │ │ ├── methods.js │ │ │ ├── props.js │ │ │ ├── render.js │ │ │ └── util.js │ │ └── styles │ │ │ ├── animated.styl │ │ │ ├── icons.styl │ │ │ └── selectmenu.styl │ ├── v-selectpage │ │ ├── SelectPage.js │ │ ├── components │ │ │ ├── List.js │ │ │ ├── Pagination.js │ │ │ ├── Select.js │ │ │ ├── Table.js │ │ │ └── Tag.js │ │ ├── index.js │ │ ├── language.js │ │ ├── mixins │ │ │ ├── data.js │ │ │ ├── methods.js │ │ │ ├── render.js │ │ │ ├── util.js │ │ │ └── view.js │ │ └── styles │ │ │ ├── icons.styl │ │ │ └── selectpage.styl │ ├── v-sidebar │ │ ├── SlideBar.vue │ │ ├── index.js │ │ ├── mixins │ │ │ └── index.js │ │ └── slide.scss │ ├── v-suggest │ │ ├── Suggest.js │ │ ├── index.js │ │ ├── mixins │ │ │ ├── data.js │ │ │ ├── methods.js │ │ │ └── render.js │ │ └── suggest.scss │ ├── v-tablegrid │ │ ├── TableGrid.vue │ │ ├── constants.js │ │ ├── index.js │ │ ├── mixins │ │ │ └── index.js │ │ └── tablegrid.scss │ ├── v-tree │ │ ├── Tree.vue │ │ └── index.js │ └── v-uploader │ │ ├── Uploader.vue │ │ ├── constants.js │ │ ├── index.js │ │ └── uploader.scss ├── config │ ├── constants.js │ ├── hooks.js │ ├── plugins.js │ ├── polyfill.js │ ├── validate-custom.js │ └── validate-message.js ├── main.js ├── router │ ├── demo.js │ └── index.js ├── store │ └── index.js ├── styles │ └── spinners.sass ├── utils │ ├── auth │ │ └── router.js │ ├── crypto │ │ └── crypto.js │ ├── http │ │ ├── http.js │ │ ├── index.js │ │ ├── results.js │ │ ├── settings.js │ │ └── states.js │ └── url.js └── views │ └── demo │ ├── Form.vue │ ├── List.vue │ ├── Main.vue │ └── plugins │ ├── Composite.vue │ ├── DateTime.vue │ ├── Dropdown.vue │ ├── Editor.vue │ ├── Gallery.vue │ ├── Page.vue │ ├── Region.vue │ ├── SelectMenu.vue │ ├── SelectPage.vue │ ├── Suggest.vue │ ├── Tree.vue │ ├── Upload.vue │ ├── Video.vue │ ├── dialog │ ├── Alert.vue │ ├── Company.vue │ ├── Drawer.vue │ ├── Index.vue │ ├── Mask.vue │ ├── Model.vue │ ├── Profile.vue │ ├── Toast.vue │ └── mixins.js │ └── region │ ├── City.vue │ ├── Columns.vue │ ├── Group.vue │ ├── Index.vue │ ├── Selects.vue │ └── Text.vue ├── tests ├── e2e │ ├── .eslintrc.js │ ├── plugins │ │ └── index.js │ ├── specs │ │ ├── test.js │ │ ├── v-dialogs.spec.js │ │ └── v-suggest.spec.js │ └── support │ │ ├── commands.js │ │ └── index.js ├── sample │ ├── countries.js │ ├── httpResult.js │ ├── menu │ │ ├── advanced.js │ │ └── regular.js │ ├── nba-teams.js │ └── table.js └── unit │ ├── .eslintrc.js │ ├── example.spec.js │ ├── setup.js │ ├── v-dialogs │ ├── alert.spec.js │ ├── core.spec.js │ ├── mask.spec.js │ ├── modal.spec.js │ └── toast.spec.js │ ├── v-page.spec.js │ ├── v-region │ ├── city.spec.js │ ├── column.spec.js │ ├── group.spec.js │ ├── select.spec.js │ └── text.spec.js │ ├── v-selectmenu │ ├── advanced.spec.js │ ├── basic-options.spec.js │ └── regular.spec.js │ ├── v-selectpage │ ├── basic-options.spec.js │ ├── list-view.spec.js │ ├── table-view.spec.js │ └── v-selectpage.spec.js │ ├── v-suggest.spec.js │ └── v-tablegrid.spec.js └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.{js,jsx,ts,tsx,vue}] 2 | indent_style = space 3 | indent_size = 2 4 | trim_trailing_whitespace = true 5 | insert_final_newline = true 6 | -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- 1 | NODE_ENV=development 2 | 3 | 4 | //server side base path 5 | VUE_APP_API=http://localhost 6 | //file upload server path 7 | FILE_UPLOAD_API=http://localhost -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | NODE_ENV=production 2 | 3 | //server side base path 4 | VUE_APP_API=/api 5 | //file upload server path 6 | FILE_UPLOAD_API=/api -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | strict-peer-dependencies=false -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/app' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /changelog/v-dropdown.md: -------------------------------------------------------------------------------- 1 | # v-dropdown changelog 2 | 3 | ## 当前版本 4 | 5 | - 增加 prop **cover**,用于下拉层是否完全覆盖住触发元素(toggler) 6 | - 增加 prop **spacing**,用于设置下拉触发元素(toggler)与下拉层之间的间距,默认为 5px -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "pluginsFile": "tests/e2e/plugins/index.js" 3 | } 4 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | autoprefixer: {} 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/public/favicon.ico -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /src/assets/gallery/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/gallery/1.jpg -------------------------------------------------------------------------------- /src/assets/gallery/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/gallery/10.jpg -------------------------------------------------------------------------------- /src/assets/gallery/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/gallery/2.jpg -------------------------------------------------------------------------------- /src/assets/gallery/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/gallery/3.jpg -------------------------------------------------------------------------------- /src/assets/gallery/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/gallery/4.jpg -------------------------------------------------------------------------------- /src/assets/gallery/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/gallery/5.jpg -------------------------------------------------------------------------------- /src/assets/gallery/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/gallery/6.jpg -------------------------------------------------------------------------------- /src/assets/gallery/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/gallery/7.jpg -------------------------------------------------------------------------------- /src/assets/gallery/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/gallery/8.jpg -------------------------------------------------------------------------------- /src/assets/gallery/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/gallery/9.jpg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryZ/vue-plugins/29f2f02590ec61e8d2c3fb580356351749426a56/src/assets/sample.pdf -------------------------------------------------------------------------------- /src/components/v-dialogs/components/Drawer.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'DialogDrawer', 3 | props: { 4 | }, 5 | render (h) { 6 | 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/components/v-dropdown/index.js: -------------------------------------------------------------------------------- 1 | import drop from './Dropdown' 2 | 3 | export default drop 4 | export { drop as Dropdown } 5 | -------------------------------------------------------------------------------- /src/components/v-region/town/120101.json: -------------------------------------------------------------------------------- 1 | {"120101001":"劝业场街道","120101002":"小白楼街道","120101003":"五大道街道","120101004":"新兴街道","120101005":"南营门街道","120101006":"南市街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/130107.json: -------------------------------------------------------------------------------- 1 | {"130107001":"矿市街道","130107002":"四微街道","130107100":"贾庄镇","130107101":"凤山镇","130107200":"横涧乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130111.json: -------------------------------------------------------------------------------- 1 | {"130111100":"栾城镇","130111103":"冶河镇","130111104":"窦妪镇","130111105":"楼底镇","130111200":"南高乡","130111201":"柳林屯乡","130111202":"西营乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130127.json: -------------------------------------------------------------------------------- 1 | {"130127100":"高邑镇","130127101":"大营镇","130127102":"富村镇","130127103":"万城镇","130127104":"中韩镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130128.json: -------------------------------------------------------------------------------- 1 | {"130128100":"深泽镇","130128101":"铁杆镇","130128102":"赵八镇","130128103":"大桥头镇","130128200":"白庄乡","130128201":"留村乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130171.json: -------------------------------------------------------------------------------- 1 | {"130171010":"长江街道","130171011":"太行街道","130171100":"宋营镇","130171101":"郄马镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130172.json: -------------------------------------------------------------------------------- 1 | {"130172100":"丘头镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130271.json: -------------------------------------------------------------------------------- 1 | {"130271100":"海北镇","130271450":"新华路街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/130272.json: -------------------------------------------------------------------------------- 1 | {"130272101":"汉丰镇","130272451":"兴农街道","130272452":"振兴街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/130273.json: -------------------------------------------------------------------------------- 1 | {"130273001":"街道","130273101":"老庄子镇","130273401":"庆北","130273402":"三女河"} -------------------------------------------------------------------------------- /src/components/v-region/town/130274.json: -------------------------------------------------------------------------------- 1 | {"130274103":"王滩镇","130274451":"社区管理服务中心","130274452":"唐山湾国际旅游岛","130274455":"大清河"} -------------------------------------------------------------------------------- /src/components/v-region/town/130303.json: -------------------------------------------------------------------------------- 1 | {"130303001":"南关街道","130303002":"古城街道","130303003":"西关街道","130303004":"路南街道","130303100":"第一关镇","130303101":"石河镇","130303102":"孟姜镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130304.json: -------------------------------------------------------------------------------- 1 | {"130304001":"西山街道","130304002":"东山街道","130304100":"海滨镇","130304101":"戴河镇","130304103":"牛头崖镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130306.json: -------------------------------------------------------------------------------- 1 | {"130306001":"骊城街道","130306100":"抚宁镇","130306101":"留守营镇","130306102":"榆关镇","130306105":"台营镇","130306106":"大新寨镇","130306109":"坟坨镇","130306200":"茶棚乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130371.json: -------------------------------------------------------------------------------- 1 | {"130371005":"船厂路街道","130371011":"珠江道街道","130371012":"黄河道街道","130371013":"腾飞路街道","130371200":"渤海乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130372.json: -------------------------------------------------------------------------------- 1 | {"130372001":"南戴河街道","130372400":"大蒲河管理处","130372401":"团林管理处","130372402":"留守营管理处"} -------------------------------------------------------------------------------- /src/components/v-region/town/130421.json: -------------------------------------------------------------------------------- 1 | {"130421100":"尚璧镇","130421102":"河沙镇镇","130421200":"南堡乡","130421201":"南吕固乡","130421202":"兼庄乡","130421203":"代召乡","130421212":"姚寨乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130424.json: -------------------------------------------------------------------------------- 1 | {"130424100":"成安镇","130424101":"商城镇","130424102":"漳河店镇","130424103":"李家疃镇","130424104":"北乡义镇","130424105":"道东堡镇","130424200":"辛义乡","130424201":"柏寺营乡","130424204":"长巷乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130430.json: -------------------------------------------------------------------------------- 1 | {"130430100":"新马头镇","130430101":"邱城镇","130430102":"梁二庄镇","130430103":"香城固镇","130430104":"古城营镇","130430201":"南辛店乡","130430204":"陈村回族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130431.json: -------------------------------------------------------------------------------- 1 | {"130431100":"鸡泽镇","130431101":"小寨镇","130431102":"双塔镇","130431103":"曹庄镇","130431104":"浮图店镇","130431105":"吴官营镇","130431202":"风正乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130432.json: -------------------------------------------------------------------------------- 1 | {"130432100":"广平镇","130432101":"平固店镇","130432102":"胜营镇","130432103":"南阳堡镇","130432104":"十里铺镇","130432105":"南韩镇","130432106":"东张孟镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130433.json: -------------------------------------------------------------------------------- 1 | {"130433100":"馆陶镇","130433101":"房寨镇","130433102":"柴堡镇","130433103":"魏僧寨镇","130433200":"寿山寺乡","130433201":"王桥乡","130433202":"南徐村乡","130433203":"路桥乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130471.json: -------------------------------------------------------------------------------- 1 | {"130471001":"开发区街道","130471100":"尚璧镇","130471101":"南沿村镇","130471200":"小西堡乡","130471201":"姚寨乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130473.json: -------------------------------------------------------------------------------- 1 | {"130473001":"城南街道","130473100":"高臾镇","130473101":"西光禄镇","130473102":"林坛镇","130473103":"马头镇","130473200":"辛庄营乡","130473201":"花官营乡","130473202":"台城乡","130473203":"南城乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130505.json: -------------------------------------------------------------------------------- 1 | {"130505100":"任城镇","130505101":"邢家湾镇","130505102":"辛店镇","130505103":"天口镇","130505200":"西固城乡","130505201":"永福庄乡","130505202":"大屯乡","130505203":"骆庄乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130506.json: -------------------------------------------------------------------------------- 1 | {"130506100":"和阳镇","130506101":"贾宋镇","130506102":"郝桥镇","130506103":"三思镇","130506104":"河郭镇","130506200":"东三召乡","130506201":"阎里乡","130506203":"史召乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130522.json: -------------------------------------------------------------------------------- 1 | {"130522100":"临城镇","130522101":"东镇镇","130522102":"西竖镇","130522103":"郝庄镇","130522104":"黑城镇","130522201":"鸭鸽营乡","130522203":"石城乡","130522205":"赵庄乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130524.json: -------------------------------------------------------------------------------- 1 | {"130524100":"柏乡镇","130524101":"固城店镇","130524102":"西汪镇","130524103":"龙华镇","130524200":"王家庄乡","130524203":"内步乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130526.json: -------------------------------------------------------------------------------- 1 | {"130526100":"任城镇","130526101":"邢家湾镇","130526102":"辛店镇","130526103":"天口镇","130526200":"西固城乡","130526201":"永福庄乡","130526202":"大屯乡","130526204":"骆庄乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130527.json: -------------------------------------------------------------------------------- 1 | {"130527100":"和阳镇","130527101":"贾宋镇","130527102":"郝桥镇","130527200":"东三召乡","130527201":"阎里乡","130527202":"河郭乡","130527203":"史召乡","130527204":"三思乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130530.json: -------------------------------------------------------------------------------- 1 | {"130530100":"新河镇","130530101":"寻寨镇","130530200":"白神首乡","130530201":"荆家庄乡","130530202":"西流乡","130530203":"仁让里乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130531.json: -------------------------------------------------------------------------------- 1 | {"130531100":"广宗镇","130531101":"冯家寨镇","130531102":"北塘疃镇","130531103":"核桃园镇","130531200":"葫芦乡","130531201":"大平台乡","130531202":"件只乡","130531204":"东召乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130532.json: -------------------------------------------------------------------------------- 1 | {"130532001":"中华路街道","130532101":"平乡镇","130532102":"河古庙镇","130532200":"节固乡","130532201":"油召乡","130532202":"田付村乡","130532203":"寻召乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130534.json: -------------------------------------------------------------------------------- 1 | {"130534100":"葛仙庄镇","130534101":"连庄镇","130534102":"油坊镇","130534103":"谢炉镇","130534104":"王官庄镇","130534105":"坝营镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130571.json: -------------------------------------------------------------------------------- 1 | {"130571100":"东汪镇","130571101":"王快镇","130571103":"沙河城镇","130571104":"留村镇","130571400":"市高新技术开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/130629.json: -------------------------------------------------------------------------------- 1 | {"130629100":"容城镇","130629101":"小里镇","130629102":"南张镇","130629103":"大河镇","130629104":"晾马台镇","130629200":"八于乡","130629201":"贾光乡","130629203":"平王乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130637.json: -------------------------------------------------------------------------------- 1 | {"130637100":"博野镇","130637101":"小店镇","130637102":"程委镇","130637103":"东墟镇","130637104":"北杨镇","130637105":"城东镇","130637106":"南小王镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130671.json: -------------------------------------------------------------------------------- 1 | {"130671202":"贤台乡","130671205":"大马坊乡","130671400":"保定国家高新区"} -------------------------------------------------------------------------------- /src/components/v-region/town/130672.json: -------------------------------------------------------------------------------- 1 | {"130672103":"白沟镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130702.json: -------------------------------------------------------------------------------- 1 | {"130702001":"红旗楼街道","130702002":"胜利北路街道","130702003":"五一路街道","130702004":"花园街街道","130702005":"工业路街道","130702101":"姚家庄镇","130702102":"大仓盖镇","130702202":"东望山乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130703.json: -------------------------------------------------------------------------------- 1 | {"130703001":"新华街街道","130703002":"大境门街道","130703003":"明德北街街道","130703004":"明德南街街道","130703005":"堡子里街道","130703006":"南营坊街道","130703007":"工人新村街道","130703100":"东窑子镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130706.json: -------------------------------------------------------------------------------- 1 | {"130706001":"城镇街道","130706002":"煤矿街道","130706200":"花园乡","130706201":"辛庄子乡","130706202":"定方水乡","130706203":"段家堡乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130771.json: -------------------------------------------------------------------------------- 1 | {"130771001":"南站街道","130771002":"马路东街道","130771100":"老鸦庄镇","130771101":"沈家屯镇","130771102":"姚家房镇","130771103":"沙岭子镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130772.json: -------------------------------------------------------------------------------- 1 | {"130772105":"沙沟镇","130772215":"宇宙营乡","130772401":"黄山管理处","130772402":"石门管理处","130772403":"乌兰管理处","130772404":"金沙管理处","130772405":"白塔管理处"} -------------------------------------------------------------------------------- /src/components/v-region/town/130773.json: -------------------------------------------------------------------------------- 1 | {"130773501":"榆树沟管理处","130773502":"沙梁子管理处","130773503":"小城子管理处","130773504":"东大门管理处"} -------------------------------------------------------------------------------- /src/components/v-region/town/130804.json: -------------------------------------------------------------------------------- 1 | {"130804001":"铁北路街道","130804100":"鹰手营子镇","130804101":"北马圈子镇","130804102":"寿王坟镇","130804103":"汪家庄镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130871.json: -------------------------------------------------------------------------------- 1 | {"130871104":"冯营子镇","130871106":"上板城镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130902.json: -------------------------------------------------------------------------------- 1 | {"130902001":"建设北街街道","130902002":"车站街道","130902003":"南大街街道","130902004":"东环街道","130902005":"道东街道","130902200":"小赵庄乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130903.json: -------------------------------------------------------------------------------- 1 | {"130903001":"水月寺街道","130903002":"南环中路街道","130903003":"南湖街道","130903004":"市场街道","130903005":"西环中街街道","130903006":"公园街道","130903100":"小王庄镇","130903101":"南陈屯镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/130930.json: -------------------------------------------------------------------------------- 1 | {"130930100":"孟村镇","130930101":"新县镇","130930102":"辛店镇","130930103":"高寨镇","130930200":"宋庄子乡","130930201":"牛进庄乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130971.json: -------------------------------------------------------------------------------- 1 | {"130971400":"开发区乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130972.json: -------------------------------------------------------------------------------- 1 | {"130972400":"高新乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/130973.json: -------------------------------------------------------------------------------- 1 | {"130973206":"新村回族乡","130973400":"南大港管理区","130973401":"国营中捷农场","130973402":"港城街道","130973403":"临港化工园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/131028.json: -------------------------------------------------------------------------------- 1 | {"131028001":"北辰街道","131028100":"大厂镇","131028101":"夏垫镇","131028102":"祁各庄镇","131028103":"邵府镇","131028104":"陈府镇","131028400":"河北大厂高新技术产业开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/131071.json: -------------------------------------------------------------------------------- 1 | {"131071450":"耀华道街道","131071451":"云鹏道街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/131102.json: -------------------------------------------------------------------------------- 1 | {"131102001":"河西街道","131102002":"河东街道","131102003":"路北街道","131102004":"中华大街街道","131102100":"郑家河沿镇","131102101":"赵家圈镇","131102102":"邓庄镇","131102200":"何家庄乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/131123.json: -------------------------------------------------------------------------------- 1 | {"131123100":"武强镇","131123101":"街关镇","131123102":"周窝镇","131123103":"东孙庄镇","131123104":"豆村镇","131123201":"北代乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/131124.json: -------------------------------------------------------------------------------- 1 | {"131124100":"饶阳镇","131124101":"大尹村镇","131124102":"五公镇","131124103":"大官亭镇","131124104":"王同岳镇","131124105":"东里满镇","131124106":"留楚镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/131171.json: -------------------------------------------------------------------------------- 1 | {"131171201":"大麻森乡","131171400":"高新技术产业开发区","131171401":"新型功能材料产业园","131171402":"苏正"} -------------------------------------------------------------------------------- /src/components/v-region/town/131172.json: -------------------------------------------------------------------------------- 1 | {"131172101":"魏家屯镇","131172203":"彭杜村乡","131172401":"滨湖新区教育园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/140106.json: -------------------------------------------------------------------------------- 1 | {"140106001":"柳巷街道","140106002":"文庙街道","140106003":"庙前街道","140106004":"迎泽街道","140106005":"桥东街道","140106006":"老军营街道","140106100":"郝庄镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/140110.json: -------------------------------------------------------------------------------- 1 | {"140110001":"义井街道","140110002":"罗城街道","140110003":"晋源街道","140110100":"金胜镇","140110101":"晋祠镇","140110102":"姚村镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/140121.json: -------------------------------------------------------------------------------- 1 | {"140121100":"清源镇","140121101":"徐沟镇","140121102":"东于镇","140121103":"孟封镇","140121200":"马峪乡","140121201":"柳杜乡","140121202":"西谷乡","140121203":"王答乡","140121204":"集义乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/140123.json: -------------------------------------------------------------------------------- 1 | {"140123100":"娄烦镇","140123101":"静游镇","140123102":"杜交曲镇","140123201":"马家庄乡","140123202":"盖家庄乡","140123203":"米峪镇乡","140123204":"天池店乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/140171.json: -------------------------------------------------------------------------------- 1 | {"140171401":"唐槐园区街道","140171402":"学府园区街道","140171403":"阳曲产业园区街道","140171404":"潇河园区街道","140171405":"科创城街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/140212.json: -------------------------------------------------------------------------------- 1 | {"140212100":"新荣镇","140212101":"古店镇","140212102":"花园屯镇","140212200":"破鲁堡乡","140212202":"郭家窑乡","140212206":"西村乡","140212209":"堡子湾乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/140223.json: -------------------------------------------------------------------------------- 1 | {"140223100":"壶泉镇","140223101":"南村镇","140223102":"加斗镇","140223103":"作疃镇","140223104":"梁庄镇","140223200":"一斗泉乡","140223202":"蕉山乡","140223206":"宜兴乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/140226.json: -------------------------------------------------------------------------------- 1 | {"140226100":"云兴镇","140226101":"鹊儿山镇","140226102":"店湾镇","140226200":"管家堡乡","140226201":"张家场乡","140226205":"三屯乡","140226206":"马道头乡","140226207":"小京庄乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/140271.json: -------------------------------------------------------------------------------- 1 | {"140271400":"经济技术开发区乡级单位"} -------------------------------------------------------------------------------- /src/components/v-region/town/140302.json: -------------------------------------------------------------------------------- 1 | {"140302001":"上站街道","140302002":"下站街道","140302003":"北大街街道","140302004":"南山路街道","140302005":"义井街道","140302100":"义井镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/140303.json: -------------------------------------------------------------------------------- 1 | {"140303001":"平潭街街道","140303003":"蔡洼街道","140303004":"赛鱼街道","140303005":"沙坪街道","140303006":"贵石沟街道","140303007":"桥头街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/140311.json: -------------------------------------------------------------------------------- 1 | {"140311100":"荫营镇","140311101":"河底镇","140311103":"平坦镇","140311200":"西南舁乡","140311201":"杨家庄乡","140311202":"李家庄乡","140311203":"旧街乡","140311400":"开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/140411.json: -------------------------------------------------------------------------------- 1 | {"140411001":"长北街道","140411002":"故县街道","140411100":"老顶山镇","140411101":"堠北庄镇","140411102":"大辛庄镇","140411103":"马厂镇","140411104":"黄碾镇","140411200":"西白兔乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/140471.json: -------------------------------------------------------------------------------- 1 | {"140471400":"长治高新技术开发区城北街街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/140502.json: -------------------------------------------------------------------------------- 1 | {"140502001":"东街街道","140502002":"西街街道","140502003":"南街街道","140502004":"北街街道","140502006":"钟家庄街道","140502007":"西上庄街道","140502009":"开发区街道","140502100":"北石店镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/140623.json: -------------------------------------------------------------------------------- 1 | {"140623100":"新城镇","140623101":"右卫镇","140623102":"威远镇","140623103":"元堡子镇","140623200":"牛心堡乡","140623202":"高家堡乡","140623204":"杨千河乡","140623205":"李达窑乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/140671.json: -------------------------------------------------------------------------------- 1 | {"140671400":"山西朔州经济开发区街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/140721.json: -------------------------------------------------------------------------------- 1 | {"140721100":"箕城镇","140721101":"云簇镇","140721102":"郝北镇","140721103":"社城镇","140721200":"河峪乡","140721201":"北寨乡","140721202":"西马乡","140721400":"城区"} -------------------------------------------------------------------------------- /src/components/v-region/town/140722.json: -------------------------------------------------------------------------------- 1 | {"140722100":"辽阳镇","140722101":"桐峪镇","140722102":"麻田镇","140722103":"芹泉镇","140722104":"拐儿镇","140722200":"寒王乡","140722201":"石匣乡","140722204":"羊角乡","140722400":"城区"} -------------------------------------------------------------------------------- /src/components/v-region/town/140723.json: -------------------------------------------------------------------------------- 1 | {"140723100":"义兴镇","140723101":"李阳镇","140723102":"松烟镇","140723103":"青城镇","140723104":"横岭镇","140723200":"喂马乡","140723201":"平松乡","140723203":"马坊乡","140723400":"城区"} -------------------------------------------------------------------------------- /src/components/v-region/town/140932.json: -------------------------------------------------------------------------------- 1 | {"140932100":"新关镇","140932102":"老营镇","140932103":"万家寨镇","140932104":"水泉镇","140932105":"老牛湾镇","140932106":"尚峪镇","140932200":"窑头乡","140932201":"楼沟乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/140971.json: -------------------------------------------------------------------------------- 1 | {"140971100":"台怀镇","140971101":"石咀镇","140971200":"金岗库乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141021.json: -------------------------------------------------------------------------------- 1 | {"141021100":"乐昌镇","141021101":"史村镇","141021102":"曲村镇","141021103":"高显镇","141021104":"里村镇","141021200":"北董乡","141021201":"杨谈乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141022.json: -------------------------------------------------------------------------------- 1 | {"141022100":"唐兴镇","141022101":"南梁镇","141022102":"里砦镇","141022103":"隆化镇","141022104":"桥上镇","141022105":"西阎镇","141022106":"王庄镇","141022200":"中卫乡","141022201":"南唐乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141025.json: -------------------------------------------------------------------------------- 1 | {"141025100":"岳阳镇","141025101":"北平镇","141025102":"古阳镇","141025103":"旧县镇","141025104":"三合镇","141025202":"南垣乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141026.json: -------------------------------------------------------------------------------- 1 | {"141026100":"府城镇","141026101":"和川镇","141026102":"唐城镇","141026103":"冀氏镇","141026104":"良马镇","141026105":"马壁镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/141027.json: -------------------------------------------------------------------------------- 1 | {"141027100":"天坛镇","141027101":"响水河镇","141027102":"张庄镇","141027103":"北王镇","141027201":"东张乡","141027202":"槐埝乡","141027206":"寨圪塔乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141028.json: -------------------------------------------------------------------------------- 1 | {"141028100":"吉昌镇","141028101":"屯里镇","141028102":"壶口镇","141028200":"车城乡","141028201":"文城乡","141028203":"柏山寺乡","141028204":"中垛乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141030.json: -------------------------------------------------------------------------------- 1 | {"141030100":"昕水镇","141030101":"曲峨镇","141030102":"太古镇","141030200":"三多乡","141030201":"太德乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141031.json: -------------------------------------------------------------------------------- 1 | {"141031100":"龙泉镇","141031101":"午城镇","141031102":"黄土镇","141031200":"阳头升乡","141031201":"寨子乡","141031203":"下李乡","141031204":"城南乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141032.json: -------------------------------------------------------------------------------- 1 | {"141032100":"芝河镇","141032101":"桑壁镇","141032203":"坡头乡","141032205":"乾坤湾乡","141032206":"望海寺乡","141032207":"楼山乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141033.json: -------------------------------------------------------------------------------- 1 | {"141033100":"蒲城镇","141033101":"薛关镇","141033102":"黑龙关镇","141033103":"克城镇","141033104":"乔家湾镇","141033200":"山中乡","141033201":"古县乡","141033204":"太林乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141034.json: -------------------------------------------------------------------------------- 1 | {"141034100":"永安镇","141034101":"对竹镇","141034102":"勍香镇","141034103":"和平镇","141034104":"僧念镇","141034200":"佃坪乡","141034201":"团柏乡","141034400":"社区"} -------------------------------------------------------------------------------- /src/components/v-region/town/141081.json: -------------------------------------------------------------------------------- 1 | {"141081001":"路东街道","141081002":"路西街道","141081003":"浍滨街道","141081004":"上马街道","141081005":"张村街道","141081200":"新田乡","141081201":"高村乡","141081202":"凤城乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141128.json: -------------------------------------------------------------------------------- 1 | {"141128100":"圪洞镇","141128101":"马坊镇","141128102":"峪口镇","141128103":"大武镇","141128104":"北武当镇","141128105":"积翠镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/141129.json: -------------------------------------------------------------------------------- 1 | {"141129100":"宁乡镇","141129101":"金罗镇","141129102":"枝柯镇","141129103":"武家庄镇","141129104":"暖泉镇","141129201":"下枣林乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/141130.json: -------------------------------------------------------------------------------- 1 | {"141130100":"水头镇","141130101":"康城镇","141130102":"双池镇","141130103":"桃红坡镇","141130104":"石口镇","141130105":"回龙镇","141130202":"温泉乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/150122.json: -------------------------------------------------------------------------------- 1 | {"150122100":"双河镇","150122101":"新营子镇","150122102":"五申镇","150122103":"伍什家镇","150122104":"古城镇","150122400":"托县工业园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/150171.json: -------------------------------------------------------------------------------- 1 | {"150171400":"金海开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/150172.json: -------------------------------------------------------------------------------- 1 | {"150172401":"如意工业园区","150172402":"金川工业园区","150172403":"呼和浩特综合保税区","150172404":"呼和浩特留学人员创业园","150172405":"沙尔沁工业区(如意南区)","150172406":"呼和浩特白塔空港物流园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/150206.json: -------------------------------------------------------------------------------- 1 | {"150206001":"矿山路街道","150206002":"通阳道街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/150207.json: -------------------------------------------------------------------------------- 1 | {"150207001":"沙河街道","150207002":"赛汗街道","150207003":"萨如拉街道","150207004":"白音席勒街道","150207103":"麻池镇","150207105":"哈林格尔镇","150207110":"哈业胡同镇","150207202":"阿嘎如泰苏木"} -------------------------------------------------------------------------------- /src/components/v-region/town/150222.json: -------------------------------------------------------------------------------- 1 | {"150222102":"金山镇","150222103":"西斗铺镇","150222104":"下湿壕镇","150222105":"银号镇","150222106":"怀朔镇","150222107":"兴顺西镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/150271.json: -------------------------------------------------------------------------------- 1 | {"150271010":"稀土路街道","150271020":"民馨路街道","150271102":"万水泉镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/150303.json: -------------------------------------------------------------------------------- 1 | {"150303001":"拉僧仲街道","150303002":"西卓子山街道","150303102":"公乌素镇","150303103":"拉僧庙镇","150303104":"巴音陶亥镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/150571.json: -------------------------------------------------------------------------------- 1 | {"150571001":"河西街道","150571002":"电厂街道","150571003":"新城街道","150571004":"滨河街道","150571100":"辽河镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/150581.json: -------------------------------------------------------------------------------- 1 | {"150581001":"珠斯花街道","150581002":"莫斯台街道","150581003":"宝日呼吉尔街道","150581004":"沙尔呼热街道","150581200":"达来胡硕苏木","150581400":"霍林郭勒市军马场生态保护区管理委员会"} -------------------------------------------------------------------------------- /src/components/v-region/town/150603.json: -------------------------------------------------------------------------------- 1 | {"150603001":"哈巴格希街道","150603002":"青春山街道","150603003":"滨河街道","150603008":"康新街道","150603400":"鄂尔多斯市高新技术产业园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/150623.json: -------------------------------------------------------------------------------- 1 | {"150623100":"敖勒召其镇","150623101":"上海庙镇","150623102":"城川镇","150623103":"昂素镇","150623400":"上海庙经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/150624.json: -------------------------------------------------------------------------------- 1 | {"150624100":"乌兰镇","150624101":"棋盘井镇","150624102":"蒙西镇","150624103":"木凯淖尔镇","150624200":"苏米图苏木","150624201":"阿尔巴斯苏木","150624404":"内蒙古鄂托克经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/150625.json: -------------------------------------------------------------------------------- 1 | {"150625100":"锡尼镇","150625101":"巴拉贡镇","150625102":"吉日嘎朗图镇","150625103":"独贵塔拉镇","150625104":"呼和木独镇","150625200":"伊和乌素苏木","150625400":"内蒙古鄂尔多斯杭锦经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/150626.json: -------------------------------------------------------------------------------- 1 | {"150626100":"嘎鲁图镇","150626101":"乌审召镇","150626102":"图克镇","150626103":"乌兰陶勒盖镇","150626104":"无定河镇","150626200":"苏力德苏木","150626410":"苏里格经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/150703.json: -------------------------------------------------------------------------------- 1 | {"150703001":"第三街道","150703002":"第一街道","150703003":"第二街道","150703004":"第四街道","150703005":"第五街道","150703100":"灵泉镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/150726.json: -------------------------------------------------------------------------------- 1 | {"150726101":"嵯岗镇","150726102":"阿木古郎镇","150726202":"新宝力格苏木","150726203":"乌布尔宝力格苏木","150726204":"罕达盖苏木","150726205":"吉布胡郎图苏木","150726206":"甘珠尔苏木"} -------------------------------------------------------------------------------- /src/components/v-region/town/150727.json: -------------------------------------------------------------------------------- 1 | {"150727100":"阿拉坦额莫勒镇","150727101":"阿日哈沙特镇","150727102":"呼伦镇","150727200":"贝尔苏木","150727201":"克尔伦苏木","150727202":"达赉苏木","150727203":"宝格德乌拉苏木"} -------------------------------------------------------------------------------- /src/components/v-region/town/150825.json: -------------------------------------------------------------------------------- 1 | {"150825100":"巴音宝力格镇","150825101":"呼和温都尔镇","150825102":"潮格温都尔镇","150825200":"获各琦苏木","150825201":"巴音前达门苏木","150825202":"乌盖苏木"} -------------------------------------------------------------------------------- /src/components/v-region/town/150921.json: -------------------------------------------------------------------------------- 1 | {"150921106":"卓资山镇","150921107":"旗下营镇","150921108":"十八台镇","150921109":"巴音锡勒镇","150921110":"梨花镇","150921210":"大榆树乡","150921211":"红召乡","150921212":"复兴乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/150922.json: -------------------------------------------------------------------------------- 1 | {"150922103":"长顺镇","150922104":"朝阳镇","150922105":"七号镇","150922200":"德包图乡","150922201":"公腊胡洞乡","150922218":"白音特拉乡","150922401":"化德县长顺工业园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/150925.json: -------------------------------------------------------------------------------- 1 | {"150925103":"鸿茅镇","150925104":"六苏木镇","150925105":"麦胡图镇","150925106":"永兴镇","150925107":"蛮汉镇","150925108":"岱海镇","150925218":"天成乡","150925220":"曹碾满族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/150928.json: -------------------------------------------------------------------------------- 1 | {"150928105":"白音察干镇","150928106":"土牧尔台镇","150928107":"红格尔图镇","150928108":"贲红镇","150928109":"大六号镇","150928209":"当郎忽洞苏木","150928210":"乌兰哈达苏木","150928211":"锡勒乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/152202.json: -------------------------------------------------------------------------------- 1 | {"152202001":"林海街道","152202002":"新城街道","152202003":"温泉街道","152202004":"伊尔施街道","152202100":"天池镇","152202101":"白狼镇","152202102":"五岔沟镇","152202103":"明水河镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/152501.json: -------------------------------------------------------------------------------- 1 | {"152501200":"格日勒敖都苏木","152501400":"二连浩特市社区建设管理局","152501401":"二连边境经济技术合作区"} -------------------------------------------------------------------------------- /src/components/v-region/town/152527.json: -------------------------------------------------------------------------------- 1 | {"152527100":"宝昌镇","152527101":"千斤沟镇","152527102":"红旗镇","152527103":"骆驼山镇","152527104":"永丰镇","152527200":"幸福乡","152527201":"贡宝拉格苏木","152527500":"万寿滩良种场"} -------------------------------------------------------------------------------- /src/components/v-region/town/152528.json: -------------------------------------------------------------------------------- 1 | {"152528100":"新宝拉格镇","152528101":"巴彦塔拉镇","152528200":"翁贡乌拉苏木","152528201":"宝格达音髙勒苏木"} -------------------------------------------------------------------------------- /src/components/v-region/town/152529.json: -------------------------------------------------------------------------------- 1 | {"152529100":"明安图镇","152529101":"星耀镇","152529200":"伊和淖尔苏木","152529201":"乌兰查布苏木","152529202":"宝拉根陶海苏木","152529500":"额里图种畜场","152529502":"哲日根图林场"} -------------------------------------------------------------------------------- /src/components/v-region/town/152531.json: -------------------------------------------------------------------------------- 1 | {"152531100":"大北沟镇","152531101":"多伦诺尔镇","152531102":"滦源镇","152531201":"蔡木山乡","152531202":"西干沟乡","152531400":"多伦新型工业化化工区"} -------------------------------------------------------------------------------- /src/components/v-region/town/152571.json: -------------------------------------------------------------------------------- 1 | {"152571101":"巴彦胡硕镇","152571500":"哈拉盖图农牧场","152571501":"贺斯格乌拉牧场","152571502":"乌拉盖牧场"} -------------------------------------------------------------------------------- /src/components/v-region/town/152922.json: -------------------------------------------------------------------------------- 1 | {"152922103":"巴丹吉林镇","152922104":"雅布赖镇","152922105":"阿拉腾敖包镇","152922211":"曼德拉苏木","152922212":"阿拉腾朝格苏木","152922213":"巴彦高勒苏木","152922214":"塔木素布拉格苏木"} -------------------------------------------------------------------------------- /src/components/v-region/town/152971.json: -------------------------------------------------------------------------------- 1 | {"152971100":"乌斯太镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/210202.json: -------------------------------------------------------------------------------- 1 | {"210202001":"海军广场街道","210202005":"人民路街道","210202008":"青泥洼桥街道","210202010":"葵英街道","210202011":"桃源街道","210202012":"老虎滩街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/210203.json: -------------------------------------------------------------------------------- 1 | {"210203001":"香炉礁街道","210203004":"日新街道","210203010":"八一路街道","210203011":"人民广场街道","210203013":"白云街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/210204.json: -------------------------------------------------------------------------------- 1 | {"210204006":"春柳街道","210204008":"马栏街道","210204009":"南沙河口街道","210204010":"黑石礁街道","210204011":"李家街道","210204017":"星海湾街道","210204018":"西安路街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/210224.json: -------------------------------------------------------------------------------- 1 | {"210224100":"大长山岛镇","210224101":"獐子岛镇","210224102":"广鹿岛镇","210224103":"小长山岛镇","210224104":"海洋岛镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/210311.json: -------------------------------------------------------------------------------- 1 | {"210311006":"汤岗子街道","210311007":"东鞍山街道","210311102":"唐家房镇","210311103":"大屯镇","210311104":"甘泉镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/210402.json: -------------------------------------------------------------------------------- 1 | {"210402001":"站前街道","210402005":"福民街道","210402007":"新抚街道","210402009":"榆林街道","210402011":"永安台街道","210402019":"刘山街道","210402201":"千金乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/210411.json: -------------------------------------------------------------------------------- 1 | {"210411002":"长春街道","210411003":"葛布街道","210411004":"将军堡街道","210411005":"新华街道","210411007":"抚顺城街道","210411102":"前甸镇","210411201":"河北乡","210411205":"会元乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/210421.json: -------------------------------------------------------------------------------- 1 | {"210421101":"石文镇","210421102":"后安镇","210421105":"上马镇","210421106":"救兵镇","210421204":"马圈子乡","210421209":"峡河乡","210421211":"海浪乡","210421216":"汤图满族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/210502.json: -------------------------------------------------------------------------------- 1 | {"210502001":"南地街道","210502003":"平山街道","210502004":"东明街道","210502005":"崔东街道","210502007":"站前街道","210502008":"千金街道","210502012":"桥北街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/210503.json: -------------------------------------------------------------------------------- 1 | {"210503001":"河东街道","210503003":"河西街道","210503005":"彩屯街道","210503009":"东风街道","210503010":"石桥子街道","210503011":"日月岛街道","210503013":"火连寨街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/210504.json: -------------------------------------------------------------------------------- 1 | {"210504002":"北地街道","210504004":"高峪街道","210504005":"明山街道","210504008":"新明街道","210504009":"牛心台街道","210504010":"卧龙街道","210504011":"高台子街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/210505.json: -------------------------------------------------------------------------------- 1 | {"210505001":"南芬街道","210505004":"思山岭街道","210505005":"下马塘街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/210602.json: -------------------------------------------------------------------------------- 1 | {"210602002":"七道街道","210602003":"广济街道","210602004":"九道街道","210602006":"兴东街道","210602101":"金山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/210702.json: -------------------------------------------------------------------------------- 1 | {"210702002":"石油街道","210702003":"古城街道","210702004":"敬业街道","210702005":"保安街道","210702009":"士英街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/210703.json: -------------------------------------------------------------------------------- 1 | {"210703002":"石桥子街道","210703003":"龙江街道","210703004":"榴花街道","210703008":"康宁街道","210703009":"锦铁街道","210703011":"紫荆街道","210703403":"锦州北山农工商总公司"} -------------------------------------------------------------------------------- /src/components/v-region/town/210802.json: -------------------------------------------------------------------------------- 1 | {"210802001":"八田地街道","210802002":"建丰街道","210802003":"建设街道","210802004":"跃进街道","210802007":"新建街道","210802008":"东兴街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/210803.json: -------------------------------------------------------------------------------- 1 | {"210803002":"清华街道","210803003":"滨海街道","210803004":"得胜街道","210803005":"五台子街道","210803006":"渔市街道","210803400":"辽宁自贸区营口片区","210803401":"辽宁(营口)沿海产业基地"} -------------------------------------------------------------------------------- /src/components/v-region/town/210804.json: -------------------------------------------------------------------------------- 1 | {"210804001":"红海街道","210804002":"海星街道","210804003":"望海街道","210804100":"熊岳镇","210804101":"芦屯镇","210804102":"红旗镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/210811.json: -------------------------------------------------------------------------------- 1 | {"210811001":"老边街道","210811101":"路南镇","210811102":"柳树镇","210811103":"边城镇","210811400":"营口辽河经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/210902.json: -------------------------------------------------------------------------------- 1 | {"210902003":"和平街道","210902004":"西山街道","210902005":"河北街道","210902006":"站前街道","210902008":"五龙街道","210902009":"平安西部街道","210902101":"韩家店镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/210903.json: -------------------------------------------------------------------------------- 1 | {"210903005":"街基街道","210903006":"新发屯街道","210903101":"长营子镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/210904.json: -------------------------------------------------------------------------------- 1 | {"210904001":"红树街道","210904003":"高德街道","210904004":"孙家湾街道","210904101":"水泉镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/210905.json: -------------------------------------------------------------------------------- 1 | {"210905001":"清河街道","210905004":"新北街道","210905101":"河西镇","210905102":"乌龙坝镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/210911.json: -------------------------------------------------------------------------------- 1 | {"210911001":"玉新街道","210911007":"玉龙街道","210911008":"玉丰街道","210911102":"四合镇","210911401":"六家子管委会"} -------------------------------------------------------------------------------- /src/components/v-region/town/211002.json: -------------------------------------------------------------------------------- 1 | {"211002016":"文圣街道","211002017":"武圣街道","211002018":"南门街道","211002019":"襄平街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/211003.json: -------------------------------------------------------------------------------- 1 | {"211003004":"庆阳街道","211003008":"东京陵街道","211003101":"小屯镇","211003102":"罗大台镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/211004.json: -------------------------------------------------------------------------------- 1 | {"211004001":"工农街道","211004004":"长征街道","211004101":"曙光镇","211004102":"兰家镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/211005.json: -------------------------------------------------------------------------------- 1 | {"211005001":"苏家街道","211005003":"安平街道","211005101":"汤河镇","211005201":"安平乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/211011.json: -------------------------------------------------------------------------------- 1 | {"211011003":"铁西街道","211011101":"祁家镇","211011102":"沙岭镇","211011103":"王家镇","211011204":"东宁卫乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/211102.json: -------------------------------------------------------------------------------- 1 | {"211102002":"胜利街道","211102003":"建设街道","211102004":"红旗街道","211102005":"辽河街道","211102008":"铁东街道","211102009":"双盛街道","211102100":"统一镇","211102101":"陆家镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/211204.json: -------------------------------------------------------------------------------- 1 | {"211204001":"红旗街道","211204002":"向阳街道","211204101":"张相镇","211204102":"杨木林子镇","211204203":"聂家满族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/211281.json: -------------------------------------------------------------------------------- 1 | {"211281001":"兀术街街道","211281002":"调兵山街道","211281102":"晓明镇","211281103":"大明镇","211281105":"晓南镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/220112.json: -------------------------------------------------------------------------------- 1 | {"220112001":"云山街道","220112002":"平湖街道","220112003":"奢岭街道","220112004":"山河街道","220112102":"鹿乡镇","220112104":"齐家镇","220112105":"太平镇","220112203":"双营子回族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/220171.json: -------------------------------------------------------------------------------- 1 | {"220171001":"临河街道","220171002":"东方广场街道","220171003":"会展街道","220171004":"世纪街道","220171100":"兴隆山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/220173.json: -------------------------------------------------------------------------------- 1 | {"220173001":"硅谷街道","220173002":"北湖街道","220173003":"超越街道","220173004":"飞跃街道","220173005":"双德街道","220173200":"奋进乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/220174.json: -------------------------------------------------------------------------------- 1 | {"220174001":"锦程街道","220174002":"东风街道","220174003":"富民街道","220174004":"前程街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/220271.json: -------------------------------------------------------------------------------- 1 | {"220271001":"九站街道","220271013":"双吉街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/220272.json: -------------------------------------------------------------------------------- 1 | {"220272001":"高新街道","220272002":"新北街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/220273.json: -------------------------------------------------------------------------------- 1 | {"220273100":"岔路河镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/220302.json: -------------------------------------------------------------------------------- 1 | {"220302001":"仁兴街道","220302002":"英雄街道","220302003":"站前街道","220302004":"北沟街道","220302005":"地直街道","220302200":"平西乡","220302400":"红嘴高新技术开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/220403.json: -------------------------------------------------------------------------------- 1 | {"220403001":"太安街道","220403002":"仙城街道","220403003":"东山街道","220403004":"先锋街道","220403005":"富国街道","220403006":"安家街道","220403100":"灯塔镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/220503.json: -------------------------------------------------------------------------------- 1 | {"220503001":"桃园街道","220503002":"东通化街道","220503100":"鸭园镇","220503101":"铁厂镇","220503102":"五道江镇","220503200":"二道江乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/220622.json: -------------------------------------------------------------------------------- 1 | {"220622100":"靖宇镇","220622101":"三道湖镇","220622102":"龙泉镇","220622103":"那尔轰镇","220622104":"花园口镇","220622105":"景山镇","220622106":"赤松镇","220622201":"濛江乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/220623.json: -------------------------------------------------------------------------------- 1 | {"220623100":"长白镇","220623101":"八道沟镇","220623102":"十四道沟镇","220623103":"马鹿沟镇","220623104":"宝泉山镇","220623105":"新房子镇","220623106":"十二道沟镇","220623200":"金华乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/220771.json: -------------------------------------------------------------------------------- 1 | {"220771200":"兴原乡","220771599":"松原经济技术开发区特殊乡镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/220871.json: -------------------------------------------------------------------------------- 1 | {"220871001":"幸福街道","220871002":"保平街道","220871003":"西郊街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/222402.json: -------------------------------------------------------------------------------- 1 | {"222402001":"向上街道","222402002":"新华街道","222402003":"月宫街道","222402100":"月晴镇","222402101":"石岘镇","222402102":"长安镇","222402103":"凉水镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230202.json: -------------------------------------------------------------------------------- 1 | {"230202001":"五龙街道","230202002":"湖滨街道","230202003":"江安街道","230202004":"正阳街道","230202005":"彩虹街道","230202006":"南航街道","230202007":"大民街道","230202579":"齐齐哈尔局直"} -------------------------------------------------------------------------------- /src/components/v-region/town/230203.json: -------------------------------------------------------------------------------- 1 | {"230203002":"中华街道","230203004":"西大桥街道","230203005":"卜奎街道","230203006":"建设街道","230203007":"文化街道","230203198":"区直辖村级区划"} -------------------------------------------------------------------------------- /src/components/v-region/town/230205.json: -------------------------------------------------------------------------------- 1 | {"230205001":"新兴街道","230205002":"新建街道","230205005":"林机街道","230205006":"道北街道","230205100":"水师营满族镇","230205101":"榆树屯镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230207.json: -------------------------------------------------------------------------------- 1 | {"230207001":"东安街道","230207002":"富强街道","230207003":"跃进街道","230207004":"繁荣街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/230208.json: -------------------------------------------------------------------------------- 1 | {"230208001":"梅里斯街道","230208101":"雅尔塞镇","230208102":"卧牛吐达斡尔族镇","230208103":"达呼店镇","230208104":"共和镇","230208105":"梅里斯镇","230208200":"莽格吐达斡尔族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/230304.json: -------------------------------------------------------------------------------- 1 | {"230304001":"东兴街道","230304002":"矿里街道","230304003":"洗煤街道","230304004":"大通沟街道","230304200":"滴道河乡","230304201":"兰岭乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/230305.json: -------------------------------------------------------------------------------- 1 | {"230305001":"街里街道","230305002":"穆棱街道","230305003":"平岗街道","230305101":"梨树镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230306.json: -------------------------------------------------------------------------------- 1 | {"230306001":"城子河街道","230306002":"正阳街道","230306003":"东海街道","230306004":"城西街道","230306005":"杏花街道","230306200":"长青乡","230306201":"永丰乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/230307.json: -------------------------------------------------------------------------------- 1 | {"230307001":"麻山街道","230307101":"麻山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230402.json: -------------------------------------------------------------------------------- 1 | {"230402001":"北山街道","230402002":"红军街道","230402003":"光明街道","230402004":"胜利街道","230402005":"南翼街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/230403.json: -------------------------------------------------------------------------------- 1 | {"230403001":"育才街道","230403002":"红旗街道","230403003":"新南街道","230403004":"湖滨街道","230403005":"解放街道","230403006":"团结街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/230404.json: -------------------------------------------------------------------------------- 1 | {"230404001":"铁西街道","230404002":"铁东街道","230404003":"六号街道","230404004":"大陆街道","230404005":"富力街道","230404006":"麓林山街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/230405.json: -------------------------------------------------------------------------------- 1 | {"230405001":"兴安路街道","230405002":"兴建路街道","230405003":"兴长路街道","230405004":"峻德路街道","230405005":"河东路街道","230405006":"光宇街道","230405100":"红旗镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230407.json: -------------------------------------------------------------------------------- 1 | {"230407001":"岭北街道","230407002":"岭南街道","230407003":"沟北街道","230407004":"沟南街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/230502.json: -------------------------------------------------------------------------------- 1 | {"230502001":"二马路街道","230502002":"八马路街道","230502003":"中心站街道","230502004":"富安街道","230502006":"长安街道","230502007":"铁西街道","230502008":"学府街道","230502200":"安邦乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/230505.json: -------------------------------------------------------------------------------- 1 | {"230505001":"振兴中路街道","230505002":"振兴东路街道","230505004":"集贤街道","230505005":"东荣街道","230505101":"太保镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230603.json: -------------------------------------------------------------------------------- 1 | {"230603011":"兴化街道","230603012":"卧里屯街道","230603013":"东光街道","230603014":"龙凤街道","230603015":"三永街道","230603016":"龙政街道","230603017":"湿地街道","230603100":"龙凤镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230605.json: -------------------------------------------------------------------------------- 1 | {"230605008":"杏南街道","230605009":"创业街道","230605010":"红岗街道","230605011":"八百垧街道","230605012":"银河街道","230605013":"解放街道","230605100":"杏树岗镇","230605480":"黑龙江红岗经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/230671.json: -------------------------------------------------------------------------------- 1 | {"230671010":"开发区黎明街道","230671580":"高新区农场"} -------------------------------------------------------------------------------- /src/components/v-region/town/230717.json: -------------------------------------------------------------------------------- 1 | {"230717001":"朝阳街道","230717002":"前进街道","230717003":"红升街道","230717004":"旭日街道","230717005":"新欣街道","230717006":"南郡街道","230717100":"东升镇","230717101":"美溪镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230718.json: -------------------------------------------------------------------------------- 1 | {"230718001":"乌马河街道","230718002":"锦山街道","230718003":"曙光街道","230718004":"向阳街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/230719.json: -------------------------------------------------------------------------------- 1 | {"230719001":"双子河街道","230719002":"铁林街道","230719003":"友好街道","230719100":"上甘岭镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230723.json: -------------------------------------------------------------------------------- 1 | {"230723100":"乌伊岭镇","230723101":"汤旺河镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230724.json: -------------------------------------------------------------------------------- 1 | {"230724100":"新青镇","230724101":"红星镇","230724102":"五营镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230725.json: -------------------------------------------------------------------------------- 1 | {"230725100":"带岭镇","230725101":"朗乡镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230726.json: -------------------------------------------------------------------------------- 1 | {"230726100":"南岔镇","230726101":"晨明镇","230726102":"浩良河镇","230726200":"迎春乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/230751.json: -------------------------------------------------------------------------------- 1 | {"230751100":"西林镇","230751101":"金山屯镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/230803.json: -------------------------------------------------------------------------------- 1 | {"230803007":"西林街道","230803008":"建设街道","230803009":"长安街道","230803010":"学府街道","230803011":"桥南街道","230803198":"向阳区直辖村级区划"} -------------------------------------------------------------------------------- /src/components/v-region/town/230804.json: -------------------------------------------------------------------------------- 1 | {"230804007":"永安街道","230804008":"港湾街道","230804009":"和平街道","230804010":"山水街道","230804579":"前进区农垦"} -------------------------------------------------------------------------------- /src/components/v-region/town/230805.json: -------------------------------------------------------------------------------- 1 | {"230805007":"晓云街道","230805008":"佳东街道","230805009":"建国街道","230805010":"佳南街道","230805100":"建国镇","230805200":"松江乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/230903.json: -------------------------------------------------------------------------------- 1 | {"230903011":"桃东街道","230903012":"桃南街道","230903013":"桃西街道","230903014":"桃北街道","230903015":"桃源街道","230903016":"桃山街道","230903100":"万宝河镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/231002.json: -------------------------------------------------------------------------------- 1 | {"231002001":"新安街道","231002002":"长安街道","231002003":"七星街道","231002004":"五星街道","231002008":"东兴街道","231002009":"振兴街道","231002101":"兴隆镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/231003.json: -------------------------------------------------------------------------------- 1 | {"231003001":"阳明街道","231003002":"前进街道","231003003":"新兴街道","231003004":"桦林橡胶厂街道","231003100":"铁岭镇","231003101":"桦林镇","231003102":"磨刀石镇","231003103":"五林镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/231004.json: -------------------------------------------------------------------------------- 1 | {"231004001":"向阳街道","231004002":"黄花街道","231004003":"铁北街道","231004004":"新华街道","231004005":"大庆街道","231004006":"兴平街道","231004007":"北山街道","231004100":"三道关镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/231005.json: -------------------------------------------------------------------------------- 1 | {"231005001":"先锋街道","231005002":"火炬街道","231005003":"立新街道","231005004":"牡丹街道","231005005":"江滨街道","231005006":"沿江街道","231005100":"温春镇","231005201":"海南朝鲜族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/231024.json: -------------------------------------------------------------------------------- 1 | {"231024100":"东宁镇","231024101":"三岔口镇","231024102":"大肚川镇","231024103":"老黑山镇","231024104":"道河镇","231024105":"绥阳镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/231071.json: -------------------------------------------------------------------------------- 1 | {"231071002":"牡丹江经开区城乡街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/231081.json: -------------------------------------------------------------------------------- 1 | {"231081100":"绥芬河镇","231081101":"阜宁镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/231086.json: -------------------------------------------------------------------------------- 1 | {"231086100":"东宁镇","231086101":"三岔口镇","231086102":"大肚川镇","231086103":"老黑山镇","231086104":"道河镇","231086105":"绥阳镇","231086400":"绥阳林业局"} -------------------------------------------------------------------------------- /src/components/v-region/town/232701.json: -------------------------------------------------------------------------------- 1 | {"232701100":"西林吉镇","232701101":"图强镇","232701102":"阿木尔镇","232701103":"兴安镇","232701104":"北极镇","232701105":"古莲镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/232721.json: -------------------------------------------------------------------------------- 1 | {"232721100":"呼玛镇","232721101":"韩家园镇","232721200":"三卡乡","232721201":"金山乡","232721202":"兴华乡","232721203":"鸥浦乡","232721204":"白银纳鄂伦春族民族乡","232721205":"北疆乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/232722.json: -------------------------------------------------------------------------------- 1 | {"232722100":"塔河镇","232722101":"瓦拉干镇","232722102":"盘古镇","232722103":"古驿镇","232722200":"十八站鄂伦春族乡","232722201":"依西肯乡","232722202":"开库康乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/232761.json: -------------------------------------------------------------------------------- 1 | {"232761001":"东山街道","232761002":"卫东街道","232761003":"红旗街道","232761004":"长虹街道","232761005":"曙光街道","232761006":"光明街道","232761200":"加北乡","232761201":"白桦乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/232762.json: -------------------------------------------------------------------------------- 1 | {"232762100":"小扬气镇","232762101":"劲松镇","232762102":"古源镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/232763.json: -------------------------------------------------------------------------------- 1 | {"232763100":"新林镇","232763101":"翠岗镇","232763102":"塔源镇","232763103":"大乌苏镇","232763104":"塔尔根镇","232763105":"碧洲镇","232763106":"宏图镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/232764.json: -------------------------------------------------------------------------------- 1 | {"232764100":"呼中镇","232764101":"碧水镇","232764102":"呼源镇","232764103":"宏伟镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/310109.json: -------------------------------------------------------------------------------- 1 | {"310109009":"欧阳路街道","310109010":"曲阳路街道","310109011":"广中路街道","310109014":"嘉兴路街道","310109016":"凉城新村街道","310109017":"四川北路街道","310109018":"北外滩街道","310109019":"江湾镇街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/320202.json: -------------------------------------------------------------------------------- 1 | {"320202001":"崇安寺街道","320202002":"通江街道","320202003":"广瑞路街道","320202004":"上马墩街道","320202005":"江海街道","320202006":"广益街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/320203.json: -------------------------------------------------------------------------------- 1 | {"320203001":"迎龙桥街道","320203002":"南禅寺街道","320203003":"清名桥街道","320203004":"金星街道","320203005":"金匮街道","320203006":"扬名街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/320204.json: -------------------------------------------------------------------------------- 1 | {"320204001":"黄巷街道","320204002":"山北街道","320204003":"北大街街道","320204004":"惠山街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/320302.json: -------------------------------------------------------------------------------- 1 | {"320302001":"黄楼街道","320302002":"丰财街道","320302003":"琵琶街道","320302004":"牌楼街道","320302005":"铜沛街道","320302006":"环城街道","320302007":"九里街道","320302008":"拾屯街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/320371.json: -------------------------------------------------------------------------------- 1 | {"320371001":"金山桥街道","320371002":"东环街道","320371003":"大黄山街道","320371004":"大庙街道","320371005":"金龙湖街道","320371101":"徐庄镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/320402.json: -------------------------------------------------------------------------------- 1 | {"320402001":"雕庄街道","320402002":"青龙街道","320402003":"茶山街道","320402004":"红梅街道","320402005":"天宁街道","320402006":"兰陵街道","320402109":"郑陆镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/320404.json: -------------------------------------------------------------------------------- 1 | {"320404001":"五星街道","320404002":"永红街道","320404003":"北港街道","320404004":"西林街道","320404005":"南大街街道","320404006":"荷花池街道","320404007":"新闸街道","320404116":"邹区镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/320508.json: -------------------------------------------------------------------------------- 1 | {"320508017":"白洋湾街道","320508018":"平江街道","320508019":"金阊街道","320508020":"沧浪街道","320508021":"双塔街道","320508022":"虎丘街道","320508023":"苏锦街道","320508024":"吴门桥街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/320585.json: -------------------------------------------------------------------------------- 1 | {"320585100":"城厢镇","320585101":"沙溪镇","320585102":"浏河镇","320585103":"浮桥镇","320585104":"璜泾镇","320585105":"双凤镇","320585400":"经济开发区","320585403":"科教新城"} -------------------------------------------------------------------------------- /src/components/v-region/town/320611.json: -------------------------------------------------------------------------------- 1 | {"320611001":"永兴街道","320611002":"唐闸镇街道","320611003":"天生港镇街道","320611004":"秦灶街道","320611005":"陈桥街道","320611006":"幸福街道","320611400":"港闸开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/320671.json: -------------------------------------------------------------------------------- 1 | {"320671001":"中兴街道","320671002":"新开街道","320671003":"竹行街道","320671004":"小海街道","320671400":"江海镇区","320671401":"南通市经济技术开发区老洪港","320671403":"南通苏通科技产业园"} -------------------------------------------------------------------------------- /src/components/v-region/town/320771.json: -------------------------------------------------------------------------------- 1 | {"320771001":"中云街道","320771002":"猴嘴街道","320771003":"朝阳街道","320771450":"青口盐场"} -------------------------------------------------------------------------------- /src/components/v-region/town/320772.json: -------------------------------------------------------------------------------- 1 | {"320772401":"南云台林场"} -------------------------------------------------------------------------------- /src/components/v-region/town/320802.json: -------------------------------------------------------------------------------- 1 | {"320802001":"府前街道","320802002":"长西街道","320802003":"淮海街道","320802004":"长东街道","320802005":"柳树湾街道","320802006":"水渡口街道","320802007":"白鹭湖街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/320971.json: -------------------------------------------------------------------------------- 1 | {"320971001":"新城街道","320971100":"步凤镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/321071.json: -------------------------------------------------------------------------------- 1 | {"321071050":"扬子津街道","321071051":"文汇街道","321071150":"施桥镇","321071151":"八里镇","321071152":"朴席镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/321111.json: -------------------------------------------------------------------------------- 1 | {"321111001":"宝塔路街道","321111002":"和平路街道","321111003":"金山街道","321111004":"七里甸街道","321111005":"蒋乔街道","321111006":"官塘桥街道","321111007":"韦岗街道","321111008":"南山街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/321171.json: -------------------------------------------------------------------------------- 1 | {"321171001":"丁卯街道","321171002":"大港街道","321171100":"姚桥镇","321171101":"大路镇","321171102":"丁岗镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/321182.json: -------------------------------------------------------------------------------- 1 | {"321182001":"三茅街道","321182101":"新坝镇","321182102":"油坊镇","321182103":"八桥镇","321182104":"西来桥镇","321182400":"经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/321271.json: -------------------------------------------------------------------------------- 1 | {"321271400":"泰州经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/321371.json: -------------------------------------------------------------------------------- 1 | {"321371050":"黄河街道","321371052":"三棵树街道","321371351":"南蔡乡","321371400":"古楚街道办"} -------------------------------------------------------------------------------- /src/components/v-region/town/330103.json: -------------------------------------------------------------------------------- 1 | {"330103001":"长庆街道","330103002":"武林街道","330103003":"天水街道","330103005":"潮鸣街道","330103006":"朝晖街道","330103007":"文晖街道","330103008":"东新街道","330103009":"石桥街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/330108.json: -------------------------------------------------------------------------------- 1 | {"330108001":"西兴街道","330108002":"长河街道","330108003":"浦沿街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/330113.json: -------------------------------------------------------------------------------- 1 | {"330113001":"临平街道","330113002":"南苑街道","330113003":"东湖街道","330113004":"星桥街道","330113005":"乔司街道","330113006":"运河街道","330113007":"崇贤街道","330113100":"塘栖镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/330114.json: -------------------------------------------------------------------------------- 1 | {"330114001":"下沙街道","330114002":"白杨街道","330114003":"河庄街道","330114004":"义蓬街道","330114005":"新湾街道","330114006":"临江街道","330114007":"前进街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/330204.json: -------------------------------------------------------------------------------- 1 | {"330204001":"百丈街道","330204002":"东胜街道","330204003":"明楼街道","330204004":"白鹤街道","330204005":"东柳街道","330204006":"东郊街道","330204007":"福明街道","330204008":"新明街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/330205.json: -------------------------------------------------------------------------------- 1 | {"330205001":"外滩街道","330205003":"孔浦街道","330205004":"文教街道","330205005":"甬江街道","330205006":"庄桥街道","330205007":"洪塘街道","330205008":"前江街道","330205103":"慈城镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/330211.json: -------------------------------------------------------------------------------- 1 | {"330211001":"招宝山街道","330211002":"蛟川街道","330211003":"骆驼街道","330211004":"庄市街道","330211005":"贵驷街道","330211100":"澥浦镇","330211101":"九龙湖镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/330303.json: -------------------------------------------------------------------------------- 1 | {"330303001":"永中街道","330303002":"蒲州街道","330303003":"海滨街道","330303004":"永兴街道","330303006":"状元街道","330303007":"瑶溪街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/330305.json: -------------------------------------------------------------------------------- 1 | {"330305001":"北岙街道","330305002":"灵昆街道","330305003":"东屏街道","330305004":"元觉街道","330305005":"霓屿街道","330305006":"昆鹏街道","330305101":"大门镇","330305202":"鹿西乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/330371.json: -------------------------------------------------------------------------------- 1 | {"330371005":"海城街道","330371008":"沙城街道","330371009":"天河街道","330371011":"星海街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/330383.json: -------------------------------------------------------------------------------- 1 | {"330383198":"龙港县直辖村级区划"} -------------------------------------------------------------------------------- /src/components/v-region/town/330921.json: -------------------------------------------------------------------------------- 1 | {"330921100":"高亭镇","330921101":"东沙镇","330921102":"岱东镇","330921103":"岱西镇","330921105":"长涂镇","330921106":"衢山镇","330921200":"秀山乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/330922.json: -------------------------------------------------------------------------------- 1 | {"330922100":"菜园镇","330922101":"嵊山镇","330922102":"洋山镇","330922200":"五龙乡","330922201":"黄龙乡","330922202":"枸杞乡","330922203":"花鸟乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/340171.json: -------------------------------------------------------------------------------- 1 | {"340171401":"天乐社区服务中心","340171402":"兴园社区服务中心","340171403":"蜀麓社区服务中心","340171404":"长宁社区服务中心","340171405":"小庙托管区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340172.json: -------------------------------------------------------------------------------- 1 | {"340172001":"莲花社区管理委员会街道","340172002":"芙蓉社区管理委员会街道","340172003":"锦绣社区管理委员会街道","340172004":"海恒社区管理委员会街道","340172005":"临湖社区管理委员会街道","340172006":"高刘街道街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/340173.json: -------------------------------------------------------------------------------- 1 | {"340173001":"七里塘街道","340173002":"磨店街道","340173003":"三十头街道","340173400":"瑶海社区服务中心","340173401":"站北社区服务中心"} -------------------------------------------------------------------------------- /src/components/v-region/town/340203.json: -------------------------------------------------------------------------------- 1 | {"340203002":"中南街道","340203004":"马塘街道","340203005":"瀂港街道","340203006":"火龙街道","340203007":"白马街道","340203008":"南瑞街道","340203400":"芜湖高新技术产业开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340208.json: -------------------------------------------------------------------------------- 1 | {"340208001":"三山街道","340208002":"保定街道","340208003":"龙湖街道","340208100":"峨桥镇","340208400":"安徽芜湖三山经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340210.json: -------------------------------------------------------------------------------- 1 | {"340210100":"湾沚镇","340210101":"陶辛镇","340210102":"六郎镇","340210103":"花桥镇","340210104":"红杨镇","340210400":"安徽新芜经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340212.json: -------------------------------------------------------------------------------- 1 | {"340212100":"繁阳镇","340212101":"荻港镇","340212102":"孙村镇","340212103":"平铺镇","340212104":"新港镇","340212105":"峨山镇","340212401":"安徽繁昌工业园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340221.json: -------------------------------------------------------------------------------- 1 | {"340221100":"湾沚镇","340221101":"六郎镇","340221102":"陶辛镇","340221104":"红杨镇","340221105":"花桥镇","340221400":"安徽新芜经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340222.json: -------------------------------------------------------------------------------- 1 | {"340222100":"繁阳镇","340222101":"荻港镇","340222102":"孙村镇","340222103":"平铺镇","340222104":"新港镇","340222105":"峨山镇","340222401":"安徽繁昌工业园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340271.json: -------------------------------------------------------------------------------- 1 | {"340271001":"龙山街道","340271002":"万春街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/340272.json: -------------------------------------------------------------------------------- 1 | {"340272400":"三山经济开发区管委会"} -------------------------------------------------------------------------------- /src/components/v-region/town/340302.json: -------------------------------------------------------------------------------- 1 | {"340302001":"东风街道","340302002":"延安街道","340302003":"治淮街道","340302004":"东升街道","340302005":"解放街道","340302006":"曹山街道","340302100":"长淮卫镇","340302200":"李楼乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/340303.json: -------------------------------------------------------------------------------- 1 | {"340303001":"天桥街道","340303002":"青年街道","340303003":"纬二路街道","340303004":"黄庄街道","340303005":"宏业村街道","340303200":"燕山乡","340303201":"雪华乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/340311.json: -------------------------------------------------------------------------------- 1 | {"340311001":"淮滨街道","340311100":"小蚌埠镇","340311101":"吴小街镇","340311102":"曹老集镇","340311103":"梅桥镇","340311104":"沫河口镇","340311402":"安徽蚌埠淮上经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340371.json: -------------------------------------------------------------------------------- 1 | {"340371400":"高新技术开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340372.json: -------------------------------------------------------------------------------- 1 | {"340372006":"胜利街道","340372007":"龙湖新村街道","340372401":"湖滨社区行政事务管理中心","340372402":"淮河社区行政事务管理中心"} -------------------------------------------------------------------------------- /src/components/v-region/town/340402.json: -------------------------------------------------------------------------------- 1 | {"340402001":"大通街道","340402100":"上窑镇","340402101":"洛河镇","340402102":"九龙岗镇","340402200":"孔店乡","340402400":"淮南经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340405.json: -------------------------------------------------------------------------------- 1 | {"340405001":"新庄孜街道","340405002":"土坝孜街道","340405003":"毕家岗街道","340405100":"八公山镇","340405121":"山王镇","340405400":"妙山林场"} -------------------------------------------------------------------------------- /src/components/v-region/town/340506.json: -------------------------------------------------------------------------------- 1 | {"340506100":"博望镇","340506101":"丹阳镇","340506102":"新市镇","340506400":"博望高新技术产业开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340602.json: -------------------------------------------------------------------------------- 1 | {"340602001":"高岳街道","340602002":"矿山集街道","340602100":"朔里镇","340602101":"石台镇","340602102":"段园镇","340602400":"淮北杜集经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/340604.json: -------------------------------------------------------------------------------- 1 | {"340604001":"杨庄街道","340604002":"临海童街道","340604003":"百善街道","340604004":"任楼街道","340604100":"烈山镇","340604101":"宋町镇","340604102":"古饶镇","340604400":"烈山区工业园"} -------------------------------------------------------------------------------- /src/components/v-region/town/340702.json: -------------------------------------------------------------------------------- 1 | {"340702198":"铜官山区虚镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/340703.json: -------------------------------------------------------------------------------- 1 | {"340703005":"东郊","340703100":"西湖镇","340703198":"狮子山区虚镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/340721.json: -------------------------------------------------------------------------------- 1 | {"340721100":"五松镇","340721101":"顺安镇","340721102":"钟鸣镇","340721103":"天门镇","340721200":"老洲乡","340721201":"东联乡","340721202":"西联乡","340721203":"胥坝乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/340811.json: -------------------------------------------------------------------------------- 1 | {"340811001":"大桥街道","340811100":"大龙山镇","340811101":"杨桥镇","340811102":"罗岭镇","340811200":"白泽湖乡","340811201":"五横乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/340871.json: -------------------------------------------------------------------------------- 1 | {"340871001":"菱北街道","340871100":"老峰镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/341023.json: -------------------------------------------------------------------------------- 1 | {"341023100":"碧阳镇","341023101":"宏村镇","341023102":"渔亭镇","341023103":"西递镇","341023104":"柯村镇","341023201":"美溪乡","341023202":"宏潭乡","341023203":"洪星乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/341171.json: -------------------------------------------------------------------------------- 1 | {"341171001":"大王街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/341172.json: -------------------------------------------------------------------------------- 1 | {"341172001":"凤凰街道","341172002":"紫薇街道","341172401":"滁州市经济技术开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/341204.json: -------------------------------------------------------------------------------- 1 | {"341204001":"中市街道","341204002":"周棚街道","341204100":"伍明镇","341204101":"宁老庄镇","341204102":"闻集镇","341204103":"行流镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/341271.json: -------------------------------------------------------------------------------- 1 | {"341271100":"袁集镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/341272.json: -------------------------------------------------------------------------------- 1 | {"341272001":"阜阳开发区京九街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/341371.json: -------------------------------------------------------------------------------- 1 | {"341371400":"宿州东部新城行政管理区"} -------------------------------------------------------------------------------- /src/components/v-region/town/341372.json: -------------------------------------------------------------------------------- 1 | {"341372001":"金海街道","341372402":"鞋城行政区域"} -------------------------------------------------------------------------------- /src/components/v-region/town/341504.json: -------------------------------------------------------------------------------- 1 | {"341504001":"史河街道","341504002":"平岗街道","341504102":"三元镇","341504103":"洪集镇","341504104":"姚李镇","341504200":"孙岗乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/341871.json: -------------------------------------------------------------------------------- 1 | {"341871001":"天湖街道","341871002":"飞彩街道","341871003":"金坝街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/350105.json: -------------------------------------------------------------------------------- 1 | {"350105001":"罗星街道","350105100":"马尾镇","350105101":"亭江镇","350105102":"琅岐镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/350128.json: -------------------------------------------------------------------------------- 1 | {"350128001":"海坛街道","350128107":"金井镇","350128108":"君山镇","350128109":"苏平镇","350128201":"屿头乡","350128205":"东庠乡","350128207":"南海乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/350205.json: -------------------------------------------------------------------------------- 1 | {"350205001":"海沧街道","350205002":"新阳街道","350205003":"嵩屿街道","350205004":"东孚街道","350205403":"天竺山林场","350205407":"厦门海沧保税港区"} -------------------------------------------------------------------------------- /src/components/v-region/town/350206.json: -------------------------------------------------------------------------------- 1 | {"350206001":"湖里街道","350206002":"殿前街道","350206003":"禾山街道","350206004":"江头街道","350206005":"金山街道","350206405":"火炬高技术开发区","350206406":"象屿保税区"} -------------------------------------------------------------------------------- /src/components/v-region/town/350212.json: -------------------------------------------------------------------------------- 1 | {"350212001":"大同街道","350212002":"祥平街道","350212105":"莲花镇","350212106":"新民镇","350212107":"洪塘镇","350212108":"西柯镇","350212109":"汀溪镇","350212110":"五显镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/350302.json: -------------------------------------------------------------------------------- 1 | {"350302001":"龙桥街道","350302002":"凤凰山街道","350302003":"霞林街道","350302100":"常太镇","350302101":"华亭镇","350302102":"灵川镇","350302103":"东海镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/350304.json: -------------------------------------------------------------------------------- 1 | {"350304001":"镇海街道","350304002":"拱辰街道","350304100":"西天尾镇","350304101":"黄石镇","350304102":"新度镇","350304103":"北高镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/350402.json: -------------------------------------------------------------------------------- 1 | {"350402001":"列东街道","350402002":"列西街道","350402003":"徐碧街道","350402100":"陈大镇","350402101":"洋溪镇","350402500":"福建梅列经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/350403.json: -------------------------------------------------------------------------------- 1 | {"350403001":"城关街道","350403002":"白沙街道","350403003":"富兴堡街道","350403004":"荆西街道","350403100":"莘口镇","350403101":"岩前镇","350403200":"城东乡","350403201":"中村乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/350421.json: -------------------------------------------------------------------------------- 1 | {"350421100":"雪峰镇","350421101":"盖洋镇","350421102":"胡坊镇","350421103":"瀚仙镇","350421200":"城关乡","350421201":"沙溪乡","350421202":"夏阳乡","350421203":"枫溪乡","350421204":"夏坊乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/350429.json: -------------------------------------------------------------------------------- 1 | {"350429100":"杉城镇","350429101":"朱口镇","350429103":"下渠镇","350429200":"新桥乡","350429201":"上青乡","350429202":"大田乡","350429203":"梅口乡","350429205":"开善乡","350429208":"大龙乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/350503.json: -------------------------------------------------------------------------------- 1 | {"350503001":"东湖街道","350503002":"丰泽街道","350503003":"泉秀街道","350503004":"清源街道","350503005":"华大街道","350503006":"城东街道","350503007":"东海街道","350503008":"北峰街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/350504.json: -------------------------------------------------------------------------------- 1 | {"350504001":"万安街道","350504002":"双阳街道","350504100":"罗溪镇","350504101":"马甲镇","350504102":"河市镇","350504200":"虹山乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/350505.json: -------------------------------------------------------------------------------- 1 | {"350505001":"山腰街道","350505100":"南埔镇","350505101":"界山镇","350505102":"后龙镇","350505103":"峰尾镇","350505105":"前黄镇","350505106":"涂岭镇","350505400":"石化工业园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/350603.json: -------------------------------------------------------------------------------- 1 | {"350603001":"步文街道","350603002":"碧湖街道","350603003":"蓝田街道","350603004":"朝阳街道","350603005":"景山街道","350603103":"郭坑镇","350603500":"蓝田开发区管委会"} -------------------------------------------------------------------------------- /src/components/v-region/town/350626.json: -------------------------------------------------------------------------------- 1 | {"350626100":"西埔镇","350626101":"樟塘镇","350626102":"康美镇","350626103":"杏陈镇","350626104":"陈城镇","350626105":"前楼镇","350626106":"铜陵镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/350723.json: -------------------------------------------------------------------------------- 1 | {"350723100":"杭川镇","350723101":"寨里镇","350723102":"止马镇","350723200":"鸾凤乡","350723201":"崇仁乡","350723202":"李坊乡","350723203":"华桥乡","350723204":"司前乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/350925.json: -------------------------------------------------------------------------------- 1 | {"350925100":"狮城镇","350925101":"咸村镇","350925102":"浦源镇","350925103":"七步镇","350925104":"李墩镇","350925105":"纯池镇","350925200":"泗桥乡","350925201":"礼门乡","350925202":"玛坑乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/350926.json: -------------------------------------------------------------------------------- 1 | {"350926100":"双城镇","350926101":"富溪镇","350926200":"城郊乡","350926201":"乍洋乡","350926202":"东源乡","350926203":"黄柏乡","350926204":"宅中乡","350926205":"楮坪乡","350926206":"英山乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/360104.json: -------------------------------------------------------------------------------- 1 | {"360104002":"洪都街道","360104006":"京山街道","360104007":"三家店街道","360104008":"岱山街道","360104009":"徐家坊街道","360104100":"青云谱镇","360104400":"江西青云谱新经济产业集聚区"} -------------------------------------------------------------------------------- /src/components/v-region/town/360105.json: -------------------------------------------------------------------------------- 1 | {"360105001":"站前街道","360105002":"幸福街道","360105100":"招贤镇","360105101":"梅岭镇","360105102":"罗亭镇","360105103":"太平镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/360113.json: -------------------------------------------------------------------------------- 1 | {"360113001":"沙井街道","360113002":"卫东街道","360113100":"生米镇","360113400":"凤凰洲管理处","360113401":"红角洲管理处","360113402":"九龙湖管理处"} -------------------------------------------------------------------------------- /src/components/v-region/town/360427.json: -------------------------------------------------------------------------------- 1 | {"360427100":"南康镇","360427101":"白鹿镇","360427102":"温泉镇","360427103":"蓼花镇","360427104":"华林镇","360427105":"蛟塘镇","360427106":"横塘镇","360427200":"蓼南乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/360482.json: -------------------------------------------------------------------------------- 1 | {"360482001":"茶山街道","360482100":"甘露镇","360482101":"江益镇","360482200":"金湖乡","360482201":"苏家垱乡","360482202":"泽泉乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/360602.json: -------------------------------------------------------------------------------- 1 | {"360602001":"江边街道","360602002":"交通街道","360602003":"东湖街道","360602004":"梅园街道","360602005":"四青街道","360602006":"白露街道","360602100":"童家镇","360602200":"夏埠乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/360728.json: -------------------------------------------------------------------------------- 1 | {"360728100":"历市镇","360728101":"岿美山镇","360728102":"老城镇","360728103":"天九镇","360728104":"龙塘镇","360728105":"岭北镇","360728106":"鹅公镇","360728400":"定南县工业园"} -------------------------------------------------------------------------------- /src/components/v-region/town/361028.json: -------------------------------------------------------------------------------- 1 | {"361028100":"鹤城镇","361028101":"马头山镇","361028102":"高阜镇","361028103":"嵩市镇","361028104":"乌石镇","361028200":"高田乡","361028201":"石峡乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/370117.json: -------------------------------------------------------------------------------- 1 | {"370117001":"艾山街道","370117002":"里辛街道","370117003":"汶源街道","370117004":"颜庄街道","370117005":"辛庄街道","370117400":"棋山国家森林公园","370117401":"高新技术开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/370124.json: -------------------------------------------------------------------------------- 1 | {"370124001":"榆山街道","370124002":"锦水街道","370124102":"东阿镇","370124103":"孝直镇","370124104":"孔村镇","370124105":"洪范池镇","370124106":"玫瑰镇","370124107":"安城镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/370171.json: -------------------------------------------------------------------------------- 1 | {"370171001":"舜华路街道","370171002":"孙村街道","370171003":"巨野河街道","370171004":"遥墙街道","370171005":"临港街道","370171401":"章锦街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/370212.json: -------------------------------------------------------------------------------- 1 | {"370212001":"中韩街道","370212002":"沙子口街道","370212003":"王哥庄街道","370212004":"北宅街道","370212005":"金家岭街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/370214.json: -------------------------------------------------------------------------------- 1 | {"370214001":"城阳街道","370214002":"夏庄街道","370214003":"流亭街道","370214004":"棘洪滩街道","370214005":"上马街道","370214008":"惜福镇街道","370214009":"红岛街道","370214010":"河套街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/370271.json: -------------------------------------------------------------------------------- 1 | {"370271400":"北部园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/370404.json: -------------------------------------------------------------------------------- 1 | {"370404001":"坛山街道","370404002":"吴林街道","370404100":"古邵镇","370404101":"阴平镇","370404102":"底阁镇","370404103":"榴园镇","370404104":"峨山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/370405.json: -------------------------------------------------------------------------------- 1 | {"370405001":"运河街道","370405100":"邳庄镇","370405101":"张山子镇","370405102":"泥沟镇","370405103":"涧头集镇","370405104":"马兰屯镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/370503.json: -------------------------------------------------------------------------------- 1 | {"370503001":"河口街道","370503002":"六合街道","370503100":"义和镇","370503101":"仙河镇","370503102":"孤岛镇","370503103":"新户镇","370503400":"河口经济开发区","370503401":"河口蓝色经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/370521.json: -------------------------------------------------------------------------------- 1 | {"370521001":"垦利街道","370521002":"兴隆街道","370521101":"胜坨镇","370521102":"郝家镇","370521104":"永安镇","370521105":"黄河口镇","370521106":"董集镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/370571.json: -------------------------------------------------------------------------------- 1 | {"370571400":"经济开发区直属乡镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/370572.json: -------------------------------------------------------------------------------- 1 | {"370572402":"经济开发区直属乡镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/370613.json: -------------------------------------------------------------------------------- 1 | {"370613001":"黄海路街道","370613002":"初家街道","370613003":"滨海路街道","370613004":"解甲庄街道","370613005":"莱山街道","370613006":"院格庄街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/370634.json: -------------------------------------------------------------------------------- 1 | {"370634001":"南长山街道","370634101":"砣矶镇","370634201":"北长山乡","370634202":"黑山乡","370634203":"大钦岛乡","370634204":"小钦岛乡","370634205":"南隍城乡","370634206":"北隍城乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/370671.json: -------------------------------------------------------------------------------- 1 | {"370671007":"马山街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/370672.json: -------------------------------------------------------------------------------- 1 | {"370672003":"古现街道","370672004":"大季家街道","370672008":"福莱山街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/370702.json: -------------------------------------------------------------------------------- 1 | {"370702001":"城关街道","370702002":"南关街道","370702003":"西关街道","370702004":"北关街道","370702005":"于河街道","370702006":"望留街道","370702400":"潍城经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/370703.json: -------------------------------------------------------------------------------- 1 | {"370703001":"寒亭街道","370703002":"开元街道","370703003":"固堤街道","370703006":"高里街道","370703007":"朱里街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/370704.json: -------------------------------------------------------------------------------- 1 | {"370704003":"凤凰街道","370704004":"坊安街道","370704005":"坊城街道","370704006":"九龙街道","370704007":"黄旗堡街道","370704008":"太保庄街道","370704009":"王家庄街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/370725.json: -------------------------------------------------------------------------------- 1 | {"370725001":"宝都街道","370725002":"宝城街道","370725003":"朱刘街道","370725005":"五图街道","370725107":"乔官镇","370725108":"唐吾镇","370725110":"红河镇","370725116":"营丘镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/370772.json: -------------------------------------------------------------------------------- 1 | {"370772004":"央子街道","370772005":"大家洼街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/370871.json: -------------------------------------------------------------------------------- 1 | {"370871001":"洸河街道","370871002":"柳行街道","370871003":"接庄街道","370871004":"王因街道","370871005":"黄屯街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/370902.json: -------------------------------------------------------------------------------- 1 | {"370902001":"岱庙街道","370902002":"财源街道","370902003":"泰前街道","370902004":"上高街道","370902005":"徐家楼街道","370902100":"省庄镇","370902101":"邱家店镇","370902202":"大津口乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/371071.json: -------------------------------------------------------------------------------- 1 | {"371071004":"怡园街道","371071007":"田和街道","371071108":"初村镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/371072.json: -------------------------------------------------------------------------------- 1 | {"371072008":"皇冠街道","371072009":"凤林街道","371072010":"西苑街道","371072103":"崮山镇","371072105":"泊于镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/371073.json: -------------------------------------------------------------------------------- 1 | {"371073107":"草庙子镇","371073112":"汪疃镇","371073113":"苘山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/371171.json: -------------------------------------------------------------------------------- 1 | {"371171003":"奎山街道","371171007":"北京路街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/371203.json: -------------------------------------------------------------------------------- 1 | {"371203001":"艾山街道","371203002":"里辛街道","371203003":"汶源街道","371203100":"颜庄镇","371203103":"辛庄镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/371311.json: -------------------------------------------------------------------------------- 1 | {"371311001":"罗庄街道","371311002":"傅庄街道","371311003":"盛庄街道","371311006":"册山街道","371311007":"高都街道","371311100":"沂堂镇","371311101":"褚墩镇","371311102":"黄山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/371371.json: -------------------------------------------------------------------------------- 1 | {"371371001":"罗西街道","371371100":"马厂湖镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/371372.json: -------------------------------------------------------------------------------- 1 | {"371372001":"芝麻墩街道","371372002":"梅家埠街道","371372003":"朝阳街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/371373.json: -------------------------------------------------------------------------------- 1 | {"371373100":"坪上镇","371373101":"团林镇","371373102":"壮岗镇","371373103":"朱芦镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/371402.json: -------------------------------------------------------------------------------- 1 | {"371402001":"新湖街道","371402002":"新华街道","371402003":"天衢街道","371402006":"广川街道","371402009":"运河街道","371402100":"二屯镇","371402101":"黄河涯镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/371428.json: -------------------------------------------------------------------------------- 1 | {"371428001":"广运街道","371428100":"武城镇","371428101":"老城镇","371428103":"鲁权屯镇","371428104":"郝王庄镇","371428106":"甲马营镇","371428107":"四女寺镇","371428108":"李家户镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/371471.json: -------------------------------------------------------------------------------- 1 | {"371471007":"长河街道","371471008":"宋官屯街道","371471108":"袁桥镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/371472.json: -------------------------------------------------------------------------------- 1 | {"371472100":"赵虎镇","371472101":"抬头寺镇","371472400":"新区服务管理办公室"} -------------------------------------------------------------------------------- /src/components/v-region/town/371771.json: -------------------------------------------------------------------------------- 1 | {"371771001":"丹阳街道","371771002":"岳程街道","371771003":"佃户屯街道","371771101":"陈集镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/371772.json: -------------------------------------------------------------------------------- 1 | {"371772001":"万福街道","371772100":"吕陵镇","371772108":"马岭岗镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/410106.json: -------------------------------------------------------------------------------- 1 | {"410106001":"济源路街道","410106002":"中心路街道","410106003":"新安路街道","410106004":"工业路街道","410106005":"矿山街道","410106100":"峡窝镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/410108.json: -------------------------------------------------------------------------------- 1 | {"410108001":"新城街道","410108002":"刘寨街道","410108003":"江山路街道","410108004":"长兴路街道","410108005":"迎宾路街道","410108006":"大河路街道","410108100":"花园口镇","410108101":"古荥镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/410171.json: -------------------------------------------------------------------------------- 1 | {"410171111":"九龙镇","410171560":"郑州经济技术开发区明湖街道","410171561":"郑州经济技术开发区潮河街道","410171562":"郑州经济技术开发区京航街道","410171563":"郑州经济技术开发区前程街道","410171565":"郑州经济技术开发区祥云街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/410172.json: -------------------------------------------------------------------------------- 1 | {"410172160":"石佛镇","410172360":"沟赵乡","410172560":"枫杨街道","410172561":"梧桐街道","410172562":"双桥街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/410203.json: -------------------------------------------------------------------------------- 1 | {"410203001":"清平街道","410203002":"铁塔街道","410203003":"曹门街道","410203004":"宋门街道","410203005":"工业街道","410203006":"苹果园街道","410203200":"东郊乡","410203201":"土柏岗乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/410204.json: -------------------------------------------------------------------------------- 1 | {"410204001":"相国寺街道","410204002":"新华街道","410204003":"卧龙街道","410204004":"州桥街道","410204005":"西司门街道","410204006":"南苑街道","410204007":"五一街道","410204008":"仙人庄街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/410205.json: -------------------------------------------------------------------------------- 1 | {"410205001":"三里堡街道","410205002":"新门关街道","410205003":"繁塔街道","410205004":"官坊街道","410205005":"菜市街道","410205200":"南郊乡","410205201":"汪屯乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/410211.json: -------------------------------------------------------------------------------- 1 | {"410211001":"城西街道","410211002":"梁苑街道","410211100":"杏花营镇","410211201":"西郊乡","410211207":"水稻乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/410304.json: -------------------------------------------------------------------------------- 1 | {"410304001":"东关街道","410304002":"瀍西街道","410304003":"五股路街道","410304004":"北窑街道","410304005":"塔湾街道","410304006":"杨文街道","410304007":"华林街道","410304200":"瀍河回族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/410306.json: -------------------------------------------------------------------------------- 1 | {"410306002":"西霞院街道","410306003":"康乐街道","410306004":"吉利街道","410306005":"河阳街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/410371.json: -------------------------------------------------------------------------------- 1 | {"410371001":"瀛洲街道","410371002":"辛店街道","410371003":"徐家营街道","410371101":"丰李镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/410404.json: -------------------------------------------------------------------------------- 1 | {"410404001":"高庄街道","410404002":"龙兴街道","410404003":"人民路街道","410404004":"龙河街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/410471.json: -------------------------------------------------------------------------------- 1 | {"410471001":"皇台街道","410471100":"遵化店镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/410472.json: -------------------------------------------------------------------------------- 1 | {"410472001":"湖滨路街道","410472101":"滍阳镇","410472401":"滨湖管委会","410472402":"应滨管委会"} -------------------------------------------------------------------------------- /src/components/v-region/town/410571.json: -------------------------------------------------------------------------------- 1 | {"410571563":"开发区峨嵋大街街道","410571564":"开发区银杏大街街道","410571565":"开发区商颂大街街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/410602.json: -------------------------------------------------------------------------------- 1 | {"410602001":"中山北路街道","410602002":"中山路街道","410602003":"新华街街道","410602004":"鹤山街街道","410602005":"九矿广场街道","410602100":"鹤壁集镇","410602201":"姬家山乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/410603.json: -------------------------------------------------------------------------------- 1 | {"410603001":"红旗街街道","410603002":"长风中路街道","410603003":"山城路街道","410603004":"汤河桥街道","410603005":"鹿楼街道","410603006":"宝山街道","410603007":"大胡街道","410603100":"石林镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/410671.json: -------------------------------------------------------------------------------- 1 | {"410671400":"东杨路","410671401":"渤海路","410671402":"海河路"} -------------------------------------------------------------------------------- /src/components/v-region/town/410702.json: -------------------------------------------------------------------------------- 1 | {"410702001":"西街街道","410702002":"东街街道","410702003":"渠东街道","410702007":"文化街街道","410702009":"向阳小区街道","410702100":"洪门镇","410702101":"小店镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/410703.json: -------------------------------------------------------------------------------- 1 | {"410703001":"胜利路街道","410703002":"解放路街道","410703003":"中同街街道","410703004":"健康路街道","410703007":"自由路街道","410703008":"南桥街道","410703009":"铁西街道","410703100":"平原镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/410704.json: -------------------------------------------------------------------------------- 1 | {"410704001":"宝西街道","410704002":"宝东街道","410704100":"大块镇","410704101":"耿黄镇","410704200":"潞王坟乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/410721.json: -------------------------------------------------------------------------------- 1 | {"410721101":"翟坡镇","410721102":"小冀镇","410721103":"七里营镇","410721104":"朗公庙镇","410721105":"古固寨镇","410721107":"大召营镇","410721200":"合河乡","410721560":"新乡经济开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/410771.json: -------------------------------------------------------------------------------- 1 | {"410771360":"开发区关堤乡","410771560":"振中街"} -------------------------------------------------------------------------------- /src/components/v-region/town/410772.json: -------------------------------------------------------------------------------- 1 | {"410772001":"纬七路街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/410773.json: -------------------------------------------------------------------------------- 1 | {"410773001":"龙源街道","410773101":"原武镇","410773102":"师寨镇","410773106":"韩董庄镇","410773203":"祝楼乡","410773204":"桥北乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/410804.json: -------------------------------------------------------------------------------- 1 | {"410804001":"马村街道","410804002":"武王街道","410804003":"冯营街道","410804004":"九里山街道","410804005":"待王街道","410804006":"安阳城街道","410804007":"演马街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/410871.json: -------------------------------------------------------------------------------- 1 | {"410871060":"李万街道","410871061":"文苑街道","410871062":"文昌街道","410871100":"阳庙镇","410871101":"宁郭镇","410871203":"苏家作乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/410971.json: -------------------------------------------------------------------------------- 1 | {"410971001":"河南濮阳工业园区昌湖街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/410972.json: -------------------------------------------------------------------------------- 1 | {"410972060":"昆吾街道","410972061":"皇甫街道","410972062":"开州街道","410972063":"濮上街道","410972100":"王助镇","410972101":"新习镇","410972360":"胡村乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/411071.json: -------------------------------------------------------------------------------- 1 | {"411071001":"长村张街道","411071400":"龙湖街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/411102.json: -------------------------------------------------------------------------------- 1 | {"411102001":"老街街道","411102002":"马路街街道","411102003":"顺河街街道","411102004":"干河陈街道","411102100":"大刘镇","411102101":"阴阳赵镇","411102102":"空冢郭镇","411102202":"问十乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/411171.json: -------------------------------------------------------------------------------- 1 | {"411171101":"后谢镇","411171102":"邓襄镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/411271.json: -------------------------------------------------------------------------------- 1 | {"411271560":"向阳街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/411281.json: -------------------------------------------------------------------------------- 1 | {"411281001":"千秋路街道","411281002":"朝阳路街道","411281003":"新义街街道","411281004":"常村路街道","411281005":"泰山路街道","411281006":"新区街道","411281007":"东区街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/411371.json: -------------------------------------------------------------------------------- 1 | {"411371060":"南阳高新区张衡街道","411371061":"南阳高新区百里奚街道","411371401":"中关村南阳科技产业园"} -------------------------------------------------------------------------------- /src/components/v-region/town/411372.json: -------------------------------------------------------------------------------- 1 | {"411372005":"白河街道","411372006":"枣林街道","411372007":"姜营街道","411372306":"新店乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/411471.json: -------------------------------------------------------------------------------- 1 | {"411471001":"中州街道","411471100":"张阁镇","411471101":"贾寨镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/411472.json: -------------------------------------------------------------------------------- 1 | {"411472009":"平台街道","411472010":"平安街道","411472200":"周集乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/411571.json: -------------------------------------------------------------------------------- 1 | {"411571001":"城东街道","411571002":"珍珠路街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/411671.json: -------------------------------------------------------------------------------- 1 | {"411671011":"太昊路街道","411671012":"淮河路街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/411771.json: -------------------------------------------------------------------------------- 1 | {"411771360":"关王庙乡","411771400":"驻马店市职教园区","411771560":"金河街道","411771562":"金山街道","411771563":"开源街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/420113.json: -------------------------------------------------------------------------------- 1 | {"420113001":"纱帽街道","420113002":"邓南街道","420113003":"东荆街道","420113004":"湘口街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/420202.json: -------------------------------------------------------------------------------- 1 | {"420202005":"沈家营街道","420202006":"黄石港街道","420202007":"胜阳港街道","420202070":"花湖街道","420202400":"江北管理区"} -------------------------------------------------------------------------------- /src/components/v-region/town/420203.json: -------------------------------------------------------------------------------- 1 | {"420203007":"章山街道","420203008":"八泉街道","420203009":"澄月街道","420203010":"牧羊湖街道","420203011":"黄思湾街道","420203400":"冶钢农场","420203402":"西塞山工业园区管委会"} -------------------------------------------------------------------------------- /src/components/v-region/town/420204.json: -------------------------------------------------------------------------------- 1 | {"420204004":"团城山街道","420204005":"新下陆街道","420204006":"老下陆街道","420204007":"东方山街道","420204401":"长乐山工业园管理委员会"} -------------------------------------------------------------------------------- /src/components/v-region/town/420205.json: -------------------------------------------------------------------------------- 1 | {"420205003":"铁山街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/420302.json: -------------------------------------------------------------------------------- 1 | {"420302001":"武当路街道","420302002":"二堰街道","420302003":"五堰街道","420302004":"白浪开发区白浪街道","420302100":"大川镇","420302201":"茅塔乡","420302202":"鸳鸯乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/420503.json: -------------------------------------------------------------------------------- 1 | {"420503001":"大公桥街道","420503002":"万寿桥街道","420503003":"宝塔河街道","420503004":"伍家岗街道","420503201":"伍家乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/420504.json: -------------------------------------------------------------------------------- 1 | {"420504001":"点军街道","420504101":"艾家镇","420504102":"桥边镇","420504201":"联棚乡","420504202":"土城乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/420505.json: -------------------------------------------------------------------------------- 1 | {"420505001":"古老背街道","420505002":"虎牙街道","420505003":"云池街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/420525.json: -------------------------------------------------------------------------------- 1 | {"420525101":"鸣凤镇","420525102":"花林寺镇","420525103":"旧县镇","420525104":"洋坪镇","420525105":"茅坪场镇","420525106":"嫘祖镇","420525201":"河口乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/420526.json: -------------------------------------------------------------------------------- 1 | {"420526101":"古夫镇","420526102":"昭君镇","420526103":"峡口镇","420526104":"南阳镇","420526105":"黄粮镇","420526106":"水月寺镇","420526201":"高桥乡","420526202":"榛子乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/420529.json: -------------------------------------------------------------------------------- 1 | {"420529111":"渔洋关镇","420529112":"仁和坪镇","420529113":"长乐坪镇","420529114":"五峰镇","420529115":"湾潭镇","420529201":"付家堰乡","420529202":"牛庄乡","420529203":"采花乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/420702.json: -------------------------------------------------------------------------------- 1 | {"420702100":"太和镇","420702101":"东沟镇","420702102":"梁子镇","420702103":"涂家垴镇","420702104":"沼山镇","420702400":"梧桐湖新区"} -------------------------------------------------------------------------------- /src/components/v-region/town/420703.json: -------------------------------------------------------------------------------- 1 | {"420703100":"华容镇","420703101":"葛店镇","420703102":"庙岭镇","420703103":"段店镇","420703200":"临江乡","420703201":"蒲团乡","420703400":"葛店开发区"} -------------------------------------------------------------------------------- /src/components/v-region/town/420804.json: -------------------------------------------------------------------------------- 1 | {"420804001":"掇刀石街道","420804002":"白庙街道","420804003":"兴隆街道","420804004":"双喜街道","420804100":"团林铺镇","420804101":"麻城镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/421071.json: -------------------------------------------------------------------------------- 1 | {"421071001":"联合街道","421071002":"西湖街道","421071003":"鱼农桥街道","421071100":"滩桥镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/421171.json: -------------------------------------------------------------------------------- 1 | {"421171450":"严家闸","421171451":"芦柴湖","421171452":"洋湖","421171453":"沙湖","421171454":"春港","421171455":"塞湖","421171456":"青泥湖","421171457":"湖北龙感湖工业园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/422827.json: -------------------------------------------------------------------------------- 1 | {"422827100":"翔凤镇","422827101":"百福司镇","422827102":"大河镇","422827103":"绿水镇","422827104":"旧司镇","422827105":"革勒车镇","422827200":"漫水乡","422827202":"三胡乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/422828.json: -------------------------------------------------------------------------------- 1 | {"422828100":"走马镇","422828101":"容美镇","422828102":"太平镇","422828103":"燕子镇","422828104":"中营镇","422828200":"铁炉乡","422828201":"五里乡","422828203":"下坪乡","422828204":"邬阳乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/429021.json: -------------------------------------------------------------------------------- 1 | {"429021100":"松柏镇","429021101":"阳日镇","429021102":"木鱼镇","429021103":"红坪镇","429021104":"新华镇","429021105":"九湖镇","429021201":"宋洛乡","429021203":"下谷坪土家族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/430202.json: -------------------------------------------------------------------------------- 1 | {"430202001":"月塘街道","430202002":"茨菇塘街道","430202003":"宋家桥街道","430202004":"桂花街道","430202005":"金山街道","430202100":"仙庾镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430203.json: -------------------------------------------------------------------------------- 1 | {"430203001":"贺家土街道","430203002":"建设街道","430203003":"建宁街道","430203004":"董家段街道","430203005":"庆云街道","430203006":"枫溪街道","430203007":"龙泉街道","430203100":"白关镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430204.json: -------------------------------------------------------------------------------- 1 | {"430204001":"田心街道","430204002":"响石岭街道","430204003":"清水塘街道","430204004":"铜塘湾街道","430204005":"井龙街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/430211.json: -------------------------------------------------------------------------------- 1 | {"430211001":"嵩山路街道","430211002":"泰山路街道","430211003":"栗雨街道","430211004":"马家河街道","430211101":"群丰镇","430211102":"雷打石镇","430211103":"三门镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430212.json: -------------------------------------------------------------------------------- 1 | {"430212100":"渌口镇","430212101":"朱亭镇","430212106":"古岳峰镇","430212107":"淦田镇","430212108":"龙门镇","430212109":"龙潭镇","430212110":"南洲镇","430212111":"龙船镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430221.json: -------------------------------------------------------------------------------- 1 | {"430221100":"渌口镇","430221101":"朱亭镇","430221106":"古岳峰镇","430221107":"淦田镇","430221108":"龙门镇","430221109":"龙潭镇","430221110":"南洲镇","430221111":"龙船镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430271.json: -------------------------------------------------------------------------------- 1 | {"430271006":"学林街道","430271007":"龙头铺街道","430271101":"云田镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430371.json: -------------------------------------------------------------------------------- 1 | {"430371001":"板塘街道","430371002":"双马街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/430372.json: -------------------------------------------------------------------------------- 1 | {"430372100":"昭山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430373.json: -------------------------------------------------------------------------------- 1 | {"430373001":"和平街道","430373002":"九华街道","430373200":"响水乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/430382.json: -------------------------------------------------------------------------------- 1 | {"430382100":"清溪镇","430382101":"银田镇","430382200":"韶山乡","430382203":"杨林乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/430406.json: -------------------------------------------------------------------------------- 1 | {"430406001":"先锋街道","430406002":"雁峰街道","430406003":"天马山街道","430406004":"黄茶岭街道","430406005":"白沙洲街道","430406100":"岳屏镇","430406400":"白沙洲工业园"} -------------------------------------------------------------------------------- /src/components/v-region/town/430407.json: -------------------------------------------------------------------------------- 1 | {"430407001":"人民街道","430407002":"青山街道","430407003":"潇湘街道","430407004":"五一街道","430407005":"合江街道","430407006":"黄沙湾街道","430407100":"角山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430408.json: -------------------------------------------------------------------------------- 1 | {"430408001":"蒸湘街道","430408002":"红湘街道","430408004":"联合街道","430408100":"呆鹰岭镇","430408101":"雨母山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430412.json: -------------------------------------------------------------------------------- 1 | {"430412001":"祝融街道","430412100":"南岳镇","430412203":"寿岳乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/430471.json: -------------------------------------------------------------------------------- 1 | {"430471401":"衡阳综合保税区"} -------------------------------------------------------------------------------- /src/components/v-region/town/430472.json: -------------------------------------------------------------------------------- 1 | {"430472003":"华兴街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/430473.json: -------------------------------------------------------------------------------- 1 | {"430473400":"松木工业园"} -------------------------------------------------------------------------------- /src/components/v-region/town/430511.json: -------------------------------------------------------------------------------- 1 | {"430511001":"新滩镇街道","430511002":"状元洲街道","430511003":"田江街道","430511004":"茶元头街道","430511101":"陈家桥镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430603.json: -------------------------------------------------------------------------------- 1 | {"430603001":"长岭街道","430603002":"云溪街道","430603003":"松杨湖街道","430603101":"陆城镇","430603102":"路口镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430611.json: -------------------------------------------------------------------------------- 1 | {"430611001":"柳林洲街道","430611101":"广兴洲镇","430611102":"许市镇","430611103":"钱粮湖镇","430611104":"良心堡镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430671.json: -------------------------------------------------------------------------------- 1 | {"430671001":"天问街道","430671101":"营田镇","430671102":"河市镇","430671203":"凤凰乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/430771.json: -------------------------------------------------------------------------------- 1 | {"430771004":"龙泉街道","430771005":"金凤街道","430771101":"祝丰镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/430811.json: -------------------------------------------------------------------------------- 1 | {"430811001":"军地坪街道","430811002":"锣鼓塔街道","430811201":"协合乡","430811202":"中湖乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/430971.json: -------------------------------------------------------------------------------- 1 | {"430971121":"河坝镇","430971123":"金盆镇","430971124":"北洲子镇","430971130":"千山红镇","430971405":"南湾湖"} -------------------------------------------------------------------------------- /src/components/v-region/town/430972.json: -------------------------------------------------------------------------------- 1 | {"430972005":"朝阳街道","430972006":"东部产业园地区","430972109":"谢林港镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/431171.json: -------------------------------------------------------------------------------- 1 | {"431171001":"仁湾街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/431172.json: -------------------------------------------------------------------------------- 1 | {"431172120":"金洞镇","431172201":"晒北滩瑶族乡","431172202":"凤凰乡","431172204":"石鼓源乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/431173.json: -------------------------------------------------------------------------------- 1 | {"431173100":"回龙圩镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/431271.json: -------------------------------------------------------------------------------- 1 | {"431271001":"河滨路街道","431271002":"沅江路街道","431271003":"新街街道","431271004":"高坡街街道","431271218":"横岩乡","431271220":"桂花园乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/433126.json: -------------------------------------------------------------------------------- 1 | {"433126101":"古阳镇","433126103":"岩头寨镇","433126104":"默戎镇","433126105":"红石林镇","433126106":"断龙山镇","433126107":"高峰镇","433126108":"坪坝镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/433172.json: -------------------------------------------------------------------------------- 1 | {"433172598":"乾州街道经开区"} -------------------------------------------------------------------------------- /src/components/v-region/town/433173.json: -------------------------------------------------------------------------------- 1 | {"433173002":"湖南永顺经济开发地区"} -------------------------------------------------------------------------------- /src/components/v-region/town/440203.json: -------------------------------------------------------------------------------- 1 | {"440203001":"新华街道","440203002":"惠民街道","440203100":"西联镇","440203101":"西河镇","440203102":"龙归镇","440203103":"江湾镇","440203104":"重阳镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/440229.json: -------------------------------------------------------------------------------- 1 | {"440229100":"龙仙镇","440229104":"坝仔镇","440229106":"江尾镇","440229109":"官渡镇","440229111":"周陂镇","440229113":"翁城镇","440229114":"新江镇","440229115":"铁龙镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/440233.json: -------------------------------------------------------------------------------- 1 | {"440233001":"丰城街道","440233100":"黄磜镇","440233101":"马头镇","440233102":"梅坑镇","440233103":"沙田镇","440233104":"遥田镇","440233105":"回龙镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/440308.json: -------------------------------------------------------------------------------- 1 | {"440308001":"梅沙街道","440308002":"盐田街道","440308003":"沙头角街道","440308004":"海山街道","440308403":"深圳盐田综合保税区"} -------------------------------------------------------------------------------- /src/components/v-region/town/440309.json: -------------------------------------------------------------------------------- 1 | {"440309001":"观湖街道","440309002":"民治街道","440309003":"龙华街道","440309004":"大浪街道","440309005":"福城街道","440309006":"观澜街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/440310.json: -------------------------------------------------------------------------------- 1 | {"440310001":"坪山街道","440310002":"马峦街道","440310003":"碧岭街道","440310004":"石井街道","440310005":"坑梓街道","440310006":"龙田街道","440310401":"深圳坪山综合保税区"} -------------------------------------------------------------------------------- /src/components/v-region/town/440311.json: -------------------------------------------------------------------------------- 1 | {"440311001":"光明街道","440311002":"公明街道","440311003":"新湖街道","440311004":"凤凰街道","440311005":"玉塘街道","440311006":"马田街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/440403.json: -------------------------------------------------------------------------------- 1 | {"440403001":"白藤街道","440403100":"莲洲镇","440403103":"斗门镇","440403105":"乾务镇","440403106":"白蕉镇","440403107":"井岸镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/440404.json: -------------------------------------------------------------------------------- 1 | {"440404100":"三灶镇","440404101":"南水镇","440404103":"红旗镇","440404104":"平沙镇","440404400":"联港工业区","440404401":"航空产业园"} -------------------------------------------------------------------------------- /src/components/v-region/town/440512.json: -------------------------------------------------------------------------------- 1 | {"440512001":"达濠街道","440512002":"马窖街道","440512003":"礐石街道","440512004":"广澳街道","440512005":"滨海街道","440512006":"河浦街道","440512007":"玉新街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/440523.json: -------------------------------------------------------------------------------- 1 | {"440523100":"后宅镇","440523101":"云澳镇","440523102":"深澳镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/440604.json: -------------------------------------------------------------------------------- 1 | {"440604010":"石湾镇街道","440604011":"张槎街道","440604012":"祖庙街道","440604100":"南庄镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/440605.json: -------------------------------------------------------------------------------- 1 | {"440605011":"桂城街道","440605121":"九江镇","440605122":"西樵镇","440605123":"丹灶镇","440605124":"狮山镇","440605125":"大沥镇","440605126":"里水镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/440608.json: -------------------------------------------------------------------------------- 1 | {"440608004":"荷城街道","440608106":"杨和镇","440608107":"明城镇","440608108":"更合镇","440608400":"高明监狱","440608401":"云勇林场","440608402":"对川茶场","440608403":"佛山监狱"} -------------------------------------------------------------------------------- /src/components/v-region/town/440703.json: -------------------------------------------------------------------------------- 1 | {"440703002":"白沙街道","440703005":"潮连街道","440703006":"环市街道","440703101":"棠下镇","440703102":"荷塘镇","440703103":"杜阮镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/440704.json: -------------------------------------------------------------------------------- 1 | {"440704001":"江南街道","440704004":"外海街道","440704005":"礼乐街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/440802.json: -------------------------------------------------------------------------------- 1 | {"440802001":"中华街道","440802002":"寸金街道","440802003":"民主街道","440802004":"中山街道","440802005":"沙湾街道","440802006":"调顺街道","440802007":"南桥街道","440802008":"北桥街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/440804.json: -------------------------------------------------------------------------------- 1 | {"440804001":"南调街道","440804002":"麻斜街道","440804100":"南三镇","440804101":"坡头镇","440804102":"乾塘镇","440804103":"龙头镇","440804104":"官渡镇","440804401":"湛江市坡头区官渡工业园"} -------------------------------------------------------------------------------- /src/components/v-region/town/440811.json: -------------------------------------------------------------------------------- 1 | {"440811070":"东山街道","440811071":"东简街道","440811072":"民安街道","440811100":"麻章镇","440811101":"太平镇","440811102":"湖光镇","440811173":"硇洲镇","440811450":"湖光农场"} -------------------------------------------------------------------------------- /src/components/v-region/town/441202.json: -------------------------------------------------------------------------------- 1 | {"441202001":"端州区城东街道","441202003":"端州区城西街道","441202005":"端州区黄岗街道","441202006":"端州区睦岗街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/441203.json: -------------------------------------------------------------------------------- 1 | {"441203001":"坑口街道","441203002":"桂城街道","441203003":"广利街道","441203101":"永安镇","441203102":"沙浦镇","441203103":"凤凰镇","441203104":"莲花镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/441402.json: -------------------------------------------------------------------------------- 1 | {"441402004":"江南街道","441402006":"金山街道","441402007":"西郊街道","441402102":"三角镇","441402103":"长沙镇","441402105":"城北镇","441402106":"西阳镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/441523.json: -------------------------------------------------------------------------------- 1 | {"441523100":"河田镇","441523101":"水唇镇","441523102":"河口镇","441523103":"新田镇","441523104":"上护镇","441523105":"螺溪镇","441523106":"东坑镇","441523107":"南万镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/441602.json: -------------------------------------------------------------------------------- 1 | {"441602001":"上城街道","441602002":"新江街道","441602003":"东埔街道","441602004":"源西街道","441602005":"高埔岗街道","441602006":"城东街道","441602100":"源南镇","441602101":"埔前镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/441821.json: -------------------------------------------------------------------------------- 1 | {"441821100":"石角镇","441821101":"水头镇","441821102":"汤塘镇","441821103":"龙山镇","441821104":"高岗镇","441821107":"迳头镇","441821400":"清远市羊角山林场","441821401":"广东佛冈观音山省级自然保护区"} -------------------------------------------------------------------------------- /src/components/v-region/town/441826.json: -------------------------------------------------------------------------------- 1 | {"441826100":"三江镇","441826101":"大麦山镇","441826102":"寨岗镇","441826105":"三排镇","441826106":"涡水镇","441826108":"大坪镇","441826109":"香坪镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/445302.json: -------------------------------------------------------------------------------- 1 | {"445302001":"云城街道","445302002":"高峰街道","445302003":"河口街道","445302004":"安塘街道","445302102":"腰古镇","445302103":"思劳镇","445302105":"前锋镇","445302106":"南盛镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/445303.json: -------------------------------------------------------------------------------- 1 | {"445303100":"六都镇","445303101":"高村镇","445303102":"白石镇","445303103":"镇安镇","445303104":"富林镇","445303105":"石城镇","445303106":"都杨镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450102.json: -------------------------------------------------------------------------------- 1 | {"450102001":"民生街道","450102002":"朝阳街道","450102003":"兴东街道","450102101":"三塘镇","450102102":"五塘镇","450102104":"昆仑镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450108.json: -------------------------------------------------------------------------------- 1 | {"450108001":"大沙田街道","450108002":"玉洞街道","450108100":"良庆镇","450108101":"那马镇","450108102":"那陈镇","450108103":"大塘镇","450108104":"南晓镇","450108452":"良庆经济开发区管委会"} -------------------------------------------------------------------------------- /src/components/v-region/town/450109.json: -------------------------------------------------------------------------------- 1 | {"450109100":"蒲庙镇","450109101":"那楼镇","450109102":"新江镇","450109103":"百济镇","450109104":"中和镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450202.json: -------------------------------------------------------------------------------- 1 | {"450202001":"城中街道","450202002":"公园街道","450202003":"中南街道","450202004":"沿江街道","450202005":"潭中街道","450202006":"河东街道","450202007":"静兰街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/450206.json: -------------------------------------------------------------------------------- 1 | {"450206100":"拉堡镇","450206102":"百朋镇","450206103":"成团镇","450206106":"三都镇","450206107":"里高镇","450206108":"进德镇","450206109":"穿山镇","450206110":"土博镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450223.json: -------------------------------------------------------------------------------- 1 | {"450223100":"鹿寨镇","450223102":"中渡镇","450223103":"寨沙镇","450223104":"平山镇","450223105":"黄冕镇","450223106":"四排镇","450223201":"江口乡","450223202":"导江乡","450223203":"拉沟乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/450302.json: -------------------------------------------------------------------------------- 1 | {"450302001":"秀峰街道","450302002":"丽君街道","450302003":"甲山街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/450303.json: -------------------------------------------------------------------------------- 1 | {"450303001":"叠彩街道","450303002":"北门街道","450303200":"大河乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/450304.json: -------------------------------------------------------------------------------- 1 | {"450304001":"南门街道","450304002":"象山街道","450304003":"平山街道","450304200":"二塘乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/450305.json: -------------------------------------------------------------------------------- 1 | {"450305001":"七星区街道","450305002":"东江街道","450305003":"穿山街道","450305004":"漓东街道","450305200":"朝阳乡","450305400":"桂林华侨旅游经济区管理委员会"} -------------------------------------------------------------------------------- /src/components/v-region/town/450311.json: -------------------------------------------------------------------------------- 1 | {"450311001":"良丰街道","450311100":"雁山镇","450311101":"柘木镇","450311200":"大埠乡","450311201":"草坪回族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/450321.json: -------------------------------------------------------------------------------- 1 | {"450321100":"阳朔镇","450321101":"白沙镇","450321102":"福利镇","450321103":"兴坪镇","450321104":"葡萄镇","450321105":"高田镇","450321200":"金宝乡","450321201":"普益乡","450321202":"杨堤乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/450326.json: -------------------------------------------------------------------------------- 1 | {"450326100":"永福镇","450326101":"罗锦镇","450326102":"百寿镇","450326103":"苏桥镇","450326104":"三皇镇","450326105":"堡里镇","450326202":"广福乡","450326204":"永安乡","450326205":"龙江乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/450329.json: -------------------------------------------------------------------------------- 1 | {"450329100":"资源镇","450329101":"中峰镇","450329102":"梅溪镇","450329202":"瓜里乡","450329203":"车田苗族乡","450329204":"两水苗族乡","450329205":"河口瑶族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/450332.json: -------------------------------------------------------------------------------- 1 | {"450332100":"恭城镇","450332101":"栗木镇","450332102":"莲花镇","450332103":"嘉会镇","450332104":"西岭镇","450332105":"平安镇","450332201":"三江乡","450332204":"观音乡","450332205":"龙虎乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/450403.json: -------------------------------------------------------------------------------- 1 | {"450403005":"角嘴街道","450403006":"东兴街道","450403007":"富民街道","450403008":"城南街道","450403009":"城北街道","450403101":"城东镇","450403103":"龙湖镇","450403104":"夏郢镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450405.json: -------------------------------------------------------------------------------- 1 | {"450405001":"大塘街道","450405002":"兴龙街道","450405003":"红岭街道","450405101":"长洲镇","450405102":"倒水镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450406.json: -------------------------------------------------------------------------------- 1 | {"450406100":"龙圩镇","450406101":"大坡镇","450406102":"广平镇","450406103":"新地镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450421.json: -------------------------------------------------------------------------------- 1 | {"450421100":"石桥镇","450421101":"沙头镇","450421102":"梨埠镇","450421105":"岭脚镇","450421108":"京南镇","450421109":"狮寨镇","450421110":"旺甫镇","450421112":"六堡镇","450421114":"木双镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450502.json: -------------------------------------------------------------------------------- 1 | {"450502001":"中街街道","450502002":"东街街道","450502003":"西街街道","450502004":"海角街道","450502005":"地角街道","450502006":"高德街道","450502007":"驿马街道","450502100":"涠洲镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450503.json: -------------------------------------------------------------------------------- 1 | {"450503100":"福成镇","450503101":"银滩镇","450503102":"平阳镇","450503103":"侨港镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450512.json: -------------------------------------------------------------------------------- 1 | {"450512100":"南康镇","450512101":"营盘镇","450512102":"兴港镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450602.json: -------------------------------------------------------------------------------- 1 | {"450602001":"渔州坪街道","450602002":"白沙万街道","450602003":"沙潭江街道","450602004":"王府街道","450602100":"企沙镇","450602101":"光坡镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450621.json: -------------------------------------------------------------------------------- 1 | {"450621100":"思阳镇","450621101":"在妙镇","450621102":"华兰镇","450621103":"叫安镇","450621203":"南屏瑶族乡","450621204":"平福乡","450621205":"那琴乡","450621206":"公正乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/450681.json: -------------------------------------------------------------------------------- 1 | {"450681100":"东兴镇","450681101":"江平镇","450681102":"马路镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/450802.json: -------------------------------------------------------------------------------- 1 | {"450802001":"贵城街道","450802002":"港城街道","450802101":"大圩镇","450802102":"庆丰镇","450802103":"根竹镇","450802104":"武乐镇","450802200":"奇石乡","450802201":"中里乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/450903.json: -------------------------------------------------------------------------------- 1 | {"450903107":"福绵镇","450903108":"成均镇","450903109":"樟木镇","450903110":"新桥镇","450903111":"沙田镇","450903112":"石和镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/451026.json: -------------------------------------------------------------------------------- 1 | {"451026100":"城厢镇","451026101":"平孟镇","451026102":"龙合镇","451026200":"坡荷乡","451026203":"德隆乡","451026204":"百合乡","451026205":"百南乡","451026207":"百省乡","451026208":"百都乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/451027.json: -------------------------------------------------------------------------------- 1 | {"451027100":"泗城镇","451027101":"逻楼镇","451027102":"加尤镇","451027103":"下甲镇","451027201":"伶站瑶族乡","451027202":"朝里瑶族乡","451027203":"沙里瑶族乡","451027205":"玉洪瑶族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/451028.json: -------------------------------------------------------------------------------- 1 | {"451028100":"同乐镇","451028101":"甘田镇","451028102":"新化镇","451028103":"花坪镇","451028201":"逻沙乡","451028203":"逻西乡","451028204":"幼平乡","451028205":"雅长乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/451030.json: -------------------------------------------------------------------------------- 1 | {"451030100":"八达镇","451030101":"古障镇","451030102":"那劳镇","451030103":"马蚌镇","451030203":"普合苗族乡","451030204":"西平乡","451030206":"那佐苗族乡","451030208":"足别瑶族苗族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/451381.json: -------------------------------------------------------------------------------- 1 | {"451381100":"岭南镇","451381101":"北泗镇","451381102":"河里镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/451481.json: -------------------------------------------------------------------------------- 1 | {"451481100":"凭祥镇","451481101":"友谊镇","451481102":"上石镇","451481103":"夏石镇","451481400":"广西凭祥综合保税区"} -------------------------------------------------------------------------------- /src/components/v-region/town/460105.json: -------------------------------------------------------------------------------- 1 | {"460105001":"秀英街道","460105002":"海秀街道","460105100":"长流镇","460105101":"西秀镇","460105102":"海秀镇","460105103":"石山镇","460105104":"永兴镇","460105105":"东山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/460201.json: -------------------------------------------------------------------------------- 1 | {"460201400":"国营南田农场","460201401":"国营南新农场","460201403":"国营立才农场","460201404":"国营南滨农场"} -------------------------------------------------------------------------------- /src/components/v-region/town/460202.json: -------------------------------------------------------------------------------- 1 | {"460202198":"海棠区直辖村级区划"} -------------------------------------------------------------------------------- /src/components/v-region/town/460203.json: -------------------------------------------------------------------------------- 1 | {"460203198":"吉阳区直辖村级区划"} -------------------------------------------------------------------------------- /src/components/v-region/town/460204.json: -------------------------------------------------------------------------------- 1 | {"460204198":"天涯区直辖村级区划"} -------------------------------------------------------------------------------- /src/components/v-region/town/460205.json: -------------------------------------------------------------------------------- 1 | {"460205198":"崖州区直辖村级区划"} -------------------------------------------------------------------------------- /src/components/v-region/town/460321.json: -------------------------------------------------------------------------------- 1 | {"460321451":"永兴","460321452":"永乐","460321453":"七连屿"} -------------------------------------------------------------------------------- /src/components/v-region/town/460322.json: -------------------------------------------------------------------------------- 1 | {"460322451":"永暑岛"} -------------------------------------------------------------------------------- /src/components/v-region/town/460323.json: -------------------------------------------------------------------------------- 1 | {"460323451":"中沙岛礁"} -------------------------------------------------------------------------------- /src/components/v-region/town/469001.json: -------------------------------------------------------------------------------- 1 | {"469001100":"通什镇","469001101":"南圣镇","469001102":"毛阳镇","469001103":"番阳镇","469001198":"县直辖村级区划","469001200":"畅好乡","469001201":"毛道乡","469001202":"水满乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/469022.json: -------------------------------------------------------------------------------- 1 | {"469022100":"屯城镇","469022101":"新兴镇","469022102":"枫木镇","469022103":"乌坡镇","469022104":"南吕镇","469022105":"南坤镇","469022106":"坡心镇","469022107":"西昌镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/500104.json: -------------------------------------------------------------------------------- 1 | {"500104001":"新山村街道","500104002":"跃进村街道","500104003":"九宫庙街道","500104004":"茄子溪街道","500104005":"春晖路街道","500104101":"八桥镇","500104102":"建胜镇","500104103":"跳磴镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/510113.json: -------------------------------------------------------------------------------- 1 | {"510113002":"大弯街道","510113003":"大同街道","510113102":"弥牟镇","510113104":"城厢镇","510113106":"姚渡镇","510113108":"清泉镇","510113111":"福洪镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/510118.json: -------------------------------------------------------------------------------- 1 | {"510118001":"五津街道","510118002":"普兴街道","510118003":"花桥街道","510118004":"花源街道","510118101":"兴义镇","510118102":"安西镇","510118103":"永商镇","510118104":"宝墩镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/510131.json: -------------------------------------------------------------------------------- 1 | {"510131001":"鹤山街道","510131002":"寿安街道","510131101":"大塘镇","510131103":"朝阳湖镇","510131104":"西来镇","510131105":"大兴镇","510131106":"甘溪镇","510131107":"成佳镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/510402.json: -------------------------------------------------------------------------------- 1 | {"510402001":"大渡口街道","510402002":"炳草岗街道","510402005":"弄弄坪街道","510402009":"瓜子坪街道","510402010":"东华街道","510402100":"银江镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/510403.json: -------------------------------------------------------------------------------- 1 | {"510403001":"清香坪街道","510403002":"玉泉街道","510403003":"河门口街道","510403004":"陶家渡街道","510403006":"大宝鼎街道","510403100":"格里坪镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/510604.json: -------------------------------------------------------------------------------- 1 | {"510604100":"万安镇","510604101":"鄢家镇","510604102":"金山镇","510604103":"略坪镇","510604106":"调元镇","510604107":"新盛镇","510604113":"白马关镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/511071.json: -------------------------------------------------------------------------------- 1 | {"511071006":"壕子口街道","511071101":"交通镇","511071103":"靖民镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/511112.json: -------------------------------------------------------------------------------- 1 | {"511112100":"竹根镇","511112101":"牛华镇","511112104":"金粟镇","511112105":"金山镇","511112107":"西坝镇","511112108":"冠英镇","511112109":"蔡金镇","511112110":"石麟镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/511113.json: -------------------------------------------------------------------------------- 1 | {"511113100":"永和镇","511113101":"金河镇","511113200":"和平彝族乡","511113201":"共安彝族乡","511113203":"永胜乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/511403.json: -------------------------------------------------------------------------------- 1 | {"511403001":"凤鸣街道","511403003":"青龙街道","511403004":"观音街道","511403006":"谢家街道","511403007":"江口街道","511403110":"锦江镇","511403118":"公义镇","511403121":"黄丰镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/511424.json: -------------------------------------------------------------------------------- 1 | {"511424102":"仁美镇","511424106":"杨场镇","511424108":"张场镇","511424109":"齐乐镇","511424204":"顺龙乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/511425.json: -------------------------------------------------------------------------------- 1 | {"511425001":"青竹街道","511425102":"汉阳镇","511425108":"瑞峰镇","511425110":"西龙镇","511425112":"高台镇","511425217":"白果乡","511425218":"罗波乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/511771.json: -------------------------------------------------------------------------------- 1 | {"511771001":"斌郎街道","511771002":"石板街道","511771100":"河市镇","511771101":"金垭镇","511771201":"幺塘乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/511826.json: -------------------------------------------------------------------------------- 1 | {"511826001":"芦阳街道","511826101":"飞仙关镇","511826102":"双石镇","511826103":"太平镇","511826104":"大川镇","511826105":"思延镇","511826106":"龙门镇","511826203":"宝盛乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/511827.json: -------------------------------------------------------------------------------- 1 | {"511827100":"穆坪镇","511827101":"灵关镇","511827102":"陇东镇","511827201":"蜂桶寨乡","511827202":"硗碛乡","511827205":"五龙乡","511827206":"大溪乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/511971.json: -------------------------------------------------------------------------------- 1 | {"511971007":"兴文街道","511971008":"奇章街道","511971009":"时新街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/513221.json: -------------------------------------------------------------------------------- 1 | {"513221100":"威州镇","513221102":"映秀镇","513221103":"卧龙镇","513221105":"水磨镇","513221106":"漩口镇","513221107":"三江镇","513221108":"耿达镇","513221109":"绵虒镇","513221111":"灞州镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/520622.json: -------------------------------------------------------------------------------- 1 | {"520622001":"皂角坪街道","520622002":"平溪街道","520622003":"大龙街道","520622004":"麻音塘街道","520622100":"新店镇","520622102":"朱家场镇","520622103":"田坪镇","520622200":"亚鱼乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/522623.json: -------------------------------------------------------------------------------- 1 | {"522623100":"城关镇","522623101":"杨柳塘镇","522623102":"双井镇","522623103":"牛大场镇","522623104":"马号镇","522623200":"白垛乡","522623201":"甘溪乡","522623203":"马溪乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/522635.json: -------------------------------------------------------------------------------- 1 | {"522635001":"杏山街道","522635002":"金竹街道","522635101":"谷硐镇","522635103":"宣威镇","522635105":"龙山镇","522635106":"贤昌镇","522635203":"坝芒布依族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/522636.json: -------------------------------------------------------------------------------- 1 | {"522636001":"金泉街道","522636100":"龙泉镇","522636101":"兴仁镇","522636102":"排调镇","522636103":"扬武镇","522636202":"雅灰乡","522636203":"南皋乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/522702.json: -------------------------------------------------------------------------------- 1 | {"522702001":"金山街道","522702002":"马场坪街道","522702102":"凤山镇","522702103":"陆坪镇","522702105":"龙昌镇","522702106":"牛场镇","522702107":"道坪镇","522702203":"仙桥乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/522722.json: -------------------------------------------------------------------------------- 1 | {"522722001":"玉屏街道","522722101":"朝阳镇","522722102":"茂兰镇","522722104":"甲良镇","522722105":"佳荣镇","522722107":"小七孔镇","522722211":"瑶山瑶族乡","522722212":"黎明关水族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/522723.json: -------------------------------------------------------------------------------- 1 | {"522723001":"金南街道","522723002":"宝山街道","522723102":"新巴镇","522723108":"德新镇","522723109":"盘江镇","522723110":"沿山镇","522723111":"昌明镇","522723112":"云雾镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/522729.json: -------------------------------------------------------------------------------- 1 | {"522729001":"长寨街道","522729101":"广顺镇","522729103":"摆所镇","522729104":"代化镇","522729105":"白云山镇","522729106":"鼓扬镇","522729209":"敦操乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/522730.json: -------------------------------------------------------------------------------- 1 | {"522730001":"冠山街道","522730100":"龙山镇","522730102":"醒狮镇","522730103":"谷脚镇","522730104":"湾滩河镇","522730105":"洗马镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/522732.json: -------------------------------------------------------------------------------- 1 | {"522732001":"三合街道","522732002":"凤羽街道","522732111":"大河镇","522732112":"普安镇","522732113":"都江镇","522732114":"中和镇","522732115":"周覃镇","522732116":"九阡镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/530115.json: -------------------------------------------------------------------------------- 1 | {"530115001":"昆阳街道","530115002":"宝峰街道","530115003":"晋城街道","530115101":"二街镇","530115102":"上蒜镇","530115103":"六街镇","530115200":"双河彝族乡","530115201":"夕阳彝族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530122.json: -------------------------------------------------------------------------------- 1 | {"530122001":"昆阳街道","530122102":"晋城镇","530122103":"二街镇","530122105":"上蒜镇","530122106":"六街镇","530122201":"双河彝族乡","530122202":"夕阳彝族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530124.json: -------------------------------------------------------------------------------- 1 | {"530124001":"永定街道","530124002":"大营街道","530124103":"罗免镇","530124104":"赤鹫镇","530124105":"东村镇","530124106":"款庄镇","530124107":"散旦镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/530126.json: -------------------------------------------------------------------------------- 1 | {"530126001":"鹿阜街道","530126002":"石林街道","530126003":"板桥街道","530126105":"西街口镇","530126106":"长湖镇","530126107":"圭山镇","530126201":"大可乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530127.json: -------------------------------------------------------------------------------- 1 | {"530127001":"嵩阳街道","530127002":"杨桥街道","530127102":"小街镇","530127103":"杨林镇","530127104":"牛栏江镇","530127401":"嵩明杨林经济技术开发区","530127402":"云南省嵩明职业教育基地"} -------------------------------------------------------------------------------- /src/components/v-region/town/530403.json: -------------------------------------------------------------------------------- 1 | {"530403001":"大街街道","530403101":"江城镇","530403102":"前卫镇","530403103":"九溪镇","530403104":"路居镇","530403201":"安化彝族乡","530403202":"雄关乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530421.json: -------------------------------------------------------------------------------- 1 | {"530421001":"大街街道","530421101":"江城镇","530421102":"前卫镇","530421103":"九溪镇","530421104":"路居镇","530421201":"安化彝族乡","530421202":"雄关乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530422.json: -------------------------------------------------------------------------------- 1 | {"530422001":"凤麓街道","530422002":"龙街街道","530422101":"右所镇","530422102":"阳宗镇","530422103":"海口镇","530422104":"九村镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/530424.json: -------------------------------------------------------------------------------- 1 | {"530424001":"宁州街道","530424102":"盘溪镇","530424103":"华溪镇","530424104":"青龙镇","530424201":"通红甸彝族苗族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530425.json: -------------------------------------------------------------------------------- 1 | {"530425001":"龙泉街道","530425002":"六街街道","530425100":"绿汁镇","530425201":"浦贝彝族乡","530425202":"十街彝族乡","530425203":"铜厂彝族乡","530425204":"小街乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530426.json: -------------------------------------------------------------------------------- 1 | {"530426001":"双江街道","530426002":"小街街道","530426103":"甸中镇","530426104":"化念镇","530426105":"塔甸镇","530426201":"岔河乡","530426202":"大龙潭乡","530426203":"富良棚乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530481.json: -------------------------------------------------------------------------------- 1 | {"530481001":"凤麓街道","530481002":"龙街街道","530481101":"右所镇","530481102":"阳宗镇","530481103":"海口镇","530481104":"九村镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/530626.json: -------------------------------------------------------------------------------- 1 | {"530626101":"中城镇","530626102":"南岸镇","530626103":"新滩镇","530626104":"会仪镇","530626105":"板栗镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/530630.json: -------------------------------------------------------------------------------- 1 | {"530630001":"云富街道","530630101":"向家坝镇","530630102":"太平镇","530630103":"两碗镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/530681.json: -------------------------------------------------------------------------------- 1 | {"530681001":"云富街道","530681101":"向家坝镇","530681102":"太平镇","530681103":"两碗镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/530723.json: -------------------------------------------------------------------------------- 1 | {"530723101":"中心镇","530723102":"荣将镇","530723103":"兴泉镇","530723104":"石龙坝镇","530723202":"新庄傈僳族傣族乡","530723203":"通达傈僳族乡","530723204":"永兴傈僳族乡","530723205":"船房傈僳族傣族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530802.json: -------------------------------------------------------------------------------- 1 | {"530802001":"思茅街道","530802102":"南屏镇","530802103":"倚象镇","530802104":"思茅港镇","530802105":"六顺镇","530802201":"龙潭彝族傣族乡","530802202":"云仙彝族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530821.json: -------------------------------------------------------------------------------- 1 | {"530821101":"宁洱镇","530821102":"磨黑镇","530821103":"德化镇","530821104":"同心镇","530821105":"勐先镇","530821106":"梅子镇","530821201":"德安乡","530821205":"普义乡","530821206":"黎明乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530825.json: -------------------------------------------------------------------------------- 1 | {"530825101":"恩乐镇","530825102":"按板镇","530825103":"勐大镇","530825104":"者东镇","530825105":"九甲镇","530825106":"古城镇","530825107":"振太镇","530825108":"和平镇","530825201":"田坝乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530826.json: -------------------------------------------------------------------------------- 1 | {"530826101":"勐烈镇","530826102":"整董镇","530826103":"曲水镇","530826104":"宝藏镇","530826105":"康平镇","530826202":"国庆乡","530826203":"嘉禾乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530827.json: -------------------------------------------------------------------------------- 1 | {"530827101":"娜允镇","530827102":"勐马镇","530827103":"芒信镇","530827104":"富岩镇","530827201":"景信乡","530827202":"公信乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530829.json: -------------------------------------------------------------------------------- 1 | {"530829101":"勐梭镇","530829102":"勐卡镇","530829103":"翁嘎科镇","530829104":"中课镇","530829105":"新厂镇","530829202":"力所拉祜族乡","530829203":"岳宋乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530924.json: -------------------------------------------------------------------------------- 1 | {"530924101":"凤尾镇","530924102":"勐捧镇","530924103":"南伞镇","530924201":"忙丙乡","530924202":"勐堆乡","530924204":"木场乡","530924205":"军赛佤族拉祜族傈僳族德昂族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/530925.json: -------------------------------------------------------------------------------- 1 | {"530925101":"勐勐镇","530925102":"勐库镇","530925201":"沙河乡","530925202":"大文乡","530925203":"忙糯乡","530925205":"邦丙乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532322.json: -------------------------------------------------------------------------------- 1 | {"532322101":"妥甸镇","532322102":"大庄镇","532322103":"法脿镇","532322104":"鄂嘉镇","532322105":"大麦地镇","532322201":"安龙堡乡","532322202":"爱尼山乡","532322203":"独田乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532323.json: -------------------------------------------------------------------------------- 1 | {"532323101":"共和镇","532323102":"新桥镇","532323103":"江坡镇","532323104":"凤屯镇","532323201":"蟠猫乡","532323202":"戌街乡","532323203":"安乐乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532327.json: -------------------------------------------------------------------------------- 1 | {"532327101":"永定镇","532327102":"宜就镇","532327103":"中和镇","532327201":"莲池乡","532327202":"维的乡","532327203":"猛虎乡","532327204":"永兴傣族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532502.json: -------------------------------------------------------------------------------- 1 | {"532502001":"乐白道街道","532502002":"灵泉街道","532502101":"中和营镇","532502102":"小龙潭镇","532502201":"大庄回族乡","532502202":"羊街乡","532502203":"碑格乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532523.json: -------------------------------------------------------------------------------- 1 | {"532523101":"玉屏镇","532523102":"新现镇","532523103":"和平镇","532523104":"白河镇","532523204":"白云乡","532523205":"新华乡","532523206":"湾塘乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532525.json: -------------------------------------------------------------------------------- 1 | {"532525101":"异龙镇","532525102":"宝秀镇","532525103":"坝心镇","532525104":"龙朋镇","532525105":"龙武镇","532525106":"哨冲镇","532525107":"牛街镇","532525201":"新城乡","532525202":"大桥乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532527.json: -------------------------------------------------------------------------------- 1 | {"532527101":"中枢镇","532527102":"金马镇","532527104":"旧城镇","532527106":"午街铺镇","532527107":"白水镇","532527201":"向阳乡","532527202":"三塘乡","532527203":"永宁乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532532.json: -------------------------------------------------------------------------------- 1 | {"532532101":"河口镇","532532102":"南溪镇","532532201":"老范寨乡","532532202":"桥头苗族壮族乡","532532203":"瑶山乡","532532204":"莲花滩乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532925.json: -------------------------------------------------------------------------------- 1 | {"532925101":"弥城镇","532925102":"红岩镇","532925103":"新街镇","532925104":"寅街镇","532925105":"苴力镇","532925106":"密祉镇","532925203":"德苴乡","532925204":"牛街彝族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532926.json: -------------------------------------------------------------------------------- 1 | {"532926101":"南涧镇","532926102":"小湾东镇","532926103":"公郎镇","532926104":"宝华镇","532926105":"无量山镇","532926201":"拥翠乡","532926202":"乐秋乡","532926203":"碧溪乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532928.json: -------------------------------------------------------------------------------- 1 | {"532928101":"博南镇","532928102":"杉阳镇","532928103":"龙街镇","532928201":"龙门乡","532928202":"北斗彝族乡","532928203":"厂街彝族乡","532928204":"水泄彝族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/532931.json: -------------------------------------------------------------------------------- 1 | {"532931101":"金华镇","532931102":"老君山镇","532931103":"甸南镇","532931104":"沙溪镇","532931105":"马登镇","532931201":"羊岑乡","532931202":"弥沙乡","532931203":"象图乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/533102.json: -------------------------------------------------------------------------------- 1 | {"533102001":"勐卯街道","533102102":"畹町镇","533102103":"弄岛镇","533102104":"姐相镇","533102202":"户育乡","533102203":"勐秀乡","533102400":"瑞丽农场管理委员会","533102401":"畹町农场管理委员会"} -------------------------------------------------------------------------------- /src/components/v-region/town/533323.json: -------------------------------------------------------------------------------- 1 | {"533323101":"上帕镇","533323201":"匹河怒族乡","533323202":"子里甲乡","533323203":"架科底乡","533323204":"鹿马登乡","533323205":"石月亮乡","533323206":"马吉乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/533324.json: -------------------------------------------------------------------------------- 1 | {"533324101":"茨开镇","533324102":"丙中洛镇","533324202":"捧当乡","533324203":"普拉底乡","533324204":"独龙江乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/533325.json: -------------------------------------------------------------------------------- 1 | {"533325101":"金顶镇","533325102":"啦井镇","533325103":"营盘镇","533325104":"通甸镇","533325201":"河西乡","533325202":"中排乡","533325203":"石登乡","533325204":"兔峨乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/533422.json: -------------------------------------------------------------------------------- 1 | {"533422101":"升平镇","533422102":"奔子栏镇","533422201":"佛山乡","533422202":"云岭乡","533422203":"燕门乡","533422204":"拖顶傈僳族乡","533422205":"霞若傈僳族乡","533422206":"羊拉乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540103.json: -------------------------------------------------------------------------------- 1 | {"540103001":"东嘎街道","540103002":"乃琼街道","540103003":"羊达街道","540103004":"柳梧街道","540103102":"古荣镇","540103103":"马镇","540103104":"德庆镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/540104.json: -------------------------------------------------------------------------------- 1 | {"540104100":"德庆镇","540104200":"塔杰乡","540104201":"章多乡","540104202":"唐嘎乡","540104203":"雪乡","540104204":"帮堆乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540122.json: -------------------------------------------------------------------------------- 1 | {"540122100":"当曲卡镇","540122101":"羊八井镇","540122200":"格达乡","540122201":"宁中乡","540122202":"公塘乡","540122203":"龙仁乡","540122204":"乌玛塘乡","540122205":"纳木湖乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540123.json: -------------------------------------------------------------------------------- 1 | {"540123100":"塔荣镇","540123101":"吞巴镇","540123200":"麻江乡","540123201":"普松乡","540123202":"卡如乡","540123203":"尼木乡","540123204":"续迈乡","540123205":"帕古乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540124.json: -------------------------------------------------------------------------------- 1 | {"540124100":"曲水镇","540124101":"达嘎镇","540124201":"才纳乡","540124202":"南木乡","540124203":"聂当乡","540124204":"茶巴拉乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540125.json: -------------------------------------------------------------------------------- 1 | {"540125100":"东嘎镇","540125101":"乃琼镇","540125200":"羊达乡","540125201":"古荣乡","540125202":"柳梧乡","540125203":"马乡","540125204":"德庆乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540126.json: -------------------------------------------------------------------------------- 1 | {"540126100":"德庆镇","540126200":"塔杰乡","540126201":"章多乡","540126202":"唐嘎乡","540126203":"雪乡","540126204":"帮堆乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540127.json: -------------------------------------------------------------------------------- 1 | {"540127100":"工卡镇","540127200":"扎雪乡","540127201":"门巴乡","540127202":"扎西岗乡","540127203":"日多乡","540127204":"尼玛江热乡","540127205":"甲玛乡","540127206":"唐加乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540171.json: -------------------------------------------------------------------------------- 1 | {"540171400":"藏青工业园乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540172.json: -------------------------------------------------------------------------------- 1 | {"540172400":"拉萨市经济技术开发区管委会"} -------------------------------------------------------------------------------- /src/components/v-region/town/540173.json: -------------------------------------------------------------------------------- 1 | {"540173400":"西藏文化旅游创意园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/540174.json: -------------------------------------------------------------------------------- 1 | {"540174400":"达孜县工业园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/540229.json: -------------------------------------------------------------------------------- 1 | {"540229100":"德吉林镇","540229200":"康雄乡","540229201":"普松乡","540229202":"帕当乡","540229203":"然巴乡","540229204":"查巴乡","540229205":"切娃乡","540229206":"姆乡","540229207":"仁布乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540233.json: -------------------------------------------------------------------------------- 1 | {"540233100":"下司马镇","540233101":"帕里镇","540233200":"下亚东乡","540233201":"上亚东乡","540233202":"康布乡","540233203":"堆纳乡","540233204":"吉汝乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540234.json: -------------------------------------------------------------------------------- 1 | {"540234100":"宗嘎镇","540234101":"吉隆镇","540234200":"差那乡","540234201":"折巴乡","540234202":"贡当乡","540234203":"萨勒乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540235.json: -------------------------------------------------------------------------------- 1 | {"540235100":"聂拉木镇","540235101":"樟木镇","540235200":"亚来乡","540235201":"锁作乡","540235202":"乃龙乡","540235203":"门布乡","540235204":"波绒乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540236.json: -------------------------------------------------------------------------------- 1 | {"540236100":"加加镇","540236200":"昌果乡","540236201":"雄如乡","540236202":"拉藏乡","540236203":"如角乡","540236204":"达吉岭乡","540236205":"旦嘎乡","540236206":"夏如乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540237.json: -------------------------------------------------------------------------------- 1 | {"540237100":"岗巴镇","540237200":"昌龙乡","540237201":"直克乡","540237202":"孔玛乡","540237203":"龙中乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540422.json: -------------------------------------------------------------------------------- 1 | {"540422100":"米林镇","540422101":"派镇","540422102":"卧龙镇","540422200":"丹娘乡","540422201":"南伊珞巴民族乡","540422202":"扎西绕登乡","540422203":"里龙乡","540422204":"羌纳乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540423.json: -------------------------------------------------------------------------------- 1 | {"540423100":"墨脱镇","540423200":"加热萨乡","540423201":"甘登乡","540423202":"达木珞巴民族乡","540423203":"帮辛乡","540423204":"格当乡","540423205":"德兴乡","540423206":"背崩乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540425.json: -------------------------------------------------------------------------------- 1 | {"540425100":"竹瓦根镇","540425101":"上察隅镇","540425102":"下察隅镇","540425200":"察瓦龙乡","540425201":"古拉乡","540425202":"古玉乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540426.json: -------------------------------------------------------------------------------- 1 | {"540426100":"朗镇","540426101":"仲达镇","540426102":"洞嘎镇","540426200":"拉多乡","540426201":"金东乡","540426202":"登木乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540502.json: -------------------------------------------------------------------------------- 1 | {"540502001":"泽当街道","540502101":"昌珠镇","540502200":"亚堆乡","540502201":"索珠乡","540502202":"多颇章乡","540502203":"结巴乡","540502204":"颇章乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540521.json: -------------------------------------------------------------------------------- 1 | {"540521100":"扎塘镇","540521101":"桑耶镇","540521200":"扎其乡","540521201":"阿扎乡","540521202":"吉汝乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540523.json: -------------------------------------------------------------------------------- 1 | {"540523100":"桑日镇","540523200":"增期乡","540523201":"白堆乡","540523202":"绒乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540524.json: -------------------------------------------------------------------------------- 1 | {"540524100":"琼结镇","540524200":"加麻乡","540524201":"下水乡","540524202":"拉玉乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540525.json: -------------------------------------------------------------------------------- 1 | {"540525100":"曲松镇","540525101":"罗布沙镇","540525200":"下江乡","540525201":"邱多江乡","540525202":"堆随乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540526.json: -------------------------------------------------------------------------------- 1 | {"540526100":"措美镇","540526101":"哲古镇","540526200":"乃西乡","540526201":"古堆乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540527.json: -------------------------------------------------------------------------------- 1 | {"540527100":"洛扎镇","540527101":"拉康镇","540527201":"扎日乡","540527202":"色乡","540527203":"生格乡","540527204":"边巴乡","540527205":"拉郊乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540528.json: -------------------------------------------------------------------------------- 1 | {"540528100":"加查镇","540528101":"安绕镇","540528200":"拉绥乡","540528201":"崔久乡","540528202":"坝乡","540528203":"冷达乡","540528204":"洛林乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540625.json: -------------------------------------------------------------------------------- 1 | {"540625100":"申扎镇","540625101":"雄梅镇","540625201":"下过乡","540625202":"卡乡","540625203":"巴扎乡","540625204":"塔尔玛乡","540625206":"买巴乡","540625207":"马跃乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/540630.json: -------------------------------------------------------------------------------- 1 | {"540630101":"措折罗玛镇","540630200":"协德乡","540630201":"雅曲乡","540630202":"嘎措乡","540630203":"措折强玛乡","540630204":"多玛乡","540630205":"巴岭乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542221.json: -------------------------------------------------------------------------------- 1 | {"542221100":"泽当镇","542221101":"昌珠镇","542221200":"颇章乡","542221201":"结巴乡","542221202":"多颇章乡","542221203":"索珠乡","542221204":"亚堆乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542222.json: -------------------------------------------------------------------------------- 1 | {"542222100":"扎唐镇","542222101":"桑耶镇","542222200":"阿扎乡","542222201":"扎其乡","542222202":"吉汝乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542223.json: -------------------------------------------------------------------------------- 1 | {"542223100":"吉雄镇","542223101":"岗堆镇","542223102":"甲竹林镇","542223103":"江塘镇","542223104":"杰德秀镇","542223200":"朗杰学乡","542223201":"昌果乡","542223202":"东拉乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542224.json: -------------------------------------------------------------------------------- 1 | {"542224100":"桑日镇","542224200":"增期乡","542224201":"白堆乡","542224202":"绒乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542225.json: -------------------------------------------------------------------------------- 1 | {"542225100":"琼结镇","542225200":"拉玉乡","542225201":"下水乡","542225202":"加麻乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542226.json: -------------------------------------------------------------------------------- 1 | {"542226100":"曲松镇","542226101":"罗布沙镇","542226200":"邱多江乡","542226201":"堆随乡","542226202":"下江乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542227.json: -------------------------------------------------------------------------------- 1 | {"542227100":"措美镇","542227101":"哲古镇","542227200":"乃西乡","542227201":"古堆乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542228.json: -------------------------------------------------------------------------------- 1 | {"542228100":"洛扎镇","542228101":"拉康镇","542228200":"生格乡","542228201":"边巴乡","542228202":"扎日乡","542228203":"色乡","542228204":"拉郊乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542229.json: -------------------------------------------------------------------------------- 1 | {"542229100":"加查镇","542229101":"安绕镇","542229200":"拉绥乡","542229201":"崔久乡","542229202":"坝乡","542229203":"冷达乡","542229204":"洛林乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542426.json: -------------------------------------------------------------------------------- 1 | {"542426100":"申扎镇","542426101":"雄梅镇","542426200":"马跃乡","542426201":"买巴乡","542426202":"塔尔玛乡","542426203":"下过乡","542426204":"卡乡","542426205":"巴扎乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542431.json: -------------------------------------------------------------------------------- 1 | {"542431100":"措折罗玛镇","542431200":"协德乡","542431201":"雅曲乡","542431202":"嘎措乡","542431203":"措折强玛乡","542431204":"多玛乡","542431205":"巴岭乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542521.json: -------------------------------------------------------------------------------- 1 | {"542521100":"普兰镇","542521200":"巴嘎乡","542521201":"霍尔乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542522.json: -------------------------------------------------------------------------------- 1 | {"542522100":"托林镇","542522200":"萨让乡","542522201":"达巴乡","542522202":"底雅乡","542522203":"香孜乡","542522204":"曲松乡","542522205":"楚鲁松杰乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542523.json: -------------------------------------------------------------------------------- 1 | {"542523100":"狮泉河镇","542523200":"昆莎乡","542523201":"左左乡","542523202":"门士乡","542523203":"扎西岗乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542524.json: -------------------------------------------------------------------------------- 1 | {"542524100":"日土镇","542524200":"热帮乡","542524201":"日松乡","542524202":"东汝乡","542524203":"多玛乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542525.json: -------------------------------------------------------------------------------- 1 | {"542525100":"革吉镇","542525200":"雄巴乡","542525201":"亚热乡","542525202":"盐湖乡","542525203":"文布当桑乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542526.json: -------------------------------------------------------------------------------- 1 | {"542526100":"改则镇","542526200":"物玛乡","542526201":"先遣乡","542526202":"麻米乡","542526203":"洞措乡","542526204":"古姆乡","542526205":"察布乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/542527.json: -------------------------------------------------------------------------------- 1 | {"542527100":"措勤镇","542527200":"磁石乡","542527201":"曲洛乡","542527202":"江让乡","542527203":"达雄乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/610103.json: -------------------------------------------------------------------------------- 1 | {"610103001":"南院门街道","610103002":"柏树林街道","610103003":"长乐坊街道","610103004":"东关南街街道","610103005":"太乙路街道","610103006":"文艺路街道","610103007":"长安路街道","610103008":"张家村街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/610114.json: -------------------------------------------------------------------------------- 1 | {"610114001":"凤凰路街道","610114002":"新华路街道","610114003":"振兴街道","610114004":"新兴街道","610114005":"北屯街道","610114006":"武屯街道","610114007":"关山街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/610117.json: -------------------------------------------------------------------------------- 1 | {"610117001":"鹿苑街道","610117002":"泾渭街道","610117003":"崇皇街道","610117004":"姬家街道","610117005":"耿镇街道","610117006":"张卜街道","610117007":"通远街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/610202.json: -------------------------------------------------------------------------------- 1 | {"610202001":"七一路街道","610202002":"红旗街街道","610202003":"桃园街道","610202004":"青年路街道","610202005":"王家河街道","610202006":"王益街道","610202100":"黄堡镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610222.json: -------------------------------------------------------------------------------- 1 | {"610222001":"宜阳街道","610222101":"彭镇","610222102":"五里镇","610222103":"太安镇","610222104":"棋盘镇","610222105":"尧生镇","610222106":"哭泉镇","610222201":"云梦乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/610324.json: -------------------------------------------------------------------------------- 1 | {"610324001":"城关街道","610324101":"天度镇","610324102":"午井镇","610324103":"绛帐镇","610324104":"段家镇","610324105":"杏林镇","610324106":"召公镇","610324107":"法门镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610328.json: -------------------------------------------------------------------------------- 1 | {"610328100":"城关镇","610328101":"崔家头镇","610328102":"南寨镇","610328103":"张家塬镇","610328104":"水沟镇","610328105":"草碧镇","610328107":"高崖镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610329.json: -------------------------------------------------------------------------------- 1 | {"610329100":"九成宫镇","610329101":"崔木镇","610329102":"招贤镇","610329103":"两亭镇","610329105":"常丰镇","610329106":"丈八镇","610329107":"酒房镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610331.json: -------------------------------------------------------------------------------- 1 | {"610331100":"咀头镇","610331101":"桃川镇","610331102":"鹦鸽镇","610331103":"靖口镇","610331104":"太白河镇","610331105":"黄柏塬镇","610331106":"王家堎镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610403.json: -------------------------------------------------------------------------------- 1 | {"610403001":"杨陵街道","610403002":"李台街道","610403003":"大寨街道","610403100":"五泉镇","610403102":"揉谷镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610426.json: -------------------------------------------------------------------------------- 1 | {"610426001":"监军街道","610426101":"店头镇","610426102":"常宁镇","610426104":"甘井镇","610426105":"马坊镇","610426108":"渠子镇","610426110":"永平镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610428.json: -------------------------------------------------------------------------------- 1 | {"610428001":"昭仁街道","610428101":"相公镇","610428102":"巨家镇","610428103":"丁家镇","610428104":"洪家镇","610428105":"亭口镇","610428106":"彭公镇","610428108":"枣园镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610430.json: -------------------------------------------------------------------------------- 1 | {"610430001":"城关街道","610430101":"官庄镇","610430103":"方里镇","610430104":"润镇","610430105":"车坞镇","610430106":"铁王镇","610430107":"石桥镇","610430109":"十里塬镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610431.json: -------------------------------------------------------------------------------- 1 | {"610431001":"普集街道","610431101":"苏坊镇","610431102":"武功镇","610431103":"游凤镇","610431104":"贞元镇","610431105":"长宁镇","610431106":"小村镇","610431107":"大庄镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610522.json: -------------------------------------------------------------------------------- 1 | {"610522001":"城关街道","610522101":"秦东镇","610522102":"太要镇","610522103":"桐峪镇","610522104":"代字营镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610527.json: -------------------------------------------------------------------------------- 1 | {"610527001":"城关街道","610527102":"尧禾镇","610527103":"杜康镇","610527104":"西固镇","610527105":"林皋镇","610527106":"史官镇","610527107":"北塬镇","610527109":"雷牙镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610581.json: -------------------------------------------------------------------------------- 1 | {"610581001":"新城街道","610581002":"金城街道","610581100":"龙门镇","610581101":"桑树坪镇","610581103":"芝川镇","610581104":"西庄镇","610581106":"芝阳镇","610581107":"板桥镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610582.json: -------------------------------------------------------------------------------- 1 | {"610582001":"太华路街道","610582002":"岳庙街道","610582100":"孟塬镇","610582103":"华西镇","610582104":"罗敷镇","610582105":"华山镇","610582400":"国营陕西华山企业公司"} -------------------------------------------------------------------------------- /src/components/v-region/town/610621.json: -------------------------------------------------------------------------------- 1 | {"610621001":"七里村街道","610621101":"黑家堡镇","610621102":"郑庄镇","610621103":"张家滩镇","610621104":"交口镇","610621106":"雷赤镇","610621107":"罗子山镇","610621108":"安沟镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610622.json: -------------------------------------------------------------------------------- 1 | {"610622001":"大禹街道","610622101":"永坪镇","610622102":"延水关镇","610622103":"文安驿镇","610622104":"杨家圪台镇","610622105":"贾家坪镇","610622107":"关庄镇","610622108":"乾坤湾镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610625.json: -------------------------------------------------------------------------------- 1 | {"610625001":"保安街道","610625101":"杏河镇","610625102":"顺宁镇","610625103":"旦八镇","610625104":"金丁镇","610625105":"永宁镇","610625106":"义正镇","610625107":"双河镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610627.json: -------------------------------------------------------------------------------- 1 | {"610627001":"美水街道","610627101":"下寺湾镇","610627102":"道镇","610627103":"石门镇","610627200":"桥镇乡","610627203":"劳山乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/610628.json: -------------------------------------------------------------------------------- 1 | {"610628001":"茶坊街道","610628101":"羊泉镇","610628102":"张村驿镇","610628103":"张家湾镇","610628104":"直罗镇","610628106":"牛武镇","610628109":"寺仙镇","610628204":"北道德乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/610630.json: -------------------------------------------------------------------------------- 1 | {"610630001":"丹州街道","610630101":"秋林镇","610630102":"云岩镇","610630104":"集义镇","610630105":"壶口镇","610630200":"英旺乡","610630201":"交里乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/610631.json: -------------------------------------------------------------------------------- 1 | {"610631100":"石堡镇","610631101":"白马滩镇","610631102":"瓦子街镇","610631106":"界头庙镇","610631107":"三岔镇","610631205":"圪台乡","610631206":"崾崄乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/610632.json: -------------------------------------------------------------------------------- 1 | {"610632001":"桥山街道","610632101":"店头镇","610632102":"隆坊镇","610632103":"田庄镇","610632104":"阿党镇","610632105":"双龙镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610729.json: -------------------------------------------------------------------------------- 1 | {"610729001":"紫柏街道","610729101":"马道镇","610729102":"武关驿镇","610729103":"留侯镇","610729104":"江口镇","610729105":"玉皇庙镇","610729106":"火烧店镇","610729107":"青桥驿镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610730.json: -------------------------------------------------------------------------------- 1 | {"610730001":"袁家庄街道","610730101":"陈家坝镇","610730102":"大河坝镇","610730103":"西岔河镇","610730104":"岳坝镇","610730105":"长角坝镇","610730106":"石墩河镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610829.json: -------------------------------------------------------------------------------- 1 | {"610829001":"宋家川街道","610829101":"辛家沟镇","610829102":"郭家沟镇","610829103":"寇家塬镇","610829104":"岔上镇","610829105":"张家山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/610927.json: -------------------------------------------------------------------------------- 1 | {"610927100":"城关镇","610927101":"曾家镇","610927102":"牛头店镇","610927103":"钟宝镇","610927105":"上竹镇","610927106":"华坪镇","610927108":"曙坪镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/620105.json: -------------------------------------------------------------------------------- 1 | {"620105001":"培黎街道","620105002":"西路街道","620105003":"沙井驿街道","620105004":"十里店街道","620105005":"孔家崖街道","620105006":"银滩路街道","620105007":"刘家堡街道","620105008":"安宁堡街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/620111.json: -------------------------------------------------------------------------------- 1 | {"620111001":"窑街街道","620111003":"矿区街道","620111004":"华龙街道","620111101":"海石湾镇","620111102":"花庄镇","620111103":"平安镇","620111104":"红古镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/620122.json: -------------------------------------------------------------------------------- 1 | {"620122100":"石洞镇","620122102":"忠和镇","620122103":"什川镇","620122104":"九合镇","620122105":"水阜镇","620122106":"黑石镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/620171.json: -------------------------------------------------------------------------------- 1 | {"620171101":"中川镇","620171102":"秦川镇","620171103":"西岔镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/620201.json: -------------------------------------------------------------------------------- 1 | {"620201001":"雄关街道","620201002":"钢城街道","620201100":"新城镇","620201101":"峪泉镇","620201102":"文殊镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/620302.json: -------------------------------------------------------------------------------- 1 | {"620302001":"滨河路街道","620302002":"桂林路街道","620302003":"北京路街道","620302004":"金川路街道","620302005":"新华路街道","620302006":"广州路街道","620302100":"宁远堡镇","620302101":"双湾镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/620823.json: -------------------------------------------------------------------------------- 1 | {"620823001":"城市社区管理委员会街道","620823100":"锦屏镇","620823101":"新窑镇","620823102":"柏树镇","620823103":"黄寨镇","620823202":"黄花乡","620823203":"木林乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/620923.json: -------------------------------------------------------------------------------- 1 | {"620923100":"党城湾镇","620923101":"马鬃山镇","620923201":"盐池湾乡","620923202":"石包城乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/620924.json: -------------------------------------------------------------------------------- 1 | {"620924100":"红柳湾镇","620924200":"阿克旗乡","620924203":"阿勒腾乡","620924204":"阿伊纳乡","620924400":"阿克塞县工业园区管理委员会"} -------------------------------------------------------------------------------- /src/components/v-region/town/623026.json: -------------------------------------------------------------------------------- 1 | {"623026100":"郎木寺镇","623026101":"玛艾镇","623026102":"西仓镇","623026103":"尕海镇","623026104":"双岔镇","623026202":"拉仁关乡","623026204":"阿拉乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/630104.json: -------------------------------------------------------------------------------- 1 | {"630104001":"西关大街街道","630104002":"古城台街道","630104003":"虎台街道","630104004":"胜利路街道","630104005":"兴海路街道","630104006":"文汇路街道","630104007":"通海路街道","630104100":"彭家寨镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/630105.json: -------------------------------------------------------------------------------- 1 | {"630105001":"朝阳街道","630105002":"小桥大街街道","630105003":"马坊街道","630105004":"火车西站街道","630105100":"大堡子镇","630105101":"廿里铺镇","630105400":"生物科技产业园"} -------------------------------------------------------------------------------- /src/components/v-region/town/632222.json: -------------------------------------------------------------------------------- 1 | {"632222100":"八宝镇","632222101":"峨堡镇","632222102":"默勒镇","632222200":"扎麻什乡","632222201":"阿柔乡","632222202":"野牛沟乡","632222203":"央隆乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632223.json: -------------------------------------------------------------------------------- 1 | {"632223100":"三角城镇","632223101":"西海镇","632223200":"金滩乡","632223201":"哈勒景蒙古族乡","632223202":"青海湖乡","632223203":"甘子河乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632224.json: -------------------------------------------------------------------------------- 1 | {"632224100":"沙柳河镇","632224101":"哈尔盖镇","632224200":"伊克乌兰乡","632224201":"泉吉乡","632224202":"吉尔孟乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632323.json: -------------------------------------------------------------------------------- 1 | {"632323100":"泽曲镇","632323101":"麦秀镇","632323102":"和日镇","632323103":"宁秀镇","632323202":"王加乡","632323203":"西卜沙乡","632323204":"多禾茂乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632324.json: -------------------------------------------------------------------------------- 1 | {"632324100":"优干宁镇","632324101":"宁木特镇","632324201":"多松乡","632324202":"赛尔龙乡","632324203":"柯生乡","632324204":"托叶玛乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632522.json: -------------------------------------------------------------------------------- 1 | {"632522100":"尕巴松多镇","632522101":"唐谷镇","632522200":"巴沟乡","632522201":"秀麻乡","632522202":"河北乡","632522400":"省牧草良种繁殖场"} -------------------------------------------------------------------------------- /src/components/v-region/town/632523.json: -------------------------------------------------------------------------------- 1 | {"632523100":"河阴镇","632523101":"河西镇","632523102":"拉西瓦镇","632523103":"常牧镇","632523200":"河东乡","632523201":"新街回族乡","632523202":"尕让乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632524.json: -------------------------------------------------------------------------------- 1 | {"632524100":"子科滩镇","632524101":"河卡镇","632524102":"曲什安镇","632524200":"温泉乡","632524201":"龙藏乡","632524202":"中铁乡","632524203":"唐乃亥乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632525.json: -------------------------------------------------------------------------------- 1 | {"632525100":"茫曲镇","632525101":"过马营镇","632525102":"森多镇","632525200":"沙沟乡","632525202":"茫拉乡","632525203":"塔秀乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632621.json: -------------------------------------------------------------------------------- 1 | {"632621100":"大武镇","632621101":"拉加镇","632621200":"大武乡","632621201":"东倾沟乡","632621202":"雪山乡","632621203":"下大武乡","632621204":"优云乡","632621205":"当洛乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632623.json: -------------------------------------------------------------------------------- 1 | {"632623100":"柯曲镇","632623200":"上贡麻乡","632623201":"下贡麻乡","632623202":"岗龙乡","632623203":"青珍乡","632623204":"江千乡","632623205":"下藏科乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632625.json: -------------------------------------------------------------------------------- 1 | {"632625100":"智青松多镇","632625200":"门堂乡","632625201":"哇赛乡","632625202":"索呼日麻乡","632625203":"白玉乡","632625204":"哇尔依乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632626.json: -------------------------------------------------------------------------------- 1 | {"632626100":"玛查理镇","632626101":"花石峡镇","632626200":"黄河乡","632626201":"扎陵湖乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632722.json: -------------------------------------------------------------------------------- 1 | {"632722100":"萨呼腾镇","632722200":"昂赛乡","632722201":"结多乡","632722202":"阿多乡","632722203":"苏鲁乡","632722204":"查旦乡","632722205":"莫云乡","632722206":"扎青乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632723.json: -------------------------------------------------------------------------------- 1 | {"632723100":"称文镇","632723101":"歇武镇","632723102":"扎朵镇","632723103":"清水河镇","632723104":"珍秦镇","632723200":"尕朵乡","632723201":"拉布乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632724.json: -------------------------------------------------------------------------------- 1 | {"632724100":"加吉博洛格镇","632724200":"索加乡","632724201":"扎河乡","632724202":"多彩乡","632724203":"治渠乡","632724204":"立新乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632726.json: -------------------------------------------------------------------------------- 1 | {"632726100":"约改镇","632726200":"巴干乡","632726201":"秋智乡","632726202":"叶格乡","632726203":"麻多乡","632726204":"曲麻河乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632802.json: -------------------------------------------------------------------------------- 1 | {"632802001":"河西街道","632802002":"河东街道","632802003":"火车站街道","632802100":"尕海镇","632802101":"怀头他拉镇","632802102":"柯鲁柯镇","632802200":"蓄集乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632803.json: -------------------------------------------------------------------------------- 1 | {"632803100":"花土沟镇","632803101":"茫崖镇","632803102":"冷湖镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/632821.json: -------------------------------------------------------------------------------- 1 | {"632821100":"希里沟镇","632821101":"茶卡镇","632821102":"柯柯镇","632821103":"铜普镇","632821500":"海西州莫河畜牧场"} -------------------------------------------------------------------------------- /src/components/v-region/town/632822.json: -------------------------------------------------------------------------------- 1 | {"632822100":"察汉乌苏镇","632822101":"香日德镇","632822102":"夏日哈镇","632822103":"宗加镇","632822200":"热水乡","632822201":"香加乡","632822202":"沟里乡","632822203":"巴隆乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/632857.json: -------------------------------------------------------------------------------- 1 | {"632857100":"柴旦镇","632857101":"锡铁山镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/632858.json: -------------------------------------------------------------------------------- 1 | {"632858100":"冷湖镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/632859.json: -------------------------------------------------------------------------------- 1 | {"632859100":"花土沟镇","632859101":"茫崖镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/640303.json: -------------------------------------------------------------------------------- 1 | {"640303001":"新民街道","640303100":"红寺堡镇","640303101":"太阳山镇","640303200":"大河乡","640303201":"新庄集乡","640303202":"柳泉乡","640303400":"工业园区管委会"} -------------------------------------------------------------------------------- /src/components/v-region/town/640424.json: -------------------------------------------------------------------------------- 1 | {"640424100":"香水镇","640424101":"泾河源镇","640424102":"六盘山镇","640424200":"新民乡","640424201":"兴盛乡","640424202":"黄花乡","640424203":"大湾乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/650107.json: -------------------------------------------------------------------------------- 1 | {"650107001":"艾维尔沟街道","650107004":"乌拉泊街道","650107006":"达坂城区盐湖街道","650107100":"达坂城镇","650107200":"东沟乡","650107201":"西沟乡","650107202":"阿克苏乡","650107400":"柴窝堡管委会"} -------------------------------------------------------------------------------- /src/components/v-region/town/650121.json: -------------------------------------------------------------------------------- 1 | {"650121001":"清水泉片区管委会街道","650121002":"谢家沟片区管委会街道","650121100":"水西沟镇","650121102":"板房沟镇","650121103":"永丰镇","650121207":"萨尔达坂乡","650121208":"甘沟乡","650121213":"托里乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/650172.json: -------------------------------------------------------------------------------- 1 | {"650172001":"高新街街道","650172002":"长春中路街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/650202.json: -------------------------------------------------------------------------------- 1 | {"650202001":"金山路街道","650202002":"西宁路街道","650202003":"新北区街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/650204.json: -------------------------------------------------------------------------------- 1 | {"650204001":"中兴路街道","650204002":"三平路街道","650204003":"金龙镇街道"} -------------------------------------------------------------------------------- /src/components/v-region/town/650205.json: -------------------------------------------------------------------------------- 1 | {"650205001":"柳树街街道","650205100":"乌尔禾镇","650205509":"兵团一三七团乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/650422.json: -------------------------------------------------------------------------------- 1 | {"650422100":"托克逊镇","650422101":"库米什镇","650422102":"克尔碱镇","650422103":"阿乐惠镇","650422104":"伊拉湖镇","650422105":"夏镇","650422106":"博斯坦镇","650422201":"郭勒布依乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/652223.json: -------------------------------------------------------------------------------- 1 | {"652223100":"伊吾镇","652223101":"淖毛湖镇","652223102":"盐池镇","652223201":"苇子峡乡","652223202":"下马崖乡","652223204":"吐葫芦乡","652223205":"前山哈萨克民族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/652702.json: -------------------------------------------------------------------------------- 1 | {"652702001":"阿拉套街道","652702100":"艾比湖镇"} -------------------------------------------------------------------------------- /src/components/v-region/town/652824.json: -------------------------------------------------------------------------------- 1 | {"652824100":"若羌镇","652824101":"依吞布拉克镇","652824102":"罗布泊镇","652824103":"瓦石峡镇","652824104":"铁干里克镇","652824201":"吾塔木乡","652824203":"铁木里克乡","652824204":"祁曼塔克乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/652829.json: -------------------------------------------------------------------------------- 1 | {"652829100":"博湖镇","652829101":"本布图镇","652829200":"塔温觉肯乡","652829202":"乌兰再格森乡","652829203":"才坎诺尔乡","652829204":"查干诺尔乡","652829205":"博斯腾湖乡","652829501":"兵团二十五团"} -------------------------------------------------------------------------------- /src/components/v-region/town/652871.json: -------------------------------------------------------------------------------- 1 | {"652871400":"开发区乡级单位"} -------------------------------------------------------------------------------- /src/components/v-region/town/652929.json: -------------------------------------------------------------------------------- 1 | {"652929100":"柯坪镇","652929101":"盖孜力克镇","652929102":"阿恰勒镇","652929201":"玉尔其乡","652929203":"启浪乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/653023.json: -------------------------------------------------------------------------------- 1 | {"653023100":"阿合奇镇","653023200":"库兰萨日克乡","653023201":"色帕巴依乡","653023202":"苏木塔什乡","653023203":"哈拉奇乡","653023204":"哈拉布拉克乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/653225.json: -------------------------------------------------------------------------------- 1 | {"653225100":"策勒镇","653225101":"固拉合玛镇","653225200":"策勒乡","653225202":"达玛沟乡","653225203":"恰哈乡","653225204":"乌鲁克萨依乡","653225205":"奴尔乡","653225206":"博斯坦乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/653227.json: -------------------------------------------------------------------------------- 1 | {"653227100":"尼雅镇","653227200":"尼雅乡","653227201":"若克雅乡","653227202":"萨勒吾则克乡","653227203":"叶亦克乡","653227204":"安迪尔乡","653227205":"亚瓦通古孜乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/654004.json: -------------------------------------------------------------------------------- 1 | {"654004001":"卡拉苏街道","654004002":"亚欧东路街道","654004003":"亚欧西路街道","654004004":"工业园区街道","654004200":"伊车嘎善乡","654004505":"兵团六十一团","654004506":"兵团六十二团"} -------------------------------------------------------------------------------- /src/components/v-region/town/654225.json: -------------------------------------------------------------------------------- 1 | {"654225100":"哈拉布拉镇","654225101":"吉也克镇","654225200":"哈拉布拉乡","654225201":"新地乡","654225202":"阿勒腾也木勒乡","654225204":"江格斯乡","654225501":"兵团农九师一六一团"} -------------------------------------------------------------------------------- /src/components/v-region/town/654321.json: -------------------------------------------------------------------------------- 1 | {"654321100":"布尔津镇","654321101":"冲乎尔镇","654321102":"窝依莫克镇","654321103":"阔斯特克镇","654321201":"杜来提乡","654321204":"也格孜托别乡","654321205":"禾木哈纳斯蒙古族乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/654324.json: -------------------------------------------------------------------------------- 1 | {"654324100":"阿克齐镇","654324101":"萨尔布拉克镇","654324102":"齐巴尔镇","654324103":"库勒拜镇","654324200":"萨尔塔木乡","654324201":"加依勒玛乡","654324204":"铁热克提乡","654324500":"兵团一八五团"} -------------------------------------------------------------------------------- /src/components/v-region/town/654325.json: -------------------------------------------------------------------------------- 1 | {"654325100":"青河镇","654325101":"塔克什肯镇","654325102":"阿热勒托别镇","654325103":"阿格达拉镇","654325104":"阿热勒镇","654325202":"萨尔托海乡","654325203":"查干郭勒乡","654325204":"阿尕什敖包乡"} -------------------------------------------------------------------------------- /src/components/v-region/town/654326.json: -------------------------------------------------------------------------------- 1 | {"654326100":"托普铁热克镇","654326101":"吉木乃镇","654326102":"喀尔交镇","654326103":"乌拉斯特镇","654326201":"托斯特乡","654326202":"恰勒什海乡","654326204":"别斯铁热克乡","654326500":"兵团一八六团"} -------------------------------------------------------------------------------- /src/components/v-region/town/659001.json: -------------------------------------------------------------------------------- 1 | {"659001001":"新城街道","659001002":"向阳街道","659001003":"红山街道","659001004":"老街街道","659001005":"东城街道","659001100":"北泉镇","659001101":"石河子镇","659001500":"兵团一五二团"} -------------------------------------------------------------------------------- /src/components/v-region/town/659004.json: -------------------------------------------------------------------------------- 1 | {"659004001":"军垦路街道","659004002":"青湖路街道","659004003":"人民路街道","659004100":"梧桐镇","659004101":"蔡家湖镇","659004500":"兵团一零一团","659004501":"五家渠经济技术开区"} -------------------------------------------------------------------------------- /src/components/v-region/town/659005.json: -------------------------------------------------------------------------------- 1 | {"659005100":"双渠镇","659005101":"丰庆镇","659005102":"海川镇","659005400":"北屯市核心区"} -------------------------------------------------------------------------------- /src/components/v-region/town/659007.json: -------------------------------------------------------------------------------- 1 | {"659007100":"双桥镇","659007101":"石峪镇","659007102":"博河镇","659007103":"双乐镇","659007400":"双河市核心区","659007500":"兵团八十九团"} -------------------------------------------------------------------------------- /src/components/v-region/town/659008.json: -------------------------------------------------------------------------------- 1 | {"659008100":"榆树庄镇","659008101":"苇湖镇","659008102":"长丰镇","659008103":"金梁镇","659008104":"金屯镇","659008400":"可克达拉市核心区"} -------------------------------------------------------------------------------- /src/components/v-region/town/659009.json: -------------------------------------------------------------------------------- 1 | {"659009100":"老兵镇","659009101":"昆泉镇","659009102":"昆牧镇","659009103":"玉泉镇","659009400":"昆玉市核心区","659009500":"兵团二二四团","659009501":"北京皮墨工业园区"} -------------------------------------------------------------------------------- /src/components/v-region/town/659010.json: -------------------------------------------------------------------------------- 1 | {"659010400":"胡杨河市核心区","659010500":"兵团一二五团","659010501":"兵团一二八团","659010502":"兵团一二九团","659010503":"兵团一三零团"} -------------------------------------------------------------------------------- /src/components/v-region/town/659011.json: -------------------------------------------------------------------------------- 1 | {"659011400":"新星市核心区","659011500":"兵团红星一场","659011501":"红星四场","659011502":"黄田农场"} -------------------------------------------------------------------------------- /src/components/v-tablegrid/constants.js: -------------------------------------------------------------------------------- 1 | const con = { 2 | checkSingle: 'single', 3 | checkMulti: 'multi', 4 | orderAsc: 'asc', 5 | orderDesc: 'desc' 6 | } 7 | 8 | export { con } 9 | -------------------------------------------------------------------------------- /src/utils/url.js: -------------------------------------------------------------------------------- 1 | export default class Url { 2 | static getVueRootPath () { 3 | const l = window.location 4 | return `${l.origin}${l.pathname}#` 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/views/demo/plugins/dialog/mixins.js: -------------------------------------------------------------------------------- 1 | export default { 2 | methods: { 3 | upperCase (text) { 4 | if (!text) return '' 5 | return text.toUpperCase() 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { 3 | node: true, 4 | mocha: true 5 | }, 6 | rules: { 7 | 'no-unused-expressions': 'off' 8 | } 9 | } 10 | --------------------------------------------------------------------------------