代码拉取完成,页面将自动刷新
同步操作将从 www.tpframe.com/tpframe 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
Navicat Premium Data Transfer
Source Server : localhost
Source Server Type : MySQL
Source Server Version : 50726
Source Host : localhost:3306
Source Schema : cms_tpframe
Target Server Type : MySQL
Target Server Version : 50726
File Encoding : 65001
Date: 18/01/2021 21:02:19
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for tpf_ad
-- ----------------------------
DROP TABLE IF EXISTS `tpf_ad`;
CREATE TABLE `tpf_ad` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '广告id',
`name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '广告名称',
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '广告内容',
`status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '状态,1显示,0不显示',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_ad
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_addon
-- ----------------------------
DROP TABLE IF EXISTS `tpf_addon`;
CREATE TABLE `tpf_addon` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`module` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '插件模块',
`title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '插件标题',
`describe` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '插件描述',
`config` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '插件配置',
`author` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '作者',
`version` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '插件版本',
`status` tinyint(4) NULL DEFAULT 0 COMMENT '状态 1启用 0禁用',
`type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '插件分类 行为插件 模块插件 行为模块插件',
`create_time` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`update_time` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_addon
-- ----------------------------
INSERT INTO `tpf_addon` VALUES (1, 'kindeditor', '编辑器', '富文本编辑器', '', 'yaosean', '2.0', 1, 'behavior', '0', '0');
INSERT INTO `tpf_addon` VALUES (2, 'ueditor', '编辑器', '富文本编辑器', '', 'yaosean', '2.0', 1, 'behavior', '0', '0');
INSERT INTO `tpf_addon` VALUES (3, 'cms', 'Cms模块', 'Cms系统', '', 'yaosean', '2.2', 1, 'module', '0', '0');
INSERT INTO `tpf_addon` VALUES (4, 'friend_link', '友情链接', '友情链接模块', '', 'yaosean', '2.0', 1, 'module', '0', '0');
-- ----------------------------
-- Table structure for tpf_admin_log
-- ----------------------------
DROP TABLE IF EXISTS `tpf_admin_log`;
CREATE TABLE `tpf_admin_log` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`old_value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '原值',
`new_value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '新值',
`module` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '模块',
`controller` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '控制器',
`action` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '操作',
`data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '数据',
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '链接',
`userid` mediumint(8) UNSIGNED NOT NULL DEFAULT 0,
`username` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`ip` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`datetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) USING BTREE,
INDEX `module`(`module`, `controller`, `action`) USING BTREE,
INDEX `username`(`username`, `action`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_admin_log
-- ----------------------------
INSERT INTO `tpf_admin_log` VALUES (1, NULL, NULL, 'backend', 'Setting', 'site', '[]', 'http://cms.tpframe.com/backend/setting/site.html', 1, 'admin', '127.0.0.1', '1610972971');
INSERT INTO `tpf_admin_log` VALUES (2, NULL, NULL, 'backend', 'Upgrade', 'check', '[]', 'http://cms.tpframe.com/backend/upgrade/check.html', 1, 'admin', '127.0.0.1', '1610972971');
INSERT INTO `tpf_admin_log` VALUES (3, NULL, NULL, 'backend', 'Upgrade', 'check', '[]', 'http://cms.tpframe.com/backend/upgrade/check.html', 1, 'admin', '127.0.0.1', '1610972973');
INSERT INTO `tpf_admin_log` VALUES (4, NULL, NULL, 'backend', 'Setting', 'site', '[]', 'http://cms.tpframe.com/backend/setting/site.html', 1, 'admin', '127.0.0.1', '1610972981');
INSERT INTO `tpf_admin_log` VALUES (5, NULL, NULL, 'backend', 'Upgrade', 'check', '[]', 'http://cms.tpframe.com/backend/upgrade/check.html', 1, 'admin', '127.0.0.1', '1610972981');
INSERT INTO `tpf_admin_log` VALUES (6, NULL, NULL, 'backend', 'Setting', 'site', '{\"id\":\"1\",\"options\":{\"site_name\":\"TPFrame\\u6846\\u67b6\\uff0c\\u6781\\u901f\\u3001\\u7cbe\\u7b80\\u3001\\u9ad8\\u6548\\u3001\\u9ad8\\u6269\\u5c55\\u7684\\u5f00\\u53d1\\u7cfb\\u7edf,\",\"site_host\":\"http:\\/\\/cms.tpframe.com\\/\",\"landline\":\"02315452563\",\"toll_free\":\"40088888888\",\"address\":\"\",\"site_icp\":\"\",\"site_admin_email\":\"[email protected]\",\"site_tongji\":\"\",\"site_copyright\":\"\",\"comment_time_interval\":\"60\"},\"configs\":{\"site_seo_title\":\"TPFrame\\u7ba1\\u7406\\u6846\\u67b6\",\"site_seo_keywords\":\"TPFrame,php,\\u7ba1\\u7406\\u6846\\u67b6,cms,\\u7b80\\u7ea6\\u98ce, simplewind,framework\",\"site_seo_description\":\"TPFrame\\u662f\\u7b80\\u7ea6\\u98ce\\u7f51\\u7edc\\u79d1\\u6280\\u53d1\\u5e03\\u7684\\u4e00\\u6b3e\\u7528\\u4e8e\\u5feb\\u901f\\u5f00\\u53d1\\u7684\\u5185\\u5bb9\\u7ba1\\u7406\\u6846\\u67b6\",\"DEFAULT_THEME\":\"cms\",\"HTML_CACHE_ON\":\"0\",\"ADMIN_LOG_SWITCH\":\"0\",\"ADMIN_LOGIN_VERIFY_SWITCH\":\"0\",\"WEB_SITE_CLOSE\":\"0\",\"WEB_REGISTER_CLOSE\":\"0\",\"ADMIN_LOGIN_LLIMIT_IP\":\"\",\"site_service_qq\":\"88888888\",\"site_service_mobile\":\"\",\"site_service_wechat\":\"\",\"allow_upload_pic_type\":\"jpg,png,gif,jpeg\",\"allow_upload_pic_size\":\"2048\",\"upload_pic_position\":\"local\"}}', 'http://cms.tpframe.com/backend/setting/site.html', 1, 'admin', '127.0.0.1', '1610972985');
-- ----------------------------
-- Table structure for tpf_category
-- ----------------------------
DROP TABLE IF EXISTS `tpf_category`;
CREATE TABLE `tpf_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`parentid` int(11) NULL DEFAULT 0 COMMENT '父类ID',
`isnav` tinyint(4) NULL DEFAULT 0 COMMENT '是否是导航 0否 1是',
`sort` smallint(11) NULL DEFAULT 0 COMMENT '排序',
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '链接地址',
`display` tinyint(4) NULL DEFAULT 1 COMMENT '是否显示 0:不显示 1显示',
`channel_id` smallint(6) NULL DEFAULT 1 COMMENT '内容模型ID',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_category
-- ----------------------------
INSERT INTO `tpf_category` VALUES (1, '产品介绍', 0, 0, 1, '/posts/index/cid/1', 0, 1);
INSERT INTO `tpf_category` VALUES (2, '包装设计', 1, 0, 1, '', 1, 1);
INSERT INTO `tpf_category` VALUES (3, '食品广告', 1, 0, 1, '', 1, 1);
INSERT INTO `tpf_category` VALUES (4, '商业海报', 1, 0, 1, '', 1, 1);
INSERT INTO `tpf_category` VALUES (5, '婚礼纸品', 1, 0, 1, '', 1, 1);
INSERT INTO `tpf_category` VALUES (7, '新闻动态', 0, 0, 1, '/index/cases/cid/7', 1, 1);
INSERT INTO `tpf_category` VALUES (8, '关于我们', 0, 0, 1, '', 0, 1);
-- ----------------------------
-- Table structure for tpf_config
-- ----------------------------
DROP TABLE IF EXISTS `tpf_config`;
CREATE TABLE `tpf_config` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_config
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_custom_form
-- ----------------------------
DROP TABLE IF EXISTS `tpf_custom_form`;
CREATE TABLE `tpf_custom_form` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '表单名称',
`table` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '表名',
`fields` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '描述字段',
`desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '表单描述',
`datetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '添加时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '自定义表单' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_custom_form
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_friend_link
-- ----------------------------
DROP TABLE IF EXISTS `tpf_friend_link`;
CREATE TABLE `tpf_friend_link` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '友情链接名称',
`url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '友情链接地址',
`image` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '友情链接图标',
`target` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '_blank' COMMENT '友情链接打开方式',
`description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '友情链接描述',
`status` int(2) NULL DEFAULT 1 COMMENT '状态,1显示,0不显示',
`rating` int(2) NULL DEFAULT 0 COMMENT '友情链接评级',
`relation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '链接与网站的关系',
`sort` int(11) NULL DEFAULT 1 COMMENT '排序',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of tpf_friend_link
-- ----------------------------
INSERT INTO `tpf_friend_link` VALUES (1, '支付宝', '/', '/theme/frontend/cms/assets/images/alipay.png', '_blank', '', 1, 0, NULL, 1);
INSERT INTO `tpf_friend_link` VALUES (2, '百度', '/', '/theme/frontend/cms/assets/images/baidu.gif', '_blank', '', 1, 0, NULL, 1);
INSERT INTO `tpf_friend_link` VALUES (3, '又拍云', '/', '/theme/frontend/cms/assets/images/upyun.png', '_blank', '', 1, 0, NULL, 1);
INSERT INTO `tpf_friend_link` VALUES (4, 'google', '/', '/theme/frontend/cms/assets/images/google.png', '_blank', '', 1, 0, NULL, 1);
INSERT INTO `tpf_friend_link` VALUES (5, 'QQ', '/', '/theme/frontend/cms/assets/images/qq.png', '_blank', '', 1, 0, NULL, 1);
INSERT INTO `tpf_friend_link` VALUES (6, '电信', '/', '/theme/frontend/cms/assets/images/telcom.png', '_blank', '', 1, 0, NULL, 1);
INSERT INTO `tpf_friend_link` VALUES (7, 'yd', '/', '/theme/frontend/cms/assets/images/cmcc.png', '_blank', '', 1, 0, NULL, 1);
INSERT INTO `tpf_friend_link` VALUES (8, 'aliyun', '/', '/theme/frontend/cms/assets/images/aliyun.png', '_blank', '', 1, 0, NULL, 1);
-- ----------------------------
-- Table structure for tpf_hook
-- ----------------------------
DROP TABLE IF EXISTS `tpf_hook`;
CREATE TABLE `tpf_hook` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '钩子名称',
`describe` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '描述',
`module` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '插件模块',
`update_time` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '更新时间',
`create_time` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_hook
-- ----------------------------
INSERT INTO `tpf_hook` VALUES (1, 'kindeditor', '富文本编辑器', 'kindeditor', '0', '0');
INSERT INTO `tpf_hook` VALUES (2, 'ueditor', '富文本编辑器', 'ueditor', '0', '0');
-- ----------------------------
-- Table structure for tpf_menu
-- ----------------------------
DROP TABLE IF EXISTS `tpf_menu`;
CREATE TABLE `tpf_menu` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '菜单名称',
`module` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'backend' COMMENT '模块名',
`controller` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'Index' COMMENT '控制器',
`action` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'index' COMMENT '默认操作',
`type` tinyint(4) NULL DEFAULT 1 COMMENT '菜单类型 1:权限认证+菜单;0:只作为菜单',
`urlext` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '扩展参数',
`display` tinyint(4) NULL DEFAULT 1 COMMENT '状态,1显示,0不显示',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
`icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '菜单图标',
`sort` smallint(6) NULL DEFAULT 0 COMMENT '排序ID',
`parentid` int(11) NULL DEFAULT 0 COMMENT '父id',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `name`(`name`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 53 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_menu
-- ----------------------------
INSERT INTO `tpf_menu` VALUES (1, '基本信息', 'backend', 'Index', 'index', 1, NULL, 1, NULL, NULL, 1, 0);
INSERT INTO `tpf_menu` VALUES (2, '用户中心', 'backend', 'Index', 'index', 1, NULL, 1, NULL, NULL, 2, 0);
INSERT INTO `tpf_menu` VALUES (3, '扩展管理', 'backend', 'Index', 'index', 1, NULL, 1, NULL, NULL, 3, 0);
INSERT INTO `tpf_menu` VALUES (4, '插件模块', 'backend', 'Index', 'index', 1, NULL, 1, NULL, NULL, 4, 0);
INSERT INTO `tpf_menu` VALUES (5, '设置', 'backend', 'Index', 'index', 1, '', 1, '', 'cogs', 2, 1);
INSERT INTO `tpf_menu` VALUES (6, '个人信息', 'backend', 'Index', 'index', 1, '', 1, '', '', 1, 5);
INSERT INTO `tpf_menu` VALUES (7, '修改信息', 'backend', 'Member', 'userinfo', 1, '', 1, '', '', 1, 6);
INSERT INTO `tpf_menu` VALUES (8, '修改密码', 'backend', 'Member', 'uppwd', 1, '', 1, '', '', 2, 6);
INSERT INTO `tpf_menu` VALUES (9, '网站信息', 'backend', 'Setting', 'site', 1, '', 1, '', '', 2, 5);
INSERT INTO `tpf_menu` VALUES (10, '系统', 'backend', 'Index', 'index', 1, '', 1, '', 'th', 1, 1);
INSERT INTO `tpf_menu` VALUES (11, '清空缓存', 'backend', 'Setting', 'clear', 1, '', 1, '', '', 1, 10);
INSERT INTO `tpf_menu` VALUES (12, '更新系统', 'backend', 'Upgrade', 'index', 1, '', 1, '', '', 2, 10);
INSERT INTO `tpf_menu` VALUES (13, '后台操作日志', 'backend', 'AdminLog', 'index', 1, '', 1, '', '', 3, 10);
INSERT INTO `tpf_menu` VALUES (14, '菜单管理', 'backend', 'Index', 'index', 1, '', 1, '', 'list', 3, 1);
INSERT INTO `tpf_menu` VALUES (15, '后台菜单', 'backend', 'Menu', 'index', 1, '', 1, '', '', 1, 14);
INSERT INTO `tpf_menu` VALUES (16, '前台菜单', 'backend', 'Index', 'index', 1, '', 1, '', '', 2, 14);
INSERT INTO `tpf_menu` VALUES (17, '前台菜单管理', 'backend', 'Nav', 'index', 1, '', 1, '', '', 1, 16);
INSERT INTO `tpf_menu` VALUES (18, '菜单分类', 'backend', 'NavCat', 'index', 1, '', 1, '', '', 2, 16);
INSERT INTO `tpf_menu` VALUES (19, '用户管理', 'backend', 'Index', 'index', 1, '', 1, '', 'group', 1, 2);
INSERT INTO `tpf_menu` VALUES (20, '用户组', 'backend', 'Index', 'index', 1, '', 1, '', '', 1, 19);
INSERT INTO `tpf_menu` VALUES (21, '本站用户', 'backend', 'Member', 'index', 1, '', 1, '', '', 1, 20);
INSERT INTO `tpf_menu` VALUES (22, '管理组', 'backend', 'Index', 'index', 1, '', 1, '', '', 2, 19);
INSERT INTO `tpf_menu` VALUES (23, '管理员', 'backend', 'Member', 'admin', 1, '', 1, '', '', 1, 22);
INSERT INTO `tpf_menu` VALUES (24, '角色管理', 'backend', 'Role', 'index', 1, '', 1, '管理员角色', '', 2, 22);
INSERT INTO `tpf_menu` VALUES (25, '扩展工具', 'backend', 'Index', 'index', 1, '', 1, '', 'cloud', 1, 3);
INSERT INTO `tpf_menu` VALUES (26, '插件管理', 'backend', 'addon', 'addonlist', 1, NULL, 1, NULL, NULL, 1, 25);
INSERT INTO `tpf_menu` VALUES (27, '微信管理', 'backend', 'Index', 'index', 1, NULL, 1, NULL, NULL, 5, 0);
INSERT INTO `tpf_menu` VALUES (28, '会员等级', 'backend', 'Member', 'grade', 1, '', 1, '', '', 1, 20);
INSERT INTO `tpf_menu` VALUES (29, '门户管理', 'cms', 'cms', 'index', 1, '', 1, '', 'th', 3, 0);
INSERT INTO `tpf_menu` VALUES (30, 'CMS管理', 'cms', 'posts', 'index', 1, '', 1, '', 'cms', 0, 29);
INSERT INTO `tpf_menu` VALUES (31, '分类管理', 'cms', 'category', 'index', 1, '', 1, '', '', 0, 30);
INSERT INTO `tpf_menu` VALUES (32, '内容管理', 'cms', 'posts', 'index', 1, '', 1, '', '', 0, 30);
INSERT INTO `tpf_menu` VALUES (33, '图片库', 'cms', 'PostsImages', 'index', 1, '', 1, '', '', 0, 30);
INSERT INTO `tpf_menu` VALUES (34, '视频库', 'cms', 'PostsVideos', 'index', 1, '', 1, '', '', 0, 30);
INSERT INTO `tpf_menu` VALUES (35, '内容回收站', 'cms', 'Recycle', 'index', 1, '', 1, '', '', 0, 30);
INSERT INTO `tpf_menu` VALUES (36, '内容评论管理', 'cms', 'PostsComments', 'index', 1, '', 1, '', '', 0, 30);
INSERT INTO `tpf_menu` VALUES (37, '单页管理', 'cms', 'Spage', 'index', 1, '', 1, '', '', 0, 30);
INSERT INTO `tpf_menu` VALUES (38, '留言管理', 'cms', 'Message', 'index', 1, '', 1, '', '', 0, 30);
INSERT INTO `tpf_menu` VALUES (39, '频道模型', 'cms', 'module', 'index', 1, '', 1, '', 'model', 0, 29);
INSERT INTO `tpf_menu` VALUES (40, '自定义表单', 'cms', 'CustomForm', 'index', 1, '', 1, '', '', 0, 39);
INSERT INTO `tpf_menu` VALUES (41, '微信/小程序管理', 'cms', 'MiniProgram', 'index', 1, '', 1, '', 'weixin', 0, 29);
INSERT INTO `tpf_menu` VALUES (42, '首页栏目管理', 'cms', 'MiniColumn', 'index', 1, '', 1, '', '', 0, 41);
INSERT INTO `tpf_menu` VALUES (43, '首页模块配置', 'cms', 'MiniModule', 'index', 1, '', 1, '', '', 0, 41);
INSERT INTO `tpf_menu` VALUES (44, '开发配置', 'cms', 'MiniChat', 'index', 1, '', 1, '', '', 0, 41);
INSERT INTO `tpf_menu` VALUES (45, '程序配置', 'cms', 'MiniSetting', 'index', 1, '', 1, '', '', 0, 41);
INSERT INTO `tpf_menu` VALUES (46, '内容维护', 'cms', 'PostsMaintain', 'index', 1, '', 1, '', 'map', 0, 29);
INSERT INTO `tpf_menu` VALUES (47, '自动提交配置', 'cms', 'posts', 'auto_submit', 1, '', 1, '', '', 0, 46);
INSERT INTO `tpf_menu` VALUES (48, '内容设置', 'cms', 'posts', 'setting', 1, '', 1, '', '', 0, 46);
INSERT INTO `tpf_menu` VALUES (49, '内容批量管理', 'cms', 'posts', 'move', 1, '', 1, '', '', 0, 46);
INSERT INTO `tpf_menu` VALUES (50, '内容批量替换', 'cms', 'posts', 'replace', 1, '', 1, '', '', 0, 46);
INSERT INTO `tpf_menu` VALUES (51, '友情链接', 'friend_link', '', '', 1, '', 1, '', 'link', 0, 4);
INSERT INTO `tpf_menu` VALUES (52, '友情链接管理', 'friend_link', 'FriendLink', 'index', 1, '', 1, '', '', 0, 51);
-- ----------------------------
-- Table structure for tpf_message
-- ----------------------------
DROP TABLE IF EXISTS `tpf_message`;
CREATE TABLE `tpf_message` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '姓名',
`email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '邮箱',
`message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '留言',
`checked` tinyint(1) NULL DEFAULT 0 COMMENT '是否审核0否 1是',
`datetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '留言时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '留言表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_message
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_mini_program_column
-- ----------------------------
DROP TABLE IF EXISTS `tpf_mini_program_column`;
CREATE TABLE `tpf_mini_program_column` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '栏目标题',
`img` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '栏目图标',
`wechat_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '微信链接',
`url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '链接地址',
`bindtap` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '绑定事件',
`sort` tinyint(4) NULL DEFAULT 1 COMMENT '排序',
`display` tinyint(1) NULL DEFAULT 1 COMMENT '是否显示 1显示 0不显示',
`to_tabbar` tinyint(1) NULL DEFAULT 0 COMMENT '是否是主导航 1是 0否',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '小程序栏目表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_mini_program_column
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_nav
-- ----------------------------
DROP TABLE IF EXISTS `tpf_nav`;
CREATE TABLE `tpf_nav` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parentid` int(11) NOT NULL COMMENT '导航父 id',
`label` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '导航标题',
`target` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '打开方式',
`nav_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '导航类型',
`href` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '导航链接',
`icon` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '导航图标',
`display` tinyint(4) NOT NULL DEFAULT 1 COMMENT '状态,1显示,0不显示',
`sort` int(6) NULL DEFAULT 0 COMMENT '排序',
`path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '层级关系',
`cid` int(11) NOT NULL DEFAULT 0 COMMENT '导航分类 id',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 10 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '前台导航表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_nav
-- ----------------------------
INSERT INTO `tpf_nav` VALUES (1, 0, '首页', '_self', 'href_text', 'frontend/Index/index', 'home', 1, 0, '0', 1);
INSERT INTO `tpf_nav` VALUES (2, 0, '产品介绍', '_self', 'href_text', 'frontend/Index/product', 'magic', 1, 0, '0', 1);
INSERT INTO `tpf_nav` VALUES (3, 0, '新闻动态', '_self', 'href_text', 'frontend/Index/news', 'bars', 1, 0, '0', 1);
INSERT INTO `tpf_nav` VALUES (4, 0, '关于我们', '_self', NULL, 'frontend/Index/about', 'user', 1, 0, NULL, 1);
INSERT INTO `tpf_nav` VALUES (5, 0, '联系我们', '_self', NULL, 'frontend/Index/contact', 'phone', 1, 0, NULL, 1);
INSERT INTO `tpf_nav` VALUES (6, 2, '包装设计', '_self', NULL, '/index/product/cid/2.html', '', 1, 0, NULL, 1);
INSERT INTO `tpf_nav` VALUES (7, 2, '食品广告', '_self', NULL, '/index/product/cid/3.html', '', 1, 0, NULL, 1);
INSERT INTO `tpf_nav` VALUES (8, 2, '商业海报', '_self', NULL, '/index/product/cid/4.html', '', 1, 0, NULL, 1);
INSERT INTO `tpf_nav` VALUES (9, 2, '婚礼纸品', '_self', NULL, '/index/product/cid/5.html', '', 1, 0, NULL, 1);
-- ----------------------------
-- Table structure for tpf_nav_cat
-- ----------------------------
DROP TABLE IF EXISTS `tpf_nav_cat`;
CREATE TABLE `tpf_nav_cat` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '导航分类名',
`active` tinyint(4) NOT NULL DEFAULT 0 COMMENT '是否为主菜单,1是,0不是',
`remark` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '前台导航分类表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_nav_cat
-- ----------------------------
INSERT INTO `tpf_nav_cat` VALUES (1, '主导航', 1, '主导航');
-- ----------------------------
-- Table structure for tpf_posts
-- ----------------------------
DROP TABLE IF EXISTS `tpf_posts`;
CREATE TABLE `tpf_posts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`short_link` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '短链接',
`title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标题',
`abstract` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '摘要',
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '内容',
`datetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '添加时间,不可更改,一般不显示给用户',
`updatetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '更新时间,可更改,一般显示给用户',
`thumb` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '缩略图',
`tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标签',
`source` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '文章来源',
`author` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'tpframe' COMMENT '作者',
`view` int(11) NULL DEFAULT 0 COMMENT '浏览量',
`likes` int(11) NULL DEFAULT 0 COMMENT '点赞数',
`comments_number` int(11) NULL DEFAULT 0 COMMENT '文章评论数',
`type` tinyint(4) NULL DEFAULT 1 COMMENT '文章类型',
`ischeck` tinyint(1) NULL DEFAULT 1 COMMENT '是否审核 1已审核,0未审核',
`iscomment` tinyint(1) NULL DEFAULT 1 COMMENT '是否可评论,1允许,0不允许',
`istop` tinyint(1) NULL DEFAULT 0 COMMENT '置顶 1置顶; 0不置顶',
`isrecommend` tinyint(1) NULL DEFAULT 0 COMMENT '推荐 1推荐 0不推荐',
`isdelete` tinyint(1) NULL DEFAULT 0 COMMENT '是否删除 0 未删除 1已删除',
`ishandle` tinyint(1) NULL DEFAULT 0 COMMENT '是否处理 0未处理,1已处理',
`channel` tinyint(4) NULL DEFAULT 1 COMMENT '频道 1文章 2图片 3视频',
`cateid` int(11) NULL DEFAULT 0 COMMENT '分类id',
`parentid` int(11) NULL DEFAULT 0 COMMENT '父id',
`uid` int(11) NULL DEFAULT 0 COMMENT '用户ID',
`keywords` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '关键词',
`reply` int(11) NULL DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 51 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_posts
-- ----------------------------
INSERT INTO `tpf_posts` VALUES (21, NULL, 'TPFrame 正式上线', NULL, '<p>\r\n <img src=\"/data/uploads/20170713/128ee9657bf2e2b09c89ddca4d29e4be.jpg\" alt=\"\" /><br />\r\nTPFrame 是一款新起的专门为项目速成的PHP框架,基于thinkphp5.0,程序完全开源,可进行任何的二次开发,废弃thinkphp3.2函数编程模式,数据模式全部采用对象封装', '1499913494', '1497156908', '', NULL, '本站', 'tpframe', 23, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, '', 0);
INSERT INTO `tpf_posts` VALUES (22, NULL, 'TPFrame 正式上线', NULL, '<p>\r\n <img src=\"/data/uploads/20170713/128ee9657bf2e2b09c89ddca4d29e4be.jpg\" alt=\"\" /><br />\r\nTPFrame 是一款新起的专门为项目速成的PHP框架,基于thinkphp5.0,程序完全开源,可进行任何的二次开发,废弃thinkphp3.2函数编程模式,数据模式全部采用对象封装', '1498034319', '1497148729', NULL, NULL, '本站', 'tpframe', 16, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 2, 0, 0, '', 0);
INSERT INTO `tpf_posts` VALUES (23, NULL, '充满创意的包装设计作品欣赏', 'TPFrame 是一款新起的专门为项目速成的PHP框架,基于thinkphp5.0,程序完全开源,可进行任何的二次开发,废弃thinkphp3.2函数编程模式,数据模式全部采用对象封装', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/0385956409e2ee93b4b4c1ead3464e4b.jpg\" title=\"0385956409e2ee93b4b4c1ead3464e4b.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/8a743aa540e7a814c67293d4405583f1.jpg\" title=\"8a743aa540e7a814c67293d4405583f1.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/39e2329a79547bf7bfc358ff03b6f5f0.jpg\" title=\"39e2329a79547bf7bfc358ff03b6f5f0.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/853d33d50253c0a7236f3902353acd9e.jpg\" title=\"853d33d50253c0a7236f3902353acd9e.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/25f603ea2a99aa9eda2af9363eaf4fb9.jpg\" title=\"25f603ea2a99aa9eda2af9363eaf4fb9.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/3fc4e65928daf3e2c13bf44e9e086e7f.jpg\" title=\"3fc4e65928daf3e2c13bf44e9e086e7f.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/b52b5e6549c37e1902d5f24d3951264e.jpg\" title=\"b52b5e6549c37e1902d5f24d3951264e.jpg\"/></p><p><br/></p>', '1498034319', '1610957469', '/data/uploads/20210118/52bbf1d02f8652a973a4dacb4905f000.jpg', '', '本站', 'tpframe', 39, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 2, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (24, NULL, 'TPFrame 正式上线', NULL, '<p>\r\n <img src=\"/data/uploads/20170713/128ee9657bf2e2b09c89ddca4d29e4be.jpg\" alt=\"\" /><br />\r\nTPFrame 是一款新起的专门为项目速成的PHP框架,基于thinkphp5.0,程序完全开源,可进行任何的二次开发,废弃thinkphp3.2函数编程模式,数据模式全部采用对象封装', '1498034319', '1497148729', NULL, NULL, '本站', 'tpframe', 9, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 5, 0, 0, '', 0);
INSERT INTO `tpf_posts` VALUES (25, NULL, 'QQ音乐十年乐语路海报', 'TPFrame 是一款新起的专门为项目速成的PHP框架,基于thinkphp5.0,程序完全开源,可进行任何的二次开发,废弃thinkphp3.2函数编程模式,数据模式全部采用对象封装', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/5dfe197b0fe8e184c0ad98ac3b59753e.jpg\" title=\"5dfe197b0fe8e184c0ad98ac3b59753e.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/99ff74e2bf53712bada3f0a4e19bec72.jpg\" title=\"99ff74e2bf53712bada3f0a4e19bec72.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/d76709fb0db4ba00b1b659c181acb9a3.jpg\" title=\"d76709fb0db4ba00b1b659c181acb9a3.jpg\"/></p><p><br/></p>', '1497152844', '1610957482', '/data/uploads/20210118/c63c8d4bf667b04244687daece7395fe.jpg', '', '本站', 'tpframe', 2, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (26, NULL, '追求气质的包装盒', 'TPFrame 是一款新起的专门为项目速成的PHP框架,基于thinkphp5.0,程序完全开源,可进行任何的二次开发,废弃thinkphp3.2函数编程模式,数据模式全部采用对象封装', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/f54d07ceb5fc4c19660624187f660605.jpg\" title=\"f54d07ceb5fc4c19660624187f660605.jpg\" alt=\"f54d07ceb5fc4c19660624187f660605.jpg\"/></p>', '1498034319', '1610957493', '/data/uploads/20210118/15423c26875921203973ca0ac3eaff42.jpeg', '', '本站', 'tpframe', 7, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 2, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (27, NULL, 'Poster Annual 2015海报设计获奖作品', 'TPFrame 是一款新起的专门为项目速成的PHP框架,基于thinkphp5.0,程序完全开源,可进行任何的二次开发,废弃thinkphp3.2函数编程模式,数据模式全部采用对象封装', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/d5cce260387cc2d3fc62269254795250.jpg\" title=\"d5cce260387cc2d3fc62269254795250.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/b49c3d620d28f83bbf2960e95e90237e.jpg\" title=\"b49c3d620d28f83bbf2960e95e90237e.jpg\"/></p><p><br/></p>', '1498034964', '1610957502', '/data/uploads/20210118/86f74756d6a1b105d53afd043f6b0fb7.jpeg', '', '本站', 'tpframe', 4, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (28, NULL, 'TPFrame 正式上线', NULL, '<p>\r\n <img src=\"/data/uploads/20170713/128ee9657bf2e2b09c89ddca4d29e4be.jpg\" alt=\"\" /><br />\r\nTPFrame 是一款新起的专门为项目速成的PHP框架,基于thinkphp5.0,程序完全开源,可进行任何的二次开发,废弃thinkphp3.2函数编程模式,数据模式全部采用对象封装', '1498103128', '1497148729', NULL, NULL, '本站', 'tpframe', 2, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 0, '', 0);
INSERT INTO `tpf_posts` VALUES (29, NULL, 'TPFrame 正式上线', NULL, '<p>\r\n <img src=\"/data/uploads/20170713/128ee9657bf2e2b09c89ddca4d29e4be.jpg\" alt=\"\" /><br />\r\nTPFrame 是一款新起的专门为项目速成的PHP框架,基于thinkphp5.0,程序完全开源,可进行任何的二次开发,废弃thinkphp3.2函数编程模式,数据模式全部采用对象封装', '1498108591', '1497148729', NULL, NULL, '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 0, '', 0);
INSERT INTO `tpf_posts` VALUES (30, NULL, 'TPFrame 正式上线', NULL, '<p>\r\n <img src=\"/data/uploads/20170713/128ee9657bf2e2b09c89ddca4d29e4be.jpg\" alt=\"\" /><br />\r\nTPFrame 是一款新起的专门为项目速成的PHP框架,基于thinkphp5.0,程序完全开源,可进行任何的二次开发,废弃thinkphp3.2函数编程模式,数据模式全部采用对象封装', '1498114235', '1497148729', NULL, NULL, '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 0, '', 0);
INSERT INTO `tpf_posts` VALUES (31, NULL, '近两周股民人均亏损13.5万 相当于32个月工资', '本报讯(记者王子建 张应理) 昨天A股遭遇了历史上绝无仅有的股灾,2016只个股收盘时跌停。这一创历史纪录的跌停数比上周五“端午劫”那天的近千只个股跌停多了一倍还拐了个弯,比2007年5月30日提高印花税后首日暴跌的收盘跌停数多了1163只。惨烈的黑色星期五还创下了其他几项糟糕纪录:创业板盘中历史性跌停,上证综指和深成指同时创下了近8年来盘中最大单日跌幅。股指期货主要合约全线跌停,上海B股指数收盘...', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">本报讯(记者王子建 张应理) 昨天A股遭遇了历史上绝无仅有的股灾,2016只个股收盘时跌停。这一创历史纪录的跌停数比上周五“端午劫”那天的近千只个股跌停多了一倍还拐了个弯,比2007年5月30日提高印花税后首日暴跌的收盘跌停数多了1163只。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">惨烈的黑色星期五还创下了其他几项糟糕纪录:创业板盘中历史性跌停,上证综指和深成指同时创下了近8年来盘中最大单日跌幅。股指期货主要合约全线跌停,上海B股指数收盘跌幅居然极其巧合地定格在“9.11%”。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">至收盘,两市近30个板块跌停,仅45只个股上涨。自本轮牛市新高5178.19点调整以来,至昨天沪指两周跌去近千点。截至收盘,沪指报4192.87点,跌334.91点,跌幅7.40%;深成指报14398.78点,跌1293.66点,跌幅8.24%;创业板报2920.70点,跌285.68点,跌幅8.91%。如果不计上市以来一直未打开涨停板的新股,扣除停牌的个股以及涨跌幅限制在5%的个股,昨天A股几乎躺在了跌停板上。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">武汉专家分析说,大盘持续大跌的主要利空因素是:央行降息预期落空、上周散户开户数环比大降30%,增量资金放缓让股指做多动能减弱;6月已有77家公司发布控股股东及其一致行动人减持公司股票的相关公告,共计减持股份数量近20亿股,累计套现金额约344亿元。减持家数和套现金额创历史新高,动摇了股民的持股信心;此外,清理场外配资、去杠杆,融券做空等机制,以及机构的程序化交易被动止损也起到推波助澜作用。</p><h3 style=\"box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; font-weight: 500; line-height: 1.46; color: rgba(0, 0, 0, 0.8); margin: 30px 0px 20px; font-size: 18px; position: relative; padding-left: 18px; border: 0px; white-space: normal; background-color: rgb(249, 249, 249);\">证监会回应</h3><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\">暴跌是自我调整,市场格局未变</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">针对上周以来市场的大幅下跌,证监会新闻发言人张晓军26日表示:这是市场前期过快上涨之后的一个自我调整,也是市场自身运行规律的一个结果,同时也与年终季末的流动性波动、投资去杠杆,投资者对市场分歧加大等因素叠加等影响有关,市场虽在短期内出现较大幅度回调,但是改革开放的红利释放,流动性总体充裕和居民资产配置的基本格局,没有改变。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">张晓军同时指出,虽然市场短期内出现大回调,但是经济向好趋势没有改变。流动性相对宽裕、经济企稳以及大众创业、万众创新等因素有利于激发市场。近期市场波动加大,更需各方理性看待,不轻信、不盲从,共同促进股市健康发展。</p><h3 style=\"box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; font-weight: 500; line-height: 1.46; color: rgba(0, 0, 0, 0.8); margin: 30px 0px 20px; font-size: 18px; position: relative; padding-left: 18px; border: 0px; white-space: normal; background-color: rgb(249, 249, 249);\">证监会主席肖钢</h3><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\">将加快推动战略新兴板</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">证监会主席肖钢26日在“2015陆家嘴论坛”上表示,证监会将加快多层次资本市场体系,推动产品创新、服务创新和业务创新,服务和完善市场功能体系,有效支撑创新驱动发展战略。要建立广覆盖、多渠道、低成本、高效率、严监管的多层次股权市场,进一步壮大主板、中小企业板市场,推进交易所市场内部分成。在上海证券交易所设立战略新兴板,与创业板错位发展。</p><h3 style=\"box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; font-weight: 500; line-height: 1.46; color: rgba(0, 0, 0, 0.8); margin: 30px 0px 20px; font-size: 18px; position: relative; padding-left: 18px; border: 0px; white-space: normal; background-color: rgb(249, 249, 249);\">本报综合报道</h3><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\">近两周股民人均亏损13.5万元</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\">相当于32个月的全国平均工资</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">继上周暴跌之后,本周股市并未迎来强势反弹,反而持续下探。昨天早盘沪深股指大幅低开,早盘多次探底4300点附近。截至昨天中午收盘,沪指下跌4.06%,深成指跌幅逾6%,而一度被视为“神创”的创业板跌幅逼近8%。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">据同花顺财经统计,截至昨天中午11点半,本周市值蒸发3.3万亿元,近两周共蒸发12.1万亿。同花顺财经根据上周投资者数量粗略计算,近两周人均亏损近13.5万元。按照去年全国平均工资5万元计算,股民近两周人均损失达32个月工资。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\">新股民补仓陷入“连环套”</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">市场陷入“连环杀跌”走势,继上周五近千只股票跌停,本周五又出现2000只股票跌停。武汉晚报记者采访发现,众多新股民在下跌途中不甘心放手,连续投钱补仓,陷入“连环套”。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">江岸某社区活动中心一位陈姓女士对记者说:“我周围的一些小嫂子都被深度套牢,现在不敢看自己的账户了!”</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">该活动中心有5个新股民,前一段时间,行情好的时候,这些“小嫂子”见面少不了谈股票,比谁赚得多,还相互传递信息。现在跌了,有的本来是半仓的,前天全仓买进做差价,结果全部被套。还有一个刚开户一个月的新股民,开始还声称投入4万元,现在又追加了3万元,也是全部被套。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">昨天晚上,有读者打电话告诉记者:“我儿子他们学校本来是布置学生开展模拟盘炒股,有个‘富二代’同学逞强,玩起了真的,用10来万炒股,听说上周亏了不少,回家哭穷后他爸爸又给钱补仓。今天肯定又亏了,现在都不说股票的事了。”</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">目前中期调整序幕已经拉开,大盘处于深跌之势,所有行业、个股全部遭受重挫。新股民务必要认清大势,股市重新上升需要较长时间的整理,补仓可能造成更大亏损。操作上一定要控制仓位。记者张应理</p><p><br/></p>', '1498114280', '1610932965', '', '', '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (32, NULL, '中国将再次在南海部署“海洋石油981”钻井平台', '【环球时报记者 王晓雄】中国海事局25日宣布,中国将再次在南海部署“海洋石油981”钻井平台,进行油气勘探。去年7月,981钻井平台撤离西沙海域。据越南《青年报》26日报道,中国海事局的公告显示,981平台此次作业时间为6月25日至8月20日,作业地点是海南三亚东南方向约139公里处,位置点是17°03′45″N/109°59′03″E。中国海事局要求船只禁止驶入其2000米范围内。新加坡《今日报...', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">【环球时报记者 王晓雄】中国海事局25日宣布,中国将再次在南海部署“海洋石油981”钻井平台,进行油气勘探。去年7月,981钻井平台撤离西沙海域。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">据越南《青年报》26日报道,中国海事局的公告显示,981平台此次作业时间为6月25日至8月20日,作业地点是海南三亚东南方向约139公里处,位置点是17°03′45″N/109°59′03″E。中国海事局要求船只禁止驶入其2000米范围内。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">新加坡《今日报》网站26日报道称,新加坡东南亚研究所访问学者黎洪协表示,此次钻井平台的部署地点似乎位于中越两国专属经济区的重叠地带。越南《青年报》26日援引消息人士的话称,越南海事部门正在密切监视该平台的部署。去年,中国在西沙海域部署981钻井平台引发越南抗议。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\">“海洋石油981”号 </span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">“海洋石油981”号被称作深水半潜式钻井平台,由中船集团为中国海洋石油总公司设计与建造,是中国首座深水钻井平台,造价约60亿人民币。平台长114米,宽90米,高112米,重量超过3万吨,整个平台共有五层,有两层位于甲板下。平台采用8台各5530千瓦的柴油发电机作为动力来源,拥有8台各重55吨的推进器,每台功率4600千瓦,最大航速为8节。平台可在不超过3000米水深的海域进行钻探工作,钻井深度最多12000米,可变载荷9000吨。</p><p><br/></p>', '1498114280', '1610932937', '', '', '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (33, NULL, '这些年QQ都推出过哪些流氓功能?', '近日,腾讯QQ新上线的QQWIFI功能引来大量用户投诉,腾讯在用户的一片吐槽和谩骂声中灰溜溜地暂停了WiFi分享活动,并出面致歉,称团队已经迅速对该活动做出了优化处理。腾讯QQWIFI功能为何引起如此大的反映,具体事件详细及槽点,大家应该已经明了,我就不赘述了,此处做简单总结:主要是这项功能无法保证用户的个人隐私,相当于将私人WiFi变成公众路由器,存在安全隐患;并且用户想要关闭这项功能就要必须服...', '<p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">近日,腾讯QQ新上线的QQWIFI功能引来大量用户投诉,腾讯在用户的一片吐槽和谩骂声中灰溜溜地暂停了WiFi分享活动,并出面致歉,称团队已经迅速对该活动做出了优化处理。腾讯QQWIFI功能为何引起如此大的反映,具体事件详细及槽点,大家应该已经明了,我就不赘述了,此处做简单总结:主要是这项功能无法保证用户的个人隐私,相当于将私人WiFi变成公众路由器,存在安全隐患;并且用户想要关闭这项功能就要必须服从QQ的霸王条款,操作不便、过程麻烦且耗时太长,超15个工作日。腾讯上线QQWIFI功能应该是想将用户wifi共享以增加用户活跃度,未来以增加商业内容,结果在用户体验上掉以轻心,没有考虑用户的强烈的安全意识心理,结果引起众怒。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">其实回顾腾讯QQ十几年的发展之路,其中不乏类似QQWIFI这样不考虑用户体验的霸道功能,下面我们就来聊聊。</p><h2 style=\"box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; font-weight: 500; line-height: 1.4; color: rgba(0, 0, 0, 0.8); margin: 30px 0px 20px; font-size: 20px; padding-bottom: 12px; border-bottom: 1px solid rgb(239, 239, 239); white-space: normal; background-color: rgb(249, 249, 249);\">QQ圈子:智能算法制造了用户心中的不安因子</h2><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">QQ圈子是腾讯QQ在2012年3月推出的一款功能,基于QQ好友关系、分组名、备注名,通过聚合分类算法进行智能备注好友名和人脉推荐、系统进行用户数据分析并自动添加推荐的人脉至用户圈子。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">QQ圈子本来是有潜力成为一个有价值的功能的,发展好的话可以成为很好的商业化渠道,但是却败在没有处理和协调好中国人在半熟人社交中的隐私顾虑问题,QQ圈子的简单、粗暴和直接让很多用户心生不安和恐惧。QQ圈子的智能算法赤裸裸地告诉用户,原来这么多年来的朋友圈子和分类,都完全在腾讯的掌控之中;用户不是很熟的同学和朋友,不管你愿不愿意都能自动添加;用户不愿意公布自己的真实姓名,但QQ就通过用户的好友备注分析出来并公开了,告诉你别人都是怎么备注你的(完全是流氓霸道范儿)。虽然系统会过滤掉妈妈等称呼类的备注名和含贬义的外号,但对用户来说,不管你的算法如何,用户不能自主选择就找不到安全感。比如就有用户吐槽:再也不用为找不到身边妹子的QQ号而发愁了,但一定会因为现女友找到你前女友QQ而发愁了。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">在这种可信度低的社交圈中,QQ圈子的智能算法让用户对自己的信息没有绝对的把握和自主控制,用户的反响一般都偏向两个方向:一种会认为好用且强大,可以帮忙找回许多丢失的社交关系;另一种则极度反感,感觉不安,对个人信息和社交关系过分曝光而担忧。用户的个人信息和人脉是社交中很敏感的领域,这项功能在个人生活圈使用还好说,但在职场圈子就很难控制了。QQ圈子推出的时候,微信还未大火,很多人的职场社交主要还是依靠QQ,所以QQ圈子的出现让对人脉尤为敏感的职场人士感到不安和恐惧。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">QQ想把手头掌握的二度好友关系、群成员关系、朋友网班级校友关系等所有关系链资源整合到一起,勾勒一个完整的用户社交圈子,但是并没有因此尝到数据挖掘的甜头。</p><h2 style=\"box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; font-weight: 500; line-height: 1.4; color: rgba(0, 0, 0, 0.8); margin: 30px 0px 20px; font-size: 20px; padding-bottom: 12px; border-bottom: 1px solid rgb(239, 239, 239); white-space: normal; background-color: rgb(249, 249, 249);\">联系人头像全点亮:十多年用户习惯难改变</h2><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">不知大家是否还记得,2013年的时候,腾讯手机QQ的最新版本里,联系人头像变成了全都亮着的。导致用户无法一目了然地区分好友在线还是离线,用户十几年的习惯被试图改变,许多用户无法接受,纷纷吐槽和反对。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">QQ原本的头像在线与否的区分导致有相当多灰头像存在,一些用户的隐身使这些信息一定程度上阻碍了沟通,原本是有话想要说,因为灰头像,到嘴边的话又咽下去了,或者转用其他工具。腾讯可能认为这会影响QQ的用户活跃度,试图想改变用户目前的使用习惯,挖掘用户的沟通场景。据了解,腾讯的理想是提供轻松不加思考的沟通服务,保证消息可靠可送达。于是他们在离线消息、跨终端消息漫游做了很多的准备,但发消息的动机,却没有彻底的解决,反而引起了用户的不适应和不接受。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">腾讯在重新定义头像信息上面的尝试太过大胆了,再好的点子也不敌习惯的力量。</p><h2 style=\"box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; font-weight: 500; line-height: 1.4; color: rgba(0, 0, 0, 0.8); margin: 30px 0px 20px; font-size: 20px; padding-bottom: 12px; border-bottom: 1px solid rgb(239, 239, 239); white-space: normal; background-color: rgb(249, 249, 249);\">QQ悄悄话:不被注意也被不在意的无聊功能</h2><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">QQ悄悄话是QQ5.1版新推出的一个功能,可以匿名发送信息给QQ好友。对这个功能,我只能说没注意也不在意。这种建立在熟人社交上的匿名聊天功能总让人感觉没有多少意义,QQ悄悄话制造的最常见的两种场景就是表白和威胁,匿名表白这种方式本身就挺LOW的,如果你一直不公开,对方也不知道你是谁,最后也就不了了之了;而匿名威胁只会给用户带来恐惧感和对产品的厌恶感。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">对很多用户来说,悄悄话其实也带有一定的强制性——用户对悄悄话消息的接受没有自主权,不管你愿不愿意使用这项功能,别人给你发了悄悄话你都会接收到,表白也好,威胁也罢。不过,目前悄悄话还未被重点推广,很多人并未使用这项功能(其实QQ的很多功能都逐渐被忽视,包括QQ主体),如果这项功能使用者多了,形势可能就很难控制了。</p><h2 style=\"box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; font-weight: 500; line-height: 1.4; color: rgba(0, 0, 0, 0.8); margin: 30px 0px 20px; font-size: 20px; padding-bottom: 12px; border-bottom: 1px solid rgb(239, 239, 239); white-space: normal; background-color: rgb(249, 249, 249);\">匿名聊天:恶意抹黑和爆料的理想场所</h2><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">说到匿名聊天,手Q5.1新版本中还推出了匿名群聊功能。在群主或者管理员启动匿名群聊模式后,用户就可以选择匿名模式发送匿名消息,后台随机从匿名池子中随机分配匿名名称展示。匿名名称在后台设定的时间会过期;管理员可以对匿名用户禁言,用户可举报。腾讯将匿名聊天功能植入进了手机QQ当中,主要是为了增加一直以来传统聊天模式的乐趣性。而实际上这种所谓的趣味性其实更多地体现在一些恶意抹黑和爆料的行为上,这种弱社交属性的聊天开始因为新颖会吸引用户,但不久大家都会各自散去,形不成主流。这个社会更多的还是正能量,不是吗?</p><p><br/></p>', '1498114280', '1610932910', '', '', '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (34, NULL, '去中心化:微信抄袭泛滥的原罪?', '如今微信公众号抄袭泛滥已经是不争的事实,早在今年初,新华社就已发文批判微信公众号抄袭严重,各媒体也呼吁“别让‘抄袭风’毁了微信平台。今年5月份,上海律师朱斌提交的微信公众号抄袭的起诉状已被立案,书面受理通知已经发出,国内首起针对公众号抄袭的案例维权也即将启动。关于微信公众号,圈内有句话叫“1人原创,99人抄袭。”笔者最近多次在微信搜索本人文章标题,每篇文章的搜索结果达到几十到几百条不等,大号往往会...', '<p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">如今微信公众号抄袭泛滥已经是不争的事实,早在今年初,新华社就已发文批判微信公众号抄袭严重,各媒体也呼吁“别让‘抄袭风’毁了微信平台。今年5月份,上海律师朱斌提交的微信公众号抄袭的起诉状已被立案,书面受理通知已经发出,国内首起针对公众号抄袭的案例维权也即将启动。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">关于微信公众号,圈内有句话叫“1人原创,99人抄袭。”笔者最近多次在微信搜索本人文章标题,每篇文章的搜索结果达到几十到几百条不等,大号往往会署名,小号直接抄,不署名或者署上其他人的名字,然后改掉出处的比比皆是。如果要一个个去维权,可能耗费巨大的精力与时间,因此,有时候抓到有知名度的大V抄袭或转载会要求其删稿,但在看到一大波未授权的搜索结果的时候,有时候只能一声叹息。对于微信抄袭现象痛恨但无能为力,这可能是很多原创者共有的悲哀。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">目前,微信对公众平台泛滥的抄袭现状也开始有整顿措施,比如发布了处罚规则,侵权达五次将永久封号。另一方面,微信公众平台正式上线“原创声明”功能,第一批公测对象为微信认证的媒体类型公众账号。申请“原创声明”的文章发布后,“原创声明”系统会对会自动注明出处。微信内部有同学向笔者表示,目前仍是原创声明、评论、页面模板合成“原创保护”,按照原创度、原创文章数、注册时间筛选出符合条件的公众帐号,符合条件的帐号即可收到开通通知。</p><h2 style=\"box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; font-weight: 500; line-height: 1.4; color: rgba(0, 0, 0, 0.8); margin: 30px 0px 20px; font-size: 20px; padding-bottom: 12px; border-bottom: 1px solid rgb(239, 239, 239); white-space: normal; background-color: rgb(249, 249, 249);\">去中心化意味着无为而治缺乏监控 流量驱动导致泥沙俱下抄袭泛滥</h2><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">是什么造就了微信公众号抄袭的泛滥?这个我们从微信的去中心化去追溯。微信本质是一个中心化的平台,而微信公众平台是微信服务平台的一端,其本质是需要满足人们对各垂直领域多样化的阅读需求,所以把这部分平台开放出来,让各领域具备“认知盈余”的各类人进入平台提供垂直领域特色的资讯,这就是去中心化。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">去中心化导致的一个结果首先在于微信公众号账号开设的门槛低。可以说,任何人都可以开设公众账号,而公众账号运营者背后的动机无疑就是寄希望该账号形成巨大的粉丝量,进而通过流量变现。利益驱动导致微信公众号粗放式的扩张,泥沙俱下,平台的监管在此时已经难以跟进。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">张小龙曾经阐述微信的去中心化,他希望微信成为一座森林,而不是自建宫殿,所有的生物或者动植物能够在森林里面自由生长,而不是微信自己去建造。这个比喻很好的阐述了去中心化,即微信并不去引导、强设置一个中心化的流量入口来对接公众平台方、第三方。微信是通过无为而治,不引导不设限,让内容与用户行为在其中自由生长,让第三方去中心化地组织自己的客户。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">这导致的结果就是,所有人都必须自己去找流量与用户。流量与用户的来源对于小部分人来说,是来自于个人影响力,比如原微博大V可以通过引导将粉丝导入自身公众号,这部分人很容易可以形成海量粉丝。对于大部分公众号来说,找流量找客户,首先就要找内容。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">通过内容引导关注者分享,形成粉丝吸附力,这是完成利润创收的前提(比如微信公众号流量主开通需要5万粉丝)。但事实上,如前面所述,微信公众号没有任何门槛,结果是许多没有原创能力的公众号运营者都参与了进来,即便对这些抄袭者设置各种处罚条例,依然阻挡了这部分人对内容的复制搬运,这部分运营者如果不去抄袭、转载、搬运,他们的公众号便会荒芜。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">去中心化意味着微信公众号需要跟第三方一起来共同建造一个系统,这个系统的长盛不衰需要将优质内容源源不断的流动触达用户,而微信的去中心化的本质是不推荐、不引导、不监控,这决定了其对内容的放任姿态,在张小龙看来,没有平等话语权的平台里,很难有所谓的用户价值。这只对了一半,去中心化可以让优质内容脱颖而出,但事实上未必可以让优质内容创造者脱颖而出。</p><h2 style=\"box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; font-weight: 500; line-height: 1.4; color: rgba(0, 0, 0, 0.8); margin: 30px 0px 20px; font-size: 20px; padding-bottom: 12px; border-bottom: 1px solid rgb(239, 239, 239); white-space: normal; background-color: rgb(249, 249, 249);\">流量生意与去中心化的本质目的产生矛盾 原创内容生产者的价值被忽视</h2><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">虽然腾讯希望广大合作者能够借助微信平台的巨大能力,实现自身的成长,并同时反哺这个平台。但微信的流量机制又在倾向于扶持垂直领域的一个个中心化的流量个体,推动粉丝与流量的中心化。这里我们看到,微信引入广点通,为粉丝过5万的公众号开通流量主功能匹配流量广告,间接扶持内部的流量中心。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">流量中心不等于优质原创内容中心。在广点通正式放开之后,由于微信公众平台的去中心化形态,那些真正能生产优质原创内容但缺乏粉丝的自媒体,并不能从微信获得中心化的入口曝光与推荐。因为绝大多数有资格试水广点通的公众号以粉丝数为评判标准,这其中,去中心化的自然生长的机制孕育出许多复制粘贴党,变相掠夺别人的文章或内容充实自身的粉丝与流量与收入,并不断变相伤害原创作者本身的内容制造动力与价值释放。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">这里看出,微信生态是一个矛盾的综合体。腾讯是做流量生意,流量生意的本质是将内容变现,广点通接入微信之后,即流量资源提供方对应自媒体运营者,共同向广告主收费,但从根本上,公众号导入的流量都被微信吸收。当优质内容被各个中心化的大号轻易拿去换取流量资源时,许多内容创造者的价值被践踏,因为并不是每个优质内容创造者都拥有粉丝号召力,而前面提到原创保护机制,事实上有极高门槛,将这部分原创者的版权保护权利被剥夺,这套机制反过来让原创者的优质文章等内容为其他拥有海量粉丝的大号做了嫁衣。从这里看,微信公众平台生态圈正在不可避免走在微博这种扶持大V的老路上。</p><h2 style=\"box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; font-weight: 500; line-height: 1.4; color: rgba(0, 0, 0, 0.8); margin: 30px 0px 20px; font-size: 20px; padding-bottom: 12px; border-bottom: 1px solid rgb(239, 239, 239); white-space: normal; background-color: rgb(249, 249, 249);\">微信公众平台的稳定性需要中心化与去中心化的结合</h2><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">张小龙曾经说过,如果没有关注任何公众号的话,可能看不到任何公众号的存在,微信并没有一个中心入口来提供给他们,这是去中心化在微信里面的一种体现。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">根据凯文凯利《失控》一书中论述的去中心化的观点就是:它没有强制性的中心控制,次级单位具有自治的特质,并且次级单位之间彼此高度连接。其中的优点很明显,表现为适应性强、可进化性、弹性、无限性、可以放大结果。所以对应到微信,张小龙就说到,每天有近千万的公众号,在微信里面很活跃,他们的活跃是他们通过自身的努力带来的。这里体现出成千上万的公众号的自适应性与无限性的增长可能,我们也看到微信的去中心化机制导致微信公众号迅速形成的指数级别增长。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">但缺点也很明显,就是不可控、不可预测、不可知。优质的原创内容、劣势的谣言、不可避免的版权侵权、不可阻挡的大量抄袭、人云亦云的鸡汤也从中不断涌现诞生这些负面效应不可避免也会对微信产生伤害力。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">去中心化可以对应到我国古代道家的思维本质。《道德经》里面讲:人法地,地法天,天法道,道法自然。讲究无为而治,不讲究控制,这可能是去中心化的思维。而儒家则讲“现世事功,治国平天下。”,讲主观能动性与控制,这是中心化的思维。在古代最终是儒家掌控了主导权,也确实也把这套思维打造成了一个封闭而又稳定的文化体系。而张小龙要把微信打造成一个动态而又稳定的系统,必然需要在去中心化的基础上,加上中心化的控制与主导。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">去中心化的本质是让微信公众平台整个生态形成一个缺乏中心点的森林。微信作为一个封闭生态,让森林万物生长。但偌大的森林会将许多东西包裹隐藏起来,大量内容被抄袭同时,也缺乏一个中心化的流量入口去曝光监控它们。这时候去中心化往往会导致一种失控的局面——各种公众号为在基于找流量为自身创收导致抄袭的泛滥,让原创者生产内容的动力下降,并产生大量的原创内容版权法律纠纷,如果抄袭事件持续发酵导致后续大规模的侵权举报大量发生,伤害到的则是微信品牌本身。所以,去中心化的个体生存所依赖资源的资源越少,越需要控制力。公众号本身是偏媒体属性,媒体属性必须要有门槛。那么在这个基础上,必然需要引入中心化的控制,才能避免整个生态系统的失控。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">但去中心化是互联网界推崇的一种思维,在移动互联网行业,很少有产品能够像微信一样可以真正做到这一步。回到标题的命题,我们可以总结,优质原创内容是否为内容生产者带来利益与微信不是共赢关系,而优质内容是否产生足够多的流量才能与微信产生共赢关系,所以我们看到微信“原创保护”的对象也是针对流量大户:比如首先是认证的媒体或企业公众号,运营时间在1年以上,且有持续的运营规划,且按照原创度、原创文章数、注册时间筛选出符合条件的公众帐号。这套过滤机制几乎将绝大部分公众号挡在了原创保护之外。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">因为微信公众平台去中心化的设计,本质是流量生意,每一个公众号个体自己创造或聚拢流量,每一个小的中心都在为整个微信平台大池子贡献流量,各种中心化的个体针对各种原创内容的抄袭转载恰恰让优质内容在公众号之间不断流转,带动了用户活跃度,也带动了整个微信自媒体内容生态圈的繁荣。只有优质内容被持续搬运到流量大户,才能将盘子做大,这符合微信生态设计的愿景,这种顶层设计可能才是微信公众平台抄袭泛滥的原罪。</p><p><br/></p>', '1498114280', '1610932852', '', '', '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (35, NULL, '百度知道再升级,知识+注入新动力', '百度知道已经十周年,庞大的用户群和交互量可以说是一种成功的证明,但在移动互联网浪潮和互联网+的催逼之下,它还要进一步升级,在十周年庆典上提出的“知识+”或许会百度知道带来新希望。百度知道是顺应互联网用户求职需求应运而生的一个UGC知识传播平台。百度知道里所有的问题都是源自用户的疑惑,所有的答案也来自于用户的解答。百度知道在成立之初就是希望通过搜索引擎把碎片化零散的信息知识,快速反馈给需要的用户。显...', '<p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">百度知道已经十周年,庞大的用户群和交互量可以说是一种成功的证明,但在移动互联网浪潮和互联网+的催逼之下,它还要进一步升级,在十周年庆典上提出的“知识+”或许会百度知道带来新希望。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">百度知道是顺应互联网用户求职需求应运而生的一个UGC知识传播平台。百度知道里所有的问题都是源自用户的疑惑,所有的答案也来自于用户的解答。百度知道在成立之初就是希望通过搜索引擎把碎片化零散的信息知识,快速反馈给需要的用户。显然知道的诞生,消除了人和知识间的距离,满足了用户诉求。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">从2005年诞生到2011年的PC时代,百度知道是百度知识搜索类产品最重要的内容。它注重知识的科学性、严肃性和时效性,努力的方向就是快速准确的为提问者作答。百度知道在这段时间里把门槛做低,让百度知道成为各种人群获得信息知识的重要渠道。这种做法最终积累了大量人气和用户,同时调动了平台里参与者的积极性,赋予了平台长久活力。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">这样百度知道在解决基础广义的求知问题上,为用户和百度都做出了巨大贡献。同时百度知道积累的大量用户又成为百度知识类产品布局的重要基础,为百度中间页战略推进立下了汗马功劳。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">现在百度知道已经摆脱单纯互动平台,依托之前积累起来的用户,渐形成了一个以“基础知道问答”为中心,以作业帮、宝宝知道、拇指医生等中间页移动垂直领域产品为支点的新体系。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">在移动互联网浪潮和互联网+大势之下,百度知道希望通过对自身平台用户精准数据分析,为不同用户提供更好的服务,同时将UGC问答生态移植到移动互联网上,获取更多的移动互联网用户。因此从2014年开始,作业帮、宝宝知道、拇指医生等几个APP依次上线,这标志着百度知道从基础问答中崛起,开始进入更高端的垂直细分领域。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">作业帮诞生于2014年初,是百度知道最早进入垂直细分领域的产品。它是专注于为K12教育提供垂直专业服务,为中小学生服务解决一些作业的问题。作业帮比较低调,除了在百度知道的主站做一些引导,百度并没有投入外部的推广资源,几乎完全依靠口碑效应在学生群体中秘密传播。但作业帮满足了学生的需求,取得了非常好的成绩。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">2014年5月份推出宝宝知道是百度知道的母婴项目,为孕产妇提供从孕前准备到生产到产后恢复的知识帮助和心理帮助。后来宝宝知道更加注重服务的推送,会根据每个妈妈和宝宝的需要,为其量身打造相应的服务,针对不同孕龄的妈妈和不同年龄的宝宝,“宝宝知道”都会配置推送个性化的知识。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">拇指医生是百度知道向在线医疗领域渗透的产品,它为诊前、术后、产后有需要的医生提供垂直化的服务,对大众也提供一些专属的健康咨询、答疑解惑、疾病预警的服务。无疑拇指医生对于解决医疗领域信息资源不匹配、信息不对称、信息鸿沟的问题有很大帮助。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">由于涉及到母婴、教育和医疗,百度知道需要专业化的知识,所以百度就通过找专家的方式来解决这个答案权威性的问题。比如关于母婴的问答,由《百科名医网》数百名拥有丰富经验和知识的孕产育领域专家医师来回答问题。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">而专业化的知识完全可以让百度知道垂直领域的产品向着高质量的UGC平台转变。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">之前百度知道的UGC运作模式是一种扁平化的“众问+众答”,谁都可以问谁都可以答,需要解答的问题偏重知识类,较为简单,不需要长篇累牍深度解读;而知乎等一些高质量的UGC社区呈现的是金字塔式分层,高质量的UGC贡献者永远是少数。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">百度知道扁平化UGC很利于吸引大众用户参与到平台来,但是并不深度的解答不一定能满足垂直领域用户的需求,这是知道不得不面对的弱势。不过,随着百度知道进入垂直领域,引进专业人才解答问题,将会逐渐填补这项弱势,甚至未来很有可能知道会产生几个类知乎的高质量问答平台。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">根据百度给出的数据,在细分领域,作业帮下载激活量已超过2000万,宝宝知道在母婴类APP市场占比已高达38%,“拇指医生”每天满足5万人对健康医疗类问题的咨询,累计帮助了超过3600万名患者。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">形势可以说是一片大好,不过百度知道的布局依然在不断升级。在百度知道10周年庆典上,百度知道提出了将提供线上线下服务一体的知识服务,所谓的知识+。百度想要通过“知识+”战略实现细分、渗透,在移动互联网、智能设备、物联网、LBS、O2O的发展背景下,在连接人与服务的布局下,进入到人们的生活场景中。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">解读出来就是百度知道将要进行两个方向的布局。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">一个是深化目前垂直领域产品的服务,希望依托智能化的搜索,在不同的医疗诊疗里,给大众提供更多专业化、个性化的基于每个人的聚合知识。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">另一个是进入更多的细分领域。作业帮等APP起源于2014年百度知道大数据显示的三个搜索高频词:母婴、教育和医疗。但是还有更广泛的人群没有覆盖住,百度知道显然将在更多细分领域发力,在移动化的场景下,在更多人群中提供更多知识服务。可以想象未来还会有更多类似宝宝知道和作业帮的垂直领域产品脱颖而出,为解决用户进一步的求知需求而做出贡献。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">百度知道运行10年来成绩斐然,彰显了强大的生命力,从这一点来看,这个产品本身的逻辑和立意,符合互联网的求知精神和需求。百度知道现在将面临升级,“知识+”战略作为一种动力,很可能给百度知道带来全新的改变,无疑也将更好满足未来新时期用户的求知需求。</p><p><br/></p>', '1498114280', '1610932825', '', '', '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (36, NULL, '域名天价估值助上市公司狂吸金 小散再难以小博大', '有业内人士指出,如果同时持有300个域名,每年仅续费就要花2万元今年5月,上市公司多伦股份宣布改名为“匹凸匹金融信息服务(上海)股份有限公司”遭到证监会调查和市场吐槽。更让市场惊诧的是,该公司曾在公告中称其www.P2P.com的网站域名“预计商业估值为10亿元”,后因上交所问询而删除这一句话。而不久前,互联网公司奇虎360也任性地花费1700万美元(约合人民币1.06亿元),将顶级域名360.c...', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-family: 楷体;\">有业内人士指出,如果同时持有300个域名,每年仅续费就要花2万元</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">今年5月,上市公司多伦股份宣布改名为“匹凸匹金融信息服务(上海)股份有限公司”遭到证监会调查和市场吐槽。更让市场惊诧的是,该公司曾在公告中称其www.P2P.com的网站域名“预计商业估值为10亿元”,后因上交所问询而删除这一句话。而不久前,互联网公司奇虎360也任性地花费1700万美元(约合人民币1.06亿元),将顶级域名360.com收入囊中,成为全球公布成交价格最高的域名收购。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">在互联网时代,优质域名被高价收购的案例并不少见,但更多的是成千上万的域名沉睡在“米农”(域名投资者)的手中,以每年几十元甚至上百元的手续费保留着,等待被有心人发掘。域名投资究竟能否以小博大、一夜暴富?在域名投资已经如火如荼的今天,新“米农”还能分一杯羹吗?</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\">上市公司打“域名”牌转型还是炒作?</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">今年5月,上市公司多伦股份发布公告称将更名为“匹凸匹”,即P2P的音译版。并启用商业估值约为10亿元的www.P2P.com域名,引市场热议。www.P2P.com域名是否价值10亿元尚无法准确推断,但更名、启用新域名等一系列动作却扎扎实实地收获了5个涨停板。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">更名公告发布一个月后,羊城晚报记者登录该网站发现,目前网站并没有关于互联网金融业务的实质内容,却打上了“这是一个价值1亿美元的域名”、“岂止于亿,因你精彩”的宣传用语。多伦股份的互联网金融转型或许还在路上,但是不可否认的是,天价域名已经为上市公司带来了可观的财富效应。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">域名是互联网唯一的门牌号,简短易懂的域名价值优势更加明显,能让网站更易访问,从而凸显网站的品牌价值。而近年来,域名的收购多次成为热点,也成为上市互联网公司提振股价的一种手段。无独有偶,奇虎收购360.com的第二天,其股价飙升,市值增长了1亿美金,与多伦股份借助www.P2P.com自我包装有同样的财富效应。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">近年来域名收购价格屡创新高,除了创纪录的360.com外,去年小米用新域名Mi.com替换原域名xiaomi.com,据传收购价高达2000万元人民币。而京东目前使用的域名JD.com、目前跳转至万达集团董事长之子王思聪新浪微博的域名wanda.com的市场估价均高达上千万元人民币。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">根据国外域名行业刊物DN Journal统计显示,去年11月,单字母域名Z.com被日本GMO公司以8亿日元收购,约合人民币4200万元,创去年域名投资最高价格纪录。Youxi.com和37.com分别以1500万元和1200万元人民币被中国游戏公司收入囊中,也成为去年收购金额前十的案例。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\"> 30元注册转身可估值上百万?</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">“匹凸匹”域名1亿美元的估值只是域名投资领域天价猜想的一个缩影,近年来,各种天价域名收购故事被炒得沸沸扬扬,吸引“米农”们前仆后继进入域名投资。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">记者通过搜索引擎输入“域名投资”,相关搜索结果就高达14万个,除了类似易名中国、金名网、万网等域名注册或交易网站外,还有不少域名投资交易的论坛。在这些投资平台上,普通拼音双拼、三拼域名的价格从数百元到几十万元不等,比如标价较高的qiche.com谐音“汽车”,在易名中国网站上目前竞拍价达到790.5万元,hefei.net谐音“合肥”的域名在金名网上也挂出售价20万元。从出售的域名标价上看,双数字、三数字域名或较有意义的双拼、三拼域名挂出的普遍标价较高。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">域名投资看似专业,操作步骤却很简单。只需要先在域名服务商网站上查询域名是否被注册,再选择未被注册的域名付费注册即可。注册年限默认1年,最长可注册10年。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">注册和保留域名的费用并不高。记者看到,在服务费较低的服务商网站上,注册一个.com后缀的域名仅39元,单年续费价格为55元,连续续费多年还可享受优惠。如果看中了别人的域名,对方也同意转让,在域名服务上网站上的转让费也仅仅几十元。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\"> 现状</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\"> 大“米农”盆满钵满 小“米农”入不敷出</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">事实上,要想轻松通过几十元以小博大,在当下的域名投资市场越来越不容易。易名中国的域名卖家侯先生告诉记者,虽然注册域名费用不高,但是域名投资兴起多年,具有投资价值的域名都已经被抢注,要想通过发掘新域名发家致富“恐怕已经很难了”。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">“除了加入一些域名投资的论坛或QQ群挖掘一些低价域名,较快捷的投资途径还可以抢注刚刚过期的域名。”一旦域名到期前未按时续费,之后经历注册商保留期、赎回期后仍未付费,域名将被删注,并再次开放注册。“但抢注域名并不是那么容易的,好的域名一般都被捂得严严实实的,而且过期域名通常有专业的抢注公司和专业投资者先下手,普通投资者抢注成功的可能性并不高”。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">投资域名多年的科技自媒体人“歪道道”在接受记者采访时表示,目前域名投资领域“二八分化”十分明显,“目前的情况是,小‘米农’入不敷出,中等‘米农’在纠结中坚持,只有大‘米农’大把捞钱。”而域名投资市场源源不断进入的新“米农”大多是因为天价域名的个案驱动的。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">以一个手持约300个域名的“米农”为例,每年续费至少需要2万元左右,如果手中的域名没有被有心人发掘,这部分“沉睡”的域名将不能套现,续费费用成为无底洞的投入。“赚钱的其实永远是少数,域名界目前有蔡文胜、姚劲波这种神话一般的存在,好的域名都掌握在少数人手中,大多数普通投资者都是冲动消费,大部分都是域名无人问津,每年还要续费。”“歪道道”说。 (莫谨榕)</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\">关注</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><span style=\"box-sizing: border-box; font-weight: bolder;\"> 估值难定套现全靠“拼运气”</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">因为域名估值并没有准确依据,域名交易定价基本上基于买卖双方的约定价格,投资的域名要套现必须有“下家”购买,因此,有受访“米农”把域名投资的成功总结为“30%的人脉+50%的运气+20%的眼光”,“目前域名投资市场总体很活跃,但是注册域名太多了,虽然不时有好域名高价成交的案例,但同时,每天也在产生大量的垃圾域名。要选择一个好域名,运气很重要。”一位资深“米农”表示。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">根据中国互联网络信息中心(CNNIC)发布的《第35次中国互联网络发展状况统计报告》显示,截至去年年底,我国域名总数为2060万个,年增长率为11.7%,其中“.CN”域名总数年增长为2.4%,达到1109万,在中国域名总数中占比达53.8%。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">据了解,目前业内评判域名的估值主要根据域名的后缀、长度、影响力和市场需求。该资深“米农”告诉记者,较有经验的“米农”一般选择两种域名,一种是出于看好域名所含意义,认为有升值空间。另一种是,域名和某些大品牌或者行业相关联。“但也有干扰的因素,比如一些突发的热门事件中不经意出现的代表词汇,在一段时间内会非常受欢迎,但是过不了多久就无人问津了”。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">愿意高价收购域名的买家可遇不可求,不少“米农”只能每年持续续费“拼运气”。遇到有意愿的买家时,又难以对域名进行正确估值,犹豫不决,错失机会。“歪道道”告诉记者,在如今的域名市场,倒卖域名的“米农”同行和真正对域名有需要的公司、网站混杂在一起,真正能卖出好价格的大部分是有需求的公司,但普通投资者经常很难分辨。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">他表示,很多新“米农”一开始进入时都抑制不了自己的冲动。“我建议新‘米农’刚开始投资时一定要冷静。收购或初测域名时,千万不要‘脑补’出各种不相干的内容,一定要确定域名的唯一性,看看这个域名是不是在这个含义中是最好的、最不可替代的,再考虑入手。出售时,也要对自己的域名理性估值,该出手时就要出手了”。</p><p><br/></p>', '1498114280', '1610932784', '', '', '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (37, NULL, '人社部表示7月底前兑现机关事业单位基本工资调整', '央广网北京6月27日消息(记者何源)据中国之声《新闻和报纸摘要》报道,人社部昨天(26日)表示,7月底前兑现机关事业单位基本工资调整。今年1月,伴随机关事业单位养老保险改革的实施,调整机关事业单位工作人员基本工资标准的工作,也同步开始进行。人社部新闻发言人李忠表示:“截至目前,调整基本工资标准的准备工作已全部完成。从6月份起,地方已陆续开始兑现增加的工资。由于各地情况不一,全国范围内将于7月底前基...', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">央广网北京6月27日消息(记者何源)据中国之声《新闻和报纸摘要》报道,人社部昨天(26日)表示,7月底前兑现机关事业单位基本工资调整。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">今年1月,伴随机关事业单位养老保险改革的实施,调整机关事业单位工作人员基本工资标准的工作,也同步开始进行。人社部新闻发言人李忠表示:“截至目前,调整基本工资标准的准备工作已全部完成。从6月份起,地方已陆续开始兑现增加的工资。由于各地情况不一,全国范围内将于7月底前基本完成。”</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">针对媒体报道,部分地区公务员工资在调整中“不升反降”的情况,李忠表示,由于这次调整是与机关事业单位养老保险改革同步推进,按政策标准增加工资之后,还要与养老保险的个人缴费部分相抵消:“由于各地工资收入水平存在差异,养老保险个人缴费也相应存在差异,而基本工资实行全国统一标准,不同人员扣除个人缴费后实际增加的工资有多有少是正常的,理论上会存在少数人员增加工资较少、个人缴费较多的情况。有关部门将指导地方采取相应措施,不出现‘不涨工资’的情况。”</p><p><br/></p>', '1498114280', '1610932752', '', '', '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (38, NULL, '雇佣制过时了,打造你的人才联盟!', '二十多年前,中国的国有企业和政府机关的工作大都很稳定,只有你不犯大错误,就可以作为“单位人”一直工作下去。1992年随着市场经济体制的确立,这种事实上的“终身雇佣制”受到了来自外企和民企的冲击,“自由雇佣制”和市场经济被想当然地联系在一起。所谓“自由雇佣”,就是作为个人有选择雇主的自由,但如果雇主对某个雇员不满,他可以以某个理由解雇这名雇员。自由雇佣制催生了大量的猎头和招聘公司。人才开始在各大公司...', '<p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap;\">二十多年前,中国的国有企业和政府机关的工作大都很稳定,只有你不犯大错误,就可以作为“单位人”一直工作下去。1992年随着市场经济体制的确立,这种事实上的“终身雇佣制”受到了来自外企和民企的冲击,“自由雇佣制”和市场经济被想当然地联系在一起。所谓“自由雇佣”,就是作为个人有选择雇主的自由,但如果雇主对某个雇员不满,他可以以某个理由解雇这名雇员。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap;\">自由雇佣制催生了大量的猎头和招聘公司。人才开始在各大公司之间高速流动,越来越少的人一辈子只在一家公司工作。企业不再保证会给雇员一个长期稳定的职位,而个人也大多数没想到要在一家企业工作一辈子。你看现在各种各样的互联网招聘公司的广告,创意大都是一样的:对老板不满意?想要更大发展?想要更高薪水?上某某网,更好的职位在等着你!更高的薪水在等着你!</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap;\">这种公司和个人之间的自由雇佣关系优化了人力资源配置,但也带来了一些负面效应,那就是公司和个人之间的信任和忠诚都大幅下降。由于缺乏组织忠诚度,很多人总想着一有机会就跳槽,而一些公司则不愿意培养人,他们的逻辑也很简单:好不容易培养了一个人,别人给高一点的薪水就走了。于是乎,公司在失去高潜力人才,而人才也无法充分投入工作,而是在市场藏上不断寻找机会。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap;\">老路已经无法回去了。终身雇佣制这种传统模式非常适合相对稳定的时期,但它对于当今的网络时代来说太过死板,不再适合现在不断变革的宏观环境。几乎没有公司能继续为员工提供传统的职业晋升阶梯,就算以“终身雇佣制”见长的日本企业,在糟糕的宏观经济环境下,很多企业也不得不开始裁员。在这种环境中,要求员工和公司保持长期关系是不现实的,彼此之间的忠诚更是罕见。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap;\">有没有什么办法在保持自由雇佣制的弹性基础上,又让员工和公司之间保持相互信任和忠诚关系呢?至少在一个阶段内如此。领英(Linkedin)的创始人里德·霍夫曼基于他的观察和实践,提出了一个新的人才策略框架:使雇主与员工之间的关系从商业交易转变为互惠关系的联盟,这种雇佣联盟关系为管理者和员工提供了建立信任、进行投资,以建设强大企业和成功事业所需的框架。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap;\">这种互惠关系需要把心照不宣的心理契约书面化。雇主需要告诉员工:“只要你让我们的公司更有价值,我们就会让你更有价值。”员工需要告诉他们的老板:“如果公司帮助我的事业发展壮大,我就会帮助公司发展壮大。”于是,员工致力于帮助公司取得成功,而公司致力于提高员工的市场价值。通过建立互惠的联盟,雇主和员工可以投资于这段关系,并承担其中可能发生的一些的风险。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap;\">比如说,当老板和人力资源主管为了培养一个人花了很多钱在培训项目上,却看到这个人在参加完培训几个月之后就离职,反应自然是有些沮丧。但如果因此就去削减培训预算,又不能为组织发展提供持久的推动力。这个时候,比较理想的方式是公司和个人都开诚布公地设定各自的预期:员工可以表达自己想要发展的技能以及他对公司的承诺,而公司则可以明确表达他的投资以及期望回报。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap;\">其实里德.霍夫曼的这种提法在学理上并不新鲜,在组织行为学的教科书中就有提及:组织存在的目的在于让一群人一起完成一个共同的目标。一个组织就像一个职业球队,每个球员都有明确的目标(比如说赢得比赛),队员为了实现这个目标聚到一起,各自既有分工也有协作。只有当队员们彼此信任,将团队成就置于个人成就之上时,团队才会胜利。团队胜利也是队员实现个人成就的最佳方式,胜利队伍的队员会被其他队争相求购,他们的职业价值也随之提升。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap;\">尽管职业球队不采用终身雇佣制,但相互信任、相互投资、共同受益的原则仍然适用。只有当队员们彼此非常信任,将团队成就置于个人成就之上时,团队才会胜利。而团队胜利是队员实现个人成就的最佳方式。胜利队伍的队员会被其他队争相求购,它们看中的既有这些队员展现出的技能,也有他们帮助新队伍建立胜利文化的能力。可以说,团队和球员在赢得比赛这件事情是真正的双赢。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap;\">当然在中国,这种联盟的人才策略也需要做一些本地化的调整。虽然公司不是家庭,无需刻意营造一种温情脉脉的家庭氛围,但组织成员之间的相互关心和欣赏依然是必要的,它能增强人对组织的情感归属。另外,对于那些已经离开公司的员工,公司和员工之间的关系也并非因此而结束。他们可以保持像朋友一样经常联系,这种人力资源网络就像社会资本一样,能给双方带来互惠互利。</p><p class=\"text\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap;\">在一个快速变化的年代,我们已经没有办法“终身雇佣”了,公司和员工都需要一定的弹性。公司无法假装温情脉脉地说“公司就是家,我们是家人”,员工也无需假装表态“生是公司人、死是公司鬼”。但公司和员工在约定时间内的相互忠诚依然是必要的,因为没有这种忠诚度就无法长期考虑和投资未来。人才联盟制能很好地解决这个问题:它让公司和个人达成一个心理契约,让双方都专注于中长期收益,为公司带来更多创新、韧性和适应性,实现真正的双赢。</p><p><br/></p>', '1498114280', '1610932716', '', '', '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (39, NULL, '首届移动互联网创业峰会聚焦移动支付', '中新网厦门6月27日电 (记者 杨伏山)首届“移动互联网创业峰会”27日在厦门举办,来自社会各界的企业家、品牌规划家、战略投资家、个体营业主和关注移动互联网商业人士300余人参会,聚焦互联网时代移动支付新趋势。据介绍,全球52亿移动用户中,目前仅有30%的智能手机使用率,剩余70%的广阔市场仍待挖掘。随着通信技术的不断高速发展和普及,中国移动互联网迅速起飞,目前,中国移动互联网用户数已达到中国互联...', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">中新网厦门6月27日电 (记者 杨伏山)首届“移动互联网创业峰会”27日在厦门举办,来自社会各界的企业家、品牌规划家、战略投资家、个体营业主和关注移动互联网商业人士300余人参会,聚焦互联网时代移动支付新趋势。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">据介绍,全球52亿移动用户中,目前仅有30%的智能手机使用率,剩余70%的广阔市场仍待挖掘。随着通信技术的不断高速发展和普及,中国移动互联网迅速起飞,目前,中国移动互联网用户数已达到中国互联网用户数的八成,中国有望主导未来移动商务革命。 由中金汇通金融技术服务有限公司主办的是次峰会,邀请多位互联网业界人士到会分享经验,畅谈移动互联网趋势下热门行业的兴起以及如何把握移动互联网带来的商机。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">与会业界人士认为,中国移动互联网强劲发展态势2015年将延续,而移动支付则是发展的必要基础。可以预见,未来现金及银行卡交易将逐步被移动支付所取代。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">移动支付未来的商业形态有很多种,比如大数据,利用海量的用户支付数据,以此为基础,进行精准营销,获得任何时代都无法企及的高性价比营销收入;比如未来微商,所有人都可能是微商店主,都需要资金交易,因此移动支付的普及将会带来巨额财富,今后势必成为各商家争夺的重点。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">主办方称,期盼峰会的举办有助于使移动支付能够为更多人所认识并带来利益,从而促进大众创业,万众创新。</p><p><br/></p>', '1498114280', '1610932673', '', '', '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (40, NULL, '互联网金融:烫手的牌照', '东方网记者朱恬6月26日报道:随着互联网金融的兴起,相应的牌照是否会逐步放开?互联网金融牌照又有何意义?在2015陆家嘴论坛浦江夜话环节中,互联网金融专家对此发表了看法。图片说明:汇付天下董事长兼CEO周晔。汇付天下董事长周晔坦言,目前的行业对互联网金融牌照普遍持两种态度,一种是特别想拿到牌照,拿着这张牌照就能踏实经营,防止被同行牵连;另一种是害怕拿牌照,因为牌照意味着束缚。图片说明:点融网联合首...', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; text-indent: 2em; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">东方网记者朱恬6月26日报道:随着互联网金融的兴起,相应的牌照是否会逐步放开?互联网金融牌照又有何意义?在2015陆家嘴论坛浦江夜话环节中,互联网金融专家对此发表了看法。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; text-indent: 2em; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><a class=\"j-wpcom-lightbox\" href=\"http://sh.eastday.com/images/thumbnailimg/month_1506/201506271030439311.jpg\" style=\"box-sizing: border-box; background-color: transparent; text-decoration-line: none;\"><img class=\" aligncenter j-lazy\" src=\"http://sh.eastday.com/images/thumbnailimg/month_1506/201506271030439311.jpg?imageMogr2/format/webp\" alt=\"互联网金融:烫手的牌照\"/></a></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; text-indent: 2em; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249); text-align: center;\">图片说明:汇付天下董事长兼CEO周晔。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; text-indent: 2em; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">汇付天下董事长周晔坦言,目前的行业对互联网金融牌照普遍持两种态度,一种是特别想拿到牌照,拿着这张牌照就能踏实经营,防止被同行牵连;另一种是害怕拿牌照,因为牌照意味着束缚。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; text-indent: 2em; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\"><a class=\"j-wpcom-lightbox\" href=\"http://sh.eastday.com/images/thumbnailimg/month_1506/201506271030434867.jpg\" style=\"box-sizing: border-box; background-color: transparent; text-decoration-line: none;\"><img class=\" aligncenter j-lazy\" src=\"http://sh.eastday.com/images/thumbnailimg/month_1506/201506271030434867.jpg?imageMogr2/format/webp\" alt=\"互联网金融:烫手的牌照\"/></a></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; text-indent: 2em; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249); text-align: center;\">图片说明:点融网联合首席执行官、共同创始人郭宇航。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; text-indent: 2em; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">点融网联合首席执行官郭宇航则认为,作为一个新生的业态,暂缓发牌照更有利于行业发展,“牌照意味着原则、束缚。比如说发放牌照的小贷公司都规定了严格的杠杆比例,而P2P没有,几乎是无限杠杆做业务。但同时没有牌照不代表不要监管。我认为监管是非常必要的,一定要尽快落地。因为在没有牌照的初期广大想要规范做P2P的公司有大量的发挥空间,央行对于牌照公司的严格审查导致了支付公司在创新上受到遏制。”</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; line-height: 1.8; overflow-wrap: break-word; white-space: pre-wrap; text-indent: 2em; color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; background-color: rgb(249, 249, 249);\">郭宇航还透露,第三方支付发放牌照有300张,然而真正能够活跃经营的不到100张,大量的牌照在市场上进行转让,“有钱就可以买到的牌照,究竟有多大的监管意义呢?”因此,互联网金融的监管不应该参照传统的金融机构的牌照管理,而是对于越轨的事情及时出台政策,小步快走监管。同时用互联网方式监管,要求互联网金融公司向监管部门开放,用技术进行监管,一旦发生违规行为,可以在银监会上公示这些企业,通过影响声誉的方式进行惩罚,这或许是互联网金融监管的未来。</p><p><br/></p>', '1498114280', '1610932633', '', '', '本站', 'tpframe', 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 7, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (41, NULL, '圣诞来袭—精美礼品包装设计', '', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/b6ae9dccc59f6ac50fdb601906100ec3.jpg\" title=\"b6ae9dccc59f6ac50fdb601906100ec3.jpg\" alt=\"b6ae9dccc59f6ac50fdb601906100ec3.jpg\"/></p>', '1610933400', '1610957517', '/data/uploads/20210118/e26b8288923e3504c703e2a2e6427c2a.jpeg', '', 'tpframe', 'tpframe', 5010, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 2, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (42, NULL, '神话般的首饰包装设计', '', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/301e9625990f3674be498ae6778ec044.jpg\" title=\"301e9625990f3674be498ae6778ec044.jpg\" alt=\"301e9625990f3674be498ae6778ec044.jpg\"/></p>', '1610933460', '1610957527', '/data/uploads/20210118/7cfa2af74874ee17cdb5d1d869dba90e.jpeg', '', 'tpframe', 'tpframe', 6756, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 2, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (43, NULL, '给力创意食品广告', '', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/cd51423585767b73e49b9c9d6db96519.jpg\" title=\"cd51423585767b73e49b9c9d6db96519.jpg\" alt=\"cd51423585767b73e49b9c9d6db96519.jpg\"/></p>', '1610933580', '1610957554', '/data/uploads/20210118/1e987d22c70b82e0b61be8ebcb3f9a27.jpeg', '', 'tpframe', 'tpframe', 5052, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 3, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (44, NULL, '寿司连锁品牌Planet Sushi:食物“美”若烟花', '寿司连锁品牌Planet Sushi:食物“美”若烟花寿司连锁品牌Planet Sushi:食物“美”若烟花寿司连锁品牌Planet Sushi:食物“美”若烟花寿司连锁品牌Planet Sushi:食物“美”若烟花寿司连锁品牌Planet Sushi:食物“美”若烟花', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/2565ab9d48c492c8d239fbc57dce5d0c.jpg\" title=\"2565ab9d48c492c8d239fbc57dce5d0c.jpg\"/></p><p style=\"text-align: center;\"><span style=\"color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; text-align: center; white-space: pre-wrap; background-color: rgb(249, 249, 249);\">寿司连锁品牌Planet Sushi:食物“美”若烟花</span></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/4b5830388b2d0e6983a3617051093c56.jpg\" title=\"4b5830388b2d0e6983a3617051093c56.jpg\"/></p><p style=\"text-align: center;\"><span style=\"color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; text-align: center; white-space: pre-wrap; background-color: rgb(249, 249, 249);\">寿司连锁品牌Planet Sushi:食物“美”若烟花</span></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/a9fcc058a24f2084964d262bbe09a656.jpg\" title=\"a9fcc058a24f2084964d262bbe09a656.jpg\"/></p><p style=\"text-align: center;\"><span style=\"color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; text-align: center; white-space: pre-wrap; background-color: rgb(249, 249, 249);\">寿司连锁品牌Planet Sushi:食物“美”若烟花</span></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/ff2810c5d58e98497d66361ce8226972.jpg\" title=\"ff2810c5d58e98497d66361ce8226972.jpg\"/></p><p style=\"text-align: center;\"><span style=\"color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; text-align: center; white-space: pre-wrap; background-color: rgb(249, 249, 249);\">寿司连锁品牌Planet Sushi:食物“美”若烟花</span></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/178d93a83220b1c2f59123083177cdc8.jpg\" title=\"178d93a83220b1c2f59123083177cdc8.jpg\"/></p><p style=\"text-align: center;\"><span style=\"color: rgba(0, 0, 0, 0.8); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif; text-align: center; white-space: pre-wrap; background-color: rgb(249, 249, 249);\">寿司连锁品牌Planet Sushi:食物“美”若烟花</span></p><p><br/></p>', '1610933700', '1610933832', '/data/uploads/20210118/6d131a8e14c7b18ce792d20159a87c7a.jpg', '', 'tpframe', 'tpframe', 6390, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 3, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (45, NULL, '创意的食品和饮料广告欣赏', '', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/d8f01bfe23874fd6b18577ed4a0a2a5d.jpg\" title=\"d8f01bfe23874fd6b18577ed4a0a2a5d.jpg\" alt=\"d8f01bfe23874fd6b18577ed4a0a2a5d.jpg\"/></p>', '1610933820', '1610957424', '/data/uploads/20210118/5bc77855af93961cd6f06e7347e29c72.jpeg', '', 'tpframe', 'tpframe', 3003, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 3, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (46, NULL, '日本海报分享', '', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/b021a7d38557a24c3d78c9b44039906f.jpg\" title=\"b021a7d38557a24c3d78c9b44039906f.jpg\" alt=\"b021a7d38557a24c3d78c9b44039906f.jpg\"/></p>', '1610934000', '1610957583', '/data/uploads/20210118/57eb43f76abf050d238918ffe85b1dc1.jpeg', '', 'tpframe', 'tpframe', 8366, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (47, NULL, '自制DIY小小请柬卡片', '', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/af0ed678a6ff46e16c1927f797b405ee.jpg\" title=\"af0ed678a6ff46e16c1927f797b405ee.jpg\" alt=\"af0ed678a6ff46e16c1927f797b405ee.jpg\"/></p>', '1610934120', '1610957592', '/data/uploads/20210118/ffd1b0e94d1b4a505380e424caf7e700.jpeg', '', 'tpframe', 'tpframe', 9422, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 5, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (48, NULL, '精美的纸品雕刻', '', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/c3f84e449aa7ceaceaa8864d9fc802e9.jpg\" title=\"c3f84e449aa7ceaceaa8864d9fc802e9.jpg\" alt=\"c3f84e449aa7ceaceaa8864d9fc802e9.jpg\"/></p>', '1610934120', '1610957602', '/data/uploads/20210118/356d82c4fc7e5ed59b5c352cbb024662.jpeg', '', 'tpframe', 'tpframe', 426, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 5, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (49, NULL, '国外创意请柬设计作品', '', '<p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/92ae8afa705a32d351d9d0719f931d43.jpg\" title=\"92ae8afa705a32d351d9d0719f931d43.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/4bf1b3b2610edc9108ef89abfc0a89ac.jpg\" title=\"4bf1b3b2610edc9108ef89abfc0a89ac.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/8149e25d8e91015989f44aec7d092fdc.jpg\" title=\"8149e25d8e91015989f44aec7d092fdc.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/data/uploads/images/20210118/1175504827f99a79bfef4663de77e3d8.jpg\" title=\"1175504827f99a79bfef4663de77e3d8.jpg\"/></p><p><br/></p>', '1610934180', '1610957613', '/data/uploads/20210118/19ed9d959d9210749e6aa1178d1223ad.jpg', '', 'tpframe', 'tpframe', 7554, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 5, 0, 1, '', 0);
INSERT INTO `tpf_posts` VALUES (50, NULL, '关于我们', 'TPFrame 是基于thinkphp5.x 与 thinkphp6.x驱动可快速构建你想要功能的框架 , 集高扩展、高复用、低耦合功能为一体,插件式功能扩张,强大的后台权限管理,丰富的cms插件、商城插件、支付插件、云存储插件等众多免费插件供你使用,随意添加自己想要的功能模块。还有更多免费功能模块可下载直接使用1、免费公众号系统2、免费微信小程序系统3、免费百度小程序系统添加官方客服微信免费领取...', '<p>TPFrame 是基于thinkphp5.x 与 thinkphp6.x驱动可快速构建你想要功能的框架 , 集高扩展、高复用、低耦合功能为一体,插件式功能扩张,强大的后台权限管理,丰富的cms插件、商城插件、支付插件、云存储插件等众多免费插件供你使用,随意添加自己想要的功能模块。</p><p><br/></p><p>还有更多免费功能模块可下载直接使用</p><p>1、免费公众号系统</p><p>2、免费微信小程序系统</p><p>3、免费百度小程序系统</p><p><br/></p><p><img src=\"/data/uploads/images/20210118/e7a9a0c1278580488aaad19b6b5a40b0.jpg\" title=\"e7a9a0c1278580488aaad19b6b5a40b0.jpg\" alt=\"e7a9a0c1278580488aaad19b6b5a40b0.jpg\"/></p><p><br/></p><p>添加官方客服微信免费领取,安装部署视频教程助你轻松上线。</p>', '1610939520', '1610940001', '/data/uploads/20210118/445f7c054d041e8054ba13a4757f1d48.jpg', '', 'tpframe', 'tpframe', 379, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 8, 0, 1, '', 0);
-- ----------------------------
-- Table structure for tpf_posts_comments
-- ----------------------------
DROP TABLE IF EXISTS `tpf_posts_comments`;
CREATE TABLE `tpf_posts_comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NULL DEFAULT 0 COMMENT '用户id',
`author` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '昵称',
`email` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '邮箱',
`url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '评论',
`datetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '添加时间',
`posts_id` int(11) NULL DEFAULT NULL COMMENT '文章ID',
`pid` int(11) NULL DEFAULT 0 COMMENT '父ID',
`reply_author` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`ischeck` tinyint(1) NULL DEFAULT 1 COMMENT '是否审核 1 是 0 否',
`voteup` int(11) NULL DEFAULT 0 COMMENT '赞成票',
`votedown` int(11) NULL DEFAULT 0 COMMENT '反对票',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_posts_comments
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_posts_images
-- ----------------------------
DROP TABLE IF EXISTS `tpf_posts_images`;
CREATE TABLE `tpf_posts_images` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`posts_id` int(11) NULL DEFAULT NULL COMMENT '文章ID',
`desc` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '描述',
`thumb` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '缩略图',
`url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '图片地址',
`datetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '图片库' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_posts_images
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_posts_log
-- ----------------------------
DROP TABLE IF EXISTS `tpf_posts_log`;
CREATE TABLE `tpf_posts_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NULL DEFAULT 0 COMMENT '用户id',
`posts_id` int(11) NULL DEFAULT 0 COMMENT '文章ID',
`open_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '开放平台ID',
`status` tinyint(1) NULL DEFAULT 0 COMMENT '状态 ',
`datetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '添加时间',
`type` smallint(4) NULL DEFAULT 1 COMMENT '记录类型 1点赞 2浏览记录',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '帖子记录表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_posts_log
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_posts_tags
-- ----------------------------
DROP TABLE IF EXISTS `tpf_posts_tags`;
CREATE TABLE `tpf_posts_tags` (
`id` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '文章标签表' ROW_FORMAT = FIXED;
-- ----------------------------
-- Records of tpf_posts_tags
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_posts_videos
-- ----------------------------
DROP TABLE IF EXISTS `tpf_posts_videos`;
CREATE TABLE `tpf_posts_videos` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`posts_id` int(11) NULL DEFAULT 0 COMMENT '文章id',
`desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '单视频描述',
`video_source` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '视频源码地址',
`url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '缩略图',
`datetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '视频库' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_posts_videos
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_region
-- ----------------------------
DROP TABLE IF EXISTS `tpf_region`;
CREATE TABLE `tpf_region` (
`id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT,
`name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '名称',
`type` tinyint(1) NOT NULL DEFAULT 2 COMMENT '类型',
`parent_id` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT '父ID',
PRIMARY KEY (`id`) USING BTREE,
INDEX `parent_id`(`parent_id`) USING BTREE,
INDEX `region_type`(`type`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4044 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_region
-- ----------------------------
INSERT INTO `tpf_region` VALUES (1, '中国', 0, 0);
INSERT INTO `tpf_region` VALUES (2, '北京', 1, 1);
INSERT INTO `tpf_region` VALUES (3, '天津', 1, 1);
INSERT INTO `tpf_region` VALUES (4, '河北省', 1, 1);
INSERT INTO `tpf_region` VALUES (5, '山西省', 1, 1);
INSERT INTO `tpf_region` VALUES (6, '内蒙古自治区', 1, 1);
INSERT INTO `tpf_region` VALUES (7, '辽宁省', 1, 1);
INSERT INTO `tpf_region` VALUES (8, '吉林省', 1, 1);
INSERT INTO `tpf_region` VALUES (9, '黑龙江省', 1, 1);
INSERT INTO `tpf_region` VALUES (10, '上海', 1, 1);
INSERT INTO `tpf_region` VALUES (11, '江苏省', 1, 1);
INSERT INTO `tpf_region` VALUES (12, '浙江省', 1, 1);
INSERT INTO `tpf_region` VALUES (13, '安徽省', 1, 1);
INSERT INTO `tpf_region` VALUES (14, '福建省', 1, 1);
INSERT INTO `tpf_region` VALUES (15, '江西省', 1, 1);
INSERT INTO `tpf_region` VALUES (16, '山东省', 1, 1);
INSERT INTO `tpf_region` VALUES (17, '河南省', 1, 1);
INSERT INTO `tpf_region` VALUES (18, '湖北省', 1, 1);
INSERT INTO `tpf_region` VALUES (19, '湖南省', 1, 1);
INSERT INTO `tpf_region` VALUES (20, '广东省', 1, 1);
INSERT INTO `tpf_region` VALUES (21, '广西壮族自治区', 1, 1);
INSERT INTO `tpf_region` VALUES (22, '海南省', 1, 1);
INSERT INTO `tpf_region` VALUES (23, '重庆', 1, 1);
INSERT INTO `tpf_region` VALUES (24, '四川省', 1, 1);
INSERT INTO `tpf_region` VALUES (25, '贵州省', 1, 1);
INSERT INTO `tpf_region` VALUES (26, '云南省', 1, 1);
INSERT INTO `tpf_region` VALUES (27, '西藏自治区', 1, 1);
INSERT INTO `tpf_region` VALUES (28, '陕西省', 1, 1);
INSERT INTO `tpf_region` VALUES (29, '甘肃省', 1, 1);
INSERT INTO `tpf_region` VALUES (30, '青海省', 1, 1);
INSERT INTO `tpf_region` VALUES (31, '宁夏回族自治区', 1, 1);
INSERT INTO `tpf_region` VALUES (32, '新疆维吾尔自治区', 1, 1);
INSERT INTO `tpf_region` VALUES (33, '台湾', 1, 1);
INSERT INTO `tpf_region` VALUES (34, '香港特别行政区', 1, 1);
INSERT INTO `tpf_region` VALUES (35, '澳门特别行政区', 1, 1);
INSERT INTO `tpf_region` VALUES (36, '海外', 1, 1);
INSERT INTO `tpf_region` VALUES (37, '北京市', 2, 2);
INSERT INTO `tpf_region` VALUES (38, '天津市', 2, 3);
INSERT INTO `tpf_region` VALUES (39, '石家庄市', 2, 4);
INSERT INTO `tpf_region` VALUES (40, '唐山市', 2, 4);
INSERT INTO `tpf_region` VALUES (41, '秦皇岛市', 2, 4);
INSERT INTO `tpf_region` VALUES (42, '邯郸市', 2, 4);
INSERT INTO `tpf_region` VALUES (43, '邢台市', 2, 4);
INSERT INTO `tpf_region` VALUES (44, '保定市', 2, 4);
INSERT INTO `tpf_region` VALUES (45, '张家口市', 2, 4);
INSERT INTO `tpf_region` VALUES (46, '承德市', 2, 4);
INSERT INTO `tpf_region` VALUES (47, '沧州市', 2, 4);
INSERT INTO `tpf_region` VALUES (48, '廊坊市', 2, 4);
INSERT INTO `tpf_region` VALUES (49, '衡水市', 2, 4);
INSERT INTO `tpf_region` VALUES (50, '太原市', 2, 5);
INSERT INTO `tpf_region` VALUES (51, '大同市', 2, 5);
INSERT INTO `tpf_region` VALUES (52, '阳泉市', 2, 5);
INSERT INTO `tpf_region` VALUES (53, '长治市', 2, 5);
INSERT INTO `tpf_region` VALUES (54, '晋城市', 2, 5);
INSERT INTO `tpf_region` VALUES (55, '朔州市', 2, 5);
INSERT INTO `tpf_region` VALUES (56, '晋中市', 2, 5);
INSERT INTO `tpf_region` VALUES (57, '运城市', 2, 5);
INSERT INTO `tpf_region` VALUES (58, '忻州市', 2, 5);
INSERT INTO `tpf_region` VALUES (59, '临汾市', 2, 5);
INSERT INTO `tpf_region` VALUES (60, '吕梁市', 2, 5);
INSERT INTO `tpf_region` VALUES (61, '呼和浩特市', 2, 6);
INSERT INTO `tpf_region` VALUES (62, '包头市', 2, 6);
INSERT INTO `tpf_region` VALUES (63, '乌海市', 2, 6);
INSERT INTO `tpf_region` VALUES (64, '赤峰市', 2, 6);
INSERT INTO `tpf_region` VALUES (65, '通辽市', 2, 6);
INSERT INTO `tpf_region` VALUES (66, '鄂尔多斯市', 2, 6);
INSERT INTO `tpf_region` VALUES (67, '呼伦贝尔市', 2, 6);
INSERT INTO `tpf_region` VALUES (68, '巴彦淖尔市', 2, 6);
INSERT INTO `tpf_region` VALUES (69, '乌兰察布市', 2, 6);
INSERT INTO `tpf_region` VALUES (70, '兴安盟', 2, 6);
INSERT INTO `tpf_region` VALUES (71, '锡林郭勒盟', 2, 6);
INSERT INTO `tpf_region` VALUES (72, '阿拉善盟', 2, 6);
INSERT INTO `tpf_region` VALUES (73, '沈阳市', 2, 7);
INSERT INTO `tpf_region` VALUES (74, '大连市', 2, 7);
INSERT INTO `tpf_region` VALUES (75, '鞍山市', 2, 7);
INSERT INTO `tpf_region` VALUES (76, '抚顺市', 2, 7);
INSERT INTO `tpf_region` VALUES (77, '本溪市', 2, 7);
INSERT INTO `tpf_region` VALUES (78, '丹东市', 2, 7);
INSERT INTO `tpf_region` VALUES (79, '锦州市', 2, 7);
INSERT INTO `tpf_region` VALUES (80, '营口市', 2, 7);
INSERT INTO `tpf_region` VALUES (81, '阜新市', 2, 7);
INSERT INTO `tpf_region` VALUES (82, '辽阳市', 2, 7);
INSERT INTO `tpf_region` VALUES (83, '盘锦市', 2, 7);
INSERT INTO `tpf_region` VALUES (84, '铁岭市', 2, 7);
INSERT INTO `tpf_region` VALUES (85, '朝阳市', 2, 7);
INSERT INTO `tpf_region` VALUES (86, '葫芦岛市', 2, 7);
INSERT INTO `tpf_region` VALUES (87, '长春市', 2, 8);
INSERT INTO `tpf_region` VALUES (88, '吉林市', 2, 8);
INSERT INTO `tpf_region` VALUES (89, '四平市', 2, 8);
INSERT INTO `tpf_region` VALUES (90, '辽源市', 2, 8);
INSERT INTO `tpf_region` VALUES (91, '通化市', 2, 8);
INSERT INTO `tpf_region` VALUES (92, '白山市', 2, 8);
INSERT INTO `tpf_region` VALUES (93, '松原市', 2, 8);
INSERT INTO `tpf_region` VALUES (94, '白城市', 2, 8);
INSERT INTO `tpf_region` VALUES (95, '延边朝鲜族自治州', 2, 8);
INSERT INTO `tpf_region` VALUES (96, '哈尔滨市', 2, 9);
INSERT INTO `tpf_region` VALUES (97, '齐齐哈尔市', 2, 9);
INSERT INTO `tpf_region` VALUES (98, '鸡西市', 2, 9);
INSERT INTO `tpf_region` VALUES (99, '鹤岗市', 2, 9);
INSERT INTO `tpf_region` VALUES (100, '双鸭山市', 2, 9);
INSERT INTO `tpf_region` VALUES (101, '大庆市', 2, 9);
INSERT INTO `tpf_region` VALUES (102, '伊春市', 2, 9);
INSERT INTO `tpf_region` VALUES (103, '佳木斯市', 2, 9);
INSERT INTO `tpf_region` VALUES (104, '七台河市', 2, 9);
INSERT INTO `tpf_region` VALUES (105, '牡丹江市', 2, 9);
INSERT INTO `tpf_region` VALUES (106, '黑河市', 2, 9);
INSERT INTO `tpf_region` VALUES (107, '绥化市', 2, 9);
INSERT INTO `tpf_region` VALUES (108, '大兴安岭地区', 2, 9);
INSERT INTO `tpf_region` VALUES (109, '上海市', 2, 10);
INSERT INTO `tpf_region` VALUES (110, '南京市', 2, 11);
INSERT INTO `tpf_region` VALUES (111, '无锡市', 2, 11);
INSERT INTO `tpf_region` VALUES (112, '徐州市', 2, 11);
INSERT INTO `tpf_region` VALUES (113, '常州市', 2, 11);
INSERT INTO `tpf_region` VALUES (114, '苏州市', 2, 11);
INSERT INTO `tpf_region` VALUES (115, '南通市', 2, 11);
INSERT INTO `tpf_region` VALUES (116, '连云港市', 2, 11);
INSERT INTO `tpf_region` VALUES (117, '淮安市', 2, 11);
INSERT INTO `tpf_region` VALUES (118, '盐城市', 2, 11);
INSERT INTO `tpf_region` VALUES (119, '扬州市', 2, 11);
INSERT INTO `tpf_region` VALUES (120, '镇江市', 2, 11);
INSERT INTO `tpf_region` VALUES (121, '泰州市', 2, 11);
INSERT INTO `tpf_region` VALUES (122, '宿迁市', 2, 11);
INSERT INTO `tpf_region` VALUES (123, '杭州市', 2, 12);
INSERT INTO `tpf_region` VALUES (124, '宁波市', 2, 12);
INSERT INTO `tpf_region` VALUES (125, '温州市', 2, 12);
INSERT INTO `tpf_region` VALUES (126, '嘉兴市', 2, 12);
INSERT INTO `tpf_region` VALUES (127, '湖州市', 2, 12);
INSERT INTO `tpf_region` VALUES (128, '绍兴市', 2, 12);
INSERT INTO `tpf_region` VALUES (129, '金华市', 2, 12);
INSERT INTO `tpf_region` VALUES (130, '衢州市', 2, 12);
INSERT INTO `tpf_region` VALUES (131, '舟山市', 2, 12);
INSERT INTO `tpf_region` VALUES (132, '台州市', 2, 12);
INSERT INTO `tpf_region` VALUES (133, '丽水市', 2, 12);
INSERT INTO `tpf_region` VALUES (134, '合肥市', 2, 13);
INSERT INTO `tpf_region` VALUES (135, '芜湖市', 2, 13);
INSERT INTO `tpf_region` VALUES (136, '蚌埠市', 2, 13);
INSERT INTO `tpf_region` VALUES (137, '淮南市', 2, 13);
INSERT INTO `tpf_region` VALUES (138, '马鞍山市', 2, 13);
INSERT INTO `tpf_region` VALUES (139, '淮北市', 2, 13);
INSERT INTO `tpf_region` VALUES (140, '铜陵市', 2, 13);
INSERT INTO `tpf_region` VALUES (141, '安庆市', 2, 13);
INSERT INTO `tpf_region` VALUES (142, '黄山市', 2, 13);
INSERT INTO `tpf_region` VALUES (143, '滁州市', 2, 13);
INSERT INTO `tpf_region` VALUES (144, '阜阳市', 2, 13);
INSERT INTO `tpf_region` VALUES (145, '宿州市', 2, 13);
INSERT INTO `tpf_region` VALUES (146, '六安市', 2, 13);
INSERT INTO `tpf_region` VALUES (147, '亳州市', 2, 13);
INSERT INTO `tpf_region` VALUES (148, '池州市', 2, 13);
INSERT INTO `tpf_region` VALUES (149, '宣城市', 2, 13);
INSERT INTO `tpf_region` VALUES (150, '福州市', 2, 14);
INSERT INTO `tpf_region` VALUES (151, '厦门市', 2, 14);
INSERT INTO `tpf_region` VALUES (152, '莆田市', 2, 14);
INSERT INTO `tpf_region` VALUES (153, '三明市', 2, 14);
INSERT INTO `tpf_region` VALUES (154, '泉州市', 2, 14);
INSERT INTO `tpf_region` VALUES (155, '漳州市', 2, 14);
INSERT INTO `tpf_region` VALUES (156, '南平市', 2, 14);
INSERT INTO `tpf_region` VALUES (157, '龙岩市', 2, 14);
INSERT INTO `tpf_region` VALUES (158, '宁德市', 2, 14);
INSERT INTO `tpf_region` VALUES (159, '南昌市', 2, 15);
INSERT INTO `tpf_region` VALUES (160, '景德镇市', 2, 15);
INSERT INTO `tpf_region` VALUES (161, '萍乡市', 2, 15);
INSERT INTO `tpf_region` VALUES (162, '九江市', 2, 15);
INSERT INTO `tpf_region` VALUES (163, '新余市', 2, 15);
INSERT INTO `tpf_region` VALUES (164, '鹰潭市', 2, 15);
INSERT INTO `tpf_region` VALUES (165, '赣州市', 2, 15);
INSERT INTO `tpf_region` VALUES (166, '吉安市', 2, 15);
INSERT INTO `tpf_region` VALUES (167, '宜春市', 2, 15);
INSERT INTO `tpf_region` VALUES (168, '抚州市', 2, 15);
INSERT INTO `tpf_region` VALUES (169, '上饶市', 2, 15);
INSERT INTO `tpf_region` VALUES (170, '济南市', 2, 16);
INSERT INTO `tpf_region` VALUES (171, '青岛市', 2, 16);
INSERT INTO `tpf_region` VALUES (172, '淄博市', 2, 16);
INSERT INTO `tpf_region` VALUES (173, '枣庄市', 2, 16);
INSERT INTO `tpf_region` VALUES (174, '东营市', 2, 16);
INSERT INTO `tpf_region` VALUES (175, '烟台市', 2, 16);
INSERT INTO `tpf_region` VALUES (176, '潍坊市', 2, 16);
INSERT INTO `tpf_region` VALUES (177, '济宁市', 2, 16);
INSERT INTO `tpf_region` VALUES (178, '泰安市', 2, 16);
INSERT INTO `tpf_region` VALUES (179, '威海市', 2, 16);
INSERT INTO `tpf_region` VALUES (180, '日照市', 2, 16);
INSERT INTO `tpf_region` VALUES (181, '莱芜市', 2, 16);
INSERT INTO `tpf_region` VALUES (182, '临沂市', 2, 16);
INSERT INTO `tpf_region` VALUES (183, '德州市', 2, 16);
INSERT INTO `tpf_region` VALUES (184, '聊城市', 2, 16);
INSERT INTO `tpf_region` VALUES (185, '滨州市', 2, 16);
INSERT INTO `tpf_region` VALUES (186, '菏泽市', 2, 16);
INSERT INTO `tpf_region` VALUES (187, '郑州市', 2, 17);
INSERT INTO `tpf_region` VALUES (188, '开封市', 2, 17);
INSERT INTO `tpf_region` VALUES (189, '洛阳市', 2, 17);
INSERT INTO `tpf_region` VALUES (190, '平顶山市', 2, 17);
INSERT INTO `tpf_region` VALUES (191, '安阳市', 2, 17);
INSERT INTO `tpf_region` VALUES (192, '鹤壁市', 2, 17);
INSERT INTO `tpf_region` VALUES (193, '新乡市', 2, 17);
INSERT INTO `tpf_region` VALUES (194, '焦作市', 2, 17);
INSERT INTO `tpf_region` VALUES (195, '濮阳市', 2, 17);
INSERT INTO `tpf_region` VALUES (196, '许昌市', 2, 17);
INSERT INTO `tpf_region` VALUES (197, '漯河市', 2, 17);
INSERT INTO `tpf_region` VALUES (198, '三门峡市', 2, 17);
INSERT INTO `tpf_region` VALUES (199, '南阳市', 2, 17);
INSERT INTO `tpf_region` VALUES (200, '商丘市', 2, 17);
INSERT INTO `tpf_region` VALUES (201, '信阳市', 2, 17);
INSERT INTO `tpf_region` VALUES (202, '周口市', 2, 17);
INSERT INTO `tpf_region` VALUES (203, '驻马店市', 2, 17);
INSERT INTO `tpf_region` VALUES (204, '武汉市', 2, 18);
INSERT INTO `tpf_region` VALUES (205, '黄石市', 2, 18);
INSERT INTO `tpf_region` VALUES (206, '十堰市', 2, 18);
INSERT INTO `tpf_region` VALUES (207, '宜昌市', 2, 18);
INSERT INTO `tpf_region` VALUES (208, '襄阳市', 2, 18);
INSERT INTO `tpf_region` VALUES (209, '鄂州市', 2, 18);
INSERT INTO `tpf_region` VALUES (210, '荆门市', 2, 18);
INSERT INTO `tpf_region` VALUES (211, '孝感市', 2, 18);
INSERT INTO `tpf_region` VALUES (212, '荆州市', 2, 18);
INSERT INTO `tpf_region` VALUES (213, '黄冈市', 2, 18);
INSERT INTO `tpf_region` VALUES (214, '咸宁市', 2, 18);
INSERT INTO `tpf_region` VALUES (215, '随州市', 2, 18);
INSERT INTO `tpf_region` VALUES (216, '恩施土家族苗族自治州', 2, 18);
INSERT INTO `tpf_region` VALUES (217, '长沙市', 2, 19);
INSERT INTO `tpf_region` VALUES (218, '株洲市', 2, 19);
INSERT INTO `tpf_region` VALUES (219, '湘潭市', 2, 19);
INSERT INTO `tpf_region` VALUES (220, '衡阳市', 2, 19);
INSERT INTO `tpf_region` VALUES (221, '邵阳市', 2, 19);
INSERT INTO `tpf_region` VALUES (222, '岳阳市', 2, 19);
INSERT INTO `tpf_region` VALUES (223, '常德市', 2, 19);
INSERT INTO `tpf_region` VALUES (224, '张家界市', 2, 19);
INSERT INTO `tpf_region` VALUES (225, '益阳市', 2, 19);
INSERT INTO `tpf_region` VALUES (226, '郴州市', 2, 19);
INSERT INTO `tpf_region` VALUES (227, '永州市', 2, 19);
INSERT INTO `tpf_region` VALUES (228, '怀化市', 2, 19);
INSERT INTO `tpf_region` VALUES (229, '娄底市', 2, 19);
INSERT INTO `tpf_region` VALUES (230, '湘西土家族苗族自治州', 2, 19);
INSERT INTO `tpf_region` VALUES (231, '广州市', 2, 20);
INSERT INTO `tpf_region` VALUES (232, '韶关市', 2, 20);
INSERT INTO `tpf_region` VALUES (233, '深圳市', 2, 20);
INSERT INTO `tpf_region` VALUES (234, '珠海市', 2, 20);
INSERT INTO `tpf_region` VALUES (235, '汕头市', 2, 20);
INSERT INTO `tpf_region` VALUES (236, '佛山市', 2, 20);
INSERT INTO `tpf_region` VALUES (237, '江门市', 2, 20);
INSERT INTO `tpf_region` VALUES (238, '湛江市', 2, 20);
INSERT INTO `tpf_region` VALUES (239, '茂名市', 2, 20);
INSERT INTO `tpf_region` VALUES (240, '肇庆市', 2, 20);
INSERT INTO `tpf_region` VALUES (241, '惠州市', 2, 20);
INSERT INTO `tpf_region` VALUES (242, '梅州市', 2, 20);
INSERT INTO `tpf_region` VALUES (243, '汕尾市', 2, 20);
INSERT INTO `tpf_region` VALUES (244, '河源市', 2, 20);
INSERT INTO `tpf_region` VALUES (245, '阳江市', 2, 20);
INSERT INTO `tpf_region` VALUES (246, '清远市', 2, 20);
INSERT INTO `tpf_region` VALUES (247, '东莞市', 2, 20);
INSERT INTO `tpf_region` VALUES (248, '中山市', 2, 20);
INSERT INTO `tpf_region` VALUES (249, '东沙群岛', 2, 20);
INSERT INTO `tpf_region` VALUES (250, '潮州市', 2, 20);
INSERT INTO `tpf_region` VALUES (251, '揭阳市', 2, 20);
INSERT INTO `tpf_region` VALUES (252, '云浮市', 2, 20);
INSERT INTO `tpf_region` VALUES (253, '南宁市', 2, 21);
INSERT INTO `tpf_region` VALUES (254, '柳州市', 2, 21);
INSERT INTO `tpf_region` VALUES (255, '桂林市', 2, 21);
INSERT INTO `tpf_region` VALUES (256, '梧州市', 2, 21);
INSERT INTO `tpf_region` VALUES (257, '北海市', 2, 21);
INSERT INTO `tpf_region` VALUES (258, '防城港市', 2, 21);
INSERT INTO `tpf_region` VALUES (259, '钦州市', 2, 21);
INSERT INTO `tpf_region` VALUES (260, '贵港市', 2, 21);
INSERT INTO `tpf_region` VALUES (261, '玉林市', 2, 21);
INSERT INTO `tpf_region` VALUES (262, '百色市', 2, 21);
INSERT INTO `tpf_region` VALUES (263, '贺州市', 2, 21);
INSERT INTO `tpf_region` VALUES (264, '河池市', 2, 21);
INSERT INTO `tpf_region` VALUES (265, '来宾市', 2, 21);
INSERT INTO `tpf_region` VALUES (266, '崇左市', 2, 21);
INSERT INTO `tpf_region` VALUES (267, '海口市', 2, 22);
INSERT INTO `tpf_region` VALUES (268, '三亚市', 2, 22);
INSERT INTO `tpf_region` VALUES (269, '三沙市', 2, 22);
INSERT INTO `tpf_region` VALUES (270, '重庆市', 2, 23);
INSERT INTO `tpf_region` VALUES (271, '成都市', 2, 24);
INSERT INTO `tpf_region` VALUES (272, '自贡市', 2, 24);
INSERT INTO `tpf_region` VALUES (273, '攀枝花市', 2, 24);
INSERT INTO `tpf_region` VALUES (274, '泸州市', 2, 24);
INSERT INTO `tpf_region` VALUES (275, '德阳市', 2, 24);
INSERT INTO `tpf_region` VALUES (276, '绵阳市', 2, 24);
INSERT INTO `tpf_region` VALUES (277, '广元市', 2, 24);
INSERT INTO `tpf_region` VALUES (278, '遂宁市', 2, 24);
INSERT INTO `tpf_region` VALUES (279, '内江市', 2, 24);
INSERT INTO `tpf_region` VALUES (280, '乐山市', 2, 24);
INSERT INTO `tpf_region` VALUES (281, '南充市', 2, 24);
INSERT INTO `tpf_region` VALUES (282, '眉山市', 2, 24);
INSERT INTO `tpf_region` VALUES (283, '宜宾市', 2, 24);
INSERT INTO `tpf_region` VALUES (284, '广安市', 2, 24);
INSERT INTO `tpf_region` VALUES (285, '达州市', 2, 24);
INSERT INTO `tpf_region` VALUES (286, '雅安市', 2, 24);
INSERT INTO `tpf_region` VALUES (287, '巴中市', 2, 24);
INSERT INTO `tpf_region` VALUES (288, '资阳市', 2, 24);
INSERT INTO `tpf_region` VALUES (289, '阿坝藏族羌族自治州', 2, 24);
INSERT INTO `tpf_region` VALUES (290, '甘孜藏族自治州', 2, 24);
INSERT INTO `tpf_region` VALUES (291, '凉山彝族自治州', 2, 24);
INSERT INTO `tpf_region` VALUES (292, '贵阳市', 2, 25);
INSERT INTO `tpf_region` VALUES (293, '六盘水市', 2, 25);
INSERT INTO `tpf_region` VALUES (294, '遵义市', 2, 25);
INSERT INTO `tpf_region` VALUES (295, '安顺市', 2, 25);
INSERT INTO `tpf_region` VALUES (296, '铜仁市', 2, 25);
INSERT INTO `tpf_region` VALUES (297, '黔西南布依族苗族自治州', 2, 25);
INSERT INTO `tpf_region` VALUES (298, '毕节市', 2, 25);
INSERT INTO `tpf_region` VALUES (299, '黔东南苗族侗族自治州', 2, 25);
INSERT INTO `tpf_region` VALUES (300, '黔南布依族苗族自治州', 2, 25);
INSERT INTO `tpf_region` VALUES (301, '昆明市', 2, 26);
INSERT INTO `tpf_region` VALUES (302, '曲靖市', 2, 26);
INSERT INTO `tpf_region` VALUES (303, '玉溪市', 2, 26);
INSERT INTO `tpf_region` VALUES (304, '保山市', 2, 26);
INSERT INTO `tpf_region` VALUES (305, '昭通市', 2, 26);
INSERT INTO `tpf_region` VALUES (306, '丽江市', 2, 26);
INSERT INTO `tpf_region` VALUES (307, '普洱市', 2, 26);
INSERT INTO `tpf_region` VALUES (308, '临沧市', 2, 26);
INSERT INTO `tpf_region` VALUES (309, '楚雄彝族自治州', 2, 26);
INSERT INTO `tpf_region` VALUES (310, '红河哈尼族彝族自治州', 2, 26);
INSERT INTO `tpf_region` VALUES (311, '文山壮族苗族自治州', 2, 26);
INSERT INTO `tpf_region` VALUES (312, '西双版纳傣族自治州', 2, 26);
INSERT INTO `tpf_region` VALUES (313, '大理白族自治州', 2, 26);
INSERT INTO `tpf_region` VALUES (314, '德宏傣族景颇族自治州', 2, 26);
INSERT INTO `tpf_region` VALUES (315, '怒江傈僳族自治州', 2, 26);
INSERT INTO `tpf_region` VALUES (316, '迪庆藏族自治州', 2, 26);
INSERT INTO `tpf_region` VALUES (317, '拉萨市', 2, 27);
INSERT INTO `tpf_region` VALUES (318, '昌都市', 2, 27);
INSERT INTO `tpf_region` VALUES (319, '山南地区', 2, 27);
INSERT INTO `tpf_region` VALUES (320, '日喀则市', 2, 27);
INSERT INTO `tpf_region` VALUES (321, '那曲地区', 2, 27);
INSERT INTO `tpf_region` VALUES (322, '阿里地区', 2, 27);
INSERT INTO `tpf_region` VALUES (323, '林芝市', 2, 27);
INSERT INTO `tpf_region` VALUES (324, '西安市', 2, 28);
INSERT INTO `tpf_region` VALUES (325, '铜川市', 2, 28);
INSERT INTO `tpf_region` VALUES (326, '宝鸡市', 2, 28);
INSERT INTO `tpf_region` VALUES (327, '咸阳市', 2, 28);
INSERT INTO `tpf_region` VALUES (328, '渭南市', 2, 28);
INSERT INTO `tpf_region` VALUES (329, '延安市', 2, 28);
INSERT INTO `tpf_region` VALUES (330, '汉中市', 2, 28);
INSERT INTO `tpf_region` VALUES (331, '榆林市', 2, 28);
INSERT INTO `tpf_region` VALUES (332, '安康市', 2, 28);
INSERT INTO `tpf_region` VALUES (333, '商洛市', 2, 28);
INSERT INTO `tpf_region` VALUES (334, '兰州市', 2, 29);
INSERT INTO `tpf_region` VALUES (335, '嘉峪关市', 2, 29);
INSERT INTO `tpf_region` VALUES (336, '金昌市', 2, 29);
INSERT INTO `tpf_region` VALUES (337, '白银市', 2, 29);
INSERT INTO `tpf_region` VALUES (338, '天水市', 2, 29);
INSERT INTO `tpf_region` VALUES (339, '武威市', 2, 29);
INSERT INTO `tpf_region` VALUES (340, '张掖市', 2, 29);
INSERT INTO `tpf_region` VALUES (341, '平凉市', 2, 29);
INSERT INTO `tpf_region` VALUES (342, '酒泉市', 2, 29);
INSERT INTO `tpf_region` VALUES (343, '庆阳市', 2, 29);
INSERT INTO `tpf_region` VALUES (344, '定西市', 2, 29);
INSERT INTO `tpf_region` VALUES (345, '陇南市', 2, 29);
INSERT INTO `tpf_region` VALUES (346, '临夏回族自治州', 2, 29);
INSERT INTO `tpf_region` VALUES (347, '甘南藏族自治州', 2, 29);
INSERT INTO `tpf_region` VALUES (348, '西宁市', 2, 30);
INSERT INTO `tpf_region` VALUES (349, '海东市', 2, 30);
INSERT INTO `tpf_region` VALUES (350, '海北藏族自治州', 2, 30);
INSERT INTO `tpf_region` VALUES (351, '黄南藏族自治州', 2, 30);
INSERT INTO `tpf_region` VALUES (352, '海南藏族自治州', 2, 30);
INSERT INTO `tpf_region` VALUES (353, '果洛藏族自治州', 2, 30);
INSERT INTO `tpf_region` VALUES (354, '玉树藏族自治州', 2, 30);
INSERT INTO `tpf_region` VALUES (355, '海西蒙古族藏族自治州', 2, 30);
INSERT INTO `tpf_region` VALUES (356, '银川市', 2, 31);
INSERT INTO `tpf_region` VALUES (357, '石嘴山市', 2, 31);
INSERT INTO `tpf_region` VALUES (358, '吴忠市', 2, 31);
INSERT INTO `tpf_region` VALUES (359, '固原市', 2, 31);
INSERT INTO `tpf_region` VALUES (360, '中卫市', 2, 31);
INSERT INTO `tpf_region` VALUES (361, '乌鲁木齐市', 2, 32);
INSERT INTO `tpf_region` VALUES (362, '克拉玛依市', 2, 32);
INSERT INTO `tpf_region` VALUES (363, '吐鲁番市', 2, 32);
INSERT INTO `tpf_region` VALUES (364, '哈密地区', 2, 32);
INSERT INTO `tpf_region` VALUES (365, '昌吉回族自治州', 2, 32);
INSERT INTO `tpf_region` VALUES (366, '博尔塔拉蒙古自治州', 2, 32);
INSERT INTO `tpf_region` VALUES (367, '巴音郭楞蒙古自治州', 2, 32);
INSERT INTO `tpf_region` VALUES (368, '阿克苏地区', 2, 32);
INSERT INTO `tpf_region` VALUES (369, '克孜勒苏柯尔克孜自治州', 2, 32);
INSERT INTO `tpf_region` VALUES (370, '喀什地区', 2, 32);
INSERT INTO `tpf_region` VALUES (371, '和田地区', 2, 32);
INSERT INTO `tpf_region` VALUES (372, '伊犁哈萨克自治州', 2, 32);
INSERT INTO `tpf_region` VALUES (373, '塔城地区', 2, 32);
INSERT INTO `tpf_region` VALUES (374, '阿勒泰地区', 2, 32);
INSERT INTO `tpf_region` VALUES (375, '台北市', 2, 33);
INSERT INTO `tpf_region` VALUES (376, '高雄市', 2, 33);
INSERT INTO `tpf_region` VALUES (377, '台南市', 2, 33);
INSERT INTO `tpf_region` VALUES (378, '台中市', 2, 33);
INSERT INTO `tpf_region` VALUES (379, '金门县', 2, 33);
INSERT INTO `tpf_region` VALUES (380, '南投县', 2, 33);
INSERT INTO `tpf_region` VALUES (381, '基隆市', 2, 33);
INSERT INTO `tpf_region` VALUES (382, '新竹市', 2, 33);
INSERT INTO `tpf_region` VALUES (383, '嘉义市', 2, 33);
INSERT INTO `tpf_region` VALUES (384, '新北市', 2, 33);
INSERT INTO `tpf_region` VALUES (385, '宜兰县', 2, 33);
INSERT INTO `tpf_region` VALUES (386, '新竹县', 2, 33);
INSERT INTO `tpf_region` VALUES (387, '桃园县', 2, 33);
INSERT INTO `tpf_region` VALUES (388, '苗栗县', 2, 33);
INSERT INTO `tpf_region` VALUES (389, '彰化县', 2, 33);
INSERT INTO `tpf_region` VALUES (390, '嘉义县', 2, 33);
INSERT INTO `tpf_region` VALUES (391, '云林县', 2, 33);
INSERT INTO `tpf_region` VALUES (392, '屏东县', 2, 33);
INSERT INTO `tpf_region` VALUES (393, '台东县', 2, 33);
INSERT INTO `tpf_region` VALUES (394, '花莲县', 2, 33);
INSERT INTO `tpf_region` VALUES (395, '澎湖县', 2, 33);
INSERT INTO `tpf_region` VALUES (396, '连江县', 2, 33);
INSERT INTO `tpf_region` VALUES (397, '香港岛', 2, 34);
INSERT INTO `tpf_region` VALUES (398, '九龙', 2, 34);
INSERT INTO `tpf_region` VALUES (399, '新界', 2, 34);
INSERT INTO `tpf_region` VALUES (400, '澳门半岛', 2, 35);
INSERT INTO `tpf_region` VALUES (401, '离岛', 2, 35);
INSERT INTO `tpf_region` VALUES (402, '海外', 2, 36);
INSERT INTO `tpf_region` VALUES (403, '东城区', 3, 37);
INSERT INTO `tpf_region` VALUES (404, '西城区', 3, 37);
INSERT INTO `tpf_region` VALUES (405, '崇文区', 3, 37);
INSERT INTO `tpf_region` VALUES (406, '宣武区', 3, 37);
INSERT INTO `tpf_region` VALUES (407, '朝阳区', 3, 37);
INSERT INTO `tpf_region` VALUES (408, '丰台区', 3, 37);
INSERT INTO `tpf_region` VALUES (409, '石景山区', 3, 37);
INSERT INTO `tpf_region` VALUES (410, '海淀区', 3, 37);
INSERT INTO `tpf_region` VALUES (411, '门头沟区', 3, 37);
INSERT INTO `tpf_region` VALUES (412, '房山区', 3, 37);
INSERT INTO `tpf_region` VALUES (413, '通州区', 3, 37);
INSERT INTO `tpf_region` VALUES (414, '顺义区', 3, 37);
INSERT INTO `tpf_region` VALUES (415, '昌平区', 3, 37);
INSERT INTO `tpf_region` VALUES (416, '大兴区', 3, 37);
INSERT INTO `tpf_region` VALUES (417, '怀柔区', 3, 37);
INSERT INTO `tpf_region` VALUES (418, '平谷区', 3, 37);
INSERT INTO `tpf_region` VALUES (419, '密云县', 3, 37);
INSERT INTO `tpf_region` VALUES (420, '延庆县', 3, 37);
INSERT INTO `tpf_region` VALUES (421, '其它区', 3, 37);
INSERT INTO `tpf_region` VALUES (422, '和平区', 3, 38);
INSERT INTO `tpf_region` VALUES (423, '河东区', 3, 38);
INSERT INTO `tpf_region` VALUES (424, '河西区', 3, 38);
INSERT INTO `tpf_region` VALUES (425, '南开区', 3, 38);
INSERT INTO `tpf_region` VALUES (426, '河北区', 3, 38);
INSERT INTO `tpf_region` VALUES (427, '红桥区', 3, 38);
INSERT INTO `tpf_region` VALUES (428, '塘沽区', 3, 38);
INSERT INTO `tpf_region` VALUES (429, '汉沽区', 3, 38);
INSERT INTO `tpf_region` VALUES (430, '大港区', 3, 38);
INSERT INTO `tpf_region` VALUES (431, '东丽区', 3, 38);
INSERT INTO `tpf_region` VALUES (432, '西青区', 3, 38);
INSERT INTO `tpf_region` VALUES (433, '津南区', 3, 38);
INSERT INTO `tpf_region` VALUES (434, '北辰区', 3, 38);
INSERT INTO `tpf_region` VALUES (435, '武清区', 3, 38);
INSERT INTO `tpf_region` VALUES (436, '宝坻区', 3, 38);
INSERT INTO `tpf_region` VALUES (437, '滨海新区', 3, 38);
INSERT INTO `tpf_region` VALUES (438, '宁河县', 3, 38);
INSERT INTO `tpf_region` VALUES (439, '静海县', 3, 38);
INSERT INTO `tpf_region` VALUES (440, '蓟县', 3, 38);
INSERT INTO `tpf_region` VALUES (441, '其它区', 3, 38);
INSERT INTO `tpf_region` VALUES (442, '长安区', 3, 39);
INSERT INTO `tpf_region` VALUES (443, '桥东区', 3, 39);
INSERT INTO `tpf_region` VALUES (444, '桥西区', 3, 39);
INSERT INTO `tpf_region` VALUES (445, '新华区', 3, 39);
INSERT INTO `tpf_region` VALUES (446, '井陉矿区', 3, 39);
INSERT INTO `tpf_region` VALUES (447, '裕华区', 3, 39);
INSERT INTO `tpf_region` VALUES (448, '井陉县', 3, 39);
INSERT INTO `tpf_region` VALUES (449, '正定县', 3, 39);
INSERT INTO `tpf_region` VALUES (450, '栾城区', 3, 39);
INSERT INTO `tpf_region` VALUES (451, '行唐县', 3, 39);
INSERT INTO `tpf_region` VALUES (452, '灵寿县', 3, 39);
INSERT INTO `tpf_region` VALUES (453, '高邑县', 3, 39);
INSERT INTO `tpf_region` VALUES (454, '深泽县', 3, 39);
INSERT INTO `tpf_region` VALUES (455, '赞皇县', 3, 39);
INSERT INTO `tpf_region` VALUES (456, '无极县', 3, 39);
INSERT INTO `tpf_region` VALUES (457, '平山县', 3, 39);
INSERT INTO `tpf_region` VALUES (458, '元氏县', 3, 39);
INSERT INTO `tpf_region` VALUES (459, '赵县', 3, 39);
INSERT INTO `tpf_region` VALUES (460, '辛集市', 3, 39);
INSERT INTO `tpf_region` VALUES (461, '藁城区', 3, 39);
INSERT INTO `tpf_region` VALUES (462, '晋州市', 3, 39);
INSERT INTO `tpf_region` VALUES (463, '新乐市', 3, 39);
INSERT INTO `tpf_region` VALUES (464, '鹿泉区', 3, 39);
INSERT INTO `tpf_region` VALUES (465, '其它区', 3, 39);
INSERT INTO `tpf_region` VALUES (466, '路南区', 3, 40);
INSERT INTO `tpf_region` VALUES (467, '路北区', 3, 40);
INSERT INTO `tpf_region` VALUES (468, '古冶区', 3, 40);
INSERT INTO `tpf_region` VALUES (469, '开平区', 3, 40);
INSERT INTO `tpf_region` VALUES (470, '丰南区', 3, 40);
INSERT INTO `tpf_region` VALUES (471, '丰润区', 3, 40);
INSERT INTO `tpf_region` VALUES (472, '滦县', 3, 40);
INSERT INTO `tpf_region` VALUES (473, '滦南县', 3, 40);
INSERT INTO `tpf_region` VALUES (474, '乐亭县', 3, 40);
INSERT INTO `tpf_region` VALUES (475, '迁西县', 3, 40);
INSERT INTO `tpf_region` VALUES (476, '玉田县', 3, 40);
INSERT INTO `tpf_region` VALUES (477, '曹妃甸区', 3, 40);
INSERT INTO `tpf_region` VALUES (478, '遵化市', 3, 40);
INSERT INTO `tpf_region` VALUES (479, '迁安市', 3, 40);
INSERT INTO `tpf_region` VALUES (480, '其它区', 3, 40);
INSERT INTO `tpf_region` VALUES (481, '海港区', 3, 41);
INSERT INTO `tpf_region` VALUES (482, '山海关区', 3, 41);
INSERT INTO `tpf_region` VALUES (483, '北戴河区', 3, 41);
INSERT INTO `tpf_region` VALUES (484, '青龙满族自治县', 3, 41);
INSERT INTO `tpf_region` VALUES (485, '昌黎县', 3, 41);
INSERT INTO `tpf_region` VALUES (486, '抚宁县', 3, 41);
INSERT INTO `tpf_region` VALUES (487, '卢龙县', 3, 41);
INSERT INTO `tpf_region` VALUES (488, '其它区', 3, 41);
INSERT INTO `tpf_region` VALUES (489, '经济技术开发区', 3, 41);
INSERT INTO `tpf_region` VALUES (490, '邯山区', 3, 42);
INSERT INTO `tpf_region` VALUES (491, '丛台区', 3, 42);
INSERT INTO `tpf_region` VALUES (492, '复兴区', 3, 42);
INSERT INTO `tpf_region` VALUES (493, '峰峰矿区', 3, 42);
INSERT INTO `tpf_region` VALUES (494, '邯郸县', 3, 42);
INSERT INTO `tpf_region` VALUES (495, '临漳县', 3, 42);
INSERT INTO `tpf_region` VALUES (496, '成安县', 3, 42);
INSERT INTO `tpf_region` VALUES (497, '大名县', 3, 42);
INSERT INTO `tpf_region` VALUES (498, '涉县', 3, 42);
INSERT INTO `tpf_region` VALUES (499, '磁县', 3, 42);
INSERT INTO `tpf_region` VALUES (500, '肥乡县', 3, 42);
INSERT INTO `tpf_region` VALUES (501, '永年县', 3, 42);
INSERT INTO `tpf_region` VALUES (502, '邱县', 3, 42);
INSERT INTO `tpf_region` VALUES (503, '鸡泽县', 3, 42);
INSERT INTO `tpf_region` VALUES (504, '广平县', 3, 42);
INSERT INTO `tpf_region` VALUES (505, '馆陶县', 3, 42);
INSERT INTO `tpf_region` VALUES (506, '魏县', 3, 42);
INSERT INTO `tpf_region` VALUES (507, '曲周县', 3, 42);
INSERT INTO `tpf_region` VALUES (508, '武安市', 3, 42);
INSERT INTO `tpf_region` VALUES (509, '其它区', 3, 42);
INSERT INTO `tpf_region` VALUES (510, '桥东区', 3, 43);
INSERT INTO `tpf_region` VALUES (511, '桥西区', 3, 43);
INSERT INTO `tpf_region` VALUES (512, '邢台县', 3, 43);
INSERT INTO `tpf_region` VALUES (513, '临城县', 3, 43);
INSERT INTO `tpf_region` VALUES (514, '内丘县', 3, 43);
INSERT INTO `tpf_region` VALUES (515, '柏乡县', 3, 43);
INSERT INTO `tpf_region` VALUES (516, '隆尧县', 3, 43);
INSERT INTO `tpf_region` VALUES (517, '任县', 3, 43);
INSERT INTO `tpf_region` VALUES (518, '南和县', 3, 43);
INSERT INTO `tpf_region` VALUES (519, '宁晋县', 3, 43);
INSERT INTO `tpf_region` VALUES (520, '巨鹿县', 3, 43);
INSERT INTO `tpf_region` VALUES (521, '新河县', 3, 43);
INSERT INTO `tpf_region` VALUES (522, '广宗县', 3, 43);
INSERT INTO `tpf_region` VALUES (523, '平乡县', 3, 43);
INSERT INTO `tpf_region` VALUES (524, '威县', 3, 43);
INSERT INTO `tpf_region` VALUES (525, '清河县', 3, 43);
INSERT INTO `tpf_region` VALUES (526, '临西县', 3, 43);
INSERT INTO `tpf_region` VALUES (527, '南宫市', 3, 43);
INSERT INTO `tpf_region` VALUES (528, '沙河市', 3, 43);
INSERT INTO `tpf_region` VALUES (529, '其它区', 3, 43);
INSERT INTO `tpf_region` VALUES (530, '新市区', 3, 44);
INSERT INTO `tpf_region` VALUES (531, '北市区', 3, 44);
INSERT INTO `tpf_region` VALUES (532, '南市区', 3, 44);
INSERT INTO `tpf_region` VALUES (533, '满城县', 3, 44);
INSERT INTO `tpf_region` VALUES (534, '清苑县', 3, 44);
INSERT INTO `tpf_region` VALUES (535, '涞水县', 3, 44);
INSERT INTO `tpf_region` VALUES (536, '阜平县', 3, 44);
INSERT INTO `tpf_region` VALUES (537, '徐水县', 3, 44);
INSERT INTO `tpf_region` VALUES (538, '定兴县', 3, 44);
INSERT INTO `tpf_region` VALUES (539, '唐县', 3, 44);
INSERT INTO `tpf_region` VALUES (540, '高阳县', 3, 44);
INSERT INTO `tpf_region` VALUES (541, '容城县', 3, 44);
INSERT INTO `tpf_region` VALUES (542, '涞源县', 3, 44);
INSERT INTO `tpf_region` VALUES (543, '望都县', 3, 44);
INSERT INTO `tpf_region` VALUES (544, '安新县', 3, 44);
INSERT INTO `tpf_region` VALUES (545, '易县', 3, 44);
INSERT INTO `tpf_region` VALUES (546, '曲阳县', 3, 44);
INSERT INTO `tpf_region` VALUES (547, '蠡县', 3, 44);
INSERT INTO `tpf_region` VALUES (548, '顺平县', 3, 44);
INSERT INTO `tpf_region` VALUES (549, '博野县', 3, 44);
INSERT INTO `tpf_region` VALUES (550, '雄县', 3, 44);
INSERT INTO `tpf_region` VALUES (551, '涿州市', 3, 44);
INSERT INTO `tpf_region` VALUES (552, '定州市', 3, 44);
INSERT INTO `tpf_region` VALUES (553, '安国市', 3, 44);
INSERT INTO `tpf_region` VALUES (554, '高碑店市', 3, 44);
INSERT INTO `tpf_region` VALUES (555, '高开区', 3, 44);
INSERT INTO `tpf_region` VALUES (556, '其它区', 3, 44);
INSERT INTO `tpf_region` VALUES (557, '桥东区', 3, 45);
INSERT INTO `tpf_region` VALUES (558, '桥西区', 3, 45);
INSERT INTO `tpf_region` VALUES (559, '宣化区', 3, 45);
INSERT INTO `tpf_region` VALUES (560, '下花园区', 3, 45);
INSERT INTO `tpf_region` VALUES (561, '宣化县', 3, 45);
INSERT INTO `tpf_region` VALUES (562, '张北县', 3, 45);
INSERT INTO `tpf_region` VALUES (563, '康保县', 3, 45);
INSERT INTO `tpf_region` VALUES (564, '沽源县', 3, 45);
INSERT INTO `tpf_region` VALUES (565, '尚义县', 3, 45);
INSERT INTO `tpf_region` VALUES (566, '蔚县', 3, 45);
INSERT INTO `tpf_region` VALUES (567, '阳原县', 3, 45);
INSERT INTO `tpf_region` VALUES (568, '怀安县', 3, 45);
INSERT INTO `tpf_region` VALUES (569, '万全县', 3, 45);
INSERT INTO `tpf_region` VALUES (570, '怀来县', 3, 45);
INSERT INTO `tpf_region` VALUES (571, '涿鹿县', 3, 45);
INSERT INTO `tpf_region` VALUES (572, '赤城县', 3, 45);
INSERT INTO `tpf_region` VALUES (573, '崇礼县', 3, 45);
INSERT INTO `tpf_region` VALUES (574, '其它区', 3, 45);
INSERT INTO `tpf_region` VALUES (575, '双桥区', 3, 46);
INSERT INTO `tpf_region` VALUES (576, '双滦区', 3, 46);
INSERT INTO `tpf_region` VALUES (577, '鹰手营子矿区', 3, 46);
INSERT INTO `tpf_region` VALUES (578, '承德县', 3, 46);
INSERT INTO `tpf_region` VALUES (579, '兴隆县', 3, 46);
INSERT INTO `tpf_region` VALUES (580, '平泉县', 3, 46);
INSERT INTO `tpf_region` VALUES (581, '滦平县', 3, 46);
INSERT INTO `tpf_region` VALUES (582, '隆化县', 3, 46);
INSERT INTO `tpf_region` VALUES (583, '丰宁满族自治县', 3, 46);
INSERT INTO `tpf_region` VALUES (584, '宽城满族自治县', 3, 46);
INSERT INTO `tpf_region` VALUES (585, '围场满族蒙古族自治县', 3, 46);
INSERT INTO `tpf_region` VALUES (586, '其它区', 3, 46);
INSERT INTO `tpf_region` VALUES (587, '新华区', 3, 47);
INSERT INTO `tpf_region` VALUES (588, '运河区', 3, 47);
INSERT INTO `tpf_region` VALUES (589, '沧县', 3, 47);
INSERT INTO `tpf_region` VALUES (590, '青县', 3, 47);
INSERT INTO `tpf_region` VALUES (591, '东光县', 3, 47);
INSERT INTO `tpf_region` VALUES (592, '海兴县', 3, 47);
INSERT INTO `tpf_region` VALUES (593, '盐山县', 3, 47);
INSERT INTO `tpf_region` VALUES (594, '肃宁县', 3, 47);
INSERT INTO `tpf_region` VALUES (595, '南皮县', 3, 47);
INSERT INTO `tpf_region` VALUES (596, '吴桥县', 3, 47);
INSERT INTO `tpf_region` VALUES (597, '献县', 3, 47);
INSERT INTO `tpf_region` VALUES (598, '孟村回族自治县', 3, 47);
INSERT INTO `tpf_region` VALUES (599, '泊头市', 3, 47);
INSERT INTO `tpf_region` VALUES (600, '任丘市', 3, 47);
INSERT INTO `tpf_region` VALUES (601, '黄骅市', 3, 47);
INSERT INTO `tpf_region` VALUES (602, '河间市', 3, 47);
INSERT INTO `tpf_region` VALUES (603, '其它区', 3, 47);
INSERT INTO `tpf_region` VALUES (604, '安次区', 3, 48);
INSERT INTO `tpf_region` VALUES (605, '广阳区', 3, 48);
INSERT INTO `tpf_region` VALUES (606, '固安县', 3, 48);
INSERT INTO `tpf_region` VALUES (607, '永清县', 3, 48);
INSERT INTO `tpf_region` VALUES (608, '香河县', 3, 48);
INSERT INTO `tpf_region` VALUES (609, '大城县', 3, 48);
INSERT INTO `tpf_region` VALUES (610, '文安县', 3, 48);
INSERT INTO `tpf_region` VALUES (611, '大厂回族自治县', 3, 48);
INSERT INTO `tpf_region` VALUES (612, '开发区', 3, 48);
INSERT INTO `tpf_region` VALUES (613, '燕郊经济技术开发区', 3, 48);
INSERT INTO `tpf_region` VALUES (614, '霸州市', 3, 48);
INSERT INTO `tpf_region` VALUES (615, '三河市', 3, 48);
INSERT INTO `tpf_region` VALUES (616, '其它区', 3, 48);
INSERT INTO `tpf_region` VALUES (617, '桃城区', 3, 49);
INSERT INTO `tpf_region` VALUES (618, '枣强县', 3, 49);
INSERT INTO `tpf_region` VALUES (619, '武邑县', 3, 49);
INSERT INTO `tpf_region` VALUES (620, '武强县', 3, 49);
INSERT INTO `tpf_region` VALUES (621, '饶阳县', 3, 49);
INSERT INTO `tpf_region` VALUES (622, '安平县', 3, 49);
INSERT INTO `tpf_region` VALUES (623, '故城县', 3, 49);
INSERT INTO `tpf_region` VALUES (624, '景县', 3, 49);
INSERT INTO `tpf_region` VALUES (625, '阜城县', 3, 49);
INSERT INTO `tpf_region` VALUES (626, '冀州市', 3, 49);
INSERT INTO `tpf_region` VALUES (627, '深州市', 3, 49);
INSERT INTO `tpf_region` VALUES (628, '其它区', 3, 49);
INSERT INTO `tpf_region` VALUES (629, '小店区', 3, 50);
INSERT INTO `tpf_region` VALUES (630, '迎泽区', 3, 50);
INSERT INTO `tpf_region` VALUES (631, '杏花岭区', 3, 50);
INSERT INTO `tpf_region` VALUES (632, '尖草坪区', 3, 50);
INSERT INTO `tpf_region` VALUES (633, '万柏林区', 3, 50);
INSERT INTO `tpf_region` VALUES (634, '晋源区', 3, 50);
INSERT INTO `tpf_region` VALUES (635, '清徐县', 3, 50);
INSERT INTO `tpf_region` VALUES (636, '阳曲县', 3, 50);
INSERT INTO `tpf_region` VALUES (637, '娄烦县', 3, 50);
INSERT INTO `tpf_region` VALUES (638, '古交市', 3, 50);
INSERT INTO `tpf_region` VALUES (639, '其它区', 3, 50);
INSERT INTO `tpf_region` VALUES (640, '城区', 3, 51);
INSERT INTO `tpf_region` VALUES (641, '矿区', 3, 51);
INSERT INTO `tpf_region` VALUES (642, '南郊区', 3, 51);
INSERT INTO `tpf_region` VALUES (643, '新荣区', 3, 51);
INSERT INTO `tpf_region` VALUES (644, '阳高县', 3, 51);
INSERT INTO `tpf_region` VALUES (645, '天镇县', 3, 51);
INSERT INTO `tpf_region` VALUES (646, '广灵县', 3, 51);
INSERT INTO `tpf_region` VALUES (647, '灵丘县', 3, 51);
INSERT INTO `tpf_region` VALUES (648, '浑源县', 3, 51);
INSERT INTO `tpf_region` VALUES (649, '左云县', 3, 51);
INSERT INTO `tpf_region` VALUES (650, '大同县', 3, 51);
INSERT INTO `tpf_region` VALUES (651, '其它区', 3, 51);
INSERT INTO `tpf_region` VALUES (652, '城区', 3, 52);
INSERT INTO `tpf_region` VALUES (653, '矿区', 3, 52);
INSERT INTO `tpf_region` VALUES (654, '郊区', 3, 52);
INSERT INTO `tpf_region` VALUES (655, '平定县', 3, 52);
INSERT INTO `tpf_region` VALUES (656, '盂县', 3, 52);
INSERT INTO `tpf_region` VALUES (657, '其它区', 3, 52);
INSERT INTO `tpf_region` VALUES (658, '长治县', 3, 53);
INSERT INTO `tpf_region` VALUES (659, '襄垣县', 3, 53);
INSERT INTO `tpf_region` VALUES (660, '屯留县', 3, 53);
INSERT INTO `tpf_region` VALUES (661, '平顺县', 3, 53);
INSERT INTO `tpf_region` VALUES (662, '黎城县', 3, 53);
INSERT INTO `tpf_region` VALUES (663, '壶关县', 3, 53);
INSERT INTO `tpf_region` VALUES (664, '长子县', 3, 53);
INSERT INTO `tpf_region` VALUES (665, '武乡县', 3, 53);
INSERT INTO `tpf_region` VALUES (666, '沁县', 3, 53);
INSERT INTO `tpf_region` VALUES (667, '沁源县', 3, 53);
INSERT INTO `tpf_region` VALUES (668, '潞城市', 3, 53);
INSERT INTO `tpf_region` VALUES (669, '城区', 3, 53);
INSERT INTO `tpf_region` VALUES (670, '郊区', 3, 53);
INSERT INTO `tpf_region` VALUES (671, '高新区', 3, 53);
INSERT INTO `tpf_region` VALUES (672, '其它区', 3, 53);
INSERT INTO `tpf_region` VALUES (673, '城区', 3, 54);
INSERT INTO `tpf_region` VALUES (674, '沁水县', 3, 54);
INSERT INTO `tpf_region` VALUES (675, '阳城县', 3, 54);
INSERT INTO `tpf_region` VALUES (676, '陵川县', 3, 54);
INSERT INTO `tpf_region` VALUES (677, '泽州县', 3, 54);
INSERT INTO `tpf_region` VALUES (678, '高平市', 3, 54);
INSERT INTO `tpf_region` VALUES (679, '其它区', 3, 54);
INSERT INTO `tpf_region` VALUES (680, '朔城区', 3, 55);
INSERT INTO `tpf_region` VALUES (681, '平鲁区', 3, 55);
INSERT INTO `tpf_region` VALUES (682, '山阴县', 3, 55);
INSERT INTO `tpf_region` VALUES (683, '应县', 3, 55);
INSERT INTO `tpf_region` VALUES (684, '右玉县', 3, 55);
INSERT INTO `tpf_region` VALUES (685, '怀仁县', 3, 55);
INSERT INTO `tpf_region` VALUES (686, '其它区', 3, 55);
INSERT INTO `tpf_region` VALUES (687, '榆次区', 3, 56);
INSERT INTO `tpf_region` VALUES (688, '榆社县', 3, 56);
INSERT INTO `tpf_region` VALUES (689, '左权县', 3, 56);
INSERT INTO `tpf_region` VALUES (690, '和顺县', 3, 56);
INSERT INTO `tpf_region` VALUES (691, '昔阳县', 3, 56);
INSERT INTO `tpf_region` VALUES (692, '寿阳县', 3, 56);
INSERT INTO `tpf_region` VALUES (693, '太谷县', 3, 56);
INSERT INTO `tpf_region` VALUES (694, '祁县', 3, 56);
INSERT INTO `tpf_region` VALUES (695, '平遥县', 3, 56);
INSERT INTO `tpf_region` VALUES (696, '灵石县', 3, 56);
INSERT INTO `tpf_region` VALUES (697, '介休市', 3, 56);
INSERT INTO `tpf_region` VALUES (698, '其它区', 3, 56);
INSERT INTO `tpf_region` VALUES (699, '盐湖区', 3, 57);
INSERT INTO `tpf_region` VALUES (700, '临猗县', 3, 57);
INSERT INTO `tpf_region` VALUES (701, '万荣县', 3, 57);
INSERT INTO `tpf_region` VALUES (702, '闻喜县', 3, 57);
INSERT INTO `tpf_region` VALUES (703, '稷山县', 3, 57);
INSERT INTO `tpf_region` VALUES (704, '新绛县', 3, 57);
INSERT INTO `tpf_region` VALUES (705, '绛县', 3, 57);
INSERT INTO `tpf_region` VALUES (706, '垣曲县', 3, 57);
INSERT INTO `tpf_region` VALUES (707, '夏县', 3, 57);
INSERT INTO `tpf_region` VALUES (708, '平陆县', 3, 57);
INSERT INTO `tpf_region` VALUES (709, '芮城县', 3, 57);
INSERT INTO `tpf_region` VALUES (710, '永济市', 3, 57);
INSERT INTO `tpf_region` VALUES (711, '河津市', 3, 57);
INSERT INTO `tpf_region` VALUES (712, '其它区', 3, 57);
INSERT INTO `tpf_region` VALUES (713, '忻府区', 3, 58);
INSERT INTO `tpf_region` VALUES (714, '定襄县', 3, 58);
INSERT INTO `tpf_region` VALUES (715, '五台县', 3, 58);
INSERT INTO `tpf_region` VALUES (716, '代县', 3, 58);
INSERT INTO `tpf_region` VALUES (717, '繁峙县', 3, 58);
INSERT INTO `tpf_region` VALUES (718, '宁武县', 3, 58);
INSERT INTO `tpf_region` VALUES (719, '静乐县', 3, 58);
INSERT INTO `tpf_region` VALUES (720, '神池县', 3, 58);
INSERT INTO `tpf_region` VALUES (721, '五寨县', 3, 58);
INSERT INTO `tpf_region` VALUES (722, '岢岚县', 3, 58);
INSERT INTO `tpf_region` VALUES (723, '河曲县', 3, 58);
INSERT INTO `tpf_region` VALUES (724, '保德县', 3, 58);
INSERT INTO `tpf_region` VALUES (725, '偏关县', 3, 58);
INSERT INTO `tpf_region` VALUES (726, '原平市', 3, 58);
INSERT INTO `tpf_region` VALUES (727, '其它区', 3, 58);
INSERT INTO `tpf_region` VALUES (728, '尧都区', 3, 59);
INSERT INTO `tpf_region` VALUES (729, '曲沃县', 3, 59);
INSERT INTO `tpf_region` VALUES (730, '翼城县', 3, 59);
INSERT INTO `tpf_region` VALUES (731, '襄汾县', 3, 59);
INSERT INTO `tpf_region` VALUES (732, '洪洞县', 3, 59);
INSERT INTO `tpf_region` VALUES (733, '古县', 3, 59);
INSERT INTO `tpf_region` VALUES (734, '安泽县', 3, 59);
INSERT INTO `tpf_region` VALUES (735, '浮山县', 3, 59);
INSERT INTO `tpf_region` VALUES (736, '吉县', 3, 59);
INSERT INTO `tpf_region` VALUES (737, '乡宁县', 3, 59);
INSERT INTO `tpf_region` VALUES (738, '大宁县', 3, 59);
INSERT INTO `tpf_region` VALUES (739, '隰县', 3, 59);
INSERT INTO `tpf_region` VALUES (740, '永和县', 3, 59);
INSERT INTO `tpf_region` VALUES (741, '蒲县', 3, 59);
INSERT INTO `tpf_region` VALUES (742, '汾西县', 3, 59);
INSERT INTO `tpf_region` VALUES (743, '侯马市', 3, 59);
INSERT INTO `tpf_region` VALUES (744, '霍州市', 3, 59);
INSERT INTO `tpf_region` VALUES (745, '其它区', 3, 59);
INSERT INTO `tpf_region` VALUES (746, '离石区', 3, 60);
INSERT INTO `tpf_region` VALUES (747, '文水县', 3, 60);
INSERT INTO `tpf_region` VALUES (748, '交城县', 3, 60);
INSERT INTO `tpf_region` VALUES (749, '兴县', 3, 60);
INSERT INTO `tpf_region` VALUES (750, '临县', 3, 60);
INSERT INTO `tpf_region` VALUES (751, '柳林县', 3, 60);
INSERT INTO `tpf_region` VALUES (752, '石楼县', 3, 60);
INSERT INTO `tpf_region` VALUES (753, '岚县', 3, 60);
INSERT INTO `tpf_region` VALUES (754, '方山县', 3, 60);
INSERT INTO `tpf_region` VALUES (755, '中阳县', 3, 60);
INSERT INTO `tpf_region` VALUES (756, '交口县', 3, 60);
INSERT INTO `tpf_region` VALUES (757, '孝义市', 3, 60);
INSERT INTO `tpf_region` VALUES (758, '汾阳市', 3, 60);
INSERT INTO `tpf_region` VALUES (759, '其它区', 3, 60);
INSERT INTO `tpf_region` VALUES (760, '新城区', 3, 61);
INSERT INTO `tpf_region` VALUES (761, '回民区', 3, 61);
INSERT INTO `tpf_region` VALUES (762, '玉泉区', 3, 61);
INSERT INTO `tpf_region` VALUES (763, '赛罕区', 3, 61);
INSERT INTO `tpf_region` VALUES (764, '土默特左旗', 3, 61);
INSERT INTO `tpf_region` VALUES (765, '托克托县', 3, 61);
INSERT INTO `tpf_region` VALUES (766, '和林格尔县', 3, 61);
INSERT INTO `tpf_region` VALUES (767, '清水河县', 3, 61);
INSERT INTO `tpf_region` VALUES (768, '武川县', 3, 61);
INSERT INTO `tpf_region` VALUES (769, '其它区', 3, 61);
INSERT INTO `tpf_region` VALUES (770, '东河区', 3, 62);
INSERT INTO `tpf_region` VALUES (771, '昆都仑区', 3, 62);
INSERT INTO `tpf_region` VALUES (772, '青山区', 3, 62);
INSERT INTO `tpf_region` VALUES (773, '石拐区', 3, 62);
INSERT INTO `tpf_region` VALUES (774, '白云鄂博矿区', 3, 62);
INSERT INTO `tpf_region` VALUES (775, '九原区', 3, 62);
INSERT INTO `tpf_region` VALUES (776, '土默特右旗', 3, 62);
INSERT INTO `tpf_region` VALUES (777, '固阳县', 3, 62);
INSERT INTO `tpf_region` VALUES (778, '达尔罕茂明安联合旗', 3, 62);
INSERT INTO `tpf_region` VALUES (779, '其它区', 3, 62);
INSERT INTO `tpf_region` VALUES (780, '海勃湾区', 3, 63);
INSERT INTO `tpf_region` VALUES (781, '海南区', 3, 63);
INSERT INTO `tpf_region` VALUES (782, '乌达区', 3, 63);
INSERT INTO `tpf_region` VALUES (783, '其它区', 3, 63);
INSERT INTO `tpf_region` VALUES (784, '红山区', 3, 64);
INSERT INTO `tpf_region` VALUES (785, '元宝山区', 3, 64);
INSERT INTO `tpf_region` VALUES (786, '松山区', 3, 64);
INSERT INTO `tpf_region` VALUES (787, '阿鲁科尔沁旗', 3, 64);
INSERT INTO `tpf_region` VALUES (788, '巴林左旗', 3, 64);
INSERT INTO `tpf_region` VALUES (789, '巴林右旗', 3, 64);
INSERT INTO `tpf_region` VALUES (790, '林西县', 3, 64);
INSERT INTO `tpf_region` VALUES (791, '克什克腾旗', 3, 64);
INSERT INTO `tpf_region` VALUES (792, '翁牛特旗', 3, 64);
INSERT INTO `tpf_region` VALUES (793, '喀喇沁旗', 3, 64);
INSERT INTO `tpf_region` VALUES (794, '宁城县', 3, 64);
INSERT INTO `tpf_region` VALUES (795, '敖汉旗', 3, 64);
INSERT INTO `tpf_region` VALUES (796, '其它区', 3, 64);
INSERT INTO `tpf_region` VALUES (797, '科尔沁区', 3, 65);
INSERT INTO `tpf_region` VALUES (798, '科尔沁左翼中旗', 3, 65);
INSERT INTO `tpf_region` VALUES (799, '科尔沁左翼后旗', 3, 65);
INSERT INTO `tpf_region` VALUES (800, '开鲁县', 3, 65);
INSERT INTO `tpf_region` VALUES (801, '库伦旗', 3, 65);
INSERT INTO `tpf_region` VALUES (802, '奈曼旗', 3, 65);
INSERT INTO `tpf_region` VALUES (803, '扎鲁特旗', 3, 65);
INSERT INTO `tpf_region` VALUES (804, '霍林郭勒市', 3, 65);
INSERT INTO `tpf_region` VALUES (805, '其它区', 3, 65);
INSERT INTO `tpf_region` VALUES (806, '东胜区', 3, 66);
INSERT INTO `tpf_region` VALUES (807, '达拉特旗', 3, 66);
INSERT INTO `tpf_region` VALUES (808, '准格尔旗', 3, 66);
INSERT INTO `tpf_region` VALUES (809, '鄂托克前旗', 3, 66);
INSERT INTO `tpf_region` VALUES (810, '鄂托克旗', 3, 66);
INSERT INTO `tpf_region` VALUES (811, '杭锦旗', 3, 66);
INSERT INTO `tpf_region` VALUES (812, '乌审旗', 3, 66);
INSERT INTO `tpf_region` VALUES (813, '伊金霍洛旗', 3, 66);
INSERT INTO `tpf_region` VALUES (814, '其它区', 3, 66);
INSERT INTO `tpf_region` VALUES (815, '海拉尔区', 3, 67);
INSERT INTO `tpf_region` VALUES (816, '扎赉诺尔区', 3, 67);
INSERT INTO `tpf_region` VALUES (817, '阿荣旗', 3, 67);
INSERT INTO `tpf_region` VALUES (818, '莫力达瓦达斡尔族自治旗', 3, 67);
INSERT INTO `tpf_region` VALUES (819, '鄂伦春自治旗', 3, 67);
INSERT INTO `tpf_region` VALUES (820, '鄂温克族自治旗', 3, 67);
INSERT INTO `tpf_region` VALUES (821, '陈巴尔虎旗', 3, 67);
INSERT INTO `tpf_region` VALUES (822, '新巴尔虎左旗', 3, 67);
INSERT INTO `tpf_region` VALUES (823, '新巴尔虎右旗', 3, 67);
INSERT INTO `tpf_region` VALUES (824, '满洲里市', 3, 67);
INSERT INTO `tpf_region` VALUES (825, '牙克石市', 3, 67);
INSERT INTO `tpf_region` VALUES (826, '扎兰屯市', 3, 67);
INSERT INTO `tpf_region` VALUES (827, '额尔古纳市', 3, 67);
INSERT INTO `tpf_region` VALUES (828, '根河市', 3, 67);
INSERT INTO `tpf_region` VALUES (829, '其它区', 3, 67);
INSERT INTO `tpf_region` VALUES (830, '临河区', 3, 68);
INSERT INTO `tpf_region` VALUES (831, '五原县', 3, 68);
INSERT INTO `tpf_region` VALUES (832, '磴口县', 3, 68);
INSERT INTO `tpf_region` VALUES (833, '乌拉特前旗', 3, 68);
INSERT INTO `tpf_region` VALUES (834, '乌拉特中旗', 3, 68);
INSERT INTO `tpf_region` VALUES (835, '乌拉特后旗', 3, 68);
INSERT INTO `tpf_region` VALUES (836, '杭锦后旗', 3, 68);
INSERT INTO `tpf_region` VALUES (837, '其它区', 3, 68);
INSERT INTO `tpf_region` VALUES (838, '集宁区', 3, 69);
INSERT INTO `tpf_region` VALUES (839, '卓资县', 3, 69);
INSERT INTO `tpf_region` VALUES (840, '化德县', 3, 69);
INSERT INTO `tpf_region` VALUES (841, '商都县', 3, 69);
INSERT INTO `tpf_region` VALUES (842, '兴和县', 3, 69);
INSERT INTO `tpf_region` VALUES (843, '凉城县', 3, 69);
INSERT INTO `tpf_region` VALUES (844, '察哈尔右翼前旗', 3, 69);
INSERT INTO `tpf_region` VALUES (845, '察哈尔右翼中旗', 3, 69);
INSERT INTO `tpf_region` VALUES (846, '察哈尔右翼后旗', 3, 69);
INSERT INTO `tpf_region` VALUES (847, '四子王旗', 3, 69);
INSERT INTO `tpf_region` VALUES (848, '丰镇市', 3, 69);
INSERT INTO `tpf_region` VALUES (849, '其它区', 3, 69);
INSERT INTO `tpf_region` VALUES (850, '乌兰浩特市', 3, 70);
INSERT INTO `tpf_region` VALUES (851, '阿尔山市', 3, 70);
INSERT INTO `tpf_region` VALUES (852, '科尔沁右翼前旗', 3, 70);
INSERT INTO `tpf_region` VALUES (853, '科尔沁右翼中旗', 3, 70);
INSERT INTO `tpf_region` VALUES (854, '扎赉特旗', 3, 70);
INSERT INTO `tpf_region` VALUES (855, '突泉县', 3, 70);
INSERT INTO `tpf_region` VALUES (856, '其它区', 3, 70);
INSERT INTO `tpf_region` VALUES (857, '二连浩特市', 3, 71);
INSERT INTO `tpf_region` VALUES (858, '锡林浩特市', 3, 71);
INSERT INTO `tpf_region` VALUES (859, '阿巴嘎旗', 3, 71);
INSERT INTO `tpf_region` VALUES (860, '苏尼特左旗', 3, 71);
INSERT INTO `tpf_region` VALUES (861, '苏尼特右旗', 3, 71);
INSERT INTO `tpf_region` VALUES (862, '东乌珠穆沁旗', 3, 71);
INSERT INTO `tpf_region` VALUES (863, '西乌珠穆沁旗', 3, 71);
INSERT INTO `tpf_region` VALUES (864, '太仆寺旗', 3, 71);
INSERT INTO `tpf_region` VALUES (865, '镶黄旗', 3, 71);
INSERT INTO `tpf_region` VALUES (866, '正镶白旗', 3, 71);
INSERT INTO `tpf_region` VALUES (867, '正蓝旗', 3, 71);
INSERT INTO `tpf_region` VALUES (868, '多伦县', 3, 71);
INSERT INTO `tpf_region` VALUES (869, '其它区', 3, 71);
INSERT INTO `tpf_region` VALUES (870, '阿拉善左旗', 3, 72);
INSERT INTO `tpf_region` VALUES (871, '阿拉善右旗', 3, 72);
INSERT INTO `tpf_region` VALUES (872, '额济纳旗', 3, 72);
INSERT INTO `tpf_region` VALUES (873, '其它区', 3, 72);
INSERT INTO `tpf_region` VALUES (874, '和平区', 3, 73);
INSERT INTO `tpf_region` VALUES (875, '沈河区', 3, 73);
INSERT INTO `tpf_region` VALUES (876, '大东区', 3, 73);
INSERT INTO `tpf_region` VALUES (877, '皇姑区', 3, 73);
INSERT INTO `tpf_region` VALUES (878, '铁西区', 3, 73);
INSERT INTO `tpf_region` VALUES (879, '苏家屯区', 3, 73);
INSERT INTO `tpf_region` VALUES (880, '浑南区', 3, 73);
INSERT INTO `tpf_region` VALUES (881, '新城子区', 3, 73);
INSERT INTO `tpf_region` VALUES (882, '于洪区', 3, 73);
INSERT INTO `tpf_region` VALUES (883, '辽中县', 3, 73);
INSERT INTO `tpf_region` VALUES (884, '康平县', 3, 73);
INSERT INTO `tpf_region` VALUES (885, '法库县', 3, 73);
INSERT INTO `tpf_region` VALUES (886, '新民市', 3, 73);
INSERT INTO `tpf_region` VALUES (887, '浑南新区', 3, 73);
INSERT INTO `tpf_region` VALUES (888, '张士开发区', 3, 73);
INSERT INTO `tpf_region` VALUES (889, '沈北新区', 3, 73);
INSERT INTO `tpf_region` VALUES (890, '其它区', 3, 73);
INSERT INTO `tpf_region` VALUES (891, '中山区', 3, 74);
INSERT INTO `tpf_region` VALUES (892, '西岗区', 3, 74);
INSERT INTO `tpf_region` VALUES (893, '沙河口区', 3, 74);
INSERT INTO `tpf_region` VALUES (894, '甘井子区', 3, 74);
INSERT INTO `tpf_region` VALUES (895, '旅顺口区', 3, 74);
INSERT INTO `tpf_region` VALUES (896, '金州区', 3, 74);
INSERT INTO `tpf_region` VALUES (897, '长海县', 3, 74);
INSERT INTO `tpf_region` VALUES (898, '开发区', 3, 74);
INSERT INTO `tpf_region` VALUES (899, '瓦房店市', 3, 74);
INSERT INTO `tpf_region` VALUES (900, '普兰店市', 3, 74);
INSERT INTO `tpf_region` VALUES (901, '庄河市', 3, 74);
INSERT INTO `tpf_region` VALUES (902, '岭前区', 3, 74);
INSERT INTO `tpf_region` VALUES (903, '其它区', 3, 74);
INSERT INTO `tpf_region` VALUES (904, '铁东区', 3, 75);
INSERT INTO `tpf_region` VALUES (905, '铁西区', 3, 75);
INSERT INTO `tpf_region` VALUES (906, '立山区', 3, 75);
INSERT INTO `tpf_region` VALUES (907, '千山区', 3, 75);
INSERT INTO `tpf_region` VALUES (908, '台安县', 3, 75);
INSERT INTO `tpf_region` VALUES (909, '岫岩满族自治县', 3, 75);
INSERT INTO `tpf_region` VALUES (910, '高新区', 3, 75);
INSERT INTO `tpf_region` VALUES (911, '海城市', 3, 75);
INSERT INTO `tpf_region` VALUES (912, '其它区', 3, 75);
INSERT INTO `tpf_region` VALUES (913, '新抚区', 3, 76);
INSERT INTO `tpf_region` VALUES (914, '东洲区', 3, 76);
INSERT INTO `tpf_region` VALUES (915, '望花区', 3, 76);
INSERT INTO `tpf_region` VALUES (916, '顺城区', 3, 76);
INSERT INTO `tpf_region` VALUES (917, '抚顺县', 3, 76);
INSERT INTO `tpf_region` VALUES (918, '新宾满族自治县', 3, 76);
INSERT INTO `tpf_region` VALUES (919, '清原满族自治县', 3, 76);
INSERT INTO `tpf_region` VALUES (920, '其它区', 3, 76);
INSERT INTO `tpf_region` VALUES (921, '平山区', 3, 77);
INSERT INTO `tpf_region` VALUES (922, '溪湖区', 3, 77);
INSERT INTO `tpf_region` VALUES (923, '明山区', 3, 77);
INSERT INTO `tpf_region` VALUES (924, '南芬区', 3, 77);
INSERT INTO `tpf_region` VALUES (925, '本溪满族自治县', 3, 77);
INSERT INTO `tpf_region` VALUES (926, '桓仁满族自治县', 3, 77);
INSERT INTO `tpf_region` VALUES (927, '其它区', 3, 77);
INSERT INTO `tpf_region` VALUES (928, '元宝区', 3, 78);
INSERT INTO `tpf_region` VALUES (929, '振兴区', 3, 78);
INSERT INTO `tpf_region` VALUES (930, '振安区', 3, 78);
INSERT INTO `tpf_region` VALUES (931, '宽甸满族自治县', 3, 78);
INSERT INTO `tpf_region` VALUES (932, '东港市', 3, 78);
INSERT INTO `tpf_region` VALUES (933, '凤城市', 3, 78);
INSERT INTO `tpf_region` VALUES (934, '其它区', 3, 78);
INSERT INTO `tpf_region` VALUES (935, '古塔区', 3, 79);
INSERT INTO `tpf_region` VALUES (936, '凌河区', 3, 79);
INSERT INTO `tpf_region` VALUES (937, '太和区', 3, 79);
INSERT INTO `tpf_region` VALUES (938, '黑山县', 3, 79);
INSERT INTO `tpf_region` VALUES (939, '义县', 3, 79);
INSERT INTO `tpf_region` VALUES (940, '凌海市', 3, 79);
INSERT INTO `tpf_region` VALUES (941, '北镇市', 3, 79);
INSERT INTO `tpf_region` VALUES (942, '其它区', 3, 79);
INSERT INTO `tpf_region` VALUES (943, '站前区', 3, 80);
INSERT INTO `tpf_region` VALUES (944, '西市区', 3, 80);
INSERT INTO `tpf_region` VALUES (945, '鲅鱼圈区', 3, 80);
INSERT INTO `tpf_region` VALUES (946, '老边区', 3, 80);
INSERT INTO `tpf_region` VALUES (947, '盖州市', 3, 80);
INSERT INTO `tpf_region` VALUES (948, '大石桥市', 3, 80);
INSERT INTO `tpf_region` VALUES (949, '其它区', 3, 80);
INSERT INTO `tpf_region` VALUES (950, '海州区', 3, 81);
INSERT INTO `tpf_region` VALUES (951, '新邱区', 3, 81);
INSERT INTO `tpf_region` VALUES (952, '太平区', 3, 81);
INSERT INTO `tpf_region` VALUES (953, '清河门区', 3, 81);
INSERT INTO `tpf_region` VALUES (954, '细河区', 3, 81);
INSERT INTO `tpf_region` VALUES (955, '阜新蒙古族自治县', 3, 81);
INSERT INTO `tpf_region` VALUES (956, '彰武县', 3, 81);
INSERT INTO `tpf_region` VALUES (957, '其它区', 3, 81);
INSERT INTO `tpf_region` VALUES (958, '白塔区', 3, 82);
INSERT INTO `tpf_region` VALUES (959, '文圣区', 3, 82);
INSERT INTO `tpf_region` VALUES (960, '宏伟区', 3, 82);
INSERT INTO `tpf_region` VALUES (961, '弓长岭区', 3, 82);
INSERT INTO `tpf_region` VALUES (962, '太子河区', 3, 82);
INSERT INTO `tpf_region` VALUES (963, '辽阳县', 3, 82);
INSERT INTO `tpf_region` VALUES (964, '灯塔市', 3, 82);
INSERT INTO `tpf_region` VALUES (965, '其它区', 3, 82);
INSERT INTO `tpf_region` VALUES (966, '双台子区', 3, 83);
INSERT INTO `tpf_region` VALUES (967, '兴隆台区', 3, 83);
INSERT INTO `tpf_region` VALUES (968, '大洼县', 3, 83);
INSERT INTO `tpf_region` VALUES (969, '盘山县', 3, 83);
INSERT INTO `tpf_region` VALUES (970, '其它区', 3, 83);
INSERT INTO `tpf_region` VALUES (971, '银州区', 3, 84);
INSERT INTO `tpf_region` VALUES (972, '清河区', 3, 84);
INSERT INTO `tpf_region` VALUES (973, '铁岭县', 3, 84);
INSERT INTO `tpf_region` VALUES (974, '西丰县', 3, 84);
INSERT INTO `tpf_region` VALUES (975, '昌图县', 3, 84);
INSERT INTO `tpf_region` VALUES (976, '调兵山市', 3, 84);
INSERT INTO `tpf_region` VALUES (977, '开原市', 3, 84);
INSERT INTO `tpf_region` VALUES (978, '其它区', 3, 84);
INSERT INTO `tpf_region` VALUES (979, '双塔区', 3, 85);
INSERT INTO `tpf_region` VALUES (980, '龙城区', 3, 85);
INSERT INTO `tpf_region` VALUES (981, '朝阳县', 3, 85);
INSERT INTO `tpf_region` VALUES (982, '建平县', 3, 85);
INSERT INTO `tpf_region` VALUES (983, '喀喇沁左翼蒙古族自治县', 3, 85);
INSERT INTO `tpf_region` VALUES (984, '北票市', 3, 85);
INSERT INTO `tpf_region` VALUES (985, '凌源市', 3, 85);
INSERT INTO `tpf_region` VALUES (986, '其它区', 3, 85);
INSERT INTO `tpf_region` VALUES (987, '连山区', 3, 86);
INSERT INTO `tpf_region` VALUES (988, '龙港区', 3, 86);
INSERT INTO `tpf_region` VALUES (989, '南票区', 3, 86);
INSERT INTO `tpf_region` VALUES (990, '绥中县', 3, 86);
INSERT INTO `tpf_region` VALUES (991, '建昌县', 3, 86);
INSERT INTO `tpf_region` VALUES (992, '兴城市', 3, 86);
INSERT INTO `tpf_region` VALUES (993, '其它区', 3, 86);
INSERT INTO `tpf_region` VALUES (994, '南关区', 3, 87);
INSERT INTO `tpf_region` VALUES (995, '宽城区', 3, 87);
INSERT INTO `tpf_region` VALUES (996, '朝阳区', 3, 87);
INSERT INTO `tpf_region` VALUES (997, '二道区', 3, 87);
INSERT INTO `tpf_region` VALUES (998, '绿园区', 3, 87);
INSERT INTO `tpf_region` VALUES (999, '双阳区', 3, 87);
INSERT INTO `tpf_region` VALUES (1000, '农安县', 3, 87);
INSERT INTO `tpf_region` VALUES (1001, '九台区', 3, 87);
INSERT INTO `tpf_region` VALUES (1002, '榆树市', 3, 87);
INSERT INTO `tpf_region` VALUES (1003, '德惠市', 3, 87);
INSERT INTO `tpf_region` VALUES (1004, '高新技术产业开发区', 3, 87);
INSERT INTO `tpf_region` VALUES (1005, '汽车产业开发区', 3, 87);
INSERT INTO `tpf_region` VALUES (1006, '经济技术开发区', 3, 87);
INSERT INTO `tpf_region` VALUES (1007, '净月旅游开发区', 3, 87);
INSERT INTO `tpf_region` VALUES (1008, '其它区', 3, 87);
INSERT INTO `tpf_region` VALUES (1009, '昌邑区', 3, 88);
INSERT INTO `tpf_region` VALUES (1010, '龙潭区', 3, 88);
INSERT INTO `tpf_region` VALUES (1011, '船营区', 3, 88);
INSERT INTO `tpf_region` VALUES (1012, '丰满区', 3, 88);
INSERT INTO `tpf_region` VALUES (1013, '永吉县', 3, 88);
INSERT INTO `tpf_region` VALUES (1014, '蛟河市', 3, 88);
INSERT INTO `tpf_region` VALUES (1015, '桦甸市', 3, 88);
INSERT INTO `tpf_region` VALUES (1016, '舒兰市', 3, 88);
INSERT INTO `tpf_region` VALUES (1017, '磐石市', 3, 88);
INSERT INTO `tpf_region` VALUES (1018, '其它区', 3, 88);
INSERT INTO `tpf_region` VALUES (1019, '铁西区', 3, 89);
INSERT INTO `tpf_region` VALUES (1020, '铁东区', 3, 89);
INSERT INTO `tpf_region` VALUES (1021, '梨树县', 3, 89);
INSERT INTO `tpf_region` VALUES (1022, '伊通满族自治县', 3, 89);
INSERT INTO `tpf_region` VALUES (1023, '公主岭市', 3, 89);
INSERT INTO `tpf_region` VALUES (1024, '双辽市', 3, 89);
INSERT INTO `tpf_region` VALUES (1025, '其它区', 3, 89);
INSERT INTO `tpf_region` VALUES (1026, '龙山区', 3, 90);
INSERT INTO `tpf_region` VALUES (1027, '西安区', 3, 90);
INSERT INTO `tpf_region` VALUES (1028, '东丰县', 3, 90);
INSERT INTO `tpf_region` VALUES (1029, '东辽县', 3, 90);
INSERT INTO `tpf_region` VALUES (1030, '其它区', 3, 90);
INSERT INTO `tpf_region` VALUES (1031, '东昌区', 3, 91);
INSERT INTO `tpf_region` VALUES (1032, '二道江区', 3, 91);
INSERT INTO `tpf_region` VALUES (1033, '通化县', 3, 91);
INSERT INTO `tpf_region` VALUES (1034, '辉南县', 3, 91);
INSERT INTO `tpf_region` VALUES (1035, '柳河县', 3, 91);
INSERT INTO `tpf_region` VALUES (1036, '梅河口市', 3, 91);
INSERT INTO `tpf_region` VALUES (1037, '集安市', 3, 91);
INSERT INTO `tpf_region` VALUES (1038, '其它区', 3, 91);
INSERT INTO `tpf_region` VALUES (1039, '浑江区', 3, 92);
INSERT INTO `tpf_region` VALUES (1040, '抚松县', 3, 92);
INSERT INTO `tpf_region` VALUES (1041, '靖宇县', 3, 92);
INSERT INTO `tpf_region` VALUES (1042, '长白朝鲜族自治县', 3, 92);
INSERT INTO `tpf_region` VALUES (1043, '江源区', 3, 92);
INSERT INTO `tpf_region` VALUES (1044, '临江市', 3, 92);
INSERT INTO `tpf_region` VALUES (1045, '其它区', 3, 92);
INSERT INTO `tpf_region` VALUES (1046, '宁江区', 3, 93);
INSERT INTO `tpf_region` VALUES (1047, '前郭尔罗斯蒙古族自治县', 3, 93);
INSERT INTO `tpf_region` VALUES (1048, '长岭县', 3, 93);
INSERT INTO `tpf_region` VALUES (1049, '乾安县', 3, 93);
INSERT INTO `tpf_region` VALUES (1050, '扶余市', 3, 93);
INSERT INTO `tpf_region` VALUES (1051, '其它区', 3, 93);
INSERT INTO `tpf_region` VALUES (1052, '洮北区', 3, 94);
INSERT INTO `tpf_region` VALUES (1053, '镇赉县', 3, 94);
INSERT INTO `tpf_region` VALUES (1054, '通榆县', 3, 94);
INSERT INTO `tpf_region` VALUES (1055, '洮南市', 3, 94);
INSERT INTO `tpf_region` VALUES (1056, '大安市', 3, 94);
INSERT INTO `tpf_region` VALUES (1057, '其它区', 3, 94);
INSERT INTO `tpf_region` VALUES (1058, '延吉市', 3, 95);
INSERT INTO `tpf_region` VALUES (1059, '图们市', 3, 95);
INSERT INTO `tpf_region` VALUES (1060, '敦化市', 3, 95);
INSERT INTO `tpf_region` VALUES (1061, '珲春市', 3, 95);
INSERT INTO `tpf_region` VALUES (1062, '龙井市', 3, 95);
INSERT INTO `tpf_region` VALUES (1063, '和龙市', 3, 95);
INSERT INTO `tpf_region` VALUES (1064, '汪清县', 3, 95);
INSERT INTO `tpf_region` VALUES (1065, '安图县', 3, 95);
INSERT INTO `tpf_region` VALUES (1066, '其它区', 3, 95);
INSERT INTO `tpf_region` VALUES (1067, '道里区', 3, 96);
INSERT INTO `tpf_region` VALUES (1068, '南岗区', 3, 96);
INSERT INTO `tpf_region` VALUES (1069, '道外区', 3, 96);
INSERT INTO `tpf_region` VALUES (1070, '香坊区', 3, 96);
INSERT INTO `tpf_region` VALUES (1071, '动力区', 3, 96);
INSERT INTO `tpf_region` VALUES (1072, '平房区', 3, 96);
INSERT INTO `tpf_region` VALUES (1073, '松北区', 3, 96);
INSERT INTO `tpf_region` VALUES (1074, '呼兰区', 3, 96);
INSERT INTO `tpf_region` VALUES (1075, '依兰县', 3, 96);
INSERT INTO `tpf_region` VALUES (1076, '方正县', 3, 96);
INSERT INTO `tpf_region` VALUES (1077, '宾县', 3, 96);
INSERT INTO `tpf_region` VALUES (1078, '巴彦县', 3, 96);
INSERT INTO `tpf_region` VALUES (1079, '木兰县', 3, 96);
INSERT INTO `tpf_region` VALUES (1080, '通河县', 3, 96);
INSERT INTO `tpf_region` VALUES (1081, '延寿县', 3, 96);
INSERT INTO `tpf_region` VALUES (1082, '阿城区', 3, 96);
INSERT INTO `tpf_region` VALUES (1083, '双城区', 3, 96);
INSERT INTO `tpf_region` VALUES (1084, '尚志市', 3, 96);
INSERT INTO `tpf_region` VALUES (1085, '五常市', 3, 96);
INSERT INTO `tpf_region` VALUES (1086, '阿城市', 3, 96);
INSERT INTO `tpf_region` VALUES (1087, '其它区', 3, 96);
INSERT INTO `tpf_region` VALUES (1088, '龙沙区', 3, 97);
INSERT INTO `tpf_region` VALUES (1089, '建华区', 3, 97);
INSERT INTO `tpf_region` VALUES (1090, '铁锋区', 3, 97);
INSERT INTO `tpf_region` VALUES (1091, '昂昂溪区', 3, 97);
INSERT INTO `tpf_region` VALUES (1092, '富拉尔基区', 3, 97);
INSERT INTO `tpf_region` VALUES (1093, '碾子山区', 3, 97);
INSERT INTO `tpf_region` VALUES (1094, '梅里斯达斡尔族区', 3, 97);
INSERT INTO `tpf_region` VALUES (1095, '龙江县', 3, 97);
INSERT INTO `tpf_region` VALUES (1096, '依安县', 3, 97);
INSERT INTO `tpf_region` VALUES (1097, '泰来县', 3, 97);
INSERT INTO `tpf_region` VALUES (1098, '甘南县', 3, 97);
INSERT INTO `tpf_region` VALUES (1099, '富裕县', 3, 97);
INSERT INTO `tpf_region` VALUES (1100, '克山县', 3, 97);
INSERT INTO `tpf_region` VALUES (1101, '克东县', 3, 97);
INSERT INTO `tpf_region` VALUES (1102, '拜泉县', 3, 97);
INSERT INTO `tpf_region` VALUES (1103, '讷河市', 3, 97);
INSERT INTO `tpf_region` VALUES (1104, '其它区', 3, 97);
INSERT INTO `tpf_region` VALUES (1105, '鸡冠区', 3, 98);
INSERT INTO `tpf_region` VALUES (1106, '恒山区', 3, 98);
INSERT INTO `tpf_region` VALUES (1107, '滴道区', 3, 98);
INSERT INTO `tpf_region` VALUES (1108, '梨树区', 3, 98);
INSERT INTO `tpf_region` VALUES (1109, '城子河区', 3, 98);
INSERT INTO `tpf_region` VALUES (1110, '麻山区', 3, 98);
INSERT INTO `tpf_region` VALUES (1111, '鸡东县', 3, 98);
INSERT INTO `tpf_region` VALUES (1112, '虎林市', 3, 98);
INSERT INTO `tpf_region` VALUES (1113, '密山市', 3, 98);
INSERT INTO `tpf_region` VALUES (1114, '其它区', 3, 98);
INSERT INTO `tpf_region` VALUES (1115, '向阳区', 3, 99);
INSERT INTO `tpf_region` VALUES (1116, '工农区', 3, 99);
INSERT INTO `tpf_region` VALUES (1117, '南山区', 3, 99);
INSERT INTO `tpf_region` VALUES (1118, '兴安区', 3, 99);
INSERT INTO `tpf_region` VALUES (1119, '东山区', 3, 99);
INSERT INTO `tpf_region` VALUES (1120, '兴山区', 3, 99);
INSERT INTO `tpf_region` VALUES (1121, '萝北县', 3, 99);
INSERT INTO `tpf_region` VALUES (1122, '绥滨县', 3, 99);
INSERT INTO `tpf_region` VALUES (1123, '其它区', 3, 99);
INSERT INTO `tpf_region` VALUES (1124, '尖山区', 3, 100);
INSERT INTO `tpf_region` VALUES (1125, '岭东区', 3, 100);
INSERT INTO `tpf_region` VALUES (1126, '四方台区', 3, 100);
INSERT INTO `tpf_region` VALUES (1127, '宝山区', 3, 100);
INSERT INTO `tpf_region` VALUES (1128, '集贤县', 3, 100);
INSERT INTO `tpf_region` VALUES (1129, '友谊县', 3, 100);
INSERT INTO `tpf_region` VALUES (1130, '宝清县', 3, 100);
INSERT INTO `tpf_region` VALUES (1131, '饶河县', 3, 100);
INSERT INTO `tpf_region` VALUES (1132, '其它区', 3, 100);
INSERT INTO `tpf_region` VALUES (1133, '萨尔图区', 3, 101);
INSERT INTO `tpf_region` VALUES (1134, '龙凤区', 3, 101);
INSERT INTO `tpf_region` VALUES (1135, '让胡路区', 3, 101);
INSERT INTO `tpf_region` VALUES (1136, '红岗区', 3, 101);
INSERT INTO `tpf_region` VALUES (1137, '大同区', 3, 101);
INSERT INTO `tpf_region` VALUES (1138, '肇州县', 3, 101);
INSERT INTO `tpf_region` VALUES (1139, '肇源县', 3, 101);
INSERT INTO `tpf_region` VALUES (1140, '林甸县', 3, 101);
INSERT INTO `tpf_region` VALUES (1141, '杜尔伯特蒙古族自治县', 3, 101);
INSERT INTO `tpf_region` VALUES (1142, '其它区', 3, 101);
INSERT INTO `tpf_region` VALUES (1143, '伊春区', 3, 102);
INSERT INTO `tpf_region` VALUES (1144, '南岔区', 3, 102);
INSERT INTO `tpf_region` VALUES (1145, '友好区', 3, 102);
INSERT INTO `tpf_region` VALUES (1146, '西林区', 3, 102);
INSERT INTO `tpf_region` VALUES (1147, '翠峦区', 3, 102);
INSERT INTO `tpf_region` VALUES (1148, '新青区', 3, 102);
INSERT INTO `tpf_region` VALUES (1149, '美溪区', 3, 102);
INSERT INTO `tpf_region` VALUES (1150, '金山屯区', 3, 102);
INSERT INTO `tpf_region` VALUES (1151, '五营区', 3, 102);
INSERT INTO `tpf_region` VALUES (1152, '乌马河区', 3, 102);
INSERT INTO `tpf_region` VALUES (1153, '汤旺河区', 3, 102);
INSERT INTO `tpf_region` VALUES (1154, '带岭区', 3, 102);
INSERT INTO `tpf_region` VALUES (1155, '乌伊岭区', 3, 102);
INSERT INTO `tpf_region` VALUES (1156, '红星区', 3, 102);
INSERT INTO `tpf_region` VALUES (1157, '上甘岭区', 3, 102);
INSERT INTO `tpf_region` VALUES (1158, '嘉荫县', 3, 102);
INSERT INTO `tpf_region` VALUES (1159, '铁力市', 3, 102);
INSERT INTO `tpf_region` VALUES (1160, '其它区', 3, 102);
INSERT INTO `tpf_region` VALUES (1161, '永红区', 3, 103);
INSERT INTO `tpf_region` VALUES (1162, '向阳区', 3, 103);
INSERT INTO `tpf_region` VALUES (1163, '前进区', 3, 103);
INSERT INTO `tpf_region` VALUES (1164, '东风区', 3, 103);
INSERT INTO `tpf_region` VALUES (1165, '郊区', 3, 103);
INSERT INTO `tpf_region` VALUES (1166, '桦南县', 3, 103);
INSERT INTO `tpf_region` VALUES (1167, '桦川县', 3, 103);
INSERT INTO `tpf_region` VALUES (1168, '汤原县', 3, 103);
INSERT INTO `tpf_region` VALUES (1169, '抚远县', 3, 103);
INSERT INTO `tpf_region` VALUES (1170, '同江市', 3, 103);
INSERT INTO `tpf_region` VALUES (1171, '富锦市', 3, 103);
INSERT INTO `tpf_region` VALUES (1172, '其它区', 3, 103);
INSERT INTO `tpf_region` VALUES (1173, '新兴区', 3, 104);
INSERT INTO `tpf_region` VALUES (1174, '桃山区', 3, 104);
INSERT INTO `tpf_region` VALUES (1175, '茄子河区', 3, 104);
INSERT INTO `tpf_region` VALUES (1176, '勃利县', 3, 104);
INSERT INTO `tpf_region` VALUES (1177, '其它区', 3, 104);
INSERT INTO `tpf_region` VALUES (1178, '东安区', 3, 105);
INSERT INTO `tpf_region` VALUES (1179, '阳明区', 3, 105);
INSERT INTO `tpf_region` VALUES (1180, '爱民区', 3, 105);
INSERT INTO `tpf_region` VALUES (1181, '西安区', 3, 105);
INSERT INTO `tpf_region` VALUES (1182, '东宁县', 3, 105);
INSERT INTO `tpf_region` VALUES (1183, '林口县', 3, 105);
INSERT INTO `tpf_region` VALUES (1184, '绥芬河市', 3, 105);
INSERT INTO `tpf_region` VALUES (1185, '海林市', 3, 105);
INSERT INTO `tpf_region` VALUES (1186, '宁安市', 3, 105);
INSERT INTO `tpf_region` VALUES (1187, '穆棱市', 3, 105);
INSERT INTO `tpf_region` VALUES (1188, '其它区', 3, 105);
INSERT INTO `tpf_region` VALUES (1189, '爱辉区', 3, 106);
INSERT INTO `tpf_region` VALUES (1190, '嫩江县', 3, 106);
INSERT INTO `tpf_region` VALUES (1191, '逊克县', 3, 106);
INSERT INTO `tpf_region` VALUES (1192, '孙吴县', 3, 106);
INSERT INTO `tpf_region` VALUES (1193, '北安市', 3, 106);
INSERT INTO `tpf_region` VALUES (1194, '五大连池市', 3, 106);
INSERT INTO `tpf_region` VALUES (1195, '其它区', 3, 106);
INSERT INTO `tpf_region` VALUES (1196, '北林区', 3, 107);
INSERT INTO `tpf_region` VALUES (1197, '望奎县', 3, 107);
INSERT INTO `tpf_region` VALUES (1198, '兰西县', 3, 107);
INSERT INTO `tpf_region` VALUES (1199, '青冈县', 3, 107);
INSERT INTO `tpf_region` VALUES (1200, '庆安县', 3, 107);
INSERT INTO `tpf_region` VALUES (1201, '明水县', 3, 107);
INSERT INTO `tpf_region` VALUES (1202, '绥棱县', 3, 107);
INSERT INTO `tpf_region` VALUES (1203, '安达市', 3, 107);
INSERT INTO `tpf_region` VALUES (1204, '肇东市', 3, 107);
INSERT INTO `tpf_region` VALUES (1205, '海伦市', 3, 107);
INSERT INTO `tpf_region` VALUES (1206, '其它区', 3, 107);
INSERT INTO `tpf_region` VALUES (1207, '松岭区', 3, 108);
INSERT INTO `tpf_region` VALUES (1208, '新林区', 3, 108);
INSERT INTO `tpf_region` VALUES (1209, '呼中区', 3, 108);
INSERT INTO `tpf_region` VALUES (1210, '呼玛县', 3, 108);
INSERT INTO `tpf_region` VALUES (1211, '塔河县', 3, 108);
INSERT INTO `tpf_region` VALUES (1212, '漠河县', 3, 108);
INSERT INTO `tpf_region` VALUES (1213, '加格达奇区', 3, 108);
INSERT INTO `tpf_region` VALUES (1214, '其它区', 3, 108);
INSERT INTO `tpf_region` VALUES (1215, '黄浦区', 3, 109);
INSERT INTO `tpf_region` VALUES (1216, '卢湾区', 3, 109);
INSERT INTO `tpf_region` VALUES (1217, '徐汇区', 3, 109);
INSERT INTO `tpf_region` VALUES (1218, '长宁区', 3, 109);
INSERT INTO `tpf_region` VALUES (1219, '静安区', 3, 109);
INSERT INTO `tpf_region` VALUES (1220, '普陀区', 3, 109);
INSERT INTO `tpf_region` VALUES (1221, '闸北区', 3, 109);
INSERT INTO `tpf_region` VALUES (1222, '虹口区', 3, 109);
INSERT INTO `tpf_region` VALUES (1223, '杨浦区', 3, 109);
INSERT INTO `tpf_region` VALUES (1224, '闵行区', 3, 109);
INSERT INTO `tpf_region` VALUES (1225, '宝山区', 3, 109);
INSERT INTO `tpf_region` VALUES (1226, '嘉定区', 3, 109);
INSERT INTO `tpf_region` VALUES (1227, '浦东新区', 3, 109);
INSERT INTO `tpf_region` VALUES (1228, '金山区', 3, 109);
INSERT INTO `tpf_region` VALUES (1229, '松江区', 3, 109);
INSERT INTO `tpf_region` VALUES (1230, '青浦区', 3, 109);
INSERT INTO `tpf_region` VALUES (1231, '南汇区', 3, 109);
INSERT INTO `tpf_region` VALUES (1232, '奉贤区', 3, 109);
INSERT INTO `tpf_region` VALUES (1233, '川沙区', 3, 109);
INSERT INTO `tpf_region` VALUES (1234, '崇明县', 3, 109);
INSERT INTO `tpf_region` VALUES (1235, '其它区', 3, 109);
INSERT INTO `tpf_region` VALUES (1236, '玄武区', 3, 110);
INSERT INTO `tpf_region` VALUES (1237, '白下区', 3, 110);
INSERT INTO `tpf_region` VALUES (1238, '秦淮区', 3, 110);
INSERT INTO `tpf_region` VALUES (1239, '建邺区', 3, 110);
INSERT INTO `tpf_region` VALUES (1240, '鼓楼区', 3, 110);
INSERT INTO `tpf_region` VALUES (1241, '下关区', 3, 110);
INSERT INTO `tpf_region` VALUES (1242, '浦口区', 3, 110);
INSERT INTO `tpf_region` VALUES (1243, '栖霞区', 3, 110);
INSERT INTO `tpf_region` VALUES (1244, '雨花台区', 3, 110);
INSERT INTO `tpf_region` VALUES (1245, '江宁区', 3, 110);
INSERT INTO `tpf_region` VALUES (1246, '六合区', 3, 110);
INSERT INTO `tpf_region` VALUES (1247, '溧水区', 3, 110);
INSERT INTO `tpf_region` VALUES (1248, '高淳区', 3, 110);
INSERT INTO `tpf_region` VALUES (1249, '其它区', 3, 110);
INSERT INTO `tpf_region` VALUES (1250, '崇安区', 3, 111);
INSERT INTO `tpf_region` VALUES (1251, '南长区', 3, 111);
INSERT INTO `tpf_region` VALUES (1252, '北塘区', 3, 111);
INSERT INTO `tpf_region` VALUES (1253, '锡山区', 3, 111);
INSERT INTO `tpf_region` VALUES (1254, '惠山区', 3, 111);
INSERT INTO `tpf_region` VALUES (1255, '滨湖区', 3, 111);
INSERT INTO `tpf_region` VALUES (1256, '江阴市', 3, 111);
INSERT INTO `tpf_region` VALUES (1257, '宜兴市', 3, 111);
INSERT INTO `tpf_region` VALUES (1258, '新区', 3, 111);
INSERT INTO `tpf_region` VALUES (1259, '其它区', 3, 111);
INSERT INTO `tpf_region` VALUES (1260, '鼓楼区', 3, 112);
INSERT INTO `tpf_region` VALUES (1261, '云龙区', 3, 112);
INSERT INTO `tpf_region` VALUES (1262, '九里区', 3, 112);
INSERT INTO `tpf_region` VALUES (1263, '贾汪区', 3, 112);
INSERT INTO `tpf_region` VALUES (1264, '泉山区', 3, 112);
INSERT INTO `tpf_region` VALUES (1265, '丰县', 3, 112);
INSERT INTO `tpf_region` VALUES (1266, '沛县', 3, 112);
INSERT INTO `tpf_region` VALUES (1267, '铜山区', 3, 112);
INSERT INTO `tpf_region` VALUES (1268, '睢宁县', 3, 112);
INSERT INTO `tpf_region` VALUES (1269, '新沂市', 3, 112);
INSERT INTO `tpf_region` VALUES (1270, '邳州市', 3, 112);
INSERT INTO `tpf_region` VALUES (1271, '其它区', 3, 112);
INSERT INTO `tpf_region` VALUES (1272, '天宁区', 3, 113);
INSERT INTO `tpf_region` VALUES (1273, '钟楼区', 3, 113);
INSERT INTO `tpf_region` VALUES (1274, '戚墅堰区', 3, 113);
INSERT INTO `tpf_region` VALUES (1275, '新北区', 3, 113);
INSERT INTO `tpf_region` VALUES (1276, '武进区', 3, 113);
INSERT INTO `tpf_region` VALUES (1277, '溧阳市', 3, 113);
INSERT INTO `tpf_region` VALUES (1278, '金坛市', 3, 113);
INSERT INTO `tpf_region` VALUES (1279, '其它区', 3, 113);
INSERT INTO `tpf_region` VALUES (1280, '沧浪区', 3, 114);
INSERT INTO `tpf_region` VALUES (1281, '平江区', 3, 114);
INSERT INTO `tpf_region` VALUES (1282, '金阊区', 3, 114);
INSERT INTO `tpf_region` VALUES (1283, '虎丘区', 3, 114);
INSERT INTO `tpf_region` VALUES (1284, '吴中区', 3, 114);
INSERT INTO `tpf_region` VALUES (1285, '相城区', 3, 114);
INSERT INTO `tpf_region` VALUES (1286, '姑苏区', 3, 114);
INSERT INTO `tpf_region` VALUES (1287, '常熟市', 3, 114);
INSERT INTO `tpf_region` VALUES (1288, '张家港市', 3, 114);
INSERT INTO `tpf_region` VALUES (1289, '昆山市', 3, 114);
INSERT INTO `tpf_region` VALUES (1290, '吴江区', 3, 114);
INSERT INTO `tpf_region` VALUES (1291, '太仓市', 3, 114);
INSERT INTO `tpf_region` VALUES (1292, '新区', 3, 114);
INSERT INTO `tpf_region` VALUES (1293, '园区', 3, 114);
INSERT INTO `tpf_region` VALUES (1294, '其它区', 3, 114);
INSERT INTO `tpf_region` VALUES (1295, '崇川区', 3, 115);
INSERT INTO `tpf_region` VALUES (1296, '港闸区', 3, 115);
INSERT INTO `tpf_region` VALUES (1297, '通州区', 3, 115);
INSERT INTO `tpf_region` VALUES (1298, '海安县', 3, 115);
INSERT INTO `tpf_region` VALUES (1299, '如东县', 3, 115);
INSERT INTO `tpf_region` VALUES (1300, '启东市', 3, 115);
INSERT INTO `tpf_region` VALUES (1301, '如皋市', 3, 115);
INSERT INTO `tpf_region` VALUES (1302, '通州市', 3, 115);
INSERT INTO `tpf_region` VALUES (1303, '海门市', 3, 115);
INSERT INTO `tpf_region` VALUES (1304, '开发区', 3, 115);
INSERT INTO `tpf_region` VALUES (1305, '其它区', 3, 115);
INSERT INTO `tpf_region` VALUES (1306, '连云区', 3, 116);
INSERT INTO `tpf_region` VALUES (1307, '新浦区', 3, 116);
INSERT INTO `tpf_region` VALUES (1308, '海州区', 3, 116);
INSERT INTO `tpf_region` VALUES (1309, '赣榆区', 3, 116);
INSERT INTO `tpf_region` VALUES (1310, '东海县', 3, 116);
INSERT INTO `tpf_region` VALUES (1311, '灌云县', 3, 116);
INSERT INTO `tpf_region` VALUES (1312, '灌南县', 3, 116);
INSERT INTO `tpf_region` VALUES (1313, '其它区', 3, 116);
INSERT INTO `tpf_region` VALUES (1314, '清河区', 3, 117);
INSERT INTO `tpf_region` VALUES (1315, '淮安区', 3, 117);
INSERT INTO `tpf_region` VALUES (1316, '淮阴区', 3, 117);
INSERT INTO `tpf_region` VALUES (1317, '清浦区', 3, 117);
INSERT INTO `tpf_region` VALUES (1318, '涟水县', 3, 117);
INSERT INTO `tpf_region` VALUES (1319, '洪泽县', 3, 117);
INSERT INTO `tpf_region` VALUES (1320, '盱眙县', 3, 117);
INSERT INTO `tpf_region` VALUES (1321, '金湖县', 3, 117);
INSERT INTO `tpf_region` VALUES (1322, '其它区', 3, 117);
INSERT INTO `tpf_region` VALUES (1323, '亭湖区', 3, 118);
INSERT INTO `tpf_region` VALUES (1324, '盐都区', 3, 118);
INSERT INTO `tpf_region` VALUES (1325, '响水县', 3, 118);
INSERT INTO `tpf_region` VALUES (1326, '滨海县', 3, 118);
INSERT INTO `tpf_region` VALUES (1327, '阜宁县', 3, 118);
INSERT INTO `tpf_region` VALUES (1328, '射阳县', 3, 118);
INSERT INTO `tpf_region` VALUES (1329, '建湖县', 3, 118);
INSERT INTO `tpf_region` VALUES (1330, '东台市', 3, 118);
INSERT INTO `tpf_region` VALUES (1331, '大丰市', 3, 118);
INSERT INTO `tpf_region` VALUES (1332, '其它区', 3, 118);
INSERT INTO `tpf_region` VALUES (1333, '广陵区', 3, 119);
INSERT INTO `tpf_region` VALUES (1334, '邗江区', 3, 119);
INSERT INTO `tpf_region` VALUES (1335, '维扬区', 3, 119);
INSERT INTO `tpf_region` VALUES (1336, '宝应县', 3, 119);
INSERT INTO `tpf_region` VALUES (1337, '仪征市', 3, 119);
INSERT INTO `tpf_region` VALUES (1338, '高邮市', 3, 119);
INSERT INTO `tpf_region` VALUES (1339, '江都区', 3, 119);
INSERT INTO `tpf_region` VALUES (1340, '经济开发区', 3, 119);
INSERT INTO `tpf_region` VALUES (1341, '其它区', 3, 119);
INSERT INTO `tpf_region` VALUES (1342, '京口区', 3, 120);
INSERT INTO `tpf_region` VALUES (1343, '润州区', 3, 120);
INSERT INTO `tpf_region` VALUES (1344, '丹徒区', 3, 120);
INSERT INTO `tpf_region` VALUES (1345, '丹阳市', 3, 120);
INSERT INTO `tpf_region` VALUES (1346, '扬中市', 3, 120);
INSERT INTO `tpf_region` VALUES (1347, '句容市', 3, 120);
INSERT INTO `tpf_region` VALUES (1348, '其它区', 3, 120);
INSERT INTO `tpf_region` VALUES (1349, '海陵区', 3, 121);
INSERT INTO `tpf_region` VALUES (1350, '高港区', 3, 121);
INSERT INTO `tpf_region` VALUES (1351, '兴化市', 3, 121);
INSERT INTO `tpf_region` VALUES (1352, '靖江市', 3, 121);
INSERT INTO `tpf_region` VALUES (1353, '泰兴市', 3, 121);
INSERT INTO `tpf_region` VALUES (1354, '姜堰区', 3, 121);
INSERT INTO `tpf_region` VALUES (1355, '其它区', 3, 121);
INSERT INTO `tpf_region` VALUES (1356, '宿城区', 3, 122);
INSERT INTO `tpf_region` VALUES (1357, '宿豫区', 3, 122);
INSERT INTO `tpf_region` VALUES (1358, '沭阳县', 3, 122);
INSERT INTO `tpf_region` VALUES (1359, '泗阳县', 3, 122);
INSERT INTO `tpf_region` VALUES (1360, '泗洪县', 3, 122);
INSERT INTO `tpf_region` VALUES (1361, '其它区', 3, 122);
INSERT INTO `tpf_region` VALUES (1362, '上城区', 3, 123);
INSERT INTO `tpf_region` VALUES (1363, '下城区', 3, 123);
INSERT INTO `tpf_region` VALUES (1364, '江干区', 3, 123);
INSERT INTO `tpf_region` VALUES (1365, '拱墅区', 3, 123);
INSERT INTO `tpf_region` VALUES (1366, '西湖区', 3, 123);
INSERT INTO `tpf_region` VALUES (1367, '滨江区', 3, 123);
INSERT INTO `tpf_region` VALUES (1368, '萧山区', 3, 123);
INSERT INTO `tpf_region` VALUES (1369, '余杭区', 3, 123);
INSERT INTO `tpf_region` VALUES (1370, '桐庐县', 3, 123);
INSERT INTO `tpf_region` VALUES (1371, '淳安县', 3, 123);
INSERT INTO `tpf_region` VALUES (1372, '建德市', 3, 123);
INSERT INTO `tpf_region` VALUES (1373, '富阳区', 3, 123);
INSERT INTO `tpf_region` VALUES (1374, '临安市', 3, 123);
INSERT INTO `tpf_region` VALUES (1375, '其它区', 3, 123);
INSERT INTO `tpf_region` VALUES (1376, '海曙区', 3, 124);
INSERT INTO `tpf_region` VALUES (1377, '江东区', 3, 124);
INSERT INTO `tpf_region` VALUES (1378, '江北区', 3, 124);
INSERT INTO `tpf_region` VALUES (1379, '北仑区', 3, 124);
INSERT INTO `tpf_region` VALUES (1380, '镇海区', 3, 124);
INSERT INTO `tpf_region` VALUES (1381, '鄞州区', 3, 124);
INSERT INTO `tpf_region` VALUES (1382, '象山县', 3, 124);
INSERT INTO `tpf_region` VALUES (1383, '宁海县', 3, 124);
INSERT INTO `tpf_region` VALUES (1384, '余姚市', 3, 124);
INSERT INTO `tpf_region` VALUES (1385, '慈溪市', 3, 124);
INSERT INTO `tpf_region` VALUES (1386, '奉化市', 3, 124);
INSERT INTO `tpf_region` VALUES (1387, '其它区', 3, 124);
INSERT INTO `tpf_region` VALUES (1388, '鹿城区', 3, 125);
INSERT INTO `tpf_region` VALUES (1389, '龙湾区', 3, 125);
INSERT INTO `tpf_region` VALUES (1390, '瓯海区', 3, 125);
INSERT INTO `tpf_region` VALUES (1391, '洞头县', 3, 125);
INSERT INTO `tpf_region` VALUES (1392, '永嘉县', 3, 125);
INSERT INTO `tpf_region` VALUES (1393, '平阳县', 3, 125);
INSERT INTO `tpf_region` VALUES (1394, '苍南县', 3, 125);
INSERT INTO `tpf_region` VALUES (1395, '文成县', 3, 125);
INSERT INTO `tpf_region` VALUES (1396, '泰顺县', 3, 125);
INSERT INTO `tpf_region` VALUES (1397, '瑞安市', 3, 125);
INSERT INTO `tpf_region` VALUES (1398, '乐清市', 3, 125);
INSERT INTO `tpf_region` VALUES (1399, '其它区', 3, 125);
INSERT INTO `tpf_region` VALUES (1400, '南湖区', 3, 126);
INSERT INTO `tpf_region` VALUES (1401, '秀洲区', 3, 126);
INSERT INTO `tpf_region` VALUES (1402, '嘉善县', 3, 126);
INSERT INTO `tpf_region` VALUES (1403, '海盐县', 3, 126);
INSERT INTO `tpf_region` VALUES (1404, '海宁市', 3, 126);
INSERT INTO `tpf_region` VALUES (1405, '平湖市', 3, 126);
INSERT INTO `tpf_region` VALUES (1406, '桐乡市', 3, 126);
INSERT INTO `tpf_region` VALUES (1407, '其它区', 3, 126);
INSERT INTO `tpf_region` VALUES (1408, '吴兴区', 3, 127);
INSERT INTO `tpf_region` VALUES (1409, '南浔区', 3, 127);
INSERT INTO `tpf_region` VALUES (1410, '德清县', 3, 127);
INSERT INTO `tpf_region` VALUES (1411, '长兴县', 3, 127);
INSERT INTO `tpf_region` VALUES (1412, '安吉县', 3, 127);
INSERT INTO `tpf_region` VALUES (1413, '其它区', 3, 127);
INSERT INTO `tpf_region` VALUES (1414, '越城区', 3, 128);
INSERT INTO `tpf_region` VALUES (1415, '柯桥区', 3, 128);
INSERT INTO `tpf_region` VALUES (1416, '新昌县', 3, 128);
INSERT INTO `tpf_region` VALUES (1417, '诸暨市', 3, 128);
INSERT INTO `tpf_region` VALUES (1418, '上虞区', 3, 128);
INSERT INTO `tpf_region` VALUES (1419, '嵊州市', 3, 128);
INSERT INTO `tpf_region` VALUES (1420, '其它区', 3, 128);
INSERT INTO `tpf_region` VALUES (1421, '婺城区', 3, 129);
INSERT INTO `tpf_region` VALUES (1422, '金东区', 3, 129);
INSERT INTO `tpf_region` VALUES (1423, '武义县', 3, 129);
INSERT INTO `tpf_region` VALUES (1424, '浦江县', 3, 129);
INSERT INTO `tpf_region` VALUES (1425, '磐安县', 3, 129);
INSERT INTO `tpf_region` VALUES (1426, '兰溪市', 3, 129);
INSERT INTO `tpf_region` VALUES (1427, '义乌市', 3, 129);
INSERT INTO `tpf_region` VALUES (1428, '东阳市', 3, 129);
INSERT INTO `tpf_region` VALUES (1429, '永康市', 3, 129);
INSERT INTO `tpf_region` VALUES (1430, '其它区', 3, 129);
INSERT INTO `tpf_region` VALUES (1431, '柯城区', 3, 130);
INSERT INTO `tpf_region` VALUES (1432, '衢江区', 3, 130);
INSERT INTO `tpf_region` VALUES (1433, '常山县', 3, 130);
INSERT INTO `tpf_region` VALUES (1434, '开化县', 3, 130);
INSERT INTO `tpf_region` VALUES (1435, '龙游县', 3, 130);
INSERT INTO `tpf_region` VALUES (1436, '江山市', 3, 130);
INSERT INTO `tpf_region` VALUES (1437, '其它区', 3, 130);
INSERT INTO `tpf_region` VALUES (1438, '定海区', 3, 131);
INSERT INTO `tpf_region` VALUES (1439, '普陀区', 3, 131);
INSERT INTO `tpf_region` VALUES (1440, '岱山县', 3, 131);
INSERT INTO `tpf_region` VALUES (1441, '嵊泗县', 3, 131);
INSERT INTO `tpf_region` VALUES (1442, '其它区', 3, 131);
INSERT INTO `tpf_region` VALUES (1443, '椒江区', 3, 132);
INSERT INTO `tpf_region` VALUES (1444, '黄岩区', 3, 132);
INSERT INTO `tpf_region` VALUES (1445, '路桥区', 3, 132);
INSERT INTO `tpf_region` VALUES (1446, '玉环县', 3, 132);
INSERT INTO `tpf_region` VALUES (1447, '三门县', 3, 132);
INSERT INTO `tpf_region` VALUES (1448, '天台县', 3, 132);
INSERT INTO `tpf_region` VALUES (1449, '仙居县', 3, 132);
INSERT INTO `tpf_region` VALUES (1450, '温岭市', 3, 132);
INSERT INTO `tpf_region` VALUES (1451, '临海市', 3, 132);
INSERT INTO `tpf_region` VALUES (1452, '其它区', 3, 132);
INSERT INTO `tpf_region` VALUES (1453, '莲都区', 3, 133);
INSERT INTO `tpf_region` VALUES (1454, '青田县', 3, 133);
INSERT INTO `tpf_region` VALUES (1455, '缙云县', 3, 133);
INSERT INTO `tpf_region` VALUES (1456, '遂昌县', 3, 133);
INSERT INTO `tpf_region` VALUES (1457, '松阳县', 3, 133);
INSERT INTO `tpf_region` VALUES (1458, '云和县', 3, 133);
INSERT INTO `tpf_region` VALUES (1459, '庆元县', 3, 133);
INSERT INTO `tpf_region` VALUES (1460, '景宁畲族自治县', 3, 133);
INSERT INTO `tpf_region` VALUES (1461, '龙泉市', 3, 133);
INSERT INTO `tpf_region` VALUES (1462, '其它区', 3, 133);
INSERT INTO `tpf_region` VALUES (1463, '瑶海区', 3, 134);
INSERT INTO `tpf_region` VALUES (1464, '庐阳区', 3, 134);
INSERT INTO `tpf_region` VALUES (1465, '蜀山区', 3, 134);
INSERT INTO `tpf_region` VALUES (1466, '包河区', 3, 134);
INSERT INTO `tpf_region` VALUES (1467, '长丰县', 3, 134);
INSERT INTO `tpf_region` VALUES (1468, '肥东县', 3, 134);
INSERT INTO `tpf_region` VALUES (1469, '肥西县', 3, 134);
INSERT INTO `tpf_region` VALUES (1470, '高新区', 3, 134);
INSERT INTO `tpf_region` VALUES (1471, '中区', 3, 134);
INSERT INTO `tpf_region` VALUES (1472, '其它区', 3, 134);
INSERT INTO `tpf_region` VALUES (1473, '镜湖区', 3, 135);
INSERT INTO `tpf_region` VALUES (1474, '弋江区', 3, 135);
INSERT INTO `tpf_region` VALUES (1475, '鸠江区', 3, 135);
INSERT INTO `tpf_region` VALUES (1476, '三山区', 3, 135);
INSERT INTO `tpf_region` VALUES (1477, '芜湖县', 3, 135);
INSERT INTO `tpf_region` VALUES (1478, '繁昌县', 3, 135);
INSERT INTO `tpf_region` VALUES (1479, '南陵县', 3, 135);
INSERT INTO `tpf_region` VALUES (1480, '其它区', 3, 135);
INSERT INTO `tpf_region` VALUES (1481, '龙子湖区', 3, 136);
INSERT INTO `tpf_region` VALUES (1482, '蚌山区', 3, 136);
INSERT INTO `tpf_region` VALUES (1483, '禹会区', 3, 136);
INSERT INTO `tpf_region` VALUES (1484, '淮上区', 3, 136);
INSERT INTO `tpf_region` VALUES (1485, '怀远县', 3, 136);
INSERT INTO `tpf_region` VALUES (1486, '五河县', 3, 136);
INSERT INTO `tpf_region` VALUES (1487, '固镇县', 3, 136);
INSERT INTO `tpf_region` VALUES (1488, '其它区', 3, 136);
INSERT INTO `tpf_region` VALUES (1489, '大通区', 3, 137);
INSERT INTO `tpf_region` VALUES (1490, '田家庵区', 3, 137);
INSERT INTO `tpf_region` VALUES (1491, '谢家集区', 3, 137);
INSERT INTO `tpf_region` VALUES (1492, '八公山区', 3, 137);
INSERT INTO `tpf_region` VALUES (1493, '潘集区', 3, 137);
INSERT INTO `tpf_region` VALUES (1494, '凤台县', 3, 137);
INSERT INTO `tpf_region` VALUES (1495, '其它区', 3, 137);
INSERT INTO `tpf_region` VALUES (1496, '金家庄区', 3, 138);
INSERT INTO `tpf_region` VALUES (1497, '花山区', 3, 138);
INSERT INTO `tpf_region` VALUES (1498, '雨山区', 3, 138);
INSERT INTO `tpf_region` VALUES (1499, '博望区', 3, 138);
INSERT INTO `tpf_region` VALUES (1500, '当涂县', 3, 138);
INSERT INTO `tpf_region` VALUES (1501, '其它区', 3, 138);
INSERT INTO `tpf_region` VALUES (1502, '杜集区', 3, 139);
INSERT INTO `tpf_region` VALUES (1503, '相山区', 3, 139);
INSERT INTO `tpf_region` VALUES (1504, '烈山区', 3, 139);
INSERT INTO `tpf_region` VALUES (1505, '濉溪县', 3, 139);
INSERT INTO `tpf_region` VALUES (1506, '其它区', 3, 139);
INSERT INTO `tpf_region` VALUES (1507, '铜官山区', 3, 140);
INSERT INTO `tpf_region` VALUES (1508, '狮子山区', 3, 140);
INSERT INTO `tpf_region` VALUES (1509, '郊区', 3, 140);
INSERT INTO `tpf_region` VALUES (1510, '铜陵县', 3, 140);
INSERT INTO `tpf_region` VALUES (1511, '其它区', 3, 140);
INSERT INTO `tpf_region` VALUES (1512, '迎江区', 3, 141);
INSERT INTO `tpf_region` VALUES (1513, '大观区', 3, 141);
INSERT INTO `tpf_region` VALUES (1514, '宜秀区', 3, 141);
INSERT INTO `tpf_region` VALUES (1515, '怀宁县', 3, 141);
INSERT INTO `tpf_region` VALUES (1516, '枞阳县', 3, 141);
INSERT INTO `tpf_region` VALUES (1517, '潜山县', 3, 141);
INSERT INTO `tpf_region` VALUES (1518, '太湖县', 3, 141);
INSERT INTO `tpf_region` VALUES (1519, '宿松县', 3, 141);
INSERT INTO `tpf_region` VALUES (1520, '望江县', 3, 141);
INSERT INTO `tpf_region` VALUES (1521, '岳西县', 3, 141);
INSERT INTO `tpf_region` VALUES (1522, '桐城市', 3, 141);
INSERT INTO `tpf_region` VALUES (1523, '其它区', 3, 141);
INSERT INTO `tpf_region` VALUES (1524, '屯溪区', 3, 142);
INSERT INTO `tpf_region` VALUES (1525, '黄山区', 3, 142);
INSERT INTO `tpf_region` VALUES (1526, '徽州区', 3, 142);
INSERT INTO `tpf_region` VALUES (1527, '歙县', 3, 142);
INSERT INTO `tpf_region` VALUES (1528, '休宁县', 3, 142);
INSERT INTO `tpf_region` VALUES (1529, '黟县', 3, 142);
INSERT INTO `tpf_region` VALUES (1530, '祁门县', 3, 142);
INSERT INTO `tpf_region` VALUES (1531, '其它区', 3, 142);
INSERT INTO `tpf_region` VALUES (1532, '琅琊区', 3, 143);
INSERT INTO `tpf_region` VALUES (1533, '南谯区', 3, 143);
INSERT INTO `tpf_region` VALUES (1534, '来安县', 3, 143);
INSERT INTO `tpf_region` VALUES (1535, '全椒县', 3, 143);
INSERT INTO `tpf_region` VALUES (1536, '定远县', 3, 143);
INSERT INTO `tpf_region` VALUES (1537, '凤阳县', 3, 143);
INSERT INTO `tpf_region` VALUES (1538, '天长市', 3, 143);
INSERT INTO `tpf_region` VALUES (1539, '明光市', 3, 143);
INSERT INTO `tpf_region` VALUES (1540, '其它区', 3, 143);
INSERT INTO `tpf_region` VALUES (1541, '颍州区', 3, 144);
INSERT INTO `tpf_region` VALUES (1542, '颍东区', 3, 144);
INSERT INTO `tpf_region` VALUES (1543, '颍泉区', 3, 144);
INSERT INTO `tpf_region` VALUES (1544, '临泉县', 3, 144);
INSERT INTO `tpf_region` VALUES (1545, '太和县', 3, 144);
INSERT INTO `tpf_region` VALUES (1546, '阜南县', 3, 144);
INSERT INTO `tpf_region` VALUES (1547, '颍上县', 3, 144);
INSERT INTO `tpf_region` VALUES (1548, '界首市', 3, 144);
INSERT INTO `tpf_region` VALUES (1549, '其它区', 3, 144);
INSERT INTO `tpf_region` VALUES (1550, '埇桥区', 3, 145);
INSERT INTO `tpf_region` VALUES (1551, '砀山县', 3, 145);
INSERT INTO `tpf_region` VALUES (1552, '萧县', 3, 145);
INSERT INTO `tpf_region` VALUES (1553, '灵璧县', 3, 145);
INSERT INTO `tpf_region` VALUES (1554, '泗县', 3, 145);
INSERT INTO `tpf_region` VALUES (1555, '其它区', 3, 145);
INSERT INTO `tpf_region` VALUES (1556, '巢湖市', 3, 134);
INSERT INTO `tpf_region` VALUES (1557, '居巢区', 3, 134);
INSERT INTO `tpf_region` VALUES (1558, '庐江县', 3, 134);
INSERT INTO `tpf_region` VALUES (1559, '无为县', 3, 135);
INSERT INTO `tpf_region` VALUES (1560, '含山县', 3, 138);
INSERT INTO `tpf_region` VALUES (1561, '和县', 3, 138);
INSERT INTO `tpf_region` VALUES (1562, '金安区', 3, 146);
INSERT INTO `tpf_region` VALUES (1563, '裕安区', 3, 146);
INSERT INTO `tpf_region` VALUES (1564, '寿县', 3, 146);
INSERT INTO `tpf_region` VALUES (1565, '霍邱县', 3, 146);
INSERT INTO `tpf_region` VALUES (1566, '舒城县', 3, 146);
INSERT INTO `tpf_region` VALUES (1567, '金寨县', 3, 146);
INSERT INTO `tpf_region` VALUES (1568, '霍山县', 3, 146);
INSERT INTO `tpf_region` VALUES (1569, '其它区', 3, 146);
INSERT INTO `tpf_region` VALUES (1570, '谯城区', 3, 147);
INSERT INTO `tpf_region` VALUES (1571, '涡阳县', 3, 147);
INSERT INTO `tpf_region` VALUES (1572, '蒙城县', 3, 147);
INSERT INTO `tpf_region` VALUES (1573, '利辛县', 3, 147);
INSERT INTO `tpf_region` VALUES (1574, '其它区', 3, 147);
INSERT INTO `tpf_region` VALUES (1575, '贵池区', 3, 148);
INSERT INTO `tpf_region` VALUES (1576, '东至县', 3, 148);
INSERT INTO `tpf_region` VALUES (1577, '石台县', 3, 148);
INSERT INTO `tpf_region` VALUES (1578, '青阳县', 3, 148);
INSERT INTO `tpf_region` VALUES (1579, '其它区', 3, 148);
INSERT INTO `tpf_region` VALUES (1580, '宣州区', 3, 149);
INSERT INTO `tpf_region` VALUES (1581, '郎溪县', 3, 149);
INSERT INTO `tpf_region` VALUES (1582, '广德县', 3, 149);
INSERT INTO `tpf_region` VALUES (1583, '泾县', 3, 149);
INSERT INTO `tpf_region` VALUES (1584, '绩溪县', 3, 149);
INSERT INTO `tpf_region` VALUES (1585, '旌德县', 3, 149);
INSERT INTO `tpf_region` VALUES (1586, '宁国市', 3, 149);
INSERT INTO `tpf_region` VALUES (1587, '其它区', 3, 149);
INSERT INTO `tpf_region` VALUES (1588, '鼓楼区', 3, 150);
INSERT INTO `tpf_region` VALUES (1589, '台江区', 3, 150);
INSERT INTO `tpf_region` VALUES (1590, '仓山区', 3, 150);
INSERT INTO `tpf_region` VALUES (1591, '马尾区', 3, 150);
INSERT INTO `tpf_region` VALUES (1592, '晋安区', 3, 150);
INSERT INTO `tpf_region` VALUES (1593, '闽侯县', 3, 150);
INSERT INTO `tpf_region` VALUES (1594, '连江县', 3, 150);
INSERT INTO `tpf_region` VALUES (1595, '罗源县', 3, 150);
INSERT INTO `tpf_region` VALUES (1596, '闽清县', 3, 150);
INSERT INTO `tpf_region` VALUES (1597, '永泰县', 3, 150);
INSERT INTO `tpf_region` VALUES (1598, '平潭县', 3, 150);
INSERT INTO `tpf_region` VALUES (1599, '福清市', 3, 150);
INSERT INTO `tpf_region` VALUES (1600, '长乐市', 3, 150);
INSERT INTO `tpf_region` VALUES (1601, '其它区', 3, 150);
INSERT INTO `tpf_region` VALUES (1602, '思明区', 3, 151);
INSERT INTO `tpf_region` VALUES (1603, '海沧区', 3, 151);
INSERT INTO `tpf_region` VALUES (1604, '湖里区', 3, 151);
INSERT INTO `tpf_region` VALUES (1605, '集美区', 3, 151);
INSERT INTO `tpf_region` VALUES (1606, '同安区', 3, 151);
INSERT INTO `tpf_region` VALUES (1607, '翔安区', 3, 151);
INSERT INTO `tpf_region` VALUES (1608, '其它区', 3, 151);
INSERT INTO `tpf_region` VALUES (1609, '城厢区', 3, 152);
INSERT INTO `tpf_region` VALUES (1610, '涵江区', 3, 152);
INSERT INTO `tpf_region` VALUES (1611, '荔城区', 3, 152);
INSERT INTO `tpf_region` VALUES (1612, '秀屿区', 3, 152);
INSERT INTO `tpf_region` VALUES (1613, '仙游县', 3, 152);
INSERT INTO `tpf_region` VALUES (1614, '其它区', 3, 152);
INSERT INTO `tpf_region` VALUES (1615, '梅列区', 3, 153);
INSERT INTO `tpf_region` VALUES (1616, '三元区', 3, 153);
INSERT INTO `tpf_region` VALUES (1617, '明溪县', 3, 153);
INSERT INTO `tpf_region` VALUES (1618, '清流县', 3, 153);
INSERT INTO `tpf_region` VALUES (1619, '宁化县', 3, 153);
INSERT INTO `tpf_region` VALUES (1620, '大田县', 3, 153);
INSERT INTO `tpf_region` VALUES (1621, '尤溪县', 3, 153);
INSERT INTO `tpf_region` VALUES (1622, '沙县', 3, 153);
INSERT INTO `tpf_region` VALUES (1623, '将乐县', 3, 153);
INSERT INTO `tpf_region` VALUES (1624, '泰宁县', 3, 153);
INSERT INTO `tpf_region` VALUES (1625, '建宁县', 3, 153);
INSERT INTO `tpf_region` VALUES (1626, '永安市', 3, 153);
INSERT INTO `tpf_region` VALUES (1627, '其它区', 3, 153);
INSERT INTO `tpf_region` VALUES (1628, '鲤城区', 3, 154);
INSERT INTO `tpf_region` VALUES (1629, '丰泽区', 3, 154);
INSERT INTO `tpf_region` VALUES (1630, '洛江区', 3, 154);
INSERT INTO `tpf_region` VALUES (1631, '泉港区', 3, 154);
INSERT INTO `tpf_region` VALUES (1632, '惠安县', 3, 154);
INSERT INTO `tpf_region` VALUES (1633, '安溪县', 3, 154);
INSERT INTO `tpf_region` VALUES (1634, '永春县', 3, 154);
INSERT INTO `tpf_region` VALUES (1635, '德化县', 3, 154);
INSERT INTO `tpf_region` VALUES (1636, '金门县', 3, 154);
INSERT INTO `tpf_region` VALUES (1637, '石狮市', 3, 154);
INSERT INTO `tpf_region` VALUES (1638, '晋江市', 3, 154);
INSERT INTO `tpf_region` VALUES (1639, '南安市', 3, 154);
INSERT INTO `tpf_region` VALUES (1640, '其它区', 3, 154);
INSERT INTO `tpf_region` VALUES (1641, '芗城区', 3, 155);
INSERT INTO `tpf_region` VALUES (1642, '龙文区', 3, 155);
INSERT INTO `tpf_region` VALUES (1643, '云霄县', 3, 155);
INSERT INTO `tpf_region` VALUES (1644, '漳浦县', 3, 155);
INSERT INTO `tpf_region` VALUES (1645, '诏安县', 3, 155);
INSERT INTO `tpf_region` VALUES (1646, '长泰县', 3, 155);
INSERT INTO `tpf_region` VALUES (1647, '东山县', 3, 155);
INSERT INTO `tpf_region` VALUES (1648, '南靖县', 3, 155);
INSERT INTO `tpf_region` VALUES (1649, '平和县', 3, 155);
INSERT INTO `tpf_region` VALUES (1650, '华安县', 3, 155);
INSERT INTO `tpf_region` VALUES (1651, '龙海市', 3, 155);
INSERT INTO `tpf_region` VALUES (1652, '其它区', 3, 155);
INSERT INTO `tpf_region` VALUES (1653, '延平区', 3, 156);
INSERT INTO `tpf_region` VALUES (1654, '顺昌县', 3, 156);
INSERT INTO `tpf_region` VALUES (1655, '浦城县', 3, 156);
INSERT INTO `tpf_region` VALUES (1656, '光泽县', 3, 156);
INSERT INTO `tpf_region` VALUES (1657, '松溪县', 3, 156);
INSERT INTO `tpf_region` VALUES (1658, '政和县', 3, 156);
INSERT INTO `tpf_region` VALUES (1659, '邵武市', 3, 156);
INSERT INTO `tpf_region` VALUES (1660, '武夷山市', 3, 156);
INSERT INTO `tpf_region` VALUES (1661, '建瓯市', 3, 156);
INSERT INTO `tpf_region` VALUES (1662, '建阳区', 3, 156);
INSERT INTO `tpf_region` VALUES (1663, '其它区', 3, 156);
INSERT INTO `tpf_region` VALUES (1664, '新罗区', 3, 157);
INSERT INTO `tpf_region` VALUES (1665, '长汀县', 3, 157);
INSERT INTO `tpf_region` VALUES (1666, '永定区', 3, 157);
INSERT INTO `tpf_region` VALUES (1667, '上杭县', 3, 157);
INSERT INTO `tpf_region` VALUES (1668, '武平县', 3, 157);
INSERT INTO `tpf_region` VALUES (1669, '连城县', 3, 157);
INSERT INTO `tpf_region` VALUES (1670, '漳平市', 3, 157);
INSERT INTO `tpf_region` VALUES (1671, '其它区', 3, 157);
INSERT INTO `tpf_region` VALUES (1672, '蕉城区', 3, 158);
INSERT INTO `tpf_region` VALUES (1673, '霞浦县', 3, 158);
INSERT INTO `tpf_region` VALUES (1674, '古田县', 3, 158);
INSERT INTO `tpf_region` VALUES (1675, '屏南县', 3, 158);
INSERT INTO `tpf_region` VALUES (1676, '寿宁县', 3, 158);
INSERT INTO `tpf_region` VALUES (1677, '周宁县', 3, 158);
INSERT INTO `tpf_region` VALUES (1678, '柘荣县', 3, 158);
INSERT INTO `tpf_region` VALUES (1679, '福安市', 3, 158);
INSERT INTO `tpf_region` VALUES (1680, '福鼎市', 3, 158);
INSERT INTO `tpf_region` VALUES (1681, '其它区', 3, 158);
INSERT INTO `tpf_region` VALUES (1682, '东湖区', 3, 159);
INSERT INTO `tpf_region` VALUES (1683, '西湖区', 3, 159);
INSERT INTO `tpf_region` VALUES (1684, '青云谱区', 3, 159);
INSERT INTO `tpf_region` VALUES (1685, '湾里区', 3, 159);
INSERT INTO `tpf_region` VALUES (1686, '青山湖区', 3, 159);
INSERT INTO `tpf_region` VALUES (1687, '南昌县', 3, 159);
INSERT INTO `tpf_region` VALUES (1688, '新建县', 3, 159);
INSERT INTO `tpf_region` VALUES (1689, '安义县', 3, 159);
INSERT INTO `tpf_region` VALUES (1690, '进贤县', 3, 159);
INSERT INTO `tpf_region` VALUES (1691, '红谷滩新区', 3, 159);
INSERT INTO `tpf_region` VALUES (1692, '经济技术开发区', 3, 159);
INSERT INTO `tpf_region` VALUES (1693, '昌北区', 3, 159);
INSERT INTO `tpf_region` VALUES (1694, '其它区', 3, 159);
INSERT INTO `tpf_region` VALUES (1695, '昌江区', 3, 160);
INSERT INTO `tpf_region` VALUES (1696, '珠山区', 3, 160);
INSERT INTO `tpf_region` VALUES (1697, '浮梁县', 3, 160);
INSERT INTO `tpf_region` VALUES (1698, '乐平市', 3, 160);
INSERT INTO `tpf_region` VALUES (1699, '其它区', 3, 160);
INSERT INTO `tpf_region` VALUES (1700, '安源区', 3, 161);
INSERT INTO `tpf_region` VALUES (1701, '湘东区', 3, 161);
INSERT INTO `tpf_region` VALUES (1702, '莲花县', 3, 161);
INSERT INTO `tpf_region` VALUES (1703, '上栗县', 3, 161);
INSERT INTO `tpf_region` VALUES (1704, '芦溪县', 3, 161);
INSERT INTO `tpf_region` VALUES (1705, '其它区', 3, 161);
INSERT INTO `tpf_region` VALUES (1706, '庐山区', 3, 162);
INSERT INTO `tpf_region` VALUES (1707, '浔阳区', 3, 162);
INSERT INTO `tpf_region` VALUES (1708, '九江县', 3, 162);
INSERT INTO `tpf_region` VALUES (1709, '武宁县', 3, 162);
INSERT INTO `tpf_region` VALUES (1710, '修水县', 3, 162);
INSERT INTO `tpf_region` VALUES (1711, '永修县', 3, 162);
INSERT INTO `tpf_region` VALUES (1712, '德安县', 3, 162);
INSERT INTO `tpf_region` VALUES (1713, '星子县', 3, 162);
INSERT INTO `tpf_region` VALUES (1714, '都昌县', 3, 162);
INSERT INTO `tpf_region` VALUES (1715, '湖口县', 3, 162);
INSERT INTO `tpf_region` VALUES (1716, '彭泽县', 3, 162);
INSERT INTO `tpf_region` VALUES (1717, '瑞昌市', 3, 162);
INSERT INTO `tpf_region` VALUES (1718, '其它区', 3, 162);
INSERT INTO `tpf_region` VALUES (1719, '共青城市', 3, 162);
INSERT INTO `tpf_region` VALUES (1720, '渝水区', 3, 163);
INSERT INTO `tpf_region` VALUES (1721, '分宜县', 3, 163);
INSERT INTO `tpf_region` VALUES (1722, '其它区', 3, 163);
INSERT INTO `tpf_region` VALUES (1723, '月湖区', 3, 164);
INSERT INTO `tpf_region` VALUES (1724, '余江县', 3, 164);
INSERT INTO `tpf_region` VALUES (1725, '贵溪市', 3, 164);
INSERT INTO `tpf_region` VALUES (1726, '其它区', 3, 164);
INSERT INTO `tpf_region` VALUES (1727, '章贡区', 3, 165);
INSERT INTO `tpf_region` VALUES (1728, '赣县', 3, 165);
INSERT INTO `tpf_region` VALUES (1729, '信丰县', 3, 165);
INSERT INTO `tpf_region` VALUES (1730, '大余县', 3, 165);
INSERT INTO `tpf_region` VALUES (1731, '上犹县', 3, 165);
INSERT INTO `tpf_region` VALUES (1732, '崇义县', 3, 165);
INSERT INTO `tpf_region` VALUES (1733, '安远县', 3, 165);
INSERT INTO `tpf_region` VALUES (1734, '龙南县', 3, 165);
INSERT INTO `tpf_region` VALUES (1735, '定南县', 3, 165);
INSERT INTO `tpf_region` VALUES (1736, '全南县', 3, 165);
INSERT INTO `tpf_region` VALUES (1737, '宁都县', 3, 165);
INSERT INTO `tpf_region` VALUES (1738, '于都县', 3, 165);
INSERT INTO `tpf_region` VALUES (1739, '兴国县', 3, 165);
INSERT INTO `tpf_region` VALUES (1740, '会昌县', 3, 165);
INSERT INTO `tpf_region` VALUES (1741, '寻乌县', 3, 165);
INSERT INTO `tpf_region` VALUES (1742, '石城县', 3, 165);
INSERT INTO `tpf_region` VALUES (1743, '黄金区', 3, 165);
INSERT INTO `tpf_region` VALUES (1744, '瑞金市', 3, 165);
INSERT INTO `tpf_region` VALUES (1745, '南康区', 3, 165);
INSERT INTO `tpf_region` VALUES (1746, '其它区', 3, 165);
INSERT INTO `tpf_region` VALUES (1747, '吉州区', 3, 166);
INSERT INTO `tpf_region` VALUES (1748, '青原区', 3, 166);
INSERT INTO `tpf_region` VALUES (1749, '吉安县', 3, 166);
INSERT INTO `tpf_region` VALUES (1750, '吉水县', 3, 166);
INSERT INTO `tpf_region` VALUES (1751, '峡江县', 3, 166);
INSERT INTO `tpf_region` VALUES (1752, '新干县', 3, 166);
INSERT INTO `tpf_region` VALUES (1753, '永丰县', 3, 166);
INSERT INTO `tpf_region` VALUES (1754, '泰和县', 3, 166);
INSERT INTO `tpf_region` VALUES (1755, '遂川县', 3, 166);
INSERT INTO `tpf_region` VALUES (1756, '万安县', 3, 166);
INSERT INTO `tpf_region` VALUES (1757, '安福县', 3, 166);
INSERT INTO `tpf_region` VALUES (1758, '永新县', 3, 166);
INSERT INTO `tpf_region` VALUES (1759, '井冈山市', 3, 166);
INSERT INTO `tpf_region` VALUES (1760, '其它区', 3, 166);
INSERT INTO `tpf_region` VALUES (1761, '袁州区', 3, 167);
INSERT INTO `tpf_region` VALUES (1762, '奉新县', 3, 167);
INSERT INTO `tpf_region` VALUES (1763, '万载县', 3, 167);
INSERT INTO `tpf_region` VALUES (1764, '上高县', 3, 167);
INSERT INTO `tpf_region` VALUES (1765, '宜丰县', 3, 167);
INSERT INTO `tpf_region` VALUES (1766, '靖安县', 3, 167);
INSERT INTO `tpf_region` VALUES (1767, '铜鼓县', 3, 167);
INSERT INTO `tpf_region` VALUES (1768, '丰城市', 3, 167);
INSERT INTO `tpf_region` VALUES (1769, '樟树市', 3, 167);
INSERT INTO `tpf_region` VALUES (1770, '高安市', 3, 167);
INSERT INTO `tpf_region` VALUES (1771, '其它区', 3, 167);
INSERT INTO `tpf_region` VALUES (1772, '临川区', 3, 168);
INSERT INTO `tpf_region` VALUES (1773, '南城县', 3, 168);
INSERT INTO `tpf_region` VALUES (1774, '黎川县', 3, 168);
INSERT INTO `tpf_region` VALUES (1775, '南丰县', 3, 168);
INSERT INTO `tpf_region` VALUES (1776, '崇仁县', 3, 168);
INSERT INTO `tpf_region` VALUES (1777, '乐安县', 3, 168);
INSERT INTO `tpf_region` VALUES (1778, '宜黄县', 3, 168);
INSERT INTO `tpf_region` VALUES (1779, '金溪县', 3, 168);
INSERT INTO `tpf_region` VALUES (1780, '资溪县', 3, 168);
INSERT INTO `tpf_region` VALUES (1781, '东乡县', 3, 168);
INSERT INTO `tpf_region` VALUES (1782, '广昌县', 3, 168);
INSERT INTO `tpf_region` VALUES (1783, '其它区', 3, 168);
INSERT INTO `tpf_region` VALUES (1784, '信州区', 3, 169);
INSERT INTO `tpf_region` VALUES (1785, '上饶县', 3, 169);
INSERT INTO `tpf_region` VALUES (1786, '广丰区', 3, 169);
INSERT INTO `tpf_region` VALUES (1787, '玉山县', 3, 169);
INSERT INTO `tpf_region` VALUES (1788, '铅山县', 3, 169);
INSERT INTO `tpf_region` VALUES (1789, '横峰县', 3, 169);
INSERT INTO `tpf_region` VALUES (1790, '弋阳县', 3, 169);
INSERT INTO `tpf_region` VALUES (1791, '余干县', 3, 169);
INSERT INTO `tpf_region` VALUES (1792, '鄱阳县', 3, 169);
INSERT INTO `tpf_region` VALUES (1793, '万年县', 3, 169);
INSERT INTO `tpf_region` VALUES (1794, '婺源县', 3, 169);
INSERT INTO `tpf_region` VALUES (1795, '德兴市', 3, 169);
INSERT INTO `tpf_region` VALUES (1796, '其它区', 3, 169);
INSERT INTO `tpf_region` VALUES (1797, '历下区', 3, 170);
INSERT INTO `tpf_region` VALUES (1798, '市中区', 3, 170);
INSERT INTO `tpf_region` VALUES (1799, '槐荫区', 3, 170);
INSERT INTO `tpf_region` VALUES (1800, '天桥区', 3, 170);
INSERT INTO `tpf_region` VALUES (1801, '历城区', 3, 170);
INSERT INTO `tpf_region` VALUES (1802, '长清区', 3, 170);
INSERT INTO `tpf_region` VALUES (1803, '平阴县', 3, 170);
INSERT INTO `tpf_region` VALUES (1804, '济阳县', 3, 170);
INSERT INTO `tpf_region` VALUES (1805, '商河县', 3, 170);
INSERT INTO `tpf_region` VALUES (1806, '章丘市', 3, 170);
INSERT INTO `tpf_region` VALUES (1807, '其它区', 3, 170);
INSERT INTO `tpf_region` VALUES (1808, '市南区', 3, 171);
INSERT INTO `tpf_region` VALUES (1809, '市北区', 3, 171);
INSERT INTO `tpf_region` VALUES (1810, '四方区', 3, 171);
INSERT INTO `tpf_region` VALUES (1811, '黄岛区', 3, 171);
INSERT INTO `tpf_region` VALUES (1812, '崂山区', 3, 171);
INSERT INTO `tpf_region` VALUES (1813, '李沧区', 3, 171);
INSERT INTO `tpf_region` VALUES (1814, '城阳区', 3, 171);
INSERT INTO `tpf_region` VALUES (1815, '开发区', 3, 171);
INSERT INTO `tpf_region` VALUES (1816, '胶州市', 3, 171);
INSERT INTO `tpf_region` VALUES (1817, '即墨市', 3, 171);
INSERT INTO `tpf_region` VALUES (1818, '平度市', 3, 171);
INSERT INTO `tpf_region` VALUES (1819, '胶南市', 3, 171);
INSERT INTO `tpf_region` VALUES (1820, '莱西市', 3, 171);
INSERT INTO `tpf_region` VALUES (1821, '其它区', 3, 171);
INSERT INTO `tpf_region` VALUES (1822, '淄川区', 3, 172);
INSERT INTO `tpf_region` VALUES (1823, '张店区', 3, 172);
INSERT INTO `tpf_region` VALUES (1824, '博山区', 3, 172);
INSERT INTO `tpf_region` VALUES (1825, '临淄区', 3, 172);
INSERT INTO `tpf_region` VALUES (1826, '周村区', 3, 172);
INSERT INTO `tpf_region` VALUES (1827, '桓台县', 3, 172);
INSERT INTO `tpf_region` VALUES (1828, '高青县', 3, 172);
INSERT INTO `tpf_region` VALUES (1829, '沂源县', 3, 172);
INSERT INTO `tpf_region` VALUES (1830, '其它区', 3, 172);
INSERT INTO `tpf_region` VALUES (1831, '市中区', 3, 173);
INSERT INTO `tpf_region` VALUES (1832, '薛城区', 3, 173);
INSERT INTO `tpf_region` VALUES (1833, '峄城区', 3, 173);
INSERT INTO `tpf_region` VALUES (1834, '台儿庄区', 3, 173);
INSERT INTO `tpf_region` VALUES (1835, '山亭区', 3, 173);
INSERT INTO `tpf_region` VALUES (1836, '滕州市', 3, 173);
INSERT INTO `tpf_region` VALUES (1837, '其它区', 3, 173);
INSERT INTO `tpf_region` VALUES (1838, '东营区', 3, 174);
INSERT INTO `tpf_region` VALUES (1839, '河口区', 3, 174);
INSERT INTO `tpf_region` VALUES (1840, '垦利县', 3, 174);
INSERT INTO `tpf_region` VALUES (1841, '利津县', 3, 174);
INSERT INTO `tpf_region` VALUES (1842, '广饶县', 3, 174);
INSERT INTO `tpf_region` VALUES (1843, '西城区', 3, 174);
INSERT INTO `tpf_region` VALUES (1844, '东城区', 3, 174);
INSERT INTO `tpf_region` VALUES (1845, '其它区', 3, 174);
INSERT INTO `tpf_region` VALUES (1846, '芝罘区', 3, 175);
INSERT INTO `tpf_region` VALUES (1847, '福山区', 3, 175);
INSERT INTO `tpf_region` VALUES (1848, '牟平区', 3, 175);
INSERT INTO `tpf_region` VALUES (1849, '莱山区', 3, 175);
INSERT INTO `tpf_region` VALUES (1850, '长岛县', 3, 175);
INSERT INTO `tpf_region` VALUES (1851, '龙口市', 3, 175);
INSERT INTO `tpf_region` VALUES (1852, '莱阳市', 3, 175);
INSERT INTO `tpf_region` VALUES (1853, '莱州市', 3, 175);
INSERT INTO `tpf_region` VALUES (1854, '蓬莱市', 3, 175);
INSERT INTO `tpf_region` VALUES (1855, '招远市', 3, 175);
INSERT INTO `tpf_region` VALUES (1856, '栖霞市', 3, 175);
INSERT INTO `tpf_region` VALUES (1857, '海阳市', 3, 175);
INSERT INTO `tpf_region` VALUES (1858, '其它区', 3, 175);
INSERT INTO `tpf_region` VALUES (1859, '潍城区', 3, 176);
INSERT INTO `tpf_region` VALUES (1860, '寒亭区', 3, 176);
INSERT INTO `tpf_region` VALUES (1861, '坊子区', 3, 176);
INSERT INTO `tpf_region` VALUES (1862, '奎文区', 3, 176);
INSERT INTO `tpf_region` VALUES (1863, '临朐县', 3, 176);
INSERT INTO `tpf_region` VALUES (1864, '昌乐县', 3, 176);
INSERT INTO `tpf_region` VALUES (1865, '开发区', 3, 176);
INSERT INTO `tpf_region` VALUES (1866, '青州市', 3, 176);
INSERT INTO `tpf_region` VALUES (1867, '诸城市', 3, 176);
INSERT INTO `tpf_region` VALUES (1868, '寿光市', 3, 176);
INSERT INTO `tpf_region` VALUES (1869, '安丘市', 3, 176);
INSERT INTO `tpf_region` VALUES (1870, '高密市', 3, 176);
INSERT INTO `tpf_region` VALUES (1871, '昌邑市', 3, 176);
INSERT INTO `tpf_region` VALUES (1872, '其它区', 3, 176);
INSERT INTO `tpf_region` VALUES (1873, '市中区', 3, 177);
INSERT INTO `tpf_region` VALUES (1874, '任城区', 3, 177);
INSERT INTO `tpf_region` VALUES (1875, '微山县', 3, 177);
INSERT INTO `tpf_region` VALUES (1876, '鱼台县', 3, 177);
INSERT INTO `tpf_region` VALUES (1877, '金乡县', 3, 177);
INSERT INTO `tpf_region` VALUES (1878, '嘉祥县', 3, 177);
INSERT INTO `tpf_region` VALUES (1879, '汶上县', 3, 177);
INSERT INTO `tpf_region` VALUES (1880, '泗水县', 3, 177);
INSERT INTO `tpf_region` VALUES (1881, '梁山县', 3, 177);
INSERT INTO `tpf_region` VALUES (1882, '曲阜市', 3, 177);
INSERT INTO `tpf_region` VALUES (1883, '兖州区', 3, 177);
INSERT INTO `tpf_region` VALUES (1884, '邹城市', 3, 177);
INSERT INTO `tpf_region` VALUES (1885, '其它区', 3, 177);
INSERT INTO `tpf_region` VALUES (1886, '泰山区', 3, 178);
INSERT INTO `tpf_region` VALUES (1887, '岱岳区', 3, 178);
INSERT INTO `tpf_region` VALUES (1888, '宁阳县', 3, 178);
INSERT INTO `tpf_region` VALUES (1889, '东平县', 3, 178);
INSERT INTO `tpf_region` VALUES (1890, '新泰市', 3, 178);
INSERT INTO `tpf_region` VALUES (1891, '肥城市', 3, 178);
INSERT INTO `tpf_region` VALUES (1892, '其它区', 3, 178);
INSERT INTO `tpf_region` VALUES (1893, '环翠区', 3, 179);
INSERT INTO `tpf_region` VALUES (1894, '文登区', 3, 179);
INSERT INTO `tpf_region` VALUES (1895, '荣成市', 3, 179);
INSERT INTO `tpf_region` VALUES (1896, '乳山市', 3, 179);
INSERT INTO `tpf_region` VALUES (1897, '其它区', 3, 179);
INSERT INTO `tpf_region` VALUES (1898, '东港区', 3, 180);
INSERT INTO `tpf_region` VALUES (1899, '岚山区', 3, 180);
INSERT INTO `tpf_region` VALUES (1900, '五莲县', 3, 180);
INSERT INTO `tpf_region` VALUES (1901, '莒县', 3, 180);
INSERT INTO `tpf_region` VALUES (1902, '其它区', 3, 180);
INSERT INTO `tpf_region` VALUES (1903, '莱城区', 3, 181);
INSERT INTO `tpf_region` VALUES (1904, '钢城区', 3, 181);
INSERT INTO `tpf_region` VALUES (1905, '其它区', 3, 181);
INSERT INTO `tpf_region` VALUES (1906, '兰山区', 3, 182);
INSERT INTO `tpf_region` VALUES (1907, '罗庄区', 3, 182);
INSERT INTO `tpf_region` VALUES (1908, '河东区', 3, 182);
INSERT INTO `tpf_region` VALUES (1909, '沂南县', 3, 182);
INSERT INTO `tpf_region` VALUES (1910, '郯城县', 3, 182);
INSERT INTO `tpf_region` VALUES (1911, '沂水县', 3, 182);
INSERT INTO `tpf_region` VALUES (1912, '兰陵县', 3, 182);
INSERT INTO `tpf_region` VALUES (1913, '费县', 3, 182);
INSERT INTO `tpf_region` VALUES (1914, '平邑县', 3, 182);
INSERT INTO `tpf_region` VALUES (1915, '莒南县', 3, 182);
INSERT INTO `tpf_region` VALUES (1916, '蒙阴县', 3, 182);
INSERT INTO `tpf_region` VALUES (1917, '临沭县', 3, 182);
INSERT INTO `tpf_region` VALUES (1918, '其它区', 3, 182);
INSERT INTO `tpf_region` VALUES (1919, '德城区', 3, 183);
INSERT INTO `tpf_region` VALUES (1920, '陵城区', 3, 183);
INSERT INTO `tpf_region` VALUES (1921, '宁津县', 3, 183);
INSERT INTO `tpf_region` VALUES (1922, '庆云县', 3, 183);
INSERT INTO `tpf_region` VALUES (1923, '临邑县', 3, 183);
INSERT INTO `tpf_region` VALUES (1924, '齐河县', 3, 183);
INSERT INTO `tpf_region` VALUES (1925, '平原县', 3, 183);
INSERT INTO `tpf_region` VALUES (1926, '夏津县', 3, 183);
INSERT INTO `tpf_region` VALUES (1927, '武城县', 3, 183);
INSERT INTO `tpf_region` VALUES (1928, '开发区', 3, 183);
INSERT INTO `tpf_region` VALUES (1929, '乐陵市', 3, 183);
INSERT INTO `tpf_region` VALUES (1930, '禹城市', 3, 183);
INSERT INTO `tpf_region` VALUES (1931, '其它区', 3, 183);
INSERT INTO `tpf_region` VALUES (1932, '东昌府区', 3, 184);
INSERT INTO `tpf_region` VALUES (1933, '阳谷县', 3, 184);
INSERT INTO `tpf_region` VALUES (1934, '莘县', 3, 184);
INSERT INTO `tpf_region` VALUES (1935, '茌平县', 3, 184);
INSERT INTO `tpf_region` VALUES (1936, '东阿县', 3, 184);
INSERT INTO `tpf_region` VALUES (1937, '冠县', 3, 184);
INSERT INTO `tpf_region` VALUES (1938, '高唐县', 3, 184);
INSERT INTO `tpf_region` VALUES (1939, '临清市', 3, 184);
INSERT INTO `tpf_region` VALUES (1940, '其它区', 3, 184);
INSERT INTO `tpf_region` VALUES (1941, '滨城区', 3, 185);
INSERT INTO `tpf_region` VALUES (1942, '惠民县', 3, 185);
INSERT INTO `tpf_region` VALUES (1943, '阳信县', 3, 185);
INSERT INTO `tpf_region` VALUES (1944, '无棣县', 3, 185);
INSERT INTO `tpf_region` VALUES (1945, '沾化区', 3, 185);
INSERT INTO `tpf_region` VALUES (1946, '博兴县', 3, 185);
INSERT INTO `tpf_region` VALUES (1947, '邹平县', 3, 185);
INSERT INTO `tpf_region` VALUES (1948, '其它区', 3, 185);
INSERT INTO `tpf_region` VALUES (1949, '牡丹区', 3, 186);
INSERT INTO `tpf_region` VALUES (1950, '曹县', 3, 186);
INSERT INTO `tpf_region` VALUES (1951, '单县', 3, 186);
INSERT INTO `tpf_region` VALUES (1952, '成武县', 3, 186);
INSERT INTO `tpf_region` VALUES (1953, '巨野县', 3, 186);
INSERT INTO `tpf_region` VALUES (1954, '郓城县', 3, 186);
INSERT INTO `tpf_region` VALUES (1955, '鄄城县', 3, 186);
INSERT INTO `tpf_region` VALUES (1956, '定陶县', 3, 186);
INSERT INTO `tpf_region` VALUES (1957, '东明县', 3, 186);
INSERT INTO `tpf_region` VALUES (1958, '其它区', 3, 186);
INSERT INTO `tpf_region` VALUES (1959, '中原区', 3, 187);
INSERT INTO `tpf_region` VALUES (1960, '二七区', 3, 187);
INSERT INTO `tpf_region` VALUES (1961, '管城回族区', 3, 187);
INSERT INTO `tpf_region` VALUES (1962, '金水区', 3, 187);
INSERT INTO `tpf_region` VALUES (1963, '上街区', 3, 187);
INSERT INTO `tpf_region` VALUES (1964, '惠济区', 3, 187);
INSERT INTO `tpf_region` VALUES (1965, '中牟县', 3, 187);
INSERT INTO `tpf_region` VALUES (1966, '巩义市', 3, 187);
INSERT INTO `tpf_region` VALUES (1967, '荥阳市', 3, 187);
INSERT INTO `tpf_region` VALUES (1968, '新密市', 3, 187);
INSERT INTO `tpf_region` VALUES (1969, '新郑市', 3, 187);
INSERT INTO `tpf_region` VALUES (1970, '登封市', 3, 187);
INSERT INTO `tpf_region` VALUES (1971, '郑东新区', 3, 187);
INSERT INTO `tpf_region` VALUES (1972, '高新区', 3, 187);
INSERT INTO `tpf_region` VALUES (1973, '其它区', 3, 187);
INSERT INTO `tpf_region` VALUES (1974, '龙亭区', 3, 188);
INSERT INTO `tpf_region` VALUES (1975, '顺河回族区', 3, 188);
INSERT INTO `tpf_region` VALUES (1976, '鼓楼区', 3, 188);
INSERT INTO `tpf_region` VALUES (1977, '禹王台区', 3, 188);
INSERT INTO `tpf_region` VALUES (1978, '金明区', 3, 188);
INSERT INTO `tpf_region` VALUES (1979, '杞县', 3, 188);
INSERT INTO `tpf_region` VALUES (1980, '通许县', 3, 188);
INSERT INTO `tpf_region` VALUES (1981, '尉氏县', 3, 188);
INSERT INTO `tpf_region` VALUES (1982, '祥符区', 3, 188);
INSERT INTO `tpf_region` VALUES (1983, '兰考县', 3, 188);
INSERT INTO `tpf_region` VALUES (1984, '其它区', 3, 188);
INSERT INTO `tpf_region` VALUES (1985, '老城区', 3, 189);
INSERT INTO `tpf_region` VALUES (1986, '西工区', 3, 189);
INSERT INTO `tpf_region` VALUES (1987, '瀍河回族区', 3, 189);
INSERT INTO `tpf_region` VALUES (1988, '涧西区', 3, 189);
INSERT INTO `tpf_region` VALUES (1989, '吉利区', 3, 189);
INSERT INTO `tpf_region` VALUES (1990, '洛龙区', 3, 189);
INSERT INTO `tpf_region` VALUES (1991, '孟津县', 3, 189);
INSERT INTO `tpf_region` VALUES (1992, '新安县', 3, 189);
INSERT INTO `tpf_region` VALUES (1993, '栾川县', 3, 189);
INSERT INTO `tpf_region` VALUES (1994, '嵩县', 3, 189);
INSERT INTO `tpf_region` VALUES (1995, '汝阳县', 3, 189);
INSERT INTO `tpf_region` VALUES (1996, '宜阳县', 3, 189);
INSERT INTO `tpf_region` VALUES (1997, '洛宁县', 3, 189);
INSERT INTO `tpf_region` VALUES (1998, '伊川县', 3, 189);
INSERT INTO `tpf_region` VALUES (1999, '偃师市', 3, 189);
INSERT INTO `tpf_region` VALUES (2000, '新华区', 3, 190);
INSERT INTO `tpf_region` VALUES (2001, '卫东区', 3, 190);
INSERT INTO `tpf_region` VALUES (2002, '石龙区', 3, 190);
INSERT INTO `tpf_region` VALUES (2003, '湛河区', 3, 190);
INSERT INTO `tpf_region` VALUES (2004, '宝丰县', 3, 190);
INSERT INTO `tpf_region` VALUES (2005, '叶县', 3, 190);
INSERT INTO `tpf_region` VALUES (2006, '鲁山县', 3, 190);
INSERT INTO `tpf_region` VALUES (2007, '郏县', 3, 190);
INSERT INTO `tpf_region` VALUES (2008, '舞钢市', 3, 190);
INSERT INTO `tpf_region` VALUES (2009, '汝州市', 3, 190);
INSERT INTO `tpf_region` VALUES (2010, '其它区', 3, 190);
INSERT INTO `tpf_region` VALUES (2011, '文峰区', 3, 191);
INSERT INTO `tpf_region` VALUES (2012, '北关区', 3, 191);
INSERT INTO `tpf_region` VALUES (2013, '殷都区', 3, 191);
INSERT INTO `tpf_region` VALUES (2014, '龙安区', 3, 191);
INSERT INTO `tpf_region` VALUES (2015, '安阳县', 3, 191);
INSERT INTO `tpf_region` VALUES (2016, '汤阴县', 3, 191);
INSERT INTO `tpf_region` VALUES (2017, '滑县', 3, 191);
INSERT INTO `tpf_region` VALUES (2018, '内黄县', 3, 191);
INSERT INTO `tpf_region` VALUES (2019, '林州市', 3, 191);
INSERT INTO `tpf_region` VALUES (2020, '其它区', 3, 191);
INSERT INTO `tpf_region` VALUES (2021, '鹤山区', 3, 192);
INSERT INTO `tpf_region` VALUES (2022, '山城区', 3, 192);
INSERT INTO `tpf_region` VALUES (2023, '淇滨区', 3, 192);
INSERT INTO `tpf_region` VALUES (2024, '浚县', 3, 192);
INSERT INTO `tpf_region` VALUES (2025, '淇县', 3, 192);
INSERT INTO `tpf_region` VALUES (2026, '其它区', 3, 192);
INSERT INTO `tpf_region` VALUES (2027, '红旗区', 3, 193);
INSERT INTO `tpf_region` VALUES (2028, '卫滨区', 3, 193);
INSERT INTO `tpf_region` VALUES (2029, '凤泉区', 3, 193);
INSERT INTO `tpf_region` VALUES (2030, '牧野区', 3, 193);
INSERT INTO `tpf_region` VALUES (2031, '新乡县', 3, 193);
INSERT INTO `tpf_region` VALUES (2032, '获嘉县', 3, 193);
INSERT INTO `tpf_region` VALUES (2033, '原阳县', 3, 193);
INSERT INTO `tpf_region` VALUES (2034, '延津县', 3, 193);
INSERT INTO `tpf_region` VALUES (2035, '封丘县', 3, 193);
INSERT INTO `tpf_region` VALUES (2036, '长垣县', 3, 193);
INSERT INTO `tpf_region` VALUES (2037, '卫辉市', 3, 193);
INSERT INTO `tpf_region` VALUES (2038, '辉县市', 3, 193);
INSERT INTO `tpf_region` VALUES (2039, '其它区', 3, 193);
INSERT INTO `tpf_region` VALUES (2040, '解放区', 3, 194);
INSERT INTO `tpf_region` VALUES (2041, '中站区', 3, 194);
INSERT INTO `tpf_region` VALUES (2042, '马村区', 3, 194);
INSERT INTO `tpf_region` VALUES (2043, '山阳区', 3, 194);
INSERT INTO `tpf_region` VALUES (2044, '修武县', 3, 194);
INSERT INTO `tpf_region` VALUES (2045, '博爱县', 3, 194);
INSERT INTO `tpf_region` VALUES (2046, '武陟县', 3, 194);
INSERT INTO `tpf_region` VALUES (2047, '温县', 3, 194);
INSERT INTO `tpf_region` VALUES (2048, '沁阳市', 3, 194);
INSERT INTO `tpf_region` VALUES (2049, '孟州市', 3, 194);
INSERT INTO `tpf_region` VALUES (2050, '其它区', 3, 194);
INSERT INTO `tpf_region` VALUES (2051, '华龙区', 3, 195);
INSERT INTO `tpf_region` VALUES (2052, '清丰县', 3, 195);
INSERT INTO `tpf_region` VALUES (2053, '南乐县', 3, 195);
INSERT INTO `tpf_region` VALUES (2054, '范县', 3, 195);
INSERT INTO `tpf_region` VALUES (2055, '台前县', 3, 195);
INSERT INTO `tpf_region` VALUES (2056, '濮阳县', 3, 195);
INSERT INTO `tpf_region` VALUES (2057, '其它区', 3, 195);
INSERT INTO `tpf_region` VALUES (2058, '魏都区', 3, 196);
INSERT INTO `tpf_region` VALUES (2059, '许昌县', 3, 196);
INSERT INTO `tpf_region` VALUES (2060, '鄢陵县', 3, 196);
INSERT INTO `tpf_region` VALUES (2061, '襄城县', 3, 196);
INSERT INTO `tpf_region` VALUES (2062, '禹州市', 3, 196);
INSERT INTO `tpf_region` VALUES (2063, '长葛市', 3, 196);
INSERT INTO `tpf_region` VALUES (2064, '其它区', 3, 196);
INSERT INTO `tpf_region` VALUES (2065, '源汇区', 3, 197);
INSERT INTO `tpf_region` VALUES (2066, '郾城区', 3, 197);
INSERT INTO `tpf_region` VALUES (2067, '召陵区', 3, 197);
INSERT INTO `tpf_region` VALUES (2068, '舞阳县', 3, 197);
INSERT INTO `tpf_region` VALUES (2069, '临颍县', 3, 197);
INSERT INTO `tpf_region` VALUES (2070, '其它区', 3, 197);
INSERT INTO `tpf_region` VALUES (2071, '湖滨区', 3, 198);
INSERT INTO `tpf_region` VALUES (2072, '渑池县', 3, 198);
INSERT INTO `tpf_region` VALUES (2073, '陕州区', 3, 198);
INSERT INTO `tpf_region` VALUES (2074, '卢氏县', 3, 198);
INSERT INTO `tpf_region` VALUES (2075, '义马市', 3, 198);
INSERT INTO `tpf_region` VALUES (2076, '灵宝市', 3, 198);
INSERT INTO `tpf_region` VALUES (2077, '其它区', 3, 198);
INSERT INTO `tpf_region` VALUES (2078, '宛城区', 3, 199);
INSERT INTO `tpf_region` VALUES (2079, '卧龙区', 3, 199);
INSERT INTO `tpf_region` VALUES (2080, '南召县', 3, 199);
INSERT INTO `tpf_region` VALUES (2081, '方城县', 3, 199);
INSERT INTO `tpf_region` VALUES (2082, '西峡县', 3, 199);
INSERT INTO `tpf_region` VALUES (2083, '镇平县', 3, 199);
INSERT INTO `tpf_region` VALUES (2084, '内乡县', 3, 199);
INSERT INTO `tpf_region` VALUES (2085, '淅川县', 3, 199);
INSERT INTO `tpf_region` VALUES (2086, '社旗县', 3, 199);
INSERT INTO `tpf_region` VALUES (2087, '唐河县', 3, 199);
INSERT INTO `tpf_region` VALUES (2088, '新野县', 3, 199);
INSERT INTO `tpf_region` VALUES (2089, '桐柏县', 3, 199);
INSERT INTO `tpf_region` VALUES (2090, '邓州市', 3, 199);
INSERT INTO `tpf_region` VALUES (2091, '其它区', 3, 199);
INSERT INTO `tpf_region` VALUES (2092, '梁园区', 3, 200);
INSERT INTO `tpf_region` VALUES (2093, '睢阳区', 3, 200);
INSERT INTO `tpf_region` VALUES (2094, '民权县', 3, 200);
INSERT INTO `tpf_region` VALUES (2095, '睢县', 3, 200);
INSERT INTO `tpf_region` VALUES (2096, '宁陵县', 3, 200);
INSERT INTO `tpf_region` VALUES (2097, '柘城县', 3, 200);
INSERT INTO `tpf_region` VALUES (2098, '虞城县', 3, 200);
INSERT INTO `tpf_region` VALUES (2099, '夏邑县', 3, 200);
INSERT INTO `tpf_region` VALUES (2100, '永城市', 3, 200);
INSERT INTO `tpf_region` VALUES (2101, '其它区', 3, 200);
INSERT INTO `tpf_region` VALUES (2102, '浉河区', 3, 201);
INSERT INTO `tpf_region` VALUES (2103, '平桥区', 3, 201);
INSERT INTO `tpf_region` VALUES (2104, '罗山县', 3, 201);
INSERT INTO `tpf_region` VALUES (2105, '光山县', 3, 201);
INSERT INTO `tpf_region` VALUES (2106, '新县', 3, 201);
INSERT INTO `tpf_region` VALUES (2107, '商城县', 3, 201);
INSERT INTO `tpf_region` VALUES (2108, '固始县', 3, 201);
INSERT INTO `tpf_region` VALUES (2109, '潢川县', 3, 201);
INSERT INTO `tpf_region` VALUES (2110, '淮滨县', 3, 201);
INSERT INTO `tpf_region` VALUES (2111, '息县', 3, 201);
INSERT INTO `tpf_region` VALUES (2112, '其它区', 3, 201);
INSERT INTO `tpf_region` VALUES (2113, '川汇区', 3, 202);
INSERT INTO `tpf_region` VALUES (2114, '扶沟县', 3, 202);
INSERT INTO `tpf_region` VALUES (2115, '西华县', 3, 202);
INSERT INTO `tpf_region` VALUES (2116, '商水县', 3, 202);
INSERT INTO `tpf_region` VALUES (2117, '沈丘县', 3, 202);
INSERT INTO `tpf_region` VALUES (2118, '郸城县', 3, 202);
INSERT INTO `tpf_region` VALUES (2119, '淮阳县', 3, 202);
INSERT INTO `tpf_region` VALUES (2120, '太康县', 3, 202);
INSERT INTO `tpf_region` VALUES (2121, '鹿邑县', 3, 202);
INSERT INTO `tpf_region` VALUES (2122, '项城市', 3, 202);
INSERT INTO `tpf_region` VALUES (2123, '其它区', 3, 202);
INSERT INTO `tpf_region` VALUES (2124, '驿城区', 3, 203);
INSERT INTO `tpf_region` VALUES (2125, '西平县', 3, 203);
INSERT INTO `tpf_region` VALUES (2126, '上蔡县', 3, 203);
INSERT INTO `tpf_region` VALUES (2127, '平舆县', 3, 203);
INSERT INTO `tpf_region` VALUES (2128, '正阳县', 3, 203);
INSERT INTO `tpf_region` VALUES (2129, '确山县', 3, 203);
INSERT INTO `tpf_region` VALUES (2130, '泌阳县', 3, 203);
INSERT INTO `tpf_region` VALUES (2131, '汝南县', 3, 203);
INSERT INTO `tpf_region` VALUES (2132, '遂平县', 3, 203);
INSERT INTO `tpf_region` VALUES (2133, '新蔡县', 3, 203);
INSERT INTO `tpf_region` VALUES (2134, '其它区', 3, 203);
INSERT INTO `tpf_region` VALUES (2135, '江岸区', 3, 204);
INSERT INTO `tpf_region` VALUES (2136, '江汉区', 3, 204);
INSERT INTO `tpf_region` VALUES (2137, '硚口区', 3, 204);
INSERT INTO `tpf_region` VALUES (2138, '汉阳区', 3, 204);
INSERT INTO `tpf_region` VALUES (2139, '武昌区', 3, 204);
INSERT INTO `tpf_region` VALUES (2140, '青山区', 3, 204);
INSERT INTO `tpf_region` VALUES (2141, '洪山区', 3, 204);
INSERT INTO `tpf_region` VALUES (2142, '东西湖区', 3, 204);
INSERT INTO `tpf_region` VALUES (2143, '汉南区', 3, 204);
INSERT INTO `tpf_region` VALUES (2144, '蔡甸区', 3, 204);
INSERT INTO `tpf_region` VALUES (2145, '江夏区', 3, 204);
INSERT INTO `tpf_region` VALUES (2146, '黄陂区', 3, 204);
INSERT INTO `tpf_region` VALUES (2147, '新洲区', 3, 204);
INSERT INTO `tpf_region` VALUES (2148, '其它区', 3, 204);
INSERT INTO `tpf_region` VALUES (2149, '黄石港区', 3, 205);
INSERT INTO `tpf_region` VALUES (2150, '西塞山区', 3, 205);
INSERT INTO `tpf_region` VALUES (2151, '下陆区', 3, 205);
INSERT INTO `tpf_region` VALUES (2152, '铁山区', 3, 205);
INSERT INTO `tpf_region` VALUES (2153, '阳新县', 3, 205);
INSERT INTO `tpf_region` VALUES (2154, '大冶市', 3, 205);
INSERT INTO `tpf_region` VALUES (2155, '其它区', 3, 205);
INSERT INTO `tpf_region` VALUES (2156, '茅箭区', 3, 206);
INSERT INTO `tpf_region` VALUES (2157, '张湾区', 3, 206);
INSERT INTO `tpf_region` VALUES (2158, '郧阳区', 3, 206);
INSERT INTO `tpf_region` VALUES (2159, '郧西县', 3, 206);
INSERT INTO `tpf_region` VALUES (2160, '竹山县', 3, 206);
INSERT INTO `tpf_region` VALUES (2161, '竹溪县', 3, 206);
INSERT INTO `tpf_region` VALUES (2162, '房县', 3, 206);
INSERT INTO `tpf_region` VALUES (2163, '丹江口市', 3, 206);
INSERT INTO `tpf_region` VALUES (2164, '城区', 3, 206);
INSERT INTO `tpf_region` VALUES (2165, '其它区', 3, 206);
INSERT INTO `tpf_region` VALUES (2166, '西陵区', 3, 207);
INSERT INTO `tpf_region` VALUES (2167, '伍家岗区', 3, 207);
INSERT INTO `tpf_region` VALUES (2168, '点军区', 3, 207);
INSERT INTO `tpf_region` VALUES (2169, '猇亭区', 3, 207);
INSERT INTO `tpf_region` VALUES (2170, '夷陵区', 3, 207);
INSERT INTO `tpf_region` VALUES (2171, '远安县', 3, 207);
INSERT INTO `tpf_region` VALUES (2172, '兴山县', 3, 207);
INSERT INTO `tpf_region` VALUES (2173, '秭归县', 3, 207);
INSERT INTO `tpf_region` VALUES (2174, '长阳土家族自治县', 3, 207);
INSERT INTO `tpf_region` VALUES (2175, '五峰土家族自治县', 3, 207);
INSERT INTO `tpf_region` VALUES (2176, '葛洲坝区', 3, 207);
INSERT INTO `tpf_region` VALUES (2177, '开发区', 3, 207);
INSERT INTO `tpf_region` VALUES (2178, '宜都市', 3, 207);
INSERT INTO `tpf_region` VALUES (2179, '当阳市', 3, 207);
INSERT INTO `tpf_region` VALUES (2180, '枝江市', 3, 207);
INSERT INTO `tpf_region` VALUES (2181, '其它区', 3, 207);
INSERT INTO `tpf_region` VALUES (2182, '襄城区', 3, 208);
INSERT INTO `tpf_region` VALUES (2183, '樊城区', 3, 208);
INSERT INTO `tpf_region` VALUES (2184, '襄州区', 3, 208);
INSERT INTO `tpf_region` VALUES (2185, '南漳县', 3, 208);
INSERT INTO `tpf_region` VALUES (2186, '谷城县', 3, 208);
INSERT INTO `tpf_region` VALUES (2187, '保康县', 3, 208);
INSERT INTO `tpf_region` VALUES (2188, '老河口市', 3, 208);
INSERT INTO `tpf_region` VALUES (2189, '枣阳市', 3, 208);
INSERT INTO `tpf_region` VALUES (2190, '宜城市', 3, 208);
INSERT INTO `tpf_region` VALUES (2191, '其它区', 3, 208);
INSERT INTO `tpf_region` VALUES (2192, '梁子湖区', 3, 209);
INSERT INTO `tpf_region` VALUES (2193, '华容区', 3, 209);
INSERT INTO `tpf_region` VALUES (2194, '鄂城区', 3, 209);
INSERT INTO `tpf_region` VALUES (2195, '其它区', 3, 209);
INSERT INTO `tpf_region` VALUES (2196, '东宝区', 3, 210);
INSERT INTO `tpf_region` VALUES (2197, '掇刀区', 3, 210);
INSERT INTO `tpf_region` VALUES (2198, '京山县', 3, 210);
INSERT INTO `tpf_region` VALUES (2199, '沙洋县', 3, 210);
INSERT INTO `tpf_region` VALUES (2200, '钟祥市', 3, 210);
INSERT INTO `tpf_region` VALUES (2201, '其它区', 3, 210);
INSERT INTO `tpf_region` VALUES (2202, '孝南区', 3, 211);
INSERT INTO `tpf_region` VALUES (2203, '孝昌县', 3, 211);
INSERT INTO `tpf_region` VALUES (2204, '大悟县', 3, 211);
INSERT INTO `tpf_region` VALUES (2205, '云梦县', 3, 211);
INSERT INTO `tpf_region` VALUES (2206, '应城市', 3, 211);
INSERT INTO `tpf_region` VALUES (2207, '安陆市', 3, 211);
INSERT INTO `tpf_region` VALUES (2208, '汉川市', 3, 211);
INSERT INTO `tpf_region` VALUES (2209, '其它区', 3, 211);
INSERT INTO `tpf_region` VALUES (2210, '沙市区', 3, 212);
INSERT INTO `tpf_region` VALUES (2211, '荆州区', 3, 212);
INSERT INTO `tpf_region` VALUES (2212, '公安县', 3, 212);
INSERT INTO `tpf_region` VALUES (2213, '监利县', 3, 212);
INSERT INTO `tpf_region` VALUES (2214, '江陵县', 3, 212);
INSERT INTO `tpf_region` VALUES (2215, '石首市', 3, 212);
INSERT INTO `tpf_region` VALUES (2216, '洪湖市', 3, 212);
INSERT INTO `tpf_region` VALUES (2217, '松滋市', 3, 212);
INSERT INTO `tpf_region` VALUES (2218, '其它区', 3, 212);
INSERT INTO `tpf_region` VALUES (2219, '黄州区', 3, 213);
INSERT INTO `tpf_region` VALUES (2220, '团风县', 3, 213);
INSERT INTO `tpf_region` VALUES (2221, '红安县', 3, 213);
INSERT INTO `tpf_region` VALUES (2222, '罗田县', 3, 213);
INSERT INTO `tpf_region` VALUES (2223, '英山县', 3, 213);
INSERT INTO `tpf_region` VALUES (2224, '浠水县', 3, 213);
INSERT INTO `tpf_region` VALUES (2225, '蕲春县', 3, 213);
INSERT INTO `tpf_region` VALUES (2226, '黄梅县', 3, 213);
INSERT INTO `tpf_region` VALUES (2227, '麻城市', 3, 213);
INSERT INTO `tpf_region` VALUES (2228, '武穴市', 3, 213);
INSERT INTO `tpf_region` VALUES (2229, '其它区', 3, 213);
INSERT INTO `tpf_region` VALUES (2230, '咸安区', 3, 214);
INSERT INTO `tpf_region` VALUES (2231, '嘉鱼县', 3, 214);
INSERT INTO `tpf_region` VALUES (2232, '通城县', 3, 214);
INSERT INTO `tpf_region` VALUES (2233, '崇阳县', 3, 214);
INSERT INTO `tpf_region` VALUES (2234, '通山县', 3, 214);
INSERT INTO `tpf_region` VALUES (2235, '赤壁市', 3, 214);
INSERT INTO `tpf_region` VALUES (2236, '温泉城区', 3, 214);
INSERT INTO `tpf_region` VALUES (2237, '其它区', 3, 214);
INSERT INTO `tpf_region` VALUES (2238, '曾都区', 3, 215);
INSERT INTO `tpf_region` VALUES (2239, '随县', 3, 215);
INSERT INTO `tpf_region` VALUES (2240, '广水市', 3, 215);
INSERT INTO `tpf_region` VALUES (2241, '其它区', 3, 215);
INSERT INTO `tpf_region` VALUES (2242, '恩施市', 3, 216);
INSERT INTO `tpf_region` VALUES (2243, '利川市', 3, 216);
INSERT INTO `tpf_region` VALUES (2244, '建始县', 3, 216);
INSERT INTO `tpf_region` VALUES (2245, '巴东县', 3, 216);
INSERT INTO `tpf_region` VALUES (2246, '宣恩县', 3, 216);
INSERT INTO `tpf_region` VALUES (2247, '咸丰县', 3, 216);
INSERT INTO `tpf_region` VALUES (2248, '来凤县', 3, 216);
INSERT INTO `tpf_region` VALUES (2249, '鹤峰县', 3, 216);
INSERT INTO `tpf_region` VALUES (2250, '其它区', 3, 216);
INSERT INTO `tpf_region` VALUES (2251, '芙蓉区', 3, 217);
INSERT INTO `tpf_region` VALUES (2252, '天心区', 3, 217);
INSERT INTO `tpf_region` VALUES (2253, '岳麓区', 3, 217);
INSERT INTO `tpf_region` VALUES (2254, '开福区', 3, 217);
INSERT INTO `tpf_region` VALUES (2255, '雨花区', 3, 217);
INSERT INTO `tpf_region` VALUES (2256, '长沙县', 3, 217);
INSERT INTO `tpf_region` VALUES (2257, '望城区', 3, 217);
INSERT INTO `tpf_region` VALUES (2258, '宁乡县', 3, 217);
INSERT INTO `tpf_region` VALUES (2259, '浏阳市', 3, 217);
INSERT INTO `tpf_region` VALUES (2260, '其它区', 3, 217);
INSERT INTO `tpf_region` VALUES (2261, '荷塘区', 3, 218);
INSERT INTO `tpf_region` VALUES (2262, '芦淞区', 3, 218);
INSERT INTO `tpf_region` VALUES (2263, '石峰区', 3, 218);
INSERT INTO `tpf_region` VALUES (2264, '天元区', 3, 218);
INSERT INTO `tpf_region` VALUES (2265, '株洲县', 3, 218);
INSERT INTO `tpf_region` VALUES (2266, '攸县', 3, 218);
INSERT INTO `tpf_region` VALUES (2267, '茶陵县', 3, 218);
INSERT INTO `tpf_region` VALUES (2268, '炎陵县', 3, 218);
INSERT INTO `tpf_region` VALUES (2269, '醴陵市', 3, 218);
INSERT INTO `tpf_region` VALUES (2270, '其它区', 3, 218);
INSERT INTO `tpf_region` VALUES (2271, '雨湖区', 3, 219);
INSERT INTO `tpf_region` VALUES (2272, '岳塘区', 3, 219);
INSERT INTO `tpf_region` VALUES (2273, '湘潭县', 3, 219);
INSERT INTO `tpf_region` VALUES (2274, '湘乡市', 3, 219);
INSERT INTO `tpf_region` VALUES (2275, '韶山市', 3, 219);
INSERT INTO `tpf_region` VALUES (2276, '其它区', 3, 219);
INSERT INTO `tpf_region` VALUES (2277, '珠晖区', 3, 220);
INSERT INTO `tpf_region` VALUES (2278, '雁峰区', 3, 220);
INSERT INTO `tpf_region` VALUES (2279, '石鼓区', 3, 220);
INSERT INTO `tpf_region` VALUES (2280, '蒸湘区', 3, 220);
INSERT INTO `tpf_region` VALUES (2281, '南岳区', 3, 220);
INSERT INTO `tpf_region` VALUES (2282, '衡阳县', 3, 220);
INSERT INTO `tpf_region` VALUES (2283, '衡南县', 3, 220);
INSERT INTO `tpf_region` VALUES (2284, '衡山县', 3, 220);
INSERT INTO `tpf_region` VALUES (2285, '衡东县', 3, 220);
INSERT INTO `tpf_region` VALUES (2286, '祁东县', 3, 220);
INSERT INTO `tpf_region` VALUES (2287, '耒阳市', 3, 220);
INSERT INTO `tpf_region` VALUES (2288, '常宁市', 3, 220);
INSERT INTO `tpf_region` VALUES (2289, '其它区', 3, 220);
INSERT INTO `tpf_region` VALUES (2290, '双清区', 3, 221);
INSERT INTO `tpf_region` VALUES (2291, '大祥区', 3, 221);
INSERT INTO `tpf_region` VALUES (2292, '北塔区', 3, 221);
INSERT INTO `tpf_region` VALUES (2293, '邵东县', 3, 221);
INSERT INTO `tpf_region` VALUES (2294, '新邵县', 3, 221);
INSERT INTO `tpf_region` VALUES (2295, '邵阳县', 3, 221);
INSERT INTO `tpf_region` VALUES (2296, '隆回县', 3, 221);
INSERT INTO `tpf_region` VALUES (2297, '洞口县', 3, 221);
INSERT INTO `tpf_region` VALUES (2298, '绥宁县', 3, 221);
INSERT INTO `tpf_region` VALUES (2299, '新宁县', 3, 221);
INSERT INTO `tpf_region` VALUES (2300, '城步苗族自治县', 3, 221);
INSERT INTO `tpf_region` VALUES (2301, '武冈市', 3, 221);
INSERT INTO `tpf_region` VALUES (2302, '其它区', 3, 221);
INSERT INTO `tpf_region` VALUES (2303, '岳阳楼区', 3, 222);
INSERT INTO `tpf_region` VALUES (2304, '云溪区', 3, 222);
INSERT INTO `tpf_region` VALUES (2305, '君山区', 3, 222);
INSERT INTO `tpf_region` VALUES (2306, '岳阳县', 3, 222);
INSERT INTO `tpf_region` VALUES (2307, '华容县', 3, 222);
INSERT INTO `tpf_region` VALUES (2308, '湘阴县', 3, 222);
INSERT INTO `tpf_region` VALUES (2309, '平江县', 3, 222);
INSERT INTO `tpf_region` VALUES (2310, '汨罗市', 3, 222);
INSERT INTO `tpf_region` VALUES (2311, '临湘市', 3, 222);
INSERT INTO `tpf_region` VALUES (2312, '其它区', 3, 222);
INSERT INTO `tpf_region` VALUES (2313, '武陵区', 3, 223);
INSERT INTO `tpf_region` VALUES (2314, '鼎城区', 3, 223);
INSERT INTO `tpf_region` VALUES (2315, '安乡县', 3, 223);
INSERT INTO `tpf_region` VALUES (2316, '汉寿县', 3, 223);
INSERT INTO `tpf_region` VALUES (2317, '澧县', 3, 223);
INSERT INTO `tpf_region` VALUES (2318, '临澧县', 3, 223);
INSERT INTO `tpf_region` VALUES (2319, '桃源县', 3, 223);
INSERT INTO `tpf_region` VALUES (2320, '石门县', 3, 223);
INSERT INTO `tpf_region` VALUES (2321, '津市市', 3, 223);
INSERT INTO `tpf_region` VALUES (2322, '其它区', 3, 223);
INSERT INTO `tpf_region` VALUES (2323, '永定区', 3, 224);
INSERT INTO `tpf_region` VALUES (2324, '武陵源区', 3, 224);
INSERT INTO `tpf_region` VALUES (2325, '慈利县', 3, 224);
INSERT INTO `tpf_region` VALUES (2326, '桑植县', 3, 224);
INSERT INTO `tpf_region` VALUES (2327, '其它区', 3, 224);
INSERT INTO `tpf_region` VALUES (2328, '资阳区', 3, 225);
INSERT INTO `tpf_region` VALUES (2329, '赫山区', 3, 225);
INSERT INTO `tpf_region` VALUES (2330, '南县', 3, 225);
INSERT INTO `tpf_region` VALUES (2331, '桃江县', 3, 225);
INSERT INTO `tpf_region` VALUES (2332, '安化县', 3, 225);
INSERT INTO `tpf_region` VALUES (2333, '沅江市', 3, 225);
INSERT INTO `tpf_region` VALUES (2334, '其它区', 3, 225);
INSERT INTO `tpf_region` VALUES (2335, '北湖区', 3, 226);
INSERT INTO `tpf_region` VALUES (2336, '苏仙区', 3, 226);
INSERT INTO `tpf_region` VALUES (2337, '桂阳县', 3, 226);
INSERT INTO `tpf_region` VALUES (2338, '宜章县', 3, 226);
INSERT INTO `tpf_region` VALUES (2339, '永兴县', 3, 226);
INSERT INTO `tpf_region` VALUES (2340, '嘉禾县', 3, 226);
INSERT INTO `tpf_region` VALUES (2341, '临武县', 3, 226);
INSERT INTO `tpf_region` VALUES (2342, '汝城县', 3, 226);
INSERT INTO `tpf_region` VALUES (2343, '桂东县', 3, 226);
INSERT INTO `tpf_region` VALUES (2344, '安仁县', 3, 226);
INSERT INTO `tpf_region` VALUES (2345, '资兴市', 3, 226);
INSERT INTO `tpf_region` VALUES (2346, '其它区', 3, 226);
INSERT INTO `tpf_region` VALUES (2347, '零陵区', 3, 227);
INSERT INTO `tpf_region` VALUES (2348, '冷水滩区', 3, 227);
INSERT INTO `tpf_region` VALUES (2349, '祁阳县', 3, 227);
INSERT INTO `tpf_region` VALUES (2350, '东安县', 3, 227);
INSERT INTO `tpf_region` VALUES (2351, '双牌县', 3, 227);
INSERT INTO `tpf_region` VALUES (2352, '道县', 3, 227);
INSERT INTO `tpf_region` VALUES (2353, '江永县', 3, 227);
INSERT INTO `tpf_region` VALUES (2354, '宁远县', 3, 227);
INSERT INTO `tpf_region` VALUES (2355, '蓝山县', 3, 227);
INSERT INTO `tpf_region` VALUES (2356, '新田县', 3, 227);
INSERT INTO `tpf_region` VALUES (2357, '江华瑶族自治县', 3, 227);
INSERT INTO `tpf_region` VALUES (2358, '其它区', 3, 227);
INSERT INTO `tpf_region` VALUES (2359, '鹤城区', 3, 228);
INSERT INTO `tpf_region` VALUES (2360, '中方县', 3, 228);
INSERT INTO `tpf_region` VALUES (2361, '沅陵县', 3, 228);
INSERT INTO `tpf_region` VALUES (2362, '辰溪县', 3, 228);
INSERT INTO `tpf_region` VALUES (2363, '溆浦县', 3, 228);
INSERT INTO `tpf_region` VALUES (2364, '会同县', 3, 228);
INSERT INTO `tpf_region` VALUES (2365, '麻阳苗族自治县', 3, 228);
INSERT INTO `tpf_region` VALUES (2366, '新晃侗族自治县', 3, 228);
INSERT INTO `tpf_region` VALUES (2367, '芷江侗族自治县', 3, 228);
INSERT INTO `tpf_region` VALUES (2368, '靖州苗族侗族自治县', 3, 228);
INSERT INTO `tpf_region` VALUES (2369, '通道侗族自治县', 3, 228);
INSERT INTO `tpf_region` VALUES (2370, '洪江市', 3, 228);
INSERT INTO `tpf_region` VALUES (2371, '其它区', 3, 228);
INSERT INTO `tpf_region` VALUES (2372, '娄星区', 3, 229);
INSERT INTO `tpf_region` VALUES (2373, '双峰县', 3, 229);
INSERT INTO `tpf_region` VALUES (2374, '新化县', 3, 229);
INSERT INTO `tpf_region` VALUES (2375, '冷水江市', 3, 229);
INSERT INTO `tpf_region` VALUES (2376, '涟源市', 3, 229);
INSERT INTO `tpf_region` VALUES (2377, '其它区', 3, 229);
INSERT INTO `tpf_region` VALUES (2378, '吉首市', 3, 230);
INSERT INTO `tpf_region` VALUES (2379, '泸溪县', 3, 230);
INSERT INTO `tpf_region` VALUES (2380, '凤凰县', 3, 230);
INSERT INTO `tpf_region` VALUES (2381, '花垣县', 3, 230);
INSERT INTO `tpf_region` VALUES (2382, '保靖县', 3, 230);
INSERT INTO `tpf_region` VALUES (2383, '古丈县', 3, 230);
INSERT INTO `tpf_region` VALUES (2384, '永顺县', 3, 230);
INSERT INTO `tpf_region` VALUES (2385, '龙山县', 3, 230);
INSERT INTO `tpf_region` VALUES (2386, '其它区', 3, 230);
INSERT INTO `tpf_region` VALUES (2387, '荔湾区', 3, 231);
INSERT INTO `tpf_region` VALUES (2388, '越秀区', 3, 231);
INSERT INTO `tpf_region` VALUES (2389, '海珠区', 3, 231);
INSERT INTO `tpf_region` VALUES (2390, '天河区', 3, 231);
INSERT INTO `tpf_region` VALUES (2391, '白云区', 3, 231);
INSERT INTO `tpf_region` VALUES (2392, '黄埔区', 3, 231);
INSERT INTO `tpf_region` VALUES (2393, '番禺区', 3, 231);
INSERT INTO `tpf_region` VALUES (2394, '花都区', 3, 231);
INSERT INTO `tpf_region` VALUES (2395, '南沙区', 3, 231);
INSERT INTO `tpf_region` VALUES (2396, '萝岗区', 3, 231);
INSERT INTO `tpf_region` VALUES (2397, '增城区', 3, 231);
INSERT INTO `tpf_region` VALUES (2398, '从化区', 3, 231);
INSERT INTO `tpf_region` VALUES (2399, '东山区', 3, 231);
INSERT INTO `tpf_region` VALUES (2400, '其它区', 3, 231);
INSERT INTO `tpf_region` VALUES (2401, '武江区', 3, 232);
INSERT INTO `tpf_region` VALUES (2402, '浈江区', 3, 232);
INSERT INTO `tpf_region` VALUES (2403, '曲江区', 3, 232);
INSERT INTO `tpf_region` VALUES (2404, '始兴县', 3, 232);
INSERT INTO `tpf_region` VALUES (2405, '仁化县', 3, 232);
INSERT INTO `tpf_region` VALUES (2406, '翁源县', 3, 232);
INSERT INTO `tpf_region` VALUES (2407, '乳源瑶族自治县', 3, 232);
INSERT INTO `tpf_region` VALUES (2408, '新丰县', 3, 232);
INSERT INTO `tpf_region` VALUES (2409, '乐昌市', 3, 232);
INSERT INTO `tpf_region` VALUES (2410, '南雄市', 3, 232);
INSERT INTO `tpf_region` VALUES (2411, '其它区', 3, 232);
INSERT INTO `tpf_region` VALUES (2412, '罗湖区', 3, 233);
INSERT INTO `tpf_region` VALUES (2413, '福田区', 3, 233);
INSERT INTO `tpf_region` VALUES (2414, '南山区', 3, 233);
INSERT INTO `tpf_region` VALUES (2415, '宝安区', 3, 233);
INSERT INTO `tpf_region` VALUES (2416, '龙岗区', 3, 233);
INSERT INTO `tpf_region` VALUES (2417, '盐田区', 3, 233);
INSERT INTO `tpf_region` VALUES (2418, '其它区', 3, 233);
INSERT INTO `tpf_region` VALUES (2419, '光明新区', 3, 233);
INSERT INTO `tpf_region` VALUES (2420, '坪山新区', 3, 233);
INSERT INTO `tpf_region` VALUES (2421, '大鹏新区', 3, 233);
INSERT INTO `tpf_region` VALUES (2422, '龙华新区', 3, 233);
INSERT INTO `tpf_region` VALUES (2423, '香洲区', 3, 234);
INSERT INTO `tpf_region` VALUES (2424, '斗门区', 3, 234);
INSERT INTO `tpf_region` VALUES (2425, '金湾区', 3, 234);
INSERT INTO `tpf_region` VALUES (2426, '金唐区', 3, 234);
INSERT INTO `tpf_region` VALUES (2427, '南湾区', 3, 234);
INSERT INTO `tpf_region` VALUES (2428, '其它区', 3, 234);
INSERT INTO `tpf_region` VALUES (2429, '龙湖区', 3, 235);
INSERT INTO `tpf_region` VALUES (2430, '金平区', 3, 235);
INSERT INTO `tpf_region` VALUES (2431, '濠江区', 3, 235);
INSERT INTO `tpf_region` VALUES (2432, '潮阳区', 3, 235);
INSERT INTO `tpf_region` VALUES (2433, '潮南区', 3, 235);
INSERT INTO `tpf_region` VALUES (2434, '澄海区', 3, 235);
INSERT INTO `tpf_region` VALUES (2435, '南澳县', 3, 235);
INSERT INTO `tpf_region` VALUES (2436, '其它区', 3, 235);
INSERT INTO `tpf_region` VALUES (2437, '禅城区', 3, 236);
INSERT INTO `tpf_region` VALUES (2438, '南海区', 3, 236);
INSERT INTO `tpf_region` VALUES (2439, '顺德区', 3, 236);
INSERT INTO `tpf_region` VALUES (2440, '三水区', 3, 236);
INSERT INTO `tpf_region` VALUES (2441, '高明区', 3, 236);
INSERT INTO `tpf_region` VALUES (2442, '其它区', 3, 236);
INSERT INTO `tpf_region` VALUES (2443, '蓬江区', 3, 237);
INSERT INTO `tpf_region` VALUES (2444, '江海区', 3, 237);
INSERT INTO `tpf_region` VALUES (2445, '新会区', 3, 237);
INSERT INTO `tpf_region` VALUES (2446, '台山市', 3, 237);
INSERT INTO `tpf_region` VALUES (2447, '开平市', 3, 237);
INSERT INTO `tpf_region` VALUES (2448, '鹤山市', 3, 237);
INSERT INTO `tpf_region` VALUES (2449, '恩平市', 3, 237);
INSERT INTO `tpf_region` VALUES (2450, '其它区', 3, 237);
INSERT INTO `tpf_region` VALUES (2451, '赤坎区', 3, 238);
INSERT INTO `tpf_region` VALUES (2452, '霞山区', 3, 238);
INSERT INTO `tpf_region` VALUES (2453, '坡头区', 3, 238);
INSERT INTO `tpf_region` VALUES (2454, '麻章区', 3, 238);
INSERT INTO `tpf_region` VALUES (2455, '遂溪县', 3, 238);
INSERT INTO `tpf_region` VALUES (2456, '徐闻县', 3, 238);
INSERT INTO `tpf_region` VALUES (2457, '廉江市', 3, 238);
INSERT INTO `tpf_region` VALUES (2458, '雷州市', 3, 238);
INSERT INTO `tpf_region` VALUES (2459, '吴川市', 3, 238);
INSERT INTO `tpf_region` VALUES (2460, '其它区', 3, 238);
INSERT INTO `tpf_region` VALUES (2461, '茂南区', 3, 239);
INSERT INTO `tpf_region` VALUES (2462, '电白区', 3, 239);
INSERT INTO `tpf_region` VALUES (2463, '电白县', 3, 239);
INSERT INTO `tpf_region` VALUES (2464, '高州市', 3, 239);
INSERT INTO `tpf_region` VALUES (2465, '化州市', 3, 239);
INSERT INTO `tpf_region` VALUES (2466, '信宜市', 3, 239);
INSERT INTO `tpf_region` VALUES (2467, '其它区', 3, 239);
INSERT INTO `tpf_region` VALUES (2468, '端州区', 3, 240);
INSERT INTO `tpf_region` VALUES (2469, '鼎湖区', 3, 240);
INSERT INTO `tpf_region` VALUES (2470, '广宁县', 3, 240);
INSERT INTO `tpf_region` VALUES (2471, '怀集县', 3, 240);
INSERT INTO `tpf_region` VALUES (2472, '封开县', 3, 240);
INSERT INTO `tpf_region` VALUES (2473, '德庆县', 3, 240);
INSERT INTO `tpf_region` VALUES (2474, '高要市', 3, 240);
INSERT INTO `tpf_region` VALUES (2475, '四会市', 3, 240);
INSERT INTO `tpf_region` VALUES (2476, '其它区', 3, 240);
INSERT INTO `tpf_region` VALUES (2477, '惠城区', 3, 241);
INSERT INTO `tpf_region` VALUES (2478, '惠阳区', 3, 241);
INSERT INTO `tpf_region` VALUES (2479, '博罗县', 3, 241);
INSERT INTO `tpf_region` VALUES (2480, '惠东县', 3, 241);
INSERT INTO `tpf_region` VALUES (2481, '龙门县', 3, 241);
INSERT INTO `tpf_region` VALUES (2482, '其它区', 3, 241);
INSERT INTO `tpf_region` VALUES (2483, '梅江区', 3, 242);
INSERT INTO `tpf_region` VALUES (2484, '梅县区', 3, 242);
INSERT INTO `tpf_region` VALUES (2485, '大埔县', 3, 242);
INSERT INTO `tpf_region` VALUES (2486, '丰顺县', 3, 242);
INSERT INTO `tpf_region` VALUES (2487, '五华县', 3, 242);
INSERT INTO `tpf_region` VALUES (2488, '平远县', 3, 242);
INSERT INTO `tpf_region` VALUES (2489, '蕉岭县', 3, 242);
INSERT INTO `tpf_region` VALUES (2490, '兴宁市', 3, 242);
INSERT INTO `tpf_region` VALUES (2491, '其它区', 3, 242);
INSERT INTO `tpf_region` VALUES (2492, '城区', 3, 243);
INSERT INTO `tpf_region` VALUES (2493, '海丰县', 3, 243);
INSERT INTO `tpf_region` VALUES (2494, '陆河县', 3, 243);
INSERT INTO `tpf_region` VALUES (2495, '陆丰市', 3, 243);
INSERT INTO `tpf_region` VALUES (2496, '其它区', 3, 243);
INSERT INTO `tpf_region` VALUES (2497, '源城区', 3, 244);
INSERT INTO `tpf_region` VALUES (2498, '紫金县', 3, 244);
INSERT INTO `tpf_region` VALUES (2499, '龙川县', 3, 244);
INSERT INTO `tpf_region` VALUES (2500, '连平县', 3, 244);
INSERT INTO `tpf_region` VALUES (2501, '和平县', 3, 244);
INSERT INTO `tpf_region` VALUES (2502, '东源县', 3, 244);
INSERT INTO `tpf_region` VALUES (2503, '其它区', 3, 244);
INSERT INTO `tpf_region` VALUES (2504, '江城区', 3, 245);
INSERT INTO `tpf_region` VALUES (2505, '阳西县', 3, 245);
INSERT INTO `tpf_region` VALUES (2506, '阳东区', 3, 245);
INSERT INTO `tpf_region` VALUES (2507, '阳春市', 3, 245);
INSERT INTO `tpf_region` VALUES (2508, '其它区', 3, 245);
INSERT INTO `tpf_region` VALUES (2509, '清城区', 3, 246);
INSERT INTO `tpf_region` VALUES (2510, '佛冈县', 3, 246);
INSERT INTO `tpf_region` VALUES (2511, '阳山县', 3, 246);
INSERT INTO `tpf_region` VALUES (2512, '连山壮族瑶族自治县', 3, 246);
INSERT INTO `tpf_region` VALUES (2513, '连南瑶族自治县', 3, 246);
INSERT INTO `tpf_region` VALUES (2514, '清新区', 3, 246);
INSERT INTO `tpf_region` VALUES (2515, '英德市', 3, 246);
INSERT INTO `tpf_region` VALUES (2516, '连州市', 3, 246);
INSERT INTO `tpf_region` VALUES (2517, '其它区', 3, 246);
INSERT INTO `tpf_region` VALUES (2518, '湘桥区', 3, 250);
INSERT INTO `tpf_region` VALUES (2519, '潮安区', 3, 250);
INSERT INTO `tpf_region` VALUES (2520, '饶平县', 3, 250);
INSERT INTO `tpf_region` VALUES (2521, '枫溪区', 3, 250);
INSERT INTO `tpf_region` VALUES (2522, '其它区', 3, 250);
INSERT INTO `tpf_region` VALUES (2523, '榕城区', 3, 251);
INSERT INTO `tpf_region` VALUES (2524, '揭东区', 3, 251);
INSERT INTO `tpf_region` VALUES (2525, '揭西县', 3, 251);
INSERT INTO `tpf_region` VALUES (2526, '惠来县', 3, 251);
INSERT INTO `tpf_region` VALUES (2527, '普宁市', 3, 251);
INSERT INTO `tpf_region` VALUES (2528, '东山区', 3, 251);
INSERT INTO `tpf_region` VALUES (2529, '其它区', 3, 251);
INSERT INTO `tpf_region` VALUES (2530, '云城区', 3, 252);
INSERT INTO `tpf_region` VALUES (2531, '新兴县', 3, 252);
INSERT INTO `tpf_region` VALUES (2532, '郁南县', 3, 252);
INSERT INTO `tpf_region` VALUES (2533, '云安区', 3, 252);
INSERT INTO `tpf_region` VALUES (2534, '罗定市', 3, 252);
INSERT INTO `tpf_region` VALUES (2535, '其它区', 3, 252);
INSERT INTO `tpf_region` VALUES (2536, '兴宁区', 3, 253);
INSERT INTO `tpf_region` VALUES (2537, '青秀区', 3, 253);
INSERT INTO `tpf_region` VALUES (2538, '江南区', 3, 253);
INSERT INTO `tpf_region` VALUES (2539, '西乡塘区', 3, 253);
INSERT INTO `tpf_region` VALUES (2540, '良庆区', 3, 253);
INSERT INTO `tpf_region` VALUES (2541, '邕宁区', 3, 253);
INSERT INTO `tpf_region` VALUES (2542, '武鸣区', 3, 253);
INSERT INTO `tpf_region` VALUES (2543, '隆安县', 3, 253);
INSERT INTO `tpf_region` VALUES (2544, '马山县', 3, 253);
INSERT INTO `tpf_region` VALUES (2545, '上林县', 3, 253);
INSERT INTO `tpf_region` VALUES (2546, '宾阳县', 3, 253);
INSERT INTO `tpf_region` VALUES (2547, '横县', 3, 253);
INSERT INTO `tpf_region` VALUES (2548, '其它区', 3, 253);
INSERT INTO `tpf_region` VALUES (2549, '城中区', 3, 254);
INSERT INTO `tpf_region` VALUES (2550, '鱼峰区', 3, 254);
INSERT INTO `tpf_region` VALUES (2551, '柳南区', 3, 254);
INSERT INTO `tpf_region` VALUES (2552, '柳北区', 3, 254);
INSERT INTO `tpf_region` VALUES (2553, '柳江县', 3, 254);
INSERT INTO `tpf_region` VALUES (2554, '柳城县', 3, 254);
INSERT INTO `tpf_region` VALUES (2555, '鹿寨县', 3, 254);
INSERT INTO `tpf_region` VALUES (2556, '融安县', 3, 254);
INSERT INTO `tpf_region` VALUES (2557, '融水苗族自治县', 3, 254);
INSERT INTO `tpf_region` VALUES (2558, '三江侗族自治县', 3, 254);
INSERT INTO `tpf_region` VALUES (2559, '其它区', 3, 254);
INSERT INTO `tpf_region` VALUES (2560, '秀峰区', 3, 255);
INSERT INTO `tpf_region` VALUES (2561, '叠彩区', 3, 255);
INSERT INTO `tpf_region` VALUES (2562, '象山区', 3, 255);
INSERT INTO `tpf_region` VALUES (2563, '七星区', 3, 255);
INSERT INTO `tpf_region` VALUES (2564, '雁山区', 3, 255);
INSERT INTO `tpf_region` VALUES (2565, '阳朔县', 3, 255);
INSERT INTO `tpf_region` VALUES (2566, '临桂区', 3, 255);
INSERT INTO `tpf_region` VALUES (2567, '灵川县', 3, 255);
INSERT INTO `tpf_region` VALUES (2568, '全州县', 3, 255);
INSERT INTO `tpf_region` VALUES (2569, '兴安县', 3, 255);
INSERT INTO `tpf_region` VALUES (2570, '永福县', 3, 255);
INSERT INTO `tpf_region` VALUES (2571, '灌阳县', 3, 255);
INSERT INTO `tpf_region` VALUES (2572, '龙胜各族自治县', 3, 255);
INSERT INTO `tpf_region` VALUES (2573, '资源县', 3, 255);
INSERT INTO `tpf_region` VALUES (2574, '平乐县', 3, 255);
INSERT INTO `tpf_region` VALUES (2575, '荔浦县', 3, 255);
INSERT INTO `tpf_region` VALUES (2576, '恭城瑶族自治县', 3, 255);
INSERT INTO `tpf_region` VALUES (2577, '其它区', 3, 255);
INSERT INTO `tpf_region` VALUES (2578, '万秀区', 3, 256);
INSERT INTO `tpf_region` VALUES (2579, '蝶山区', 3, 256);
INSERT INTO `tpf_region` VALUES (2580, '长洲区', 3, 256);
INSERT INTO `tpf_region` VALUES (2581, '龙圩区', 3, 256);
INSERT INTO `tpf_region` VALUES (2582, '苍梧县', 3, 256);
INSERT INTO `tpf_region` VALUES (2583, '藤县', 3, 256);
INSERT INTO `tpf_region` VALUES (2584, '蒙山县', 3, 256);
INSERT INTO `tpf_region` VALUES (2585, '岑溪市', 3, 256);
INSERT INTO `tpf_region` VALUES (2586, '其它区', 3, 256);
INSERT INTO `tpf_region` VALUES (2587, '海城区', 3, 257);
INSERT INTO `tpf_region` VALUES (2588, '银海区', 3, 257);
INSERT INTO `tpf_region` VALUES (2589, '铁山港区', 3, 257);
INSERT INTO `tpf_region` VALUES (2590, '合浦县', 3, 257);
INSERT INTO `tpf_region` VALUES (2591, '其它区', 3, 257);
INSERT INTO `tpf_region` VALUES (2592, '港口区', 3, 258);
INSERT INTO `tpf_region` VALUES (2593, '防城区', 3, 258);
INSERT INTO `tpf_region` VALUES (2594, '上思县', 3, 258);
INSERT INTO `tpf_region` VALUES (2595, '东兴市', 3, 258);
INSERT INTO `tpf_region` VALUES (2596, '其它区', 3, 258);
INSERT INTO `tpf_region` VALUES (2597, '钦南区', 3, 259);
INSERT INTO `tpf_region` VALUES (2598, '钦北区', 3, 259);
INSERT INTO `tpf_region` VALUES (2599, '灵山县', 3, 259);
INSERT INTO `tpf_region` VALUES (2600, '浦北县', 3, 259);
INSERT INTO `tpf_region` VALUES (2601, '其它区', 3, 259);
INSERT INTO `tpf_region` VALUES (2602, '港北区', 3, 260);
INSERT INTO `tpf_region` VALUES (2603, '港南区', 3, 260);
INSERT INTO `tpf_region` VALUES (2604, '覃塘区', 3, 260);
INSERT INTO `tpf_region` VALUES (2605, '平南县', 3, 260);
INSERT INTO `tpf_region` VALUES (2606, '桂平市', 3, 260);
INSERT INTO `tpf_region` VALUES (2607, '其它区', 3, 260);
INSERT INTO `tpf_region` VALUES (2608, '玉州区', 3, 261);
INSERT INTO `tpf_region` VALUES (2609, '福绵区', 3, 261);
INSERT INTO `tpf_region` VALUES (2610, '容县', 3, 261);
INSERT INTO `tpf_region` VALUES (2611, '陆川县', 3, 261);
INSERT INTO `tpf_region` VALUES (2612, '博白县', 3, 261);
INSERT INTO `tpf_region` VALUES (2613, '兴业县', 3, 261);
INSERT INTO `tpf_region` VALUES (2614, '北流市', 3, 261);
INSERT INTO `tpf_region` VALUES (2615, '其它区', 3, 261);
INSERT INTO `tpf_region` VALUES (2616, '右江区', 3, 262);
INSERT INTO `tpf_region` VALUES (2617, '田阳县', 3, 262);
INSERT INTO `tpf_region` VALUES (2618, '田东县', 3, 262);
INSERT INTO `tpf_region` VALUES (2619, '平果县', 3, 262);
INSERT INTO `tpf_region` VALUES (2620, '德保县', 3, 262);
INSERT INTO `tpf_region` VALUES (2621, '靖西县', 3, 262);
INSERT INTO `tpf_region` VALUES (2622, '那坡县', 3, 262);
INSERT INTO `tpf_region` VALUES (2623, '凌云县', 3, 262);
INSERT INTO `tpf_region` VALUES (2624, '乐业县', 3, 262);
INSERT INTO `tpf_region` VALUES (2625, '田林县', 3, 262);
INSERT INTO `tpf_region` VALUES (2626, '西林县', 3, 262);
INSERT INTO `tpf_region` VALUES (2627, '隆林各族自治县', 3, 262);
INSERT INTO `tpf_region` VALUES (2628, '其它区', 3, 262);
INSERT INTO `tpf_region` VALUES (2629, '八步区', 3, 263);
INSERT INTO `tpf_region` VALUES (2630, '平桂管理区', 3, 263);
INSERT INTO `tpf_region` VALUES (2631, '昭平县', 3, 263);
INSERT INTO `tpf_region` VALUES (2632, '钟山县', 3, 263);
INSERT INTO `tpf_region` VALUES (2633, '富川瑶族自治县', 3, 263);
INSERT INTO `tpf_region` VALUES (2634, '其它区', 3, 263);
INSERT INTO `tpf_region` VALUES (2635, '金城江区', 3, 264);
INSERT INTO `tpf_region` VALUES (2636, '南丹县', 3, 264);
INSERT INTO `tpf_region` VALUES (2637, '天峨县', 3, 264);
INSERT INTO `tpf_region` VALUES (2638, '凤山县', 3, 264);
INSERT INTO `tpf_region` VALUES (2639, '东兰县', 3, 264);
INSERT INTO `tpf_region` VALUES (2640, '罗城仫佬族自治县', 3, 264);
INSERT INTO `tpf_region` VALUES (2641, '环江毛南族自治县', 3, 264);
INSERT INTO `tpf_region` VALUES (2642, '巴马瑶族自治县', 3, 264);
INSERT INTO `tpf_region` VALUES (2643, '都安瑶族自治县', 3, 264);
INSERT INTO `tpf_region` VALUES (2644, '大化瑶族自治县', 3, 264);
INSERT INTO `tpf_region` VALUES (2645, '宜州市', 3, 264);
INSERT INTO `tpf_region` VALUES (2646, '其它区', 3, 264);
INSERT INTO `tpf_region` VALUES (2647, '兴宾区', 3, 265);
INSERT INTO `tpf_region` VALUES (2648, '忻城县', 3, 265);
INSERT INTO `tpf_region` VALUES (2649, '象州县', 3, 265);
INSERT INTO `tpf_region` VALUES (2650, '武宣县', 3, 265);
INSERT INTO `tpf_region` VALUES (2651, '金秀瑶族自治县', 3, 265);
INSERT INTO `tpf_region` VALUES (2652, '合山市', 3, 265);
INSERT INTO `tpf_region` VALUES (2653, '其它区', 3, 265);
INSERT INTO `tpf_region` VALUES (2654, '江州区', 3, 266);
INSERT INTO `tpf_region` VALUES (2655, '扶绥县', 3, 266);
INSERT INTO `tpf_region` VALUES (2656, '宁明县', 3, 266);
INSERT INTO `tpf_region` VALUES (2657, '龙州县', 3, 266);
INSERT INTO `tpf_region` VALUES (2658, '大新县', 3, 266);
INSERT INTO `tpf_region` VALUES (2659, '天等县', 3, 266);
INSERT INTO `tpf_region` VALUES (2660, '凭祥市', 3, 266);
INSERT INTO `tpf_region` VALUES (2661, '其它区', 3, 266);
INSERT INTO `tpf_region` VALUES (2662, '秀英区', 3, 267);
INSERT INTO `tpf_region` VALUES (2663, '龙华区', 3, 267);
INSERT INTO `tpf_region` VALUES (2664, '琼山区', 3, 267);
INSERT INTO `tpf_region` VALUES (2665, '美兰区', 3, 267);
INSERT INTO `tpf_region` VALUES (2666, '其它区', 3, 267);
INSERT INTO `tpf_region` VALUES (2667, '西沙群岛', 3, 269);
INSERT INTO `tpf_region` VALUES (2668, '南沙群岛', 3, 269);
INSERT INTO `tpf_region` VALUES (2669, '中沙群岛的岛礁及其海域', 3, 269);
INSERT INTO `tpf_region` VALUES (2670, '高新区', 3, 189);
INSERT INTO `tpf_region` VALUES (2671, '其它区', 3, 189);
INSERT INTO `tpf_region` VALUES (2672, '万州区', 3, 270);
INSERT INTO `tpf_region` VALUES (2673, '涪陵区', 3, 270);
INSERT INTO `tpf_region` VALUES (2674, '渝中区', 3, 270);
INSERT INTO `tpf_region` VALUES (2675, '大渡口区', 3, 270);
INSERT INTO `tpf_region` VALUES (2676, '江北区', 3, 270);
INSERT INTO `tpf_region` VALUES (2677, '沙坪坝区', 3, 270);
INSERT INTO `tpf_region` VALUES (2678, '九龙坡区', 3, 270);
INSERT INTO `tpf_region` VALUES (2679, '南岸区', 3, 270);
INSERT INTO `tpf_region` VALUES (2680, '北碚区', 3, 270);
INSERT INTO `tpf_region` VALUES (2681, '万盛区', 3, 270);
INSERT INTO `tpf_region` VALUES (2682, '双桥区', 3, 270);
INSERT INTO `tpf_region` VALUES (2683, '渝北区', 3, 270);
INSERT INTO `tpf_region` VALUES (2684, '巴南区', 3, 270);
INSERT INTO `tpf_region` VALUES (2685, '黔江区', 3, 270);
INSERT INTO `tpf_region` VALUES (2686, '长寿区', 3, 270);
INSERT INTO `tpf_region` VALUES (2687, '綦江区', 3, 270);
INSERT INTO `tpf_region` VALUES (2688, '潼南县', 3, 270);
INSERT INTO `tpf_region` VALUES (2689, '铜梁区', 3, 270);
INSERT INTO `tpf_region` VALUES (2690, '大足区', 3, 270);
INSERT INTO `tpf_region` VALUES (2691, '荣昌县', 3, 270);
INSERT INTO `tpf_region` VALUES (2692, '璧山区', 3, 270);
INSERT INTO `tpf_region` VALUES (2693, '梁平县', 3, 270);
INSERT INTO `tpf_region` VALUES (2694, '城口县', 3, 270);
INSERT INTO `tpf_region` VALUES (2695, '丰都县', 3, 270);
INSERT INTO `tpf_region` VALUES (2696, '垫江县', 3, 270);
INSERT INTO `tpf_region` VALUES (2697, '武隆县', 3, 270);
INSERT INTO `tpf_region` VALUES (2698, '忠县', 3, 270);
INSERT INTO `tpf_region` VALUES (2699, '开县', 3, 270);
INSERT INTO `tpf_region` VALUES (2700, '云阳县', 3, 270);
INSERT INTO `tpf_region` VALUES (2701, '奉节县', 3, 270);
INSERT INTO `tpf_region` VALUES (2702, '巫山县', 3, 270);
INSERT INTO `tpf_region` VALUES (2703, '巫溪县', 3, 270);
INSERT INTO `tpf_region` VALUES (2704, '石柱土家族自治县', 3, 270);
INSERT INTO `tpf_region` VALUES (2705, '秀山土家族苗族自治县', 3, 270);
INSERT INTO `tpf_region` VALUES (2706, '酉阳土家族苗族自治县', 3, 270);
INSERT INTO `tpf_region` VALUES (2707, '彭水苗族土家族自治县', 3, 270);
INSERT INTO `tpf_region` VALUES (2708, '江津区', 3, 270);
INSERT INTO `tpf_region` VALUES (2709, '合川区', 3, 270);
INSERT INTO `tpf_region` VALUES (2710, '永川区', 3, 270);
INSERT INTO `tpf_region` VALUES (2711, '南川区', 3, 270);
INSERT INTO `tpf_region` VALUES (2712, '其它区', 3, 270);
INSERT INTO `tpf_region` VALUES (2713, '锦江区', 3, 271);
INSERT INTO `tpf_region` VALUES (2714, '青羊区', 3, 271);
INSERT INTO `tpf_region` VALUES (2715, '金牛区', 3, 271);
INSERT INTO `tpf_region` VALUES (2716, '武侯区', 3, 271);
INSERT INTO `tpf_region` VALUES (2717, '成华区', 3, 271);
INSERT INTO `tpf_region` VALUES (2718, '龙泉驿区', 3, 271);
INSERT INTO `tpf_region` VALUES (2719, '青白江区', 3, 271);
INSERT INTO `tpf_region` VALUES (2720, '新都区', 3, 271);
INSERT INTO `tpf_region` VALUES (2721, '温江区', 3, 271);
INSERT INTO `tpf_region` VALUES (2722, '金堂县', 3, 271);
INSERT INTO `tpf_region` VALUES (2723, '双流县', 3, 271);
INSERT INTO `tpf_region` VALUES (2724, '郫县', 3, 271);
INSERT INTO `tpf_region` VALUES (2725, '大邑县', 3, 271);
INSERT INTO `tpf_region` VALUES (2726, '蒲江县', 3, 271);
INSERT INTO `tpf_region` VALUES (2727, '新津县', 3, 271);
INSERT INTO `tpf_region` VALUES (2728, '都江堰市', 3, 271);
INSERT INTO `tpf_region` VALUES (2729, '彭州市', 3, 271);
INSERT INTO `tpf_region` VALUES (2730, '邛崃市', 3, 271);
INSERT INTO `tpf_region` VALUES (2731, '崇州市', 3, 271);
INSERT INTO `tpf_region` VALUES (2732, '其它区', 3, 271);
INSERT INTO `tpf_region` VALUES (2733, '自流井区', 3, 272);
INSERT INTO `tpf_region` VALUES (2734, '贡井区', 3, 272);
INSERT INTO `tpf_region` VALUES (2735, '大安区', 3, 272);
INSERT INTO `tpf_region` VALUES (2736, '沿滩区', 3, 272);
INSERT INTO `tpf_region` VALUES (2737, '荣县', 3, 272);
INSERT INTO `tpf_region` VALUES (2738, '富顺县', 3, 272);
INSERT INTO `tpf_region` VALUES (2739, '其它区', 3, 272);
INSERT INTO `tpf_region` VALUES (2740, '东区', 3, 273);
INSERT INTO `tpf_region` VALUES (2741, '西区', 3, 273);
INSERT INTO `tpf_region` VALUES (2742, '仁和区', 3, 273);
INSERT INTO `tpf_region` VALUES (2743, '米易县', 3, 273);
INSERT INTO `tpf_region` VALUES (2744, '盐边县', 3, 273);
INSERT INTO `tpf_region` VALUES (2745, '其它区', 3, 273);
INSERT INTO `tpf_region` VALUES (2746, '江阳区', 3, 274);
INSERT INTO `tpf_region` VALUES (2747, '纳溪区', 3, 274);
INSERT INTO `tpf_region` VALUES (2748, '龙马潭区', 3, 274);
INSERT INTO `tpf_region` VALUES (2749, '泸县', 3, 274);
INSERT INTO `tpf_region` VALUES (2750, '合江县', 3, 274);
INSERT INTO `tpf_region` VALUES (2751, '叙永县', 3, 274);
INSERT INTO `tpf_region` VALUES (2752, '古蔺县', 3, 274);
INSERT INTO `tpf_region` VALUES (2753, '其它区', 3, 274);
INSERT INTO `tpf_region` VALUES (2754, '旌阳区', 3, 275);
INSERT INTO `tpf_region` VALUES (2755, '中江县', 3, 275);
INSERT INTO `tpf_region` VALUES (2756, '罗江县', 3, 275);
INSERT INTO `tpf_region` VALUES (2757, '广汉市', 3, 275);
INSERT INTO `tpf_region` VALUES (2758, '什邡市', 3, 275);
INSERT INTO `tpf_region` VALUES (2759, '绵竹市', 3, 275);
INSERT INTO `tpf_region` VALUES (2760, '其它区', 3, 275);
INSERT INTO `tpf_region` VALUES (2761, '涪城区', 3, 276);
INSERT INTO `tpf_region` VALUES (2762, '游仙区', 3, 276);
INSERT INTO `tpf_region` VALUES (2763, '三台县', 3, 276);
INSERT INTO `tpf_region` VALUES (2764, '盐亭县', 3, 276);
INSERT INTO `tpf_region` VALUES (2765, '安县', 3, 276);
INSERT INTO `tpf_region` VALUES (2766, '梓潼县', 3, 276);
INSERT INTO `tpf_region` VALUES (2767, '北川羌族自治县', 3, 276);
INSERT INTO `tpf_region` VALUES (2768, '平武县', 3, 276);
INSERT INTO `tpf_region` VALUES (2769, '高新区', 3, 276);
INSERT INTO `tpf_region` VALUES (2770, '江油市', 3, 276);
INSERT INTO `tpf_region` VALUES (2771, '其它区', 3, 276);
INSERT INTO `tpf_region` VALUES (2772, '利州区', 3, 277);
INSERT INTO `tpf_region` VALUES (2773, '昭化区', 3, 277);
INSERT INTO `tpf_region` VALUES (2774, '朝天区', 3, 277);
INSERT INTO `tpf_region` VALUES (2775, '旺苍县', 3, 277);
INSERT INTO `tpf_region` VALUES (2776, '青川县', 3, 277);
INSERT INTO `tpf_region` VALUES (2777, '剑阁县', 3, 277);
INSERT INTO `tpf_region` VALUES (2778, '苍溪县', 3, 277);
INSERT INTO `tpf_region` VALUES (2779, '其它区', 3, 277);
INSERT INTO `tpf_region` VALUES (2780, '船山区', 3, 278);
INSERT INTO `tpf_region` VALUES (2781, '安居区', 3, 278);
INSERT INTO `tpf_region` VALUES (2782, '蓬溪县', 3, 278);
INSERT INTO `tpf_region` VALUES (2783, '射洪县', 3, 278);
INSERT INTO `tpf_region` VALUES (2784, '大英县', 3, 278);
INSERT INTO `tpf_region` VALUES (2785, '其它区', 3, 278);
INSERT INTO `tpf_region` VALUES (2786, '市中区', 3, 279);
INSERT INTO `tpf_region` VALUES (2787, '东兴区', 3, 279);
INSERT INTO `tpf_region` VALUES (2788, '威远县', 3, 279);
INSERT INTO `tpf_region` VALUES (2789, '资中县', 3, 279);
INSERT INTO `tpf_region` VALUES (2790, '隆昌县', 3, 279);
INSERT INTO `tpf_region` VALUES (2791, '其它区', 3, 279);
INSERT INTO `tpf_region` VALUES (2792, '市中区', 3, 280);
INSERT INTO `tpf_region` VALUES (2793, '沙湾区', 3, 280);
INSERT INTO `tpf_region` VALUES (2794, '五通桥区', 3, 280);
INSERT INTO `tpf_region` VALUES (2795, '金口河区', 3, 280);
INSERT INTO `tpf_region` VALUES (2796, '犍为县', 3, 280);
INSERT INTO `tpf_region` VALUES (2797, '井研县', 3, 280);
INSERT INTO `tpf_region` VALUES (2798, '夹江县', 3, 280);
INSERT INTO `tpf_region` VALUES (2799, '沐川县', 3, 280);
INSERT INTO `tpf_region` VALUES (2800, '峨边彝族自治县', 3, 280);
INSERT INTO `tpf_region` VALUES (2801, '马边彝族自治县', 3, 280);
INSERT INTO `tpf_region` VALUES (2802, '峨眉山市', 3, 280);
INSERT INTO `tpf_region` VALUES (2803, '其它区', 3, 280);
INSERT INTO `tpf_region` VALUES (2804, '顺庆区', 3, 281);
INSERT INTO `tpf_region` VALUES (2805, '高坪区', 3, 281);
INSERT INTO `tpf_region` VALUES (2806, '嘉陵区', 3, 281);
INSERT INTO `tpf_region` VALUES (2807, '南部县', 3, 281);
INSERT INTO `tpf_region` VALUES (2808, '营山县', 3, 281);
INSERT INTO `tpf_region` VALUES (2809, '蓬安县', 3, 281);
INSERT INTO `tpf_region` VALUES (2810, '仪陇县', 3, 281);
INSERT INTO `tpf_region` VALUES (2811, '西充县', 3, 281);
INSERT INTO `tpf_region` VALUES (2812, '阆中市', 3, 281);
INSERT INTO `tpf_region` VALUES (2813, '其它区', 3, 281);
INSERT INTO `tpf_region` VALUES (2814, '东坡区', 3, 282);
INSERT INTO `tpf_region` VALUES (2815, '仁寿县', 3, 282);
INSERT INTO `tpf_region` VALUES (2816, '彭山区', 3, 282);
INSERT INTO `tpf_region` VALUES (2817, '洪雅县', 3, 282);
INSERT INTO `tpf_region` VALUES (2818, '丹棱县', 3, 282);
INSERT INTO `tpf_region` VALUES (2819, '青神县', 3, 282);
INSERT INTO `tpf_region` VALUES (2820, '其它区', 3, 282);
INSERT INTO `tpf_region` VALUES (2821, '翠屏区', 3, 283);
INSERT INTO `tpf_region` VALUES (2822, '宜宾县', 3, 283);
INSERT INTO `tpf_region` VALUES (2823, '南溪区', 3, 283);
INSERT INTO `tpf_region` VALUES (2824, '江安县', 3, 283);
INSERT INTO `tpf_region` VALUES (2825, '长宁县', 3, 283);
INSERT INTO `tpf_region` VALUES (2826, '高县', 3, 283);
INSERT INTO `tpf_region` VALUES (2827, '珙县', 3, 283);
INSERT INTO `tpf_region` VALUES (2828, '筠连县', 3, 283);
INSERT INTO `tpf_region` VALUES (2829, '兴文县', 3, 283);
INSERT INTO `tpf_region` VALUES (2830, '屏山县', 3, 283);
INSERT INTO `tpf_region` VALUES (2831, '其它区', 3, 283);
INSERT INTO `tpf_region` VALUES (2832, '广安区', 3, 284);
INSERT INTO `tpf_region` VALUES (2833, '前锋区', 3, 284);
INSERT INTO `tpf_region` VALUES (2834, '岳池县', 3, 284);
INSERT INTO `tpf_region` VALUES (2835, '武胜县', 3, 284);
INSERT INTO `tpf_region` VALUES (2836, '邻水县', 3, 284);
INSERT INTO `tpf_region` VALUES (2837, '华蓥市', 3, 284);
INSERT INTO `tpf_region` VALUES (2838, '市辖区', 3, 284);
INSERT INTO `tpf_region` VALUES (2839, '其它区', 3, 284);
INSERT INTO `tpf_region` VALUES (2840, '通川区', 3, 285);
INSERT INTO `tpf_region` VALUES (2841, '达川区', 3, 285);
INSERT INTO `tpf_region` VALUES (2842, '宣汉县', 3, 285);
INSERT INTO `tpf_region` VALUES (2843, '开江县', 3, 285);
INSERT INTO `tpf_region` VALUES (2844, '大竹县', 3, 285);
INSERT INTO `tpf_region` VALUES (2845, '渠县', 3, 285);
INSERT INTO `tpf_region` VALUES (2846, '万源市', 3, 285);
INSERT INTO `tpf_region` VALUES (2847, '其它区', 3, 285);
INSERT INTO `tpf_region` VALUES (2848, '雨城区', 3, 286);
INSERT INTO `tpf_region` VALUES (2849, '名山区', 3, 286);
INSERT INTO `tpf_region` VALUES (2850, '荥经县', 3, 286);
INSERT INTO `tpf_region` VALUES (2851, '汉源县', 3, 286);
INSERT INTO `tpf_region` VALUES (2852, '石棉县', 3, 286);
INSERT INTO `tpf_region` VALUES (2853, '天全县', 3, 286);
INSERT INTO `tpf_region` VALUES (2854, '芦山县', 3, 286);
INSERT INTO `tpf_region` VALUES (2855, '宝兴县', 3, 286);
INSERT INTO `tpf_region` VALUES (2856, '其它区', 3, 286);
INSERT INTO `tpf_region` VALUES (2857, '巴州区', 3, 287);
INSERT INTO `tpf_region` VALUES (2858, '恩阳区', 3, 287);
INSERT INTO `tpf_region` VALUES (2859, '通江县', 3, 287);
INSERT INTO `tpf_region` VALUES (2860, '南江县', 3, 287);
INSERT INTO `tpf_region` VALUES (2861, '平昌县', 3, 287);
INSERT INTO `tpf_region` VALUES (2862, '其它区', 3, 287);
INSERT INTO `tpf_region` VALUES (2863, '雁江区', 3, 288);
INSERT INTO `tpf_region` VALUES (2864, '安岳县', 3, 288);
INSERT INTO `tpf_region` VALUES (2865, '乐至县', 3, 288);
INSERT INTO `tpf_region` VALUES (2866, '简阳市', 3, 288);
INSERT INTO `tpf_region` VALUES (2867, '其它区', 3, 288);
INSERT INTO `tpf_region` VALUES (2868, '汶川县', 3, 289);
INSERT INTO `tpf_region` VALUES (2869, '理县', 3, 289);
INSERT INTO `tpf_region` VALUES (2870, '茂县', 3, 289);
INSERT INTO `tpf_region` VALUES (2871, '松潘县', 3, 289);
INSERT INTO `tpf_region` VALUES (2872, '九寨沟县', 3, 289);
INSERT INTO `tpf_region` VALUES (2873, '金川县', 3, 289);
INSERT INTO `tpf_region` VALUES (2874, '小金县', 3, 289);
INSERT INTO `tpf_region` VALUES (2875, '黑水县', 3, 289);
INSERT INTO `tpf_region` VALUES (2876, '马尔康县', 3, 289);
INSERT INTO `tpf_region` VALUES (2877, '壤塘县', 3, 289);
INSERT INTO `tpf_region` VALUES (2878, '阿坝县', 3, 289);
INSERT INTO `tpf_region` VALUES (2879, '若尔盖县', 3, 289);
INSERT INTO `tpf_region` VALUES (2880, '红原县', 3, 289);
INSERT INTO `tpf_region` VALUES (2881, '其它区', 3, 289);
INSERT INTO `tpf_region` VALUES (2882, '康定市', 3, 290);
INSERT INTO `tpf_region` VALUES (2883, '泸定县', 3, 290);
INSERT INTO `tpf_region` VALUES (2884, '丹巴县', 3, 290);
INSERT INTO `tpf_region` VALUES (2885, '九龙县', 3, 290);
INSERT INTO `tpf_region` VALUES (2886, '雅江县', 3, 290);
INSERT INTO `tpf_region` VALUES (2887, '道孚县', 3, 290);
INSERT INTO `tpf_region` VALUES (2888, '炉霍县', 3, 290);
INSERT INTO `tpf_region` VALUES (2889, '甘孜县', 3, 290);
INSERT INTO `tpf_region` VALUES (2890, '新龙县', 3, 290);
INSERT INTO `tpf_region` VALUES (2891, '德格县', 3, 290);
INSERT INTO `tpf_region` VALUES (2892, '白玉县', 3, 290);
INSERT INTO `tpf_region` VALUES (2893, '石渠县', 3, 290);
INSERT INTO `tpf_region` VALUES (2894, '色达县', 3, 290);
INSERT INTO `tpf_region` VALUES (2895, '理塘县', 3, 290);
INSERT INTO `tpf_region` VALUES (2896, '巴塘县', 3, 290);
INSERT INTO `tpf_region` VALUES (2897, '乡城县', 3, 290);
INSERT INTO `tpf_region` VALUES (2898, '稻城县', 3, 290);
INSERT INTO `tpf_region` VALUES (2899, '得荣县', 3, 290);
INSERT INTO `tpf_region` VALUES (2900, '其它区', 3, 290);
INSERT INTO `tpf_region` VALUES (2901, '西昌市', 3, 291);
INSERT INTO `tpf_region` VALUES (2902, '木里藏族自治县', 3, 291);
INSERT INTO `tpf_region` VALUES (2903, '盐源县', 3, 291);
INSERT INTO `tpf_region` VALUES (2904, '德昌县', 3, 291);
INSERT INTO `tpf_region` VALUES (2905, '会理县', 3, 291);
INSERT INTO `tpf_region` VALUES (2906, '会东县', 3, 291);
INSERT INTO `tpf_region` VALUES (2907, '宁南县', 3, 291);
INSERT INTO `tpf_region` VALUES (2908, '普格县', 3, 291);
INSERT INTO `tpf_region` VALUES (2909, '布拖县', 3, 291);
INSERT INTO `tpf_region` VALUES (2910, '金阳县', 3, 291);
INSERT INTO `tpf_region` VALUES (2911, '昭觉县', 3, 291);
INSERT INTO `tpf_region` VALUES (2912, '喜德县', 3, 291);
INSERT INTO `tpf_region` VALUES (2913, '冕宁县', 3, 291);
INSERT INTO `tpf_region` VALUES (2914, '越西县', 3, 291);
INSERT INTO `tpf_region` VALUES (2915, '甘洛县', 3, 291);
INSERT INTO `tpf_region` VALUES (2916, '美姑县', 3, 291);
INSERT INTO `tpf_region` VALUES (2917, '雷波县', 3, 291);
INSERT INTO `tpf_region` VALUES (2918, '其它区', 3, 291);
INSERT INTO `tpf_region` VALUES (2919, '南明区', 3, 292);
INSERT INTO `tpf_region` VALUES (2920, '云岩区', 3, 292);
INSERT INTO `tpf_region` VALUES (2921, '花溪区', 3, 292);
INSERT INTO `tpf_region` VALUES (2922, '乌当区', 3, 292);
INSERT INTO `tpf_region` VALUES (2923, '白云区', 3, 292);
INSERT INTO `tpf_region` VALUES (2924, '小河区', 3, 292);
INSERT INTO `tpf_region` VALUES (2925, '开阳县', 3, 292);
INSERT INTO `tpf_region` VALUES (2926, '息烽县', 3, 292);
INSERT INTO `tpf_region` VALUES (2927, '修文县', 3, 292);
INSERT INTO `tpf_region` VALUES (2928, '观山湖区', 3, 292);
INSERT INTO `tpf_region` VALUES (2929, '清镇市', 3, 292);
INSERT INTO `tpf_region` VALUES (2930, '其它区', 3, 292);
INSERT INTO `tpf_region` VALUES (2931, '钟山区', 3, 293);
INSERT INTO `tpf_region` VALUES (2932, '六枝特区', 3, 293);
INSERT INTO `tpf_region` VALUES (2933, '水城县', 3, 293);
INSERT INTO `tpf_region` VALUES (2934, '盘县', 3, 293);
INSERT INTO `tpf_region` VALUES (2935, '其它区', 3, 293);
INSERT INTO `tpf_region` VALUES (2936, '红花岗区', 3, 294);
INSERT INTO `tpf_region` VALUES (2937, '汇川区', 3, 294);
INSERT INTO `tpf_region` VALUES (2938, '遵义县', 3, 294);
INSERT INTO `tpf_region` VALUES (2939, '桐梓县', 3, 294);
INSERT INTO `tpf_region` VALUES (2940, '绥阳县', 3, 294);
INSERT INTO `tpf_region` VALUES (2941, '正安县', 3, 294);
INSERT INTO `tpf_region` VALUES (2942, '道真仡佬族苗族自治县', 3, 294);
INSERT INTO `tpf_region` VALUES (2943, '务川仡佬族苗族自治县', 3, 294);
INSERT INTO `tpf_region` VALUES (2944, '凤冈县', 3, 294);
INSERT INTO `tpf_region` VALUES (2945, '湄潭县', 3, 294);
INSERT INTO `tpf_region` VALUES (2946, '余庆县', 3, 294);
INSERT INTO `tpf_region` VALUES (2947, '习水县', 3, 294);
INSERT INTO `tpf_region` VALUES (2948, '赤水市', 3, 294);
INSERT INTO `tpf_region` VALUES (2949, '仁怀市', 3, 294);
INSERT INTO `tpf_region` VALUES (2950, '其它区', 3, 294);
INSERT INTO `tpf_region` VALUES (2951, '西秀区', 3, 295);
INSERT INTO `tpf_region` VALUES (2952, '平坝区', 3, 295);
INSERT INTO `tpf_region` VALUES (2953, '普定县', 3, 295);
INSERT INTO `tpf_region` VALUES (2954, '镇宁布依族苗族自治县', 3, 295);
INSERT INTO `tpf_region` VALUES (2955, '关岭布依族苗族自治县', 3, 295);
INSERT INTO `tpf_region` VALUES (2956, '紫云苗族布依族自治县', 3, 295);
INSERT INTO `tpf_region` VALUES (2957, '其它区', 3, 295);
INSERT INTO `tpf_region` VALUES (2958, '碧江区', 3, 296);
INSERT INTO `tpf_region` VALUES (2959, '江口县', 3, 296);
INSERT INTO `tpf_region` VALUES (2960, '玉屏侗族自治县', 3, 296);
INSERT INTO `tpf_region` VALUES (2961, '石阡县', 3, 296);
INSERT INTO `tpf_region` VALUES (2962, '思南县', 3, 296);
INSERT INTO `tpf_region` VALUES (2963, '印江土家族苗族自治县', 3, 296);
INSERT INTO `tpf_region` VALUES (2964, '德江县', 3, 296);
INSERT INTO `tpf_region` VALUES (2965, '沿河土家族自治县', 3, 296);
INSERT INTO `tpf_region` VALUES (2966, '松桃苗族自治县', 3, 296);
INSERT INTO `tpf_region` VALUES (2967, '万山区', 3, 296);
INSERT INTO `tpf_region` VALUES (2968, '其它区', 3, 296);
INSERT INTO `tpf_region` VALUES (2969, '兴义市', 3, 297);
INSERT INTO `tpf_region` VALUES (2970, '兴仁县', 3, 297);
INSERT INTO `tpf_region` VALUES (2971, '普安县', 3, 297);
INSERT INTO `tpf_region` VALUES (2972, '晴隆县', 3, 297);
INSERT INTO `tpf_region` VALUES (2973, '贞丰县', 3, 297);
INSERT INTO `tpf_region` VALUES (2974, '望谟县', 3, 297);
INSERT INTO `tpf_region` VALUES (2975, '册亨县', 3, 297);
INSERT INTO `tpf_region` VALUES (2976, '安龙县', 3, 297);
INSERT INTO `tpf_region` VALUES (2977, '其它区', 3, 297);
INSERT INTO `tpf_region` VALUES (2978, '七星关区', 3, 298);
INSERT INTO `tpf_region` VALUES (2979, '大方县', 3, 298);
INSERT INTO `tpf_region` VALUES (2980, '黔西县', 3, 298);
INSERT INTO `tpf_region` VALUES (2981, '金沙县', 3, 298);
INSERT INTO `tpf_region` VALUES (2982, '织金县', 3, 298);
INSERT INTO `tpf_region` VALUES (2983, '纳雍县', 3, 298);
INSERT INTO `tpf_region` VALUES (2984, '威宁彝族回族苗族自治县', 3, 298);
INSERT INTO `tpf_region` VALUES (2985, '赫章县', 3, 298);
INSERT INTO `tpf_region` VALUES (2986, '其它区', 3, 298);
INSERT INTO `tpf_region` VALUES (2987, '凯里市', 3, 299);
INSERT INTO `tpf_region` VALUES (2988, '黄平县', 3, 299);
INSERT INTO `tpf_region` VALUES (2989, '施秉县', 3, 299);
INSERT INTO `tpf_region` VALUES (2990, '三穗县', 3, 299);
INSERT INTO `tpf_region` VALUES (2991, '镇远县', 3, 299);
INSERT INTO `tpf_region` VALUES (2992, '岑巩县', 3, 299);
INSERT INTO `tpf_region` VALUES (2993, '天柱县', 3, 299);
INSERT INTO `tpf_region` VALUES (2994, '锦屏县', 3, 299);
INSERT INTO `tpf_region` VALUES (2995, '剑河县', 3, 299);
INSERT INTO `tpf_region` VALUES (2996, '台江县', 3, 299);
INSERT INTO `tpf_region` VALUES (2997, '黎平县', 3, 299);
INSERT INTO `tpf_region` VALUES (2998, '榕江县', 3, 299);
INSERT INTO `tpf_region` VALUES (2999, '从江县', 3, 299);
INSERT INTO `tpf_region` VALUES (3000, '雷山县', 3, 299);
INSERT INTO `tpf_region` VALUES (3001, '麻江县', 3, 299);
INSERT INTO `tpf_region` VALUES (3002, '丹寨县', 3, 299);
INSERT INTO `tpf_region` VALUES (3003, '其它区', 3, 299);
INSERT INTO `tpf_region` VALUES (3004, '都匀市', 3, 300);
INSERT INTO `tpf_region` VALUES (3005, '福泉市', 3, 300);
INSERT INTO `tpf_region` VALUES (3006, '荔波县', 3, 300);
INSERT INTO `tpf_region` VALUES (3007, '贵定县', 3, 300);
INSERT INTO `tpf_region` VALUES (3008, '瓮安县', 3, 300);
INSERT INTO `tpf_region` VALUES (3009, '独山县', 3, 300);
INSERT INTO `tpf_region` VALUES (3010, '平塘县', 3, 300);
INSERT INTO `tpf_region` VALUES (3011, '罗甸县', 3, 300);
INSERT INTO `tpf_region` VALUES (3012, '长顺县', 3, 300);
INSERT INTO `tpf_region` VALUES (3013, '龙里县', 3, 300);
INSERT INTO `tpf_region` VALUES (3014, '惠水县', 3, 300);
INSERT INTO `tpf_region` VALUES (3015, '三都水族自治县', 3, 300);
INSERT INTO `tpf_region` VALUES (3016, '其它区', 3, 300);
INSERT INTO `tpf_region` VALUES (3017, '五华区', 3, 301);
INSERT INTO `tpf_region` VALUES (3018, '盘龙区', 3, 301);
INSERT INTO `tpf_region` VALUES (3019, '官渡区', 3, 301);
INSERT INTO `tpf_region` VALUES (3020, '西山区', 3, 301);
INSERT INTO `tpf_region` VALUES (3021, '东川区', 3, 301);
INSERT INTO `tpf_region` VALUES (3022, '呈贡区', 3, 301);
INSERT INTO `tpf_region` VALUES (3023, '晋宁县', 3, 301);
INSERT INTO `tpf_region` VALUES (3024, '富民县', 3, 301);
INSERT INTO `tpf_region` VALUES (3025, '宜良县', 3, 301);
INSERT INTO `tpf_region` VALUES (3026, '石林彝族自治县', 3, 301);
INSERT INTO `tpf_region` VALUES (3027, '嵩明县', 3, 301);
INSERT INTO `tpf_region` VALUES (3028, '禄劝彝族苗族自治县', 3, 301);
INSERT INTO `tpf_region` VALUES (3029, '寻甸回族彝族自治县', 3, 301);
INSERT INTO `tpf_region` VALUES (3030, '安宁市', 3, 301);
INSERT INTO `tpf_region` VALUES (3031, '其它区', 3, 301);
INSERT INTO `tpf_region` VALUES (3032, '麒麟区', 3, 302);
INSERT INTO `tpf_region` VALUES (3033, '马龙县', 3, 302);
INSERT INTO `tpf_region` VALUES (3034, '陆良县', 3, 302);
INSERT INTO `tpf_region` VALUES (3035, '师宗县', 3, 302);
INSERT INTO `tpf_region` VALUES (3036, '罗平县', 3, 302);
INSERT INTO `tpf_region` VALUES (3037, '富源县', 3, 302);
INSERT INTO `tpf_region` VALUES (3038, '会泽县', 3, 302);
INSERT INTO `tpf_region` VALUES (3039, '沾益县', 3, 302);
INSERT INTO `tpf_region` VALUES (3040, '宣威市', 3, 302);
INSERT INTO `tpf_region` VALUES (3041, '其它区', 3, 302);
INSERT INTO `tpf_region` VALUES (3042, '红塔区', 3, 303);
INSERT INTO `tpf_region` VALUES (3043, '江川县', 3, 303);
INSERT INTO `tpf_region` VALUES (3044, '澄江县', 3, 303);
INSERT INTO `tpf_region` VALUES (3045, '通海县', 3, 303);
INSERT INTO `tpf_region` VALUES (3046, '华宁县', 3, 303);
INSERT INTO `tpf_region` VALUES (3047, '易门县', 3, 303);
INSERT INTO `tpf_region` VALUES (3048, '峨山彝族自治县', 3, 303);
INSERT INTO `tpf_region` VALUES (3049, '新平彝族傣族自治县', 3, 303);
INSERT INTO `tpf_region` VALUES (3050, '元江哈尼族彝族傣族自治县', 3, 303);
INSERT INTO `tpf_region` VALUES (3051, '其它区', 3, 303);
INSERT INTO `tpf_region` VALUES (3052, '隆阳区', 3, 304);
INSERT INTO `tpf_region` VALUES (3053, '施甸县', 3, 304);
INSERT INTO `tpf_region` VALUES (3054, '腾冲县', 3, 304);
INSERT INTO `tpf_region` VALUES (3055, '龙陵县', 3, 304);
INSERT INTO `tpf_region` VALUES (3056, '昌宁县', 3, 304);
INSERT INTO `tpf_region` VALUES (3057, '其它区', 3, 304);
INSERT INTO `tpf_region` VALUES (3058, '昭阳区', 3, 305);
INSERT INTO `tpf_region` VALUES (3059, '鲁甸县', 3, 305);
INSERT INTO `tpf_region` VALUES (3060, '巧家县', 3, 305);
INSERT INTO `tpf_region` VALUES (3061, '盐津县', 3, 305);
INSERT INTO `tpf_region` VALUES (3062, '大关县', 3, 305);
INSERT INTO `tpf_region` VALUES (3063, '永善县', 3, 305);
INSERT INTO `tpf_region` VALUES (3064, '绥江县', 3, 305);
INSERT INTO `tpf_region` VALUES (3065, '镇雄县', 3, 305);
INSERT INTO `tpf_region` VALUES (3066, '彝良县', 3, 305);
INSERT INTO `tpf_region` VALUES (3067, '威信县', 3, 305);
INSERT INTO `tpf_region` VALUES (3068, '水富县', 3, 305);
INSERT INTO `tpf_region` VALUES (3069, '其它区', 3, 305);
INSERT INTO `tpf_region` VALUES (3070, '古城区', 3, 306);
INSERT INTO `tpf_region` VALUES (3071, '玉龙纳西族自治县', 3, 306);
INSERT INTO `tpf_region` VALUES (3072, '永胜县', 3, 306);
INSERT INTO `tpf_region` VALUES (3073, '华坪县', 3, 306);
INSERT INTO `tpf_region` VALUES (3074, '宁蒗彝族自治县', 3, 306);
INSERT INTO `tpf_region` VALUES (3075, '其它区', 3, 306);
INSERT INTO `tpf_region` VALUES (3076, '思茅区', 3, 307);
INSERT INTO `tpf_region` VALUES (3077, '宁洱哈尼族彝族自治县', 3, 307);
INSERT INTO `tpf_region` VALUES (3078, '墨江哈尼族自治县', 3, 307);
INSERT INTO `tpf_region` VALUES (3079, '景东彝族自治县', 3, 307);
INSERT INTO `tpf_region` VALUES (3080, '景谷傣族彝族自治县', 3, 307);
INSERT INTO `tpf_region` VALUES (3081, '镇沅彝族哈尼族拉祜族自治县', 3, 307);
INSERT INTO `tpf_region` VALUES (3082, '江城哈尼族彝族自治县', 3, 307);
INSERT INTO `tpf_region` VALUES (3083, '孟连傣族拉祜族佤族自治县', 3, 307);
INSERT INTO `tpf_region` VALUES (3084, '澜沧拉祜族自治县', 3, 307);
INSERT INTO `tpf_region` VALUES (3085, '西盟佤族自治县', 3, 307);
INSERT INTO `tpf_region` VALUES (3086, '其它区', 3, 307);
INSERT INTO `tpf_region` VALUES (3087, '临翔区', 3, 308);
INSERT INTO `tpf_region` VALUES (3088, '凤庆县', 3, 308);
INSERT INTO `tpf_region` VALUES (3089, '云县', 3, 308);
INSERT INTO `tpf_region` VALUES (3090, '永德县', 3, 308);
INSERT INTO `tpf_region` VALUES (3091, '镇康县', 3, 308);
INSERT INTO `tpf_region` VALUES (3092, '双江拉祜族佤族布朗族傣族自治县', 3, 308);
INSERT INTO `tpf_region` VALUES (3093, '耿马傣族佤族自治县', 3, 308);
INSERT INTO `tpf_region` VALUES (3094, '沧源佤族自治县', 3, 308);
INSERT INTO `tpf_region` VALUES (3095, '其它区', 3, 308);
INSERT INTO `tpf_region` VALUES (3096, '楚雄市', 3, 309);
INSERT INTO `tpf_region` VALUES (3097, '双柏县', 3, 309);
INSERT INTO `tpf_region` VALUES (3098, '牟定县', 3, 309);
INSERT INTO `tpf_region` VALUES (3099, '南华县', 3, 309);
INSERT INTO `tpf_region` VALUES (3100, '姚安县', 3, 309);
INSERT INTO `tpf_region` VALUES (3101, '大姚县', 3, 309);
INSERT INTO `tpf_region` VALUES (3102, '永仁县', 3, 309);
INSERT INTO `tpf_region` VALUES (3103, '元谋县', 3, 309);
INSERT INTO `tpf_region` VALUES (3104, '武定县', 3, 309);
INSERT INTO `tpf_region` VALUES (3105, '禄丰县', 3, 309);
INSERT INTO `tpf_region` VALUES (3106, '其它区', 3, 309);
INSERT INTO `tpf_region` VALUES (3107, '个旧市', 3, 310);
INSERT INTO `tpf_region` VALUES (3108, '开远市', 3, 310);
INSERT INTO `tpf_region` VALUES (3109, '蒙自市', 3, 310);
INSERT INTO `tpf_region` VALUES (3110, '屏边苗族自治县', 3, 310);
INSERT INTO `tpf_region` VALUES (3111, '建水县', 3, 310);
INSERT INTO `tpf_region` VALUES (3112, '石屏县', 3, 310);
INSERT INTO `tpf_region` VALUES (3113, '弥勒市', 3, 310);
INSERT INTO `tpf_region` VALUES (3114, '泸西县', 3, 310);
INSERT INTO `tpf_region` VALUES (3115, '元阳县', 3, 310);
INSERT INTO `tpf_region` VALUES (3116, '红河县', 3, 310);
INSERT INTO `tpf_region` VALUES (3117, '金平苗族瑶族傣族自治县', 3, 310);
INSERT INTO `tpf_region` VALUES (3118, '绿春县', 3, 310);
INSERT INTO `tpf_region` VALUES (3119, '河口瑶族自治县', 3, 310);
INSERT INTO `tpf_region` VALUES (3120, '其它区', 3, 310);
INSERT INTO `tpf_region` VALUES (3121, '文山市', 3, 311);
INSERT INTO `tpf_region` VALUES (3122, '砚山县', 3, 311);
INSERT INTO `tpf_region` VALUES (3123, '西畴县', 3, 311);
INSERT INTO `tpf_region` VALUES (3124, '麻栗坡县', 3, 311);
INSERT INTO `tpf_region` VALUES (3125, '马关县', 3, 311);
INSERT INTO `tpf_region` VALUES (3126, '丘北县', 3, 311);
INSERT INTO `tpf_region` VALUES (3127, '广南县', 3, 311);
INSERT INTO `tpf_region` VALUES (3128, '富宁县', 3, 311);
INSERT INTO `tpf_region` VALUES (3129, '其它区', 3, 311);
INSERT INTO `tpf_region` VALUES (3130, '景洪市', 3, 312);
INSERT INTO `tpf_region` VALUES (3131, '勐海县', 3, 312);
INSERT INTO `tpf_region` VALUES (3132, '勐腊县', 3, 312);
INSERT INTO `tpf_region` VALUES (3133, '其它区', 3, 312);
INSERT INTO `tpf_region` VALUES (3134, '大理市', 3, 313);
INSERT INTO `tpf_region` VALUES (3135, '漾濞彝族自治县', 3, 313);
INSERT INTO `tpf_region` VALUES (3136, '祥云县', 3, 313);
INSERT INTO `tpf_region` VALUES (3137, '宾川县', 3, 313);
INSERT INTO `tpf_region` VALUES (3138, '弥渡县', 3, 313);
INSERT INTO `tpf_region` VALUES (3139, '南涧彝族自治县', 3, 313);
INSERT INTO `tpf_region` VALUES (3140, '巍山彝族回族自治县', 3, 313);
INSERT INTO `tpf_region` VALUES (3141, '永平县', 3, 313);
INSERT INTO `tpf_region` VALUES (3142, '云龙县', 3, 313);
INSERT INTO `tpf_region` VALUES (3143, '洱源县', 3, 313);
INSERT INTO `tpf_region` VALUES (3144, '剑川县', 3, 313);
INSERT INTO `tpf_region` VALUES (3145, '鹤庆县', 3, 313);
INSERT INTO `tpf_region` VALUES (3146, '其它区', 3, 313);
INSERT INTO `tpf_region` VALUES (3147, '瑞丽市', 3, 314);
INSERT INTO `tpf_region` VALUES (3148, '芒市', 3, 314);
INSERT INTO `tpf_region` VALUES (3149, '梁河县', 3, 314);
INSERT INTO `tpf_region` VALUES (3150, '盈江县', 3, 314);
INSERT INTO `tpf_region` VALUES (3151, '陇川县', 3, 314);
INSERT INTO `tpf_region` VALUES (3152, '其它区', 3, 314);
INSERT INTO `tpf_region` VALUES (3153, '泸水县', 3, 315);
INSERT INTO `tpf_region` VALUES (3154, '福贡县', 3, 315);
INSERT INTO `tpf_region` VALUES (3155, '贡山独龙族怒族自治县', 3, 315);
INSERT INTO `tpf_region` VALUES (3156, '兰坪白族普米族自治县', 3, 315);
INSERT INTO `tpf_region` VALUES (3157, '其它区', 3, 315);
INSERT INTO `tpf_region` VALUES (3158, '香格里拉市', 3, 316);
INSERT INTO `tpf_region` VALUES (3159, '德钦县', 3, 316);
INSERT INTO `tpf_region` VALUES (3160, '维西傈僳族自治县', 3, 316);
INSERT INTO `tpf_region` VALUES (3161, '其它区', 3, 316);
INSERT INTO `tpf_region` VALUES (3162, '城关区', 3, 317);
INSERT INTO `tpf_region` VALUES (3163, '林周县', 3, 317);
INSERT INTO `tpf_region` VALUES (3164, '当雄县', 3, 317);
INSERT INTO `tpf_region` VALUES (3165, '尼木县', 3, 317);
INSERT INTO `tpf_region` VALUES (3166, '曲水县', 3, 317);
INSERT INTO `tpf_region` VALUES (3167, '堆龙德庆县', 3, 317);
INSERT INTO `tpf_region` VALUES (3168, '达孜县', 3, 317);
INSERT INTO `tpf_region` VALUES (3169, '墨竹工卡县', 3, 317);
INSERT INTO `tpf_region` VALUES (3170, '其它区', 3, 317);
INSERT INTO `tpf_region` VALUES (3171, '卡若区', 3, 318);
INSERT INTO `tpf_region` VALUES (3172, '江达县', 3, 318);
INSERT INTO `tpf_region` VALUES (3173, '贡觉县', 3, 318);
INSERT INTO `tpf_region` VALUES (3174, '类乌齐县', 3, 318);
INSERT INTO `tpf_region` VALUES (3175, '丁青县', 3, 318);
INSERT INTO `tpf_region` VALUES (3176, '察雅县', 3, 318);
INSERT INTO `tpf_region` VALUES (3177, '八宿县', 3, 318);
INSERT INTO `tpf_region` VALUES (3178, '左贡县', 3, 318);
INSERT INTO `tpf_region` VALUES (3179, '芒康县', 3, 318);
INSERT INTO `tpf_region` VALUES (3180, '洛隆县', 3, 318);
INSERT INTO `tpf_region` VALUES (3181, '边坝县', 3, 318);
INSERT INTO `tpf_region` VALUES (3182, '其它区', 3, 318);
INSERT INTO `tpf_region` VALUES (3183, '乃东县', 3, 319);
INSERT INTO `tpf_region` VALUES (3184, '扎囊县', 3, 319);
INSERT INTO `tpf_region` VALUES (3185, '贡嘎县', 3, 319);
INSERT INTO `tpf_region` VALUES (3186, '桑日县', 3, 319);
INSERT INTO `tpf_region` VALUES (3187, '琼结县', 3, 319);
INSERT INTO `tpf_region` VALUES (3188, '曲松县', 3, 319);
INSERT INTO `tpf_region` VALUES (3189, '措美县', 3, 319);
INSERT INTO `tpf_region` VALUES (3190, '洛扎县', 3, 319);
INSERT INTO `tpf_region` VALUES (3191, '加查县', 3, 319);
INSERT INTO `tpf_region` VALUES (3192, '隆子县', 3, 319);
INSERT INTO `tpf_region` VALUES (3193, '错那县', 3, 319);
INSERT INTO `tpf_region` VALUES (3194, '浪卡子县', 3, 319);
INSERT INTO `tpf_region` VALUES (3195, '其它区', 3, 319);
INSERT INTO `tpf_region` VALUES (3196, '桑珠孜区', 3, 320);
INSERT INTO `tpf_region` VALUES (3197, '南木林县', 3, 320);
INSERT INTO `tpf_region` VALUES (3198, '江孜县', 3, 320);
INSERT INTO `tpf_region` VALUES (3199, '定日县', 3, 320);
INSERT INTO `tpf_region` VALUES (3200, '萨迦县', 3, 320);
INSERT INTO `tpf_region` VALUES (3201, '拉孜县', 3, 320);
INSERT INTO `tpf_region` VALUES (3202, '昂仁县', 3, 320);
INSERT INTO `tpf_region` VALUES (3203, '谢通门县', 3, 320);
INSERT INTO `tpf_region` VALUES (3204, '白朗县', 3, 320);
INSERT INTO `tpf_region` VALUES (3205, '仁布县', 3, 320);
INSERT INTO `tpf_region` VALUES (3206, '康马县', 3, 320);
INSERT INTO `tpf_region` VALUES (3207, '定结县', 3, 320);
INSERT INTO `tpf_region` VALUES (3208, '仲巴县', 3, 320);
INSERT INTO `tpf_region` VALUES (3209, '亚东县', 3, 320);
INSERT INTO `tpf_region` VALUES (3210, '吉隆县', 3, 320);
INSERT INTO `tpf_region` VALUES (3211, '聂拉木县', 3, 320);
INSERT INTO `tpf_region` VALUES (3212, '萨嘎县', 3, 320);
INSERT INTO `tpf_region` VALUES (3213, '岗巴县', 3, 320);
INSERT INTO `tpf_region` VALUES (3214, '其它区', 3, 320);
INSERT INTO `tpf_region` VALUES (3215, '那曲县', 3, 321);
INSERT INTO `tpf_region` VALUES (3216, '嘉黎县', 3, 321);
INSERT INTO `tpf_region` VALUES (3217, '比如县', 3, 321);
INSERT INTO `tpf_region` VALUES (3218, '聂荣县', 3, 321);
INSERT INTO `tpf_region` VALUES (3219, '安多县', 3, 321);
INSERT INTO `tpf_region` VALUES (3220, '申扎县', 3, 321);
INSERT INTO `tpf_region` VALUES (3221, '索县', 3, 321);
INSERT INTO `tpf_region` VALUES (3222, '班戈县', 3, 321);
INSERT INTO `tpf_region` VALUES (3223, '巴青县', 3, 321);
INSERT INTO `tpf_region` VALUES (3224, '尼玛县', 3, 321);
INSERT INTO `tpf_region` VALUES (3225, '其它区', 3, 321);
INSERT INTO `tpf_region` VALUES (3226, '双湖县', 3, 321);
INSERT INTO `tpf_region` VALUES (3227, '普兰县', 3, 322);
INSERT INTO `tpf_region` VALUES (3228, '札达县', 3, 322);
INSERT INTO `tpf_region` VALUES (3229, '噶尔县', 3, 322);
INSERT INTO `tpf_region` VALUES (3230, '日土县', 3, 322);
INSERT INTO `tpf_region` VALUES (3231, '革吉县', 3, 322);
INSERT INTO `tpf_region` VALUES (3232, '改则县', 3, 322);
INSERT INTO `tpf_region` VALUES (3233, '措勤县', 3, 322);
INSERT INTO `tpf_region` VALUES (3234, '其它区', 3, 322);
INSERT INTO `tpf_region` VALUES (3235, '巴宜区', 3, 323);
INSERT INTO `tpf_region` VALUES (3236, '工布江达县', 3, 323);
INSERT INTO `tpf_region` VALUES (3237, '米林县', 3, 323);
INSERT INTO `tpf_region` VALUES (3238, '墨脱县', 3, 323);
INSERT INTO `tpf_region` VALUES (3239, '波密县', 3, 323);
INSERT INTO `tpf_region` VALUES (3240, '察隅县', 3, 323);
INSERT INTO `tpf_region` VALUES (3241, '朗县', 3, 323);
INSERT INTO `tpf_region` VALUES (3242, '其它区', 3, 323);
INSERT INTO `tpf_region` VALUES (3243, '新城区', 3, 324);
INSERT INTO `tpf_region` VALUES (3244, '碑林区', 3, 324);
INSERT INTO `tpf_region` VALUES (3245, '莲湖区', 3, 324);
INSERT INTO `tpf_region` VALUES (3246, '灞桥区', 3, 324);
INSERT INTO `tpf_region` VALUES (3247, '未央区', 3, 324);
INSERT INTO `tpf_region` VALUES (3248, '雁塔区', 3, 324);
INSERT INTO `tpf_region` VALUES (3249, '阎良区', 3, 324);
INSERT INTO `tpf_region` VALUES (3250, '临潼区', 3, 324);
INSERT INTO `tpf_region` VALUES (3251, '长安区', 3, 324);
INSERT INTO `tpf_region` VALUES (3252, '蓝田县', 3, 324);
INSERT INTO `tpf_region` VALUES (3253, '周至县', 3, 324);
INSERT INTO `tpf_region` VALUES (3254, '户县', 3, 324);
INSERT INTO `tpf_region` VALUES (3255, '高陵区', 3, 324);
INSERT INTO `tpf_region` VALUES (3256, '其它区', 3, 324);
INSERT INTO `tpf_region` VALUES (3257, '王益区', 3, 325);
INSERT INTO `tpf_region` VALUES (3258, '印台区', 3, 325);
INSERT INTO `tpf_region` VALUES (3259, '耀州区', 3, 325);
INSERT INTO `tpf_region` VALUES (3260, '宜君县', 3, 325);
INSERT INTO `tpf_region` VALUES (3261, '其它区', 3, 325);
INSERT INTO `tpf_region` VALUES (3262, '渭滨区', 3, 326);
INSERT INTO `tpf_region` VALUES (3263, '金台区', 3, 326);
INSERT INTO `tpf_region` VALUES (3264, '陈仓区', 3, 326);
INSERT INTO `tpf_region` VALUES (3265, '凤翔县', 3, 326);
INSERT INTO `tpf_region` VALUES (3266, '岐山县', 3, 326);
INSERT INTO `tpf_region` VALUES (3267, '扶风县', 3, 326);
INSERT INTO `tpf_region` VALUES (3268, '眉县', 3, 326);
INSERT INTO `tpf_region` VALUES (3269, '陇县', 3, 326);
INSERT INTO `tpf_region` VALUES (3270, '千阳县', 3, 326);
INSERT INTO `tpf_region` VALUES (3271, '麟游县', 3, 326);
INSERT INTO `tpf_region` VALUES (3272, '凤县', 3, 326);
INSERT INTO `tpf_region` VALUES (3273, '太白县', 3, 326);
INSERT INTO `tpf_region` VALUES (3274, '其它区', 3, 326);
INSERT INTO `tpf_region` VALUES (3275, '秦都区', 3, 327);
INSERT INTO `tpf_region` VALUES (3276, '杨陵区', 3, 327);
INSERT INTO `tpf_region` VALUES (3277, '渭城区', 3, 327);
INSERT INTO `tpf_region` VALUES (3278, '三原县', 3, 327);
INSERT INTO `tpf_region` VALUES (3279, '泾阳县', 3, 327);
INSERT INTO `tpf_region` VALUES (3280, '乾县', 3, 327);
INSERT INTO `tpf_region` VALUES (3281, '礼泉县', 3, 327);
INSERT INTO `tpf_region` VALUES (3282, '永寿县', 3, 327);
INSERT INTO `tpf_region` VALUES (3283, '彬县', 3, 327);
INSERT INTO `tpf_region` VALUES (3284, '长武县', 3, 327);
INSERT INTO `tpf_region` VALUES (3285, '旬邑县', 3, 327);
INSERT INTO `tpf_region` VALUES (3286, '淳化县', 3, 327);
INSERT INTO `tpf_region` VALUES (3287, '武功县', 3, 327);
INSERT INTO `tpf_region` VALUES (3288, '兴平市', 3, 327);
INSERT INTO `tpf_region` VALUES (3289, '其它区', 3, 327);
INSERT INTO `tpf_region` VALUES (3290, '临渭区', 3, 328);
INSERT INTO `tpf_region` VALUES (3291, '华县', 3, 328);
INSERT INTO `tpf_region` VALUES (3292, '潼关县', 3, 328);
INSERT INTO `tpf_region` VALUES (3293, '大荔县', 3, 328);
INSERT INTO `tpf_region` VALUES (3294, '合阳县', 3, 328);
INSERT INTO `tpf_region` VALUES (3295, '澄城县', 3, 328);
INSERT INTO `tpf_region` VALUES (3296, '蒲城县', 3, 328);
INSERT INTO `tpf_region` VALUES (3297, '白水县', 3, 328);
INSERT INTO `tpf_region` VALUES (3298, '富平县', 3, 328);
INSERT INTO `tpf_region` VALUES (3299, '韩城市', 3, 328);
INSERT INTO `tpf_region` VALUES (3300, '华阴市', 3, 328);
INSERT INTO `tpf_region` VALUES (3301, '其它区', 3, 328);
INSERT INTO `tpf_region` VALUES (3302, '宝塔区', 3, 329);
INSERT INTO `tpf_region` VALUES (3303, '延长县', 3, 329);
INSERT INTO `tpf_region` VALUES (3304, '延川县', 3, 329);
INSERT INTO `tpf_region` VALUES (3305, '子长县', 3, 329);
INSERT INTO `tpf_region` VALUES (3306, '安塞县', 3, 329);
INSERT INTO `tpf_region` VALUES (3307, '志丹县', 3, 329);
INSERT INTO `tpf_region` VALUES (3308, '吴起县', 3, 329);
INSERT INTO `tpf_region` VALUES (3309, '甘泉县', 3, 329);
INSERT INTO `tpf_region` VALUES (3310, '富县', 3, 329);
INSERT INTO `tpf_region` VALUES (3311, '洛川县', 3, 329);
INSERT INTO `tpf_region` VALUES (3312, '宜川县', 3, 329);
INSERT INTO `tpf_region` VALUES (3313, '黄龙县', 3, 329);
INSERT INTO `tpf_region` VALUES (3314, '黄陵县', 3, 329);
INSERT INTO `tpf_region` VALUES (3315, '其它区', 3, 329);
INSERT INTO `tpf_region` VALUES (3316, '汉台区', 3, 330);
INSERT INTO `tpf_region` VALUES (3317, '南郑县', 3, 330);
INSERT INTO `tpf_region` VALUES (3318, '城固县', 3, 330);
INSERT INTO `tpf_region` VALUES (3319, '洋县', 3, 330);
INSERT INTO `tpf_region` VALUES (3320, '西乡县', 3, 330);
INSERT INTO `tpf_region` VALUES (3321, '勉县', 3, 330);
INSERT INTO `tpf_region` VALUES (3322, '宁强县', 3, 330);
INSERT INTO `tpf_region` VALUES (3323, '略阳县', 3, 330);
INSERT INTO `tpf_region` VALUES (3324, '镇巴县', 3, 330);
INSERT INTO `tpf_region` VALUES (3325, '留坝县', 3, 330);
INSERT INTO `tpf_region` VALUES (3326, '佛坪县', 3, 330);
INSERT INTO `tpf_region` VALUES (3327, '其它区', 3, 330);
INSERT INTO `tpf_region` VALUES (3328, '榆阳区', 3, 331);
INSERT INTO `tpf_region` VALUES (3329, '神木县', 3, 331);
INSERT INTO `tpf_region` VALUES (3330, '府谷县', 3, 331);
INSERT INTO `tpf_region` VALUES (3331, '横山县', 3, 331);
INSERT INTO `tpf_region` VALUES (3332, '靖边县', 3, 331);
INSERT INTO `tpf_region` VALUES (3333, '定边县', 3, 331);
INSERT INTO `tpf_region` VALUES (3334, '绥德县', 3, 331);
INSERT INTO `tpf_region` VALUES (3335, '米脂县', 3, 331);
INSERT INTO `tpf_region` VALUES (3336, '佳县', 3, 331);
INSERT INTO `tpf_region` VALUES (3337, '吴堡县', 3, 331);
INSERT INTO `tpf_region` VALUES (3338, '清涧县', 3, 331);
INSERT INTO `tpf_region` VALUES (3339, '子洲县', 3, 331);
INSERT INTO `tpf_region` VALUES (3340, '其它区', 3, 331);
INSERT INTO `tpf_region` VALUES (3341, '汉滨区', 3, 332);
INSERT INTO `tpf_region` VALUES (3342, '汉阴县', 3, 332);
INSERT INTO `tpf_region` VALUES (3343, '石泉县', 3, 332);
INSERT INTO `tpf_region` VALUES (3344, '宁陕县', 3, 332);
INSERT INTO `tpf_region` VALUES (3345, '紫阳县', 3, 332);
INSERT INTO `tpf_region` VALUES (3346, '岚皋县', 3, 332);
INSERT INTO `tpf_region` VALUES (3347, '平利县', 3, 332);
INSERT INTO `tpf_region` VALUES (3348, '镇坪县', 3, 332);
INSERT INTO `tpf_region` VALUES (3349, '旬阳县', 3, 332);
INSERT INTO `tpf_region` VALUES (3350, '白河县', 3, 332);
INSERT INTO `tpf_region` VALUES (3351, '其它区', 3, 332);
INSERT INTO `tpf_region` VALUES (3352, '商州区', 3, 333);
INSERT INTO `tpf_region` VALUES (3353, '洛南县', 3, 333);
INSERT INTO `tpf_region` VALUES (3354, '丹凤县', 3, 333);
INSERT INTO `tpf_region` VALUES (3355, '商南县', 3, 333);
INSERT INTO `tpf_region` VALUES (3356, '山阳县', 3, 333);
INSERT INTO `tpf_region` VALUES (3357, '镇安县', 3, 333);
INSERT INTO `tpf_region` VALUES (3358, '柞水县', 3, 333);
INSERT INTO `tpf_region` VALUES (3359, '其它区', 3, 333);
INSERT INTO `tpf_region` VALUES (3360, '城关区', 3, 334);
INSERT INTO `tpf_region` VALUES (3361, '七里河区', 3, 334);
INSERT INTO `tpf_region` VALUES (3362, '西固区', 3, 334);
INSERT INTO `tpf_region` VALUES (3363, '安宁区', 3, 334);
INSERT INTO `tpf_region` VALUES (3364, '红古区', 3, 334);
INSERT INTO `tpf_region` VALUES (3365, '永登县', 3, 334);
INSERT INTO `tpf_region` VALUES (3366, '皋兰县', 3, 334);
INSERT INTO `tpf_region` VALUES (3367, '榆中县', 3, 334);
INSERT INTO `tpf_region` VALUES (3368, '其它区', 3, 334);
INSERT INTO `tpf_region` VALUES (3369, '金川区', 3, 336);
INSERT INTO `tpf_region` VALUES (3370, '永昌县', 3, 336);
INSERT INTO `tpf_region` VALUES (3371, '其它区', 3, 336);
INSERT INTO `tpf_region` VALUES (3372, '白银区', 3, 337);
INSERT INTO `tpf_region` VALUES (3373, '平川区', 3, 337);
INSERT INTO `tpf_region` VALUES (3374, '靖远县', 3, 337);
INSERT INTO `tpf_region` VALUES (3375, '会宁县', 3, 337);
INSERT INTO `tpf_region` VALUES (3376, '景泰县', 3, 337);
INSERT INTO `tpf_region` VALUES (3377, '其它区', 3, 337);
INSERT INTO `tpf_region` VALUES (3378, '秦州区', 3, 338);
INSERT INTO `tpf_region` VALUES (3379, '麦积区', 3, 338);
INSERT INTO `tpf_region` VALUES (3380, '清水县', 3, 338);
INSERT INTO `tpf_region` VALUES (3381, '秦安县', 3, 338);
INSERT INTO `tpf_region` VALUES (3382, '甘谷县', 3, 338);
INSERT INTO `tpf_region` VALUES (3383, '武山县', 3, 338);
INSERT INTO `tpf_region` VALUES (3384, '张家川回族自治县', 3, 338);
INSERT INTO `tpf_region` VALUES (3385, '其它区', 3, 338);
INSERT INTO `tpf_region` VALUES (3386, '凉州区', 3, 339);
INSERT INTO `tpf_region` VALUES (3387, '民勤县', 3, 339);
INSERT INTO `tpf_region` VALUES (3388, '古浪县', 3, 339);
INSERT INTO `tpf_region` VALUES (3389, '天祝藏族自治县', 3, 339);
INSERT INTO `tpf_region` VALUES (3390, '其它区', 3, 339);
INSERT INTO `tpf_region` VALUES (3391, '甘州区', 3, 340);
INSERT INTO `tpf_region` VALUES (3392, '肃南裕固族自治县', 3, 340);
INSERT INTO `tpf_region` VALUES (3393, '民乐县', 3, 340);
INSERT INTO `tpf_region` VALUES (3394, '临泽县', 3, 340);
INSERT INTO `tpf_region` VALUES (3395, '高台县', 3, 340);
INSERT INTO `tpf_region` VALUES (3396, '山丹县', 3, 340);
INSERT INTO `tpf_region` VALUES (3397, '其它区', 3, 340);
INSERT INTO `tpf_region` VALUES (3398, '崆峒区', 3, 341);
INSERT INTO `tpf_region` VALUES (3399, '泾川县', 3, 341);
INSERT INTO `tpf_region` VALUES (3400, '灵台县', 3, 341);
INSERT INTO `tpf_region` VALUES (3401, '崇信县', 3, 341);
INSERT INTO `tpf_region` VALUES (3402, '华亭县', 3, 341);
INSERT INTO `tpf_region` VALUES (3403, '庄浪县', 3, 341);
INSERT INTO `tpf_region` VALUES (3404, '静宁县', 3, 341);
INSERT INTO `tpf_region` VALUES (3405, '其它区', 3, 341);
INSERT INTO `tpf_region` VALUES (3406, '肃州区', 3, 342);
INSERT INTO `tpf_region` VALUES (3407, '金塔县', 3, 342);
INSERT INTO `tpf_region` VALUES (3408, '瓜州县', 3, 342);
INSERT INTO `tpf_region` VALUES (3409, '肃北蒙古族自治县', 3, 342);
INSERT INTO `tpf_region` VALUES (3410, '阿克塞哈萨克族自治县', 3, 342);
INSERT INTO `tpf_region` VALUES (3411, '玉门市', 3, 342);
INSERT INTO `tpf_region` VALUES (3412, '敦煌市', 3, 342);
INSERT INTO `tpf_region` VALUES (3413, '其它区', 3, 342);
INSERT INTO `tpf_region` VALUES (3414, '西峰区', 3, 343);
INSERT INTO `tpf_region` VALUES (3415, '庆城县', 3, 343);
INSERT INTO `tpf_region` VALUES (3416, '环县', 3, 343);
INSERT INTO `tpf_region` VALUES (3417, '华池县', 3, 343);
INSERT INTO `tpf_region` VALUES (3418, '合水县', 3, 343);
INSERT INTO `tpf_region` VALUES (3419, '正宁县', 3, 343);
INSERT INTO `tpf_region` VALUES (3420, '宁县', 3, 343);
INSERT INTO `tpf_region` VALUES (3421, '镇原县', 3, 343);
INSERT INTO `tpf_region` VALUES (3422, '其它区', 3, 343);
INSERT INTO `tpf_region` VALUES (3423, '安定区', 3, 344);
INSERT INTO `tpf_region` VALUES (3424, '通渭县', 3, 344);
INSERT INTO `tpf_region` VALUES (3425, '陇西县', 3, 344);
INSERT INTO `tpf_region` VALUES (3426, '渭源县', 3, 344);
INSERT INTO `tpf_region` VALUES (3427, '临洮县', 3, 344);
INSERT INTO `tpf_region` VALUES (3428, '漳县', 3, 344);
INSERT INTO `tpf_region` VALUES (3429, '岷县', 3, 344);
INSERT INTO `tpf_region` VALUES (3430, '其它区', 3, 344);
INSERT INTO `tpf_region` VALUES (3431, '武都区', 3, 345);
INSERT INTO `tpf_region` VALUES (3432, '成县', 3, 345);
INSERT INTO `tpf_region` VALUES (3433, '文县', 3, 345);
INSERT INTO `tpf_region` VALUES (3434, '宕昌县', 3, 345);
INSERT INTO `tpf_region` VALUES (3435, '康县', 3, 345);
INSERT INTO `tpf_region` VALUES (3436, '西和县', 3, 345);
INSERT INTO `tpf_region` VALUES (3437, '礼县', 3, 345);
INSERT INTO `tpf_region` VALUES (3438, '徽县', 3, 345);
INSERT INTO `tpf_region` VALUES (3439, '两当县', 3, 345);
INSERT INTO `tpf_region` VALUES (3440, '其它区', 3, 345);
INSERT INTO `tpf_region` VALUES (3441, '临夏市', 3, 346);
INSERT INTO `tpf_region` VALUES (3442, '临夏县', 3, 346);
INSERT INTO `tpf_region` VALUES (3443, '康乐县', 3, 346);
INSERT INTO `tpf_region` VALUES (3444, '永靖县', 3, 346);
INSERT INTO `tpf_region` VALUES (3445, '广河县', 3, 346);
INSERT INTO `tpf_region` VALUES (3446, '和政县', 3, 346);
INSERT INTO `tpf_region` VALUES (3447, '东乡族自治县', 3, 346);
INSERT INTO `tpf_region` VALUES (3448, '积石山保安族东乡族撒拉族自治县', 3, 346);
INSERT INTO `tpf_region` VALUES (3449, '其它区', 3, 346);
INSERT INTO `tpf_region` VALUES (3450, '合作市', 3, 347);
INSERT INTO `tpf_region` VALUES (3451, '临潭县', 3, 347);
INSERT INTO `tpf_region` VALUES (3452, '卓尼县', 3, 347);
INSERT INTO `tpf_region` VALUES (3453, '舟曲县', 3, 347);
INSERT INTO `tpf_region` VALUES (3454, '迭部县', 3, 347);
INSERT INTO `tpf_region` VALUES (3455, '玛曲县', 3, 347);
INSERT INTO `tpf_region` VALUES (3456, '碌曲县', 3, 347);
INSERT INTO `tpf_region` VALUES (3457, '夏河县', 3, 347);
INSERT INTO `tpf_region` VALUES (3458, '其它区', 3, 347);
INSERT INTO `tpf_region` VALUES (3459, '城东区', 3, 348);
INSERT INTO `tpf_region` VALUES (3460, '城中区', 3, 348);
INSERT INTO `tpf_region` VALUES (3461, '城西区', 3, 348);
INSERT INTO `tpf_region` VALUES (3462, '城北区', 3, 348);
INSERT INTO `tpf_region` VALUES (3463, '大通回族土族自治县', 3, 348);
INSERT INTO `tpf_region` VALUES (3464, '湟中县', 3, 348);
INSERT INTO `tpf_region` VALUES (3465, '湟源县', 3, 348);
INSERT INTO `tpf_region` VALUES (3466, '其它区', 3, 348);
INSERT INTO `tpf_region` VALUES (3467, '平安区', 3, 349);
INSERT INTO `tpf_region` VALUES (3468, '民和回族土族自治县', 3, 349);
INSERT INTO `tpf_region` VALUES (3469, '乐都区', 3, 349);
INSERT INTO `tpf_region` VALUES (3470, '互助土族自治县', 3, 349);
INSERT INTO `tpf_region` VALUES (3471, '化隆回族自治县', 3, 349);
INSERT INTO `tpf_region` VALUES (3472, '循化撒拉族自治县', 3, 349);
INSERT INTO `tpf_region` VALUES (3473, '其它区', 3, 349);
INSERT INTO `tpf_region` VALUES (3474, '门源回族自治县', 3, 350);
INSERT INTO `tpf_region` VALUES (3475, '祁连县', 3, 350);
INSERT INTO `tpf_region` VALUES (3476, '海晏县', 3, 350);
INSERT INTO `tpf_region` VALUES (3477, '刚察县', 3, 350);
INSERT INTO `tpf_region` VALUES (3478, '其它区', 3, 350);
INSERT INTO `tpf_region` VALUES (3479, '同仁县', 3, 351);
INSERT INTO `tpf_region` VALUES (3480, '尖扎县', 3, 351);
INSERT INTO `tpf_region` VALUES (3481, '泽库县', 3, 351);
INSERT INTO `tpf_region` VALUES (3482, '河南蒙古族自治县', 3, 351);
INSERT INTO `tpf_region` VALUES (3483, '其它区', 3, 351);
INSERT INTO `tpf_region` VALUES (3484, '共和县', 3, 352);
INSERT INTO `tpf_region` VALUES (3485, '同德县', 3, 352);
INSERT INTO `tpf_region` VALUES (3486, '贵德县', 3, 352);
INSERT INTO `tpf_region` VALUES (3487, '兴海县', 3, 352);
INSERT INTO `tpf_region` VALUES (3488, '贵南县', 3, 352);
INSERT INTO `tpf_region` VALUES (3489, '其它区', 3, 352);
INSERT INTO `tpf_region` VALUES (3490, '玛沁县', 3, 353);
INSERT INTO `tpf_region` VALUES (3491, '班玛县', 3, 353);
INSERT INTO `tpf_region` VALUES (3492, '甘德县', 3, 353);
INSERT INTO `tpf_region` VALUES (3493, '达日县', 3, 353);
INSERT INTO `tpf_region` VALUES (3494, '久治县', 3, 353);
INSERT INTO `tpf_region` VALUES (3495, '玛多县', 3, 353);
INSERT INTO `tpf_region` VALUES (3496, '其它区', 3, 353);
INSERT INTO `tpf_region` VALUES (3497, '玉树市', 3, 354);
INSERT INTO `tpf_region` VALUES (3498, '杂多县', 3, 354);
INSERT INTO `tpf_region` VALUES (3499, '称多县', 3, 354);
INSERT INTO `tpf_region` VALUES (3500, '治多县', 3, 354);
INSERT INTO `tpf_region` VALUES (3501, '囊谦县', 3, 354);
INSERT INTO `tpf_region` VALUES (3502, '曲麻莱县', 3, 354);
INSERT INTO `tpf_region` VALUES (3503, '其它区', 3, 354);
INSERT INTO `tpf_region` VALUES (3504, '格尔木市', 3, 355);
INSERT INTO `tpf_region` VALUES (3505, '德令哈市', 3, 355);
INSERT INTO `tpf_region` VALUES (3506, '乌兰县', 3, 355);
INSERT INTO `tpf_region` VALUES (3507, '都兰县', 3, 355);
INSERT INTO `tpf_region` VALUES (3508, '天峻县', 3, 355);
INSERT INTO `tpf_region` VALUES (3509, '其它区', 3, 355);
INSERT INTO `tpf_region` VALUES (3510, '兴庆区', 3, 356);
INSERT INTO `tpf_region` VALUES (3511, '西夏区', 3, 356);
INSERT INTO `tpf_region` VALUES (3512, '金凤区', 3, 356);
INSERT INTO `tpf_region` VALUES (3513, '永宁县', 3, 356);
INSERT INTO `tpf_region` VALUES (3514, '贺兰县', 3, 356);
INSERT INTO `tpf_region` VALUES (3515, '灵武市', 3, 356);
INSERT INTO `tpf_region` VALUES (3516, '其它区', 3, 356);
INSERT INTO `tpf_region` VALUES (3517, '大武口区', 3, 357);
INSERT INTO `tpf_region` VALUES (3518, '惠农区', 3, 357);
INSERT INTO `tpf_region` VALUES (3519, '平罗县', 3, 357);
INSERT INTO `tpf_region` VALUES (3520, '其它区', 3, 357);
INSERT INTO `tpf_region` VALUES (3521, '利通区', 3, 358);
INSERT INTO `tpf_region` VALUES (3522, '红寺堡区', 3, 358);
INSERT INTO `tpf_region` VALUES (3523, '盐池县', 3, 358);
INSERT INTO `tpf_region` VALUES (3524, '同心县', 3, 358);
INSERT INTO `tpf_region` VALUES (3525, '青铜峡市', 3, 358);
INSERT INTO `tpf_region` VALUES (3526, '其它区', 3, 358);
INSERT INTO `tpf_region` VALUES (3527, '原州区', 3, 359);
INSERT INTO `tpf_region` VALUES (3528, '西吉县', 3, 359);
INSERT INTO `tpf_region` VALUES (3529, '隆德县', 3, 359);
INSERT INTO `tpf_region` VALUES (3530, '泾源县', 3, 359);
INSERT INTO `tpf_region` VALUES (3531, '彭阳县', 3, 359);
INSERT INTO `tpf_region` VALUES (3532, '其它区', 3, 359);
INSERT INTO `tpf_region` VALUES (3533, '沙坡头区', 3, 360);
INSERT INTO `tpf_region` VALUES (3534, '中宁县', 3, 360);
INSERT INTO `tpf_region` VALUES (3535, '海原县', 3, 360);
INSERT INTO `tpf_region` VALUES (3536, '其它区', 3, 360);
INSERT INTO `tpf_region` VALUES (3537, '天山区', 3, 361);
INSERT INTO `tpf_region` VALUES (3538, '沙依巴克区', 3, 361);
INSERT INTO `tpf_region` VALUES (3539, '新市区', 3, 361);
INSERT INTO `tpf_region` VALUES (3540, '水磨沟区', 3, 361);
INSERT INTO `tpf_region` VALUES (3541, '头屯河区', 3, 361);
INSERT INTO `tpf_region` VALUES (3542, '达坂城区', 3, 361);
INSERT INTO `tpf_region` VALUES (3543, '东山区', 3, 361);
INSERT INTO `tpf_region` VALUES (3544, '米东区', 3, 361);
INSERT INTO `tpf_region` VALUES (3545, '乌鲁木齐县', 3, 361);
INSERT INTO `tpf_region` VALUES (3546, '其它区', 3, 361);
INSERT INTO `tpf_region` VALUES (3547, '独山子区', 3, 362);
INSERT INTO `tpf_region` VALUES (3548, '克拉玛依区', 3, 362);
INSERT INTO `tpf_region` VALUES (3549, '白碱滩区', 3, 362);
INSERT INTO `tpf_region` VALUES (3550, '乌尔禾区', 3, 362);
INSERT INTO `tpf_region` VALUES (3551, '其它区', 3, 362);
INSERT INTO `tpf_region` VALUES (3552, '高昌区', 3, 363);
INSERT INTO `tpf_region` VALUES (3553, '鄯善县', 3, 363);
INSERT INTO `tpf_region` VALUES (3554, '托克逊县', 3, 363);
INSERT INTO `tpf_region` VALUES (3555, '其它区', 3, 363);
INSERT INTO `tpf_region` VALUES (3556, '哈密市', 3, 364);
INSERT INTO `tpf_region` VALUES (3557, '巴里坤哈萨克自治县', 3, 364);
INSERT INTO `tpf_region` VALUES (3558, '伊吾县', 3, 364);
INSERT INTO `tpf_region` VALUES (3559, '其它区', 3, 364);
INSERT INTO `tpf_region` VALUES (3560, '昌吉市', 3, 365);
INSERT INTO `tpf_region` VALUES (3561, '阜康市', 3, 365);
INSERT INTO `tpf_region` VALUES (3562, '米泉市', 3, 365);
INSERT INTO `tpf_region` VALUES (3563, '呼图壁县', 3, 365);
INSERT INTO `tpf_region` VALUES (3564, '玛纳斯县', 3, 365);
INSERT INTO `tpf_region` VALUES (3565, '奇台县', 3, 365);
INSERT INTO `tpf_region` VALUES (3566, '吉木萨尔县', 3, 365);
INSERT INTO `tpf_region` VALUES (3567, '木垒哈萨克自治县', 3, 365);
INSERT INTO `tpf_region` VALUES (3568, '其它区', 3, 365);
INSERT INTO `tpf_region` VALUES (3569, '博乐市', 3, 366);
INSERT INTO `tpf_region` VALUES (3570, '阿拉山口市', 3, 366);
INSERT INTO `tpf_region` VALUES (3571, '精河县', 3, 366);
INSERT INTO `tpf_region` VALUES (3572, '温泉县', 3, 366);
INSERT INTO `tpf_region` VALUES (3573, '其它区', 3, 366);
INSERT INTO `tpf_region` VALUES (3574, '库尔勒市', 3, 367);
INSERT INTO `tpf_region` VALUES (3575, '轮台县', 3, 367);
INSERT INTO `tpf_region` VALUES (3576, '尉犁县', 3, 367);
INSERT INTO `tpf_region` VALUES (3577, '若羌县', 3, 367);
INSERT INTO `tpf_region` VALUES (3578, '且末县', 3, 367);
INSERT INTO `tpf_region` VALUES (3579, '焉耆回族自治县', 3, 367);
INSERT INTO `tpf_region` VALUES (3580, '和静县', 3, 367);
INSERT INTO `tpf_region` VALUES (3581, '和硕县', 3, 367);
INSERT INTO `tpf_region` VALUES (3582, '博湖县', 3, 367);
INSERT INTO `tpf_region` VALUES (3583, '其它区', 3, 367);
INSERT INTO `tpf_region` VALUES (3584, '阿克苏市', 3, 368);
INSERT INTO `tpf_region` VALUES (3585, '温宿县', 3, 368);
INSERT INTO `tpf_region` VALUES (3586, '库车县', 3, 368);
INSERT INTO `tpf_region` VALUES (3587, '沙雅县', 3, 368);
INSERT INTO `tpf_region` VALUES (3588, '新和县', 3, 368);
INSERT INTO `tpf_region` VALUES (3589, '拜城县', 3, 368);
INSERT INTO `tpf_region` VALUES (3590, '乌什县', 3, 368);
INSERT INTO `tpf_region` VALUES (3591, '阿瓦提县', 3, 368);
INSERT INTO `tpf_region` VALUES (3592, '柯坪县', 3, 368);
INSERT INTO `tpf_region` VALUES (3593, '其它区', 3, 368);
INSERT INTO `tpf_region` VALUES (3594, '阿图什市', 3, 369);
INSERT INTO `tpf_region` VALUES (3595, '阿克陶县', 3, 369);
INSERT INTO `tpf_region` VALUES (3596, '阿合奇县', 3, 369);
INSERT INTO `tpf_region` VALUES (3597, '乌恰县', 3, 369);
INSERT INTO `tpf_region` VALUES (3598, '其它区', 3, 369);
INSERT INTO `tpf_region` VALUES (3599, '喀什市', 3, 370);
INSERT INTO `tpf_region` VALUES (3600, '疏附县', 3, 370);
INSERT INTO `tpf_region` VALUES (3601, '疏勒县', 3, 370);
INSERT INTO `tpf_region` VALUES (3602, '英吉沙县', 3, 370);
INSERT INTO `tpf_region` VALUES (3603, '泽普县', 3, 370);
INSERT INTO `tpf_region` VALUES (3604, '莎车县', 3, 370);
INSERT INTO `tpf_region` VALUES (3605, '叶城县', 3, 370);
INSERT INTO `tpf_region` VALUES (3606, '麦盖提县', 3, 370);
INSERT INTO `tpf_region` VALUES (3607, '岳普湖县', 3, 370);
INSERT INTO `tpf_region` VALUES (3608, '伽师县', 3, 370);
INSERT INTO `tpf_region` VALUES (3609, '巴楚县', 3, 370);
INSERT INTO `tpf_region` VALUES (3610, '塔什库尔干塔吉克自治县', 3, 370);
INSERT INTO `tpf_region` VALUES (3611, '其它区', 3, 370);
INSERT INTO `tpf_region` VALUES (3612, '和田市', 3, 371);
INSERT INTO `tpf_region` VALUES (3613, '和田县', 3, 371);
INSERT INTO `tpf_region` VALUES (3614, '墨玉县', 3, 371);
INSERT INTO `tpf_region` VALUES (3615, '皮山县', 3, 371);
INSERT INTO `tpf_region` VALUES (3616, '洛浦县', 3, 371);
INSERT INTO `tpf_region` VALUES (3617, '策勒县', 3, 371);
INSERT INTO `tpf_region` VALUES (3618, '于田县', 3, 371);
INSERT INTO `tpf_region` VALUES (3619, '民丰县', 3, 371);
INSERT INTO `tpf_region` VALUES (3620, '其它区', 3, 371);
INSERT INTO `tpf_region` VALUES (3621, '伊宁市', 3, 372);
INSERT INTO `tpf_region` VALUES (3622, '奎屯市', 3, 372);
INSERT INTO `tpf_region` VALUES (3623, '伊宁县', 3, 372);
INSERT INTO `tpf_region` VALUES (3624, '察布查尔锡伯自治县', 3, 372);
INSERT INTO `tpf_region` VALUES (3625, '霍城县', 3, 372);
INSERT INTO `tpf_region` VALUES (3626, '巩留县', 3, 372);
INSERT INTO `tpf_region` VALUES (3627, '新源县', 3, 372);
INSERT INTO `tpf_region` VALUES (3628, '昭苏县', 3, 372);
INSERT INTO `tpf_region` VALUES (3629, '特克斯县', 3, 372);
INSERT INTO `tpf_region` VALUES (3630, '尼勒克县', 3, 372);
INSERT INTO `tpf_region` VALUES (3631, '其它区', 3, 372);
INSERT INTO `tpf_region` VALUES (3632, '塔城市', 3, 373);
INSERT INTO `tpf_region` VALUES (3633, '乌苏市', 3, 373);
INSERT INTO `tpf_region` VALUES (3634, '额敏县', 3, 373);
INSERT INTO `tpf_region` VALUES (3635, '沙湾县', 3, 373);
INSERT INTO `tpf_region` VALUES (3636, '托里县', 3, 373);
INSERT INTO `tpf_region` VALUES (3637, '裕民县', 3, 373);
INSERT INTO `tpf_region` VALUES (3638, '和布克赛尔蒙古自治县', 3, 373);
INSERT INTO `tpf_region` VALUES (3639, '其它区', 3, 373);
INSERT INTO `tpf_region` VALUES (3640, '阿勒泰市', 3, 374);
INSERT INTO `tpf_region` VALUES (3641, '布尔津县', 3, 374);
INSERT INTO `tpf_region` VALUES (3642, '富蕴县', 3, 374);
INSERT INTO `tpf_region` VALUES (3643, '福海县', 3, 374);
INSERT INTO `tpf_region` VALUES (3644, '哈巴河县', 3, 374);
INSERT INTO `tpf_region` VALUES (3645, '青河县', 3, 374);
INSERT INTO `tpf_region` VALUES (3646, '吉木乃县', 3, 374);
INSERT INTO `tpf_region` VALUES (3647, '其它区', 3, 374);
INSERT INTO `tpf_region` VALUES (3648, '中正区', 3, 375);
INSERT INTO `tpf_region` VALUES (3649, '大同区', 3, 375);
INSERT INTO `tpf_region` VALUES (3650, '中山区', 3, 375);
INSERT INTO `tpf_region` VALUES (3651, '松山区', 3, 375);
INSERT INTO `tpf_region` VALUES (3652, '大安区', 3, 375);
INSERT INTO `tpf_region` VALUES (3653, '万华区', 3, 375);
INSERT INTO `tpf_region` VALUES (3654, '信义区', 3, 375);
INSERT INTO `tpf_region` VALUES (3655, '士林区', 3, 375);
INSERT INTO `tpf_region` VALUES (3656, '北投区', 3, 375);
INSERT INTO `tpf_region` VALUES (3657, '内湖区', 3, 375);
INSERT INTO `tpf_region` VALUES (3658, '南港区', 3, 375);
INSERT INTO `tpf_region` VALUES (3659, '文山区', 3, 375);
INSERT INTO `tpf_region` VALUES (3660, '其它区', 3, 375);
INSERT INTO `tpf_region` VALUES (3661, '新兴区', 3, 376);
INSERT INTO `tpf_region` VALUES (3662, '前金区', 3, 376);
INSERT INTO `tpf_region` VALUES (3663, '芩雅区', 3, 376);
INSERT INTO `tpf_region` VALUES (3664, '盐埕区', 3, 376);
INSERT INTO `tpf_region` VALUES (3665, '鼓山区', 3, 376);
INSERT INTO `tpf_region` VALUES (3666, '旗津区', 3, 376);
INSERT INTO `tpf_region` VALUES (3667, '前镇区', 3, 376);
INSERT INTO `tpf_region` VALUES (3668, '三民区', 3, 376);
INSERT INTO `tpf_region` VALUES (3669, '左营区', 3, 376);
INSERT INTO `tpf_region` VALUES (3670, '楠梓区', 3, 376);
INSERT INTO `tpf_region` VALUES (3671, '小港区', 3, 376);
INSERT INTO `tpf_region` VALUES (3672, '其它区', 3, 376);
INSERT INTO `tpf_region` VALUES (3673, '苓雅区', 3, 376);
INSERT INTO `tpf_region` VALUES (3674, '仁武区', 3, 376);
INSERT INTO `tpf_region` VALUES (3675, '大社区', 3, 376);
INSERT INTO `tpf_region` VALUES (3676, '冈山区', 3, 376);
INSERT INTO `tpf_region` VALUES (3677, '路竹区', 3, 376);
INSERT INTO `tpf_region` VALUES (3678, '阿莲区', 3, 376);
INSERT INTO `tpf_region` VALUES (3679, '田寮区', 3, 376);
INSERT INTO `tpf_region` VALUES (3680, '燕巢区', 3, 376);
INSERT INTO `tpf_region` VALUES (3681, '桥头区', 3, 376);
INSERT INTO `tpf_region` VALUES (3682, '梓官区', 3, 376);
INSERT INTO `tpf_region` VALUES (3683, '弥陀区', 3, 376);
INSERT INTO `tpf_region` VALUES (3684, '永安区', 3, 376);
INSERT INTO `tpf_region` VALUES (3685, '湖内区', 3, 376);
INSERT INTO `tpf_region` VALUES (3686, '凤山区', 3, 376);
INSERT INTO `tpf_region` VALUES (3687, '大寮区', 3, 376);
INSERT INTO `tpf_region` VALUES (3688, '林园区', 3, 376);
INSERT INTO `tpf_region` VALUES (3689, '鸟松区', 3, 376);
INSERT INTO `tpf_region` VALUES (3690, '大树区', 3, 376);
INSERT INTO `tpf_region` VALUES (3691, '旗山区', 3, 376);
INSERT INTO `tpf_region` VALUES (3692, '美浓区', 3, 376);
INSERT INTO `tpf_region` VALUES (3693, '六龟区', 3, 376);
INSERT INTO `tpf_region` VALUES (3694, '内门区', 3, 376);
INSERT INTO `tpf_region` VALUES (3695, '杉林区', 3, 376);
INSERT INTO `tpf_region` VALUES (3696, '甲仙区', 3, 376);
INSERT INTO `tpf_region` VALUES (3697, '桃源区', 3, 376);
INSERT INTO `tpf_region` VALUES (3698, '那玛夏区', 3, 376);
INSERT INTO `tpf_region` VALUES (3699, '茂林区', 3, 376);
INSERT INTO `tpf_region` VALUES (3700, '茄萣区', 3, 376);
INSERT INTO `tpf_region` VALUES (3701, '中西区', 3, 377);
INSERT INTO `tpf_region` VALUES (3702, '东区', 3, 377);
INSERT INTO `tpf_region` VALUES (3703, '南区', 3, 377);
INSERT INTO `tpf_region` VALUES (3704, '北区', 3, 377);
INSERT INTO `tpf_region` VALUES (3705, '安平区', 3, 377);
INSERT INTO `tpf_region` VALUES (3706, '安南区', 3, 377);
INSERT INTO `tpf_region` VALUES (3707, '其它区', 3, 377);
INSERT INTO `tpf_region` VALUES (3708, '永康区', 3, 377);
INSERT INTO `tpf_region` VALUES (3709, '归仁区', 3, 377);
INSERT INTO `tpf_region` VALUES (3710, '新化区', 3, 377);
INSERT INTO `tpf_region` VALUES (3711, '左镇区', 3, 377);
INSERT INTO `tpf_region` VALUES (3712, '玉井区', 3, 377);
INSERT INTO `tpf_region` VALUES (3713, '楠西区', 3, 377);
INSERT INTO `tpf_region` VALUES (3714, '南化区', 3, 377);
INSERT INTO `tpf_region` VALUES (3715, '仁德区', 3, 377);
INSERT INTO `tpf_region` VALUES (3716, '关庙区', 3, 377);
INSERT INTO `tpf_region` VALUES (3717, '龙崎区', 3, 377);
INSERT INTO `tpf_region` VALUES (3718, '官田区', 3, 377);
INSERT INTO `tpf_region` VALUES (3719, '麻豆区', 3, 377);
INSERT INTO `tpf_region` VALUES (3720, '佳里区', 3, 377);
INSERT INTO `tpf_region` VALUES (3721, '西港区', 3, 377);
INSERT INTO `tpf_region` VALUES (3722, '七股区', 3, 377);
INSERT INTO `tpf_region` VALUES (3723, '将军区', 3, 377);
INSERT INTO `tpf_region` VALUES (3724, '学甲区', 3, 377);
INSERT INTO `tpf_region` VALUES (3725, '北门区', 3, 377);
INSERT INTO `tpf_region` VALUES (3726, '新营区', 3, 377);
INSERT INTO `tpf_region` VALUES (3727, '后壁区', 3, 377);
INSERT INTO `tpf_region` VALUES (3728, '白河区', 3, 377);
INSERT INTO `tpf_region` VALUES (3729, '东山区', 3, 377);
INSERT INTO `tpf_region` VALUES (3730, '六甲区', 3, 377);
INSERT INTO `tpf_region` VALUES (3731, '下营区', 3, 377);
INSERT INTO `tpf_region` VALUES (3732, '柳营区', 3, 377);
INSERT INTO `tpf_region` VALUES (3733, '盐水区', 3, 377);
INSERT INTO `tpf_region` VALUES (3734, '善化区', 3, 377);
INSERT INTO `tpf_region` VALUES (3735, '大内区', 3, 377);
INSERT INTO `tpf_region` VALUES (3736, '山上区', 3, 377);
INSERT INTO `tpf_region` VALUES (3737, '新市区', 3, 377);
INSERT INTO `tpf_region` VALUES (3738, '安定区', 3, 377);
INSERT INTO `tpf_region` VALUES (3739, '中区', 3, 378);
INSERT INTO `tpf_region` VALUES (3740, '东区', 3, 378);
INSERT INTO `tpf_region` VALUES (3741, '南区', 3, 378);
INSERT INTO `tpf_region` VALUES (3742, '西区', 3, 378);
INSERT INTO `tpf_region` VALUES (3743, '北区', 3, 378);
INSERT INTO `tpf_region` VALUES (3744, '北屯区', 3, 378);
INSERT INTO `tpf_region` VALUES (3745, '西屯区', 3, 378);
INSERT INTO `tpf_region` VALUES (3746, '南屯区', 3, 378);
INSERT INTO `tpf_region` VALUES (3747, '其它区', 3, 378);
INSERT INTO `tpf_region` VALUES (3748, '太平区', 3, 378);
INSERT INTO `tpf_region` VALUES (3749, '大里区', 3, 378);
INSERT INTO `tpf_region` VALUES (3750, '雾峰区', 3, 378);
INSERT INTO `tpf_region` VALUES (3751, '乌日区', 3, 378);
INSERT INTO `tpf_region` VALUES (3752, '丰原区', 3, 378);
INSERT INTO `tpf_region` VALUES (3753, '后里区', 3, 378);
INSERT INTO `tpf_region` VALUES (3754, '石冈区', 3, 378);
INSERT INTO `tpf_region` VALUES (3755, '东势区', 3, 378);
INSERT INTO `tpf_region` VALUES (3756, '和平区', 3, 378);
INSERT INTO `tpf_region` VALUES (3757, '新社区', 3, 378);
INSERT INTO `tpf_region` VALUES (3758, '潭子区', 3, 378);
INSERT INTO `tpf_region` VALUES (3759, '大雅区', 3, 378);
INSERT INTO `tpf_region` VALUES (3760, '神冈区', 3, 378);
INSERT INTO `tpf_region` VALUES (3761, '大肚区', 3, 378);
INSERT INTO `tpf_region` VALUES (3762, '沙鹿区', 3, 378);
INSERT INTO `tpf_region` VALUES (3763, '龙井区', 3, 378);
INSERT INTO `tpf_region` VALUES (3764, '梧栖区', 3, 378);
INSERT INTO `tpf_region` VALUES (3765, '清水区', 3, 378);
INSERT INTO `tpf_region` VALUES (3766, '大甲区', 3, 378);
INSERT INTO `tpf_region` VALUES (3767, '外埔区', 3, 378);
INSERT INTO `tpf_region` VALUES (3768, '大安区', 3, 378);
INSERT INTO `tpf_region` VALUES (3769, '金沙镇', 3, 379);
INSERT INTO `tpf_region` VALUES (3770, '金湖镇', 3, 379);
INSERT INTO `tpf_region` VALUES (3771, '金宁乡', 3, 379);
INSERT INTO `tpf_region` VALUES (3772, '金城镇', 3, 379);
INSERT INTO `tpf_region` VALUES (3773, '烈屿乡', 3, 379);
INSERT INTO `tpf_region` VALUES (3774, '乌坵乡', 3, 379);
INSERT INTO `tpf_region` VALUES (3775, '南投市', 3, 380);
INSERT INTO `tpf_region` VALUES (3776, '中寮乡', 3, 380);
INSERT INTO `tpf_region` VALUES (3777, '草屯镇', 3, 380);
INSERT INTO `tpf_region` VALUES (3778, '国姓乡', 3, 380);
INSERT INTO `tpf_region` VALUES (3779, '埔里镇', 3, 380);
INSERT INTO `tpf_region` VALUES (3780, '仁爱乡', 3, 380);
INSERT INTO `tpf_region` VALUES (3781, '名间乡', 3, 380);
INSERT INTO `tpf_region` VALUES (3782, '集集镇', 3, 380);
INSERT INTO `tpf_region` VALUES (3783, '水里乡', 3, 380);
INSERT INTO `tpf_region` VALUES (3784, '鱼池乡', 3, 380);
INSERT INTO `tpf_region` VALUES (3785, '信义乡', 3, 380);
INSERT INTO `tpf_region` VALUES (3786, '竹山镇', 3, 380);
INSERT INTO `tpf_region` VALUES (3787, '鹿谷乡', 3, 380);
INSERT INTO `tpf_region` VALUES (3788, '仁爱区', 3, 381);
INSERT INTO `tpf_region` VALUES (3789, '信义区', 3, 381);
INSERT INTO `tpf_region` VALUES (3790, '中正区', 3, 381);
INSERT INTO `tpf_region` VALUES (3791, '中山区', 3, 381);
INSERT INTO `tpf_region` VALUES (3792, '安乐区', 3, 381);
INSERT INTO `tpf_region` VALUES (3793, '暖暖区', 3, 381);
INSERT INTO `tpf_region` VALUES (3794, '七堵区', 3, 381);
INSERT INTO `tpf_region` VALUES (3795, '其它区', 3, 381);
INSERT INTO `tpf_region` VALUES (3796, '东区', 3, 382);
INSERT INTO `tpf_region` VALUES (3797, '北区', 3, 382);
INSERT INTO `tpf_region` VALUES (3798, '香山区', 3, 382);
INSERT INTO `tpf_region` VALUES (3799, '其它区', 3, 382);
INSERT INTO `tpf_region` VALUES (3800, '东区', 3, 383);
INSERT INTO `tpf_region` VALUES (3801, '西区', 3, 383);
INSERT INTO `tpf_region` VALUES (3802, '其它区', 3, 383);
INSERT INTO `tpf_region` VALUES (3803, '万里区', 3, 384);
INSERT INTO `tpf_region` VALUES (3804, '金山区', 3, 384);
INSERT INTO `tpf_region` VALUES (3805, '板桥区', 3, 384);
INSERT INTO `tpf_region` VALUES (3806, '汐止区', 3, 384);
INSERT INTO `tpf_region` VALUES (3807, '深坑区', 3, 384);
INSERT INTO `tpf_region` VALUES (3808, '石碇区', 3, 384);
INSERT INTO `tpf_region` VALUES (3809, '瑞芳区', 3, 384);
INSERT INTO `tpf_region` VALUES (3810, '平溪区', 3, 384);
INSERT INTO `tpf_region` VALUES (3811, '双溪区', 3, 384);
INSERT INTO `tpf_region` VALUES (3812, '贡寮区', 3, 384);
INSERT INTO `tpf_region` VALUES (3813, '新店区', 3, 384);
INSERT INTO `tpf_region` VALUES (3814, '坪林区', 3, 384);
INSERT INTO `tpf_region` VALUES (3815, '乌来区', 3, 384);
INSERT INTO `tpf_region` VALUES (3816, '永和区', 3, 384);
INSERT INTO `tpf_region` VALUES (3817, '中和区', 3, 384);
INSERT INTO `tpf_region` VALUES (3818, '土城区', 3, 384);
INSERT INTO `tpf_region` VALUES (3819, '三峡区', 3, 384);
INSERT INTO `tpf_region` VALUES (3820, '树林区', 3, 384);
INSERT INTO `tpf_region` VALUES (3821, '莺歌区', 3, 384);
INSERT INTO `tpf_region` VALUES (3822, '三重区', 3, 384);
INSERT INTO `tpf_region` VALUES (3823, '新庄区', 3, 384);
INSERT INTO `tpf_region` VALUES (3824, '泰山区', 3, 384);
INSERT INTO `tpf_region` VALUES (3825, '林口区', 3, 384);
INSERT INTO `tpf_region` VALUES (3826, '芦洲区', 3, 384);
INSERT INTO `tpf_region` VALUES (3827, '五股区', 3, 384);
INSERT INTO `tpf_region` VALUES (3828, '八里区', 3, 384);
INSERT INTO `tpf_region` VALUES (3829, '淡水区', 3, 384);
INSERT INTO `tpf_region` VALUES (3830, '三芝区', 3, 384);
INSERT INTO `tpf_region` VALUES (3831, '石门区', 3, 384);
INSERT INTO `tpf_region` VALUES (3832, '宜兰市', 3, 385);
INSERT INTO `tpf_region` VALUES (3833, '头城镇', 3, 385);
INSERT INTO `tpf_region` VALUES (3834, '礁溪乡', 3, 385);
INSERT INTO `tpf_region` VALUES (3835, '壮围乡', 3, 385);
INSERT INTO `tpf_region` VALUES (3836, '员山乡', 3, 385);
INSERT INTO `tpf_region` VALUES (3837, '罗东镇', 3, 385);
INSERT INTO `tpf_region` VALUES (3838, '三星乡', 3, 385);
INSERT INTO `tpf_region` VALUES (3839, '大同乡', 3, 385);
INSERT INTO `tpf_region` VALUES (3840, '五结乡', 3, 385);
INSERT INTO `tpf_region` VALUES (3841, '冬山乡', 3, 385);
INSERT INTO `tpf_region` VALUES (3842, '苏澳镇', 3, 385);
INSERT INTO `tpf_region` VALUES (3843, '南澳乡', 3, 385);
INSERT INTO `tpf_region` VALUES (3844, '钓鱼台', 3, 385);
INSERT INTO `tpf_region` VALUES (3845, '竹北市', 3, 386);
INSERT INTO `tpf_region` VALUES (3846, '湖口乡', 3, 386);
INSERT INTO `tpf_region` VALUES (3847, '新丰乡', 3, 386);
INSERT INTO `tpf_region` VALUES (3848, '新埔镇', 3, 386);
INSERT INTO `tpf_region` VALUES (3849, '关西镇', 3, 386);
INSERT INTO `tpf_region` VALUES (3850, '芎林乡', 3, 386);
INSERT INTO `tpf_region` VALUES (3851, '宝山乡', 3, 386);
INSERT INTO `tpf_region` VALUES (3852, '竹东镇', 3, 386);
INSERT INTO `tpf_region` VALUES (3853, '五峰乡', 3, 386);
INSERT INTO `tpf_region` VALUES (3854, '横山乡', 3, 386);
INSERT INTO `tpf_region` VALUES (3855, '尖石乡', 3, 386);
INSERT INTO `tpf_region` VALUES (3856, '北埔乡', 3, 386);
INSERT INTO `tpf_region` VALUES (3857, '峨眉乡', 3, 386);
INSERT INTO `tpf_region` VALUES (3858, '中坜市', 3, 387);
INSERT INTO `tpf_region` VALUES (3859, '平镇市', 3, 387);
INSERT INTO `tpf_region` VALUES (3860, '龙潭乡', 3, 387);
INSERT INTO `tpf_region` VALUES (3861, '杨梅市', 3, 387);
INSERT INTO `tpf_region` VALUES (3862, '新屋乡', 3, 387);
INSERT INTO `tpf_region` VALUES (3863, '观音乡', 3, 387);
INSERT INTO `tpf_region` VALUES (3864, '桃园市', 3, 387);
INSERT INTO `tpf_region` VALUES (3865, '龟山乡', 3, 387);
INSERT INTO `tpf_region` VALUES (3866, '八德市', 3, 387);
INSERT INTO `tpf_region` VALUES (3867, '大溪镇', 3, 387);
INSERT INTO `tpf_region` VALUES (3868, '复兴乡', 3, 387);
INSERT INTO `tpf_region` VALUES (3869, '大园乡', 3, 387);
INSERT INTO `tpf_region` VALUES (3870, '芦竹乡', 3, 387);
INSERT INTO `tpf_region` VALUES (3871, '竹南镇', 3, 388);
INSERT INTO `tpf_region` VALUES (3872, '头份镇', 3, 388);
INSERT INTO `tpf_region` VALUES (3873, '三湾乡', 3, 388);
INSERT INTO `tpf_region` VALUES (3874, '南庄乡', 3, 388);
INSERT INTO `tpf_region` VALUES (3875, '狮潭乡', 3, 388);
INSERT INTO `tpf_region` VALUES (3876, '后龙镇', 3, 388);
INSERT INTO `tpf_region` VALUES (3877, '通霄镇', 3, 388);
INSERT INTO `tpf_region` VALUES (3878, '苑里镇', 3, 388);
INSERT INTO `tpf_region` VALUES (3879, '苗栗市', 3, 388);
INSERT INTO `tpf_region` VALUES (3880, '造桥乡', 3, 388);
INSERT INTO `tpf_region` VALUES (3881, '头屋乡', 3, 388);
INSERT INTO `tpf_region` VALUES (3882, '公馆乡', 3, 388);
INSERT INTO `tpf_region` VALUES (3883, '大湖乡', 3, 388);
INSERT INTO `tpf_region` VALUES (3884, '泰安乡', 3, 388);
INSERT INTO `tpf_region` VALUES (3885, '铜锣乡', 3, 388);
INSERT INTO `tpf_region` VALUES (3886, '三义乡', 3, 388);
INSERT INTO `tpf_region` VALUES (3887, '西湖乡', 3, 388);
INSERT INTO `tpf_region` VALUES (3888, '卓兰镇', 3, 388);
INSERT INTO `tpf_region` VALUES (3889, '彰化市', 3, 389);
INSERT INTO `tpf_region` VALUES (3890, '芬园乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3891, '花坛乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3892, '秀水乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3893, '鹿港镇', 3, 389);
INSERT INTO `tpf_region` VALUES (3894, '福兴乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3895, '线西乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3896, '和美镇', 3, 389);
INSERT INTO `tpf_region` VALUES (3897, '伸港乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3898, '员林镇', 3, 389);
INSERT INTO `tpf_region` VALUES (3899, '社头乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3900, '永靖乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3901, '埔心乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3902, '溪湖镇', 3, 389);
INSERT INTO `tpf_region` VALUES (3903, '大村乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3904, '埔盐乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3905, '田中镇', 3, 389);
INSERT INTO `tpf_region` VALUES (3906, '北斗镇', 3, 389);
INSERT INTO `tpf_region` VALUES (3907, '田尾乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3908, '埤头乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3909, '溪州乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3910, '竹塘乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3911, '二林镇', 3, 389);
INSERT INTO `tpf_region` VALUES (3912, '大城乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3913, '芳苑乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3914, '二水乡', 3, 389);
INSERT INTO `tpf_region` VALUES (3915, '番路乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3916, '梅山乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3917, '竹崎乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3918, '阿里山乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3919, '中埔乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3920, '大埔乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3921, '水上乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3922, '鹿草乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3923, '太保市', 3, 390);
INSERT INTO `tpf_region` VALUES (3924, '朴子市', 3, 390);
INSERT INTO `tpf_region` VALUES (3925, '东石乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3926, '六脚乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3927, '新港乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3928, '民雄乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3929, '大林镇', 3, 390);
INSERT INTO `tpf_region` VALUES (3930, '溪口乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3931, '义竹乡', 3, 390);
INSERT INTO `tpf_region` VALUES (3932, '布袋镇', 3, 390);
INSERT INTO `tpf_region` VALUES (3933, '斗南镇', 3, 391);
INSERT INTO `tpf_region` VALUES (3934, '大埤乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3935, '虎尾镇', 3, 391);
INSERT INTO `tpf_region` VALUES (3936, '土库镇', 3, 391);
INSERT INTO `tpf_region` VALUES (3937, '褒忠乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3938, '东势乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3939, '台西乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3940, '仑背乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3941, '麦寮乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3942, '斗六市', 3, 391);
INSERT INTO `tpf_region` VALUES (3943, '林内乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3944, '古坑乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3945, '莿桐乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3946, '西螺镇', 3, 391);
INSERT INTO `tpf_region` VALUES (3947, '二仑乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3948, '北港镇', 3, 391);
INSERT INTO `tpf_region` VALUES (3949, '水林乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3950, '口湖乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3951, '四湖乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3952, '元长乡', 3, 391);
INSERT INTO `tpf_region` VALUES (3953, '屏东市', 3, 392);
INSERT INTO `tpf_region` VALUES (3954, '三地门乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3955, '雾台乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3956, '玛家乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3957, '九如乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3958, '里港乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3959, '高树乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3960, '盐埔乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3961, '长治乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3962, '麟洛乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3963, '竹田乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3964, '内埔乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3965, '万丹乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3966, '潮州镇', 3, 392);
INSERT INTO `tpf_region` VALUES (3967, '泰武乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3968, '来义乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3969, '万峦乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3970, '崁顶乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3971, '新埤乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3972, '南州乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3973, '林边乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3974, '东港镇', 3, 392);
INSERT INTO `tpf_region` VALUES (3975, '琉球乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3976, '佳冬乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3977, '新园乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3978, '枋寮乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3979, '枋山乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3980, '春日乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3981, '狮子乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3982, '车城乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3983, '牡丹乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3984, '恒春镇', 3, 392);
INSERT INTO `tpf_region` VALUES (3985, '满州乡', 3, 392);
INSERT INTO `tpf_region` VALUES (3986, '台东市', 3, 393);
INSERT INTO `tpf_region` VALUES (3987, '绿岛乡', 3, 393);
INSERT INTO `tpf_region` VALUES (3988, '兰屿乡', 3, 393);
INSERT INTO `tpf_region` VALUES (3989, '延平乡', 3, 393);
INSERT INTO `tpf_region` VALUES (3990, '卑南乡', 3, 393);
INSERT INTO `tpf_region` VALUES (3991, '鹿野乡', 3, 393);
INSERT INTO `tpf_region` VALUES (3992, '关山镇', 3, 393);
INSERT INTO `tpf_region` VALUES (3993, '海端乡', 3, 393);
INSERT INTO `tpf_region` VALUES (3994, '池上乡', 3, 393);
INSERT INTO `tpf_region` VALUES (3995, '东河乡', 3, 393);
INSERT INTO `tpf_region` VALUES (3996, '成功镇', 3, 393);
INSERT INTO `tpf_region` VALUES (3997, '长滨乡', 3, 393);
INSERT INTO `tpf_region` VALUES (3998, '金峰乡', 3, 393);
INSERT INTO `tpf_region` VALUES (3999, '大武乡', 3, 393);
INSERT INTO `tpf_region` VALUES (4000, '达仁乡', 3, 393);
INSERT INTO `tpf_region` VALUES (4001, '太麻里乡', 3, 393);
INSERT INTO `tpf_region` VALUES (4002, '花莲市', 3, 394);
INSERT INTO `tpf_region` VALUES (4003, '新城乡', 3, 394);
INSERT INTO `tpf_region` VALUES (4004, '太鲁阁', 3, 394);
INSERT INTO `tpf_region` VALUES (4005, '秀林乡', 3, 394);
INSERT INTO `tpf_region` VALUES (4006, '吉安乡', 3, 394);
INSERT INTO `tpf_region` VALUES (4007, '寿丰乡', 3, 394);
INSERT INTO `tpf_region` VALUES (4008, '凤林镇', 3, 394);
INSERT INTO `tpf_region` VALUES (4009, '光复乡', 3, 394);
INSERT INTO `tpf_region` VALUES (4010, '丰滨乡', 3, 394);
INSERT INTO `tpf_region` VALUES (4011, '瑞穗乡', 3, 394);
INSERT INTO `tpf_region` VALUES (4012, '万荣乡', 3, 394);
INSERT INTO `tpf_region` VALUES (4013, '玉里镇', 3, 394);
INSERT INTO `tpf_region` VALUES (4014, '卓溪乡', 3, 394);
INSERT INTO `tpf_region` VALUES (4015, '富里乡', 3, 394);
INSERT INTO `tpf_region` VALUES (4016, '马公市', 3, 395);
INSERT INTO `tpf_region` VALUES (4017, '西屿乡', 3, 395);
INSERT INTO `tpf_region` VALUES (4018, '望安乡', 3, 395);
INSERT INTO `tpf_region` VALUES (4019, '七美乡', 3, 395);
INSERT INTO `tpf_region` VALUES (4020, '白沙乡', 3, 395);
INSERT INTO `tpf_region` VALUES (4021, '湖西乡', 3, 395);
INSERT INTO `tpf_region` VALUES (4022, '南竿乡', 3, 396);
INSERT INTO `tpf_region` VALUES (4023, '北竿乡', 3, 396);
INSERT INTO `tpf_region` VALUES (4024, '莒光乡', 3, 396);
INSERT INTO `tpf_region` VALUES (4025, '东引乡', 3, 396);
INSERT INTO `tpf_region` VALUES (4026, '中西区', 3, 397);
INSERT INTO `tpf_region` VALUES (4027, '湾仔', 3, 397);
INSERT INTO `tpf_region` VALUES (4028, '东区', 3, 397);
INSERT INTO `tpf_region` VALUES (4029, '南区', 3, 397);
INSERT INTO `tpf_region` VALUES (4030, '九龙城区', 3, 398);
INSERT INTO `tpf_region` VALUES (4031, '油尖旺区', 3, 398);
INSERT INTO `tpf_region` VALUES (4032, '深水埗区', 3, 398);
INSERT INTO `tpf_region` VALUES (4033, '黄大仙区', 3, 398);
INSERT INTO `tpf_region` VALUES (4034, '观塘区', 3, 398);
INSERT INTO `tpf_region` VALUES (4035, '北区', 3, 399);
INSERT INTO `tpf_region` VALUES (4036, '大埔区', 3, 399);
INSERT INTO `tpf_region` VALUES (4037, '沙田区', 3, 399);
INSERT INTO `tpf_region` VALUES (4038, '西贡区', 3, 399);
INSERT INTO `tpf_region` VALUES (4039, '元朗区', 3, 399);
INSERT INTO `tpf_region` VALUES (4040, '屯门区', 3, 399);
INSERT INTO `tpf_region` VALUES (4041, '荃湾区', 3, 399);
INSERT INTO `tpf_region` VALUES (4042, '葵青区', 3, 399);
INSERT INTO `tpf_region` VALUES (4043, '离岛区', 3, 399);
-- ----------------------------
-- Table structure for tpf_role
-- ----------------------------
DROP TABLE IF EXISTS `tpf_role`;
CREATE TABLE `tpf_role` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`role_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '角色名',
`privs` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '权限列表',
`role_describe` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '权限描述',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '管理员角色表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_role
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_setting
-- ----------------------------
DROP TABLE IF EXISTS `tpf_setting`;
CREATE TABLE `tpf_setting` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sign` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '配置名',
`options` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '配置选项',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_setting
-- ----------------------------
INSERT INTO `tpf_setting` VALUES (1, 'site_options', '{\"site_name\":\"TPFrame\\u6846\\u67b6\\uff0c\\u6781\\u901f\\u3001\\u7cbe\\u7b80\\u3001\\u9ad8\\u6548\\u3001\\u9ad8\\u6269\\u5c55\\u7684\\u5f00\\u53d1\\u7cfb\\u7edf,\",\"site_host\":\"http:\\/\\/cms.tpframe.com\\/\",\"landline\":\"02315452563\",\"toll_free\":\"40088888888\",\"address\":\"\",\"site_icp\":\"\",\"site_admin_email\":\"[email protected]\",\"site_tongji\":\"\",\"site_copyright\":\"\",\"comment_time_interval\":\"60\"}');
-- ----------------------------
-- Table structure for tpf_slide
-- ----------------------------
DROP TABLE IF EXISTS `tpf_slide`;
CREATE TABLE `tpf_slide` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`cid` int(11) NOT NULL COMMENT '幻灯片分类 id',
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '幻灯片名称',
`pic` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '幻灯片图片',
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '幻灯片链接',
`des` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '幻灯片描述',
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '幻灯片内容',
`status` int(2) NOT NULL DEFAULT 1 COMMENT '状态,1显示,0不显示',
`sort` int(10) NULL DEFAULT 0 COMMENT '排序',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '幻灯片表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_slide
-- ----------------------------
INSERT INTO `tpf_slide` VALUES (1, 1, '1', 'http://demo.tpframe.com/data/uploads/20170713/8df6cfdb0a8dbcc2d3ea9e7af9b80759.jpg', '/', '', '', 1, 0);
INSERT INTO `tpf_slide` VALUES (2, 1, '2', 'http://demo.tpframe.com/data/uploads/20170713/8df6cfdb0a8dbcc2d3ea9e7af9b80759.jpg', '/', '', '', 1, 0);
INSERT INTO `tpf_slide` VALUES (3, 1, '3', 'http://demo.tpframe.com/data/uploads/20170713/8df6cfdb0a8dbcc2d3ea9e7af9b80759.jpg', '/', '', '', 1, 0);
-- ----------------------------
-- Table structure for tpf_slide_cat
-- ----------------------------
DROP TABLE IF EXISTS `tpf_slide_cat`;
CREATE TABLE `tpf_slide_cat` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '幻灯片分类名称',
`sign` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '幻灯片分类标识',
`remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '分类备注',
`status` int(2) NOT NULL DEFAULT 1 COMMENT '状态,1显示,0不显示',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '幻灯片分类表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_slide_cat
-- ----------------------------
INSERT INTO `tpf_slide_cat` VALUES (1, '首页大图广告', 'banner', '首页大图广告', 1);
-- ----------------------------
-- Table structure for tpf_spage
-- ----------------------------
DROP TABLE IF EXISTS `tpf_spage`;
CREATE TABLE `tpf_spage` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标题',
`keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '描述',
`sign` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标识',
`make_to_html` tinyint(1) NULL DEFAULT 0 COMMENT '是否生成html 0否 1是',
`filename` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '静态文件保存名',
`template` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '模板路径地址',
`sheader` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '头部包含文件',
`sbody` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '内容包含',
`sfooter` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '底部包含',
`datetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '添加时间',
`updatetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '单页表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_spage
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_taglist
-- ----------------------------
DROP TABLE IF EXISTS `tpf_taglist`;
CREATE TABLE `tpf_taglist` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tag` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标签',
`click` int(11) NULL DEFAULT 0 COMMENT '点击统计',
`total` int(11) NULL DEFAULT 0 COMMENT '文章统计',
`updatetime` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '最后更新时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '标签列表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_taglist
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_user
-- ----------------------------
DROP TABLE IF EXISTS `tpf_user`;
CREATE TABLE `tpf_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`mobile` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '手机号',
`password` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`pay_password` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '支付密码',
`headimg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '用户头像',
`nickname` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '昵称',
`gender` smallint(6) NULL DEFAULT 0 COMMENT '性别;0:保密,1:男;2:女',
`type` smallint(6) NULL DEFAULT 0 COMMENT '用户类型 0普通用户 1管理员',
`grade` smallint(6) NULL DEFAULT 0 COMMENT '用户等级 0普通用户',
`level` smallint(6) NULL DEFAULT 0 COMMENT '用户等级',
`parent_id` int(11) NULL DEFAULT 0 COMMENT '上级ID',
`birthday` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '生日',
`url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '用户个人网站',
`email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '邮箱',
`email_is_validate` tinyint(4) NULL DEFAULT 0 COMMENT '邮箱是否验证 0:未验证 1:已验证',
`city_id` int(11) NULL DEFAULT 0 COMMENT '城市ID',
`signature` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '个性签名',
`last_login_ip` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '最后登录ip',
`last_login_time` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`create_time` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '会员创建时间',
`isban` tinyint(4) NULL DEFAULT 0 COMMENT '是否被拉黑 0正常 1拉黑',
`privs` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '用户权限列表',
`role_id` int(11) NULL DEFAULT 0 COMMENT '权限ID',
`openid` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '开放平台ID',
`token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '第三方登录标识',
`login_way` tinyint(4) NULL DEFAULT 0 COMMENT '登录方式 0:账号密码 1:第三方快捷登录',
`integral` int(11) NULL DEFAULT 0 COMMENT '积分',
`money` decimal(4, 2) NULL DEFAULT 0.00 COMMENT '余额',
`profit` decimal(10, 2) NULL DEFAULT 0.00 COMMENT '佣金',
`qq_login_openid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_user
-- ----------------------------
INSERT INTO `tpf_user` VALUES (1, 'admin', NULL, '###09d77491fcfc0c4fe6858c2fa64a447b', NULL, NULL, 'admin', 0, 1, 0, 0, 0, NULL, '', '[email protected]', 0, 0, NULL, '127.0.0.1', '1610973020', '1610721975', 0, NULL, 0, NULL, NULL, 0, 0, 0.00, 0.00, NULL);
-- ----------------------------
-- Table structure for tpf_user_address
-- ----------------------------
DROP TABLE IF EXISTS `tpf_user_address`;
CREATE TABLE `tpf_user_address` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`user_id` mediumint(8) UNSIGNED NOT NULL DEFAULT 0,
`consignee` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '收货人',
`email` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '邮箱地址',
`country` int(11) NULL DEFAULT 0 COMMENT '国家',
`province` int(11) NULL DEFAULT 0 COMMENT '省份',
`city` int(11) NULL DEFAULT 0 COMMENT '城市',
`district` int(11) NULL DEFAULT 0 COMMENT '地区',
`twon` int(11) NULL DEFAULT 0 COMMENT '乡镇',
`address` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '地址',
`zipcode` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '邮政编码',
`mobile` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '手机',
`is_default` tinyint(1) NULL DEFAULT 0 COMMENT '默认收货地址 0否 1是',
PRIMARY KEY (`id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_user_address
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_user_grade
-- ----------------------------
DROP TABLE IF EXISTS `tpf_user_grade`;
CREATE TABLE `tpf_user_grade` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`grade_id` smallint(4) NULL DEFAULT 1 COMMENT '会员等级id',
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '普通会员' COMMENT '等级名称',
`discount` double(4, 2) NULL DEFAULT 10.00 COMMENT '折扣',
`status` tinyint(1) NULL DEFAULT 0 COMMENT '会员状态 0 禁用 1启用',
`icon` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '会员图标',
`pay_total_auto_upgrade` tinyint(1) NULL DEFAULT 0 COMMENT '是否累计消费自动升级 0否 1是',
`pay_total` decimal(10, 2) NULL DEFAULT 0.00 COMMENT '支付金额',
`buy_able` tinyint(1) NULL DEFAULT 1 COMMENT '会员等级是否可购买0否 1是',
`buy_money` decimal(8, 2) NULL DEFAULT 0.00 COMMENT '购买该会员所须钱',
`privilege` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '会员特权',
`explain` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '会员说明',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '会员等级表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_user_grade
-- ----------------------------
-- ----------------------------
-- Table structure for tpf_user_statistics
-- ----------------------------
DROP TABLE IF EXISTS `tpf_user_statistics`;
CREATE TABLE `tpf_user_statistics` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NULL DEFAULT 0 COMMENT '用户ID',
`total_money` decimal(10, 2) NULL DEFAULT 0.00 COMMENT '累计总金额 包括佣金,充值,兑换...所有的收入',
`total_profit` decimal(10, 2) NULL DEFAULT 0.00 COMMENT '累计总佣金',
`total_cashout` decimal(10, 2) NULL DEFAULT 0.00 COMMENT '总成功提现金额',
`total_integral` int(11) NULL DEFAULT 0 COMMENT '累计总积分',
`spread_code` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '传递因子/码,例如邀请码 由用户id+注册日期+随机数组成',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户统计' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of tpf_user_statistics
-- ----------------------------
SET FOREIGN_KEY_CHECKS = 1;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。