-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql-dfdata.txt
4140 lines (4110 loc) · 254 KB
/
sql-dfdata.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
INSERT INTO `#@__admintype` VALUES('1','信息发布员','1','t_AccList a_AccNew a_AccList a_MyList a_MyEdit a_MyDel sys_MdPwd sys_Feedback sys_MyUpload plus_留言簿模块 '),
('5','频道管理员','1','t_AccList t_AccNew t_AccEdit t_AccDel a_AccNew a_AccList a_AccEdit a_AccDel a_AccCheck a_MyList a_MyEdit a_MyDel a_MyCheck co_AddNote co_EditNote co_PlayNote co_ListNote co_ViewNote spec_New spec_List spec_Edit sys_MdPwd sys_Log sys_ArcTj sys_Source sys_Writer sys_Keyword sys_MakeHtml sys_Feedback sys_Upload sys_MyUpload member_List member_Edit plus_站内新闻发布 plus_友情链接模块 plus_留言簿模块 plus_投票模块 plus_广告管理 '),
('10','超级管理员','1','admin_AllowAll ');
INSERT INTO `#@__arcatt` VALUES('5','s','滚动'),
('1','h','头条'),
('3','f','幻灯'),
('2','c','推荐'),
('7','p','图片'),
('8','j','跳转'),
('4','a','特荐'),
('6','b','加粗');
INSERT INTO `#@__arcrank` VALUES('1','0','开放浏览','5','0','0',''),
('2','-1','待审核稿件','0','0','0',''),
('3','10','注册会员','5','0','100',''),
('4','50','中级会员','5','300','200',''),
('5','100','高级会员','5','800','500',''),
('6','20','低级会员','5','0','500',''),
('7','150','给力会员','5','1000','500',''),
('8','180','超能会员','5','1100','500','');
INSERT INTO `#@__area` VALUES('1','北京市','0','0'),
('102','西城区','1','2'),
('126','崇文区','1','0'),
('104','宣武区','1','0'),
('105','朝阳区','1','0'),
('106','海淀区','1','0'),
('107','丰台区','1','0'),
('108','石景山区','1','0'),
('109','门头沟区','1','0'),
('110','房山区','1','0'),
('111','通州区','1','0'),
('112','顺义区','1','0'),
('113','昌平区','1','0'),
('114','大兴区','1','0'),
('115','平谷县','1','0'),
('116','怀柔县','1','0'),
('117','密云县','1','0'),
('118','延庆县','1','0'),
('2','上海市','0','0'),
('201','黄浦区','2','0'),
('202','卢湾区','2','0'),
('203','徐汇区','2','0'),
('204','长宁区','2','0'),
('205','静安区','2','0'),
('206','普陀区','2','0'),
('207','闸北区','2','0'),
('208','虹口区','2','0'),
('209','杨浦区','2','0'),
('210','宝山区','2','0'),
('211','闵行区','2','0'),
('212','嘉定区','2','0'),
('213','浦东新区','2','0'),
('214','松江区','2','0'),
('215','金山区','2','0'),
('216','青浦区','2','0'),
('217','南汇区','2','0'),
('218','奉贤区','2','0'),
('219','崇明县','2','0'),
('3','天津市','0','0'),
('301','和平区','3','0'),
('302','河东区','3','0'),
('303','河西区','3','0'),
('304','南开区','3','0'),
('305','河北区','3','0'),
('306','红桥区','3','0'),
('307','塘沽区','3','0'),
('308','汉沽区','3','0'),
('309','大港区','3','0'),
('310','东丽区','3','0'),
('311','西青区','3','0'),
('312','北辰区','3','0'),
('313','津南区','3','0'),
('314','武清区','3','0'),
('315','宝坻区','3','0'),
('316','静海县','3','0'),
('317','宁河县','3','0'),
('318','蓟县','3','0'),
('4','重庆市','0','0'),
('401','渝中区','4','0'),
('402','大渡口区','4','0'),
('403','江北区','4','0'),
('404','沙坪坝区','4','0'),
('405','九龙坡区','4','0'),
('406','南岸区','4','0'),
('407','北碚区','4','0'),
('408','万盛区','4','0'),
('409','双桥区','4','0'),
('410','渝北区','4','0'),
('411','巴南区','4','0'),
('412','万州区','4','0'),
('413','涪陵区','4','0'),
('414','黔江区','4','0'),
('415','永川市','4','0'),
('416','合川市','4','0'),
('417','江津市','4','0'),
('418','南川市','4','0'),
('419','长寿县','4','0'),
('420','綦江县','4','0'),
('421','潼南县','4','0'),
('422','荣昌县','4','0'),
('423','璧山县','4','0'),
('424','大足县','4','0'),
('425','铜梁县','4','0'),
('426','梁平县','4','0'),
('427','城口县','4','0'),
('428','垫江县','4','0'),
('429','武隆县','4','0'),
('430','丰都县','4','0'),
('431','奉节县','4','0'),
('432','开县','4','0'),
('433','云阳县','4','0'),
('434','忠县','4','0'),
('435','巫溪县','4','0'),
('436','巫山县','4','0'),
('437','石柱县','4','0'),
('438','秀山县','4','0'),
('439','酉阳县','4','0'),
('440','彭水县','4','0'),
('5','广东省','0','0'),
('501','广州市','5','0'),
('502','深圳市','5','0'),
('503','珠海市','5','0'),
('504','汕头市','5','0'),
('505','韶关市','5','0'),
('506','河源市','5','0'),
('507','梅州市','5','0'),
('508','惠州市','5','0'),
('509','汕尾市','5','0'),
('510','东莞市','5','0'),
('511','中山市','5','0'),
('512','江门市','5','0'),
('513','佛山市','5','0'),
('514','阳江市','5','0'),
('515','湛江市','5','0'),
('516','茂名市','5','0'),
('517','肇庆市','5','0'),
('518','清远市','5','0'),
('519','潮州市','5','0'),
('520','揭阳市','5','0'),
('521','云浮市','5','0'),
('6','福建省','0','0'),
('601','福州市','6','0'),
('602','厦门市','6','0'),
('603','三明市','6','0'),
('604','莆田市','6','0'),
('605','泉州市','6','0'),
('606','漳州市','6','0'),
('607','南平市','6','0'),
('608','龙岩市','6','0'),
('609','宁德市','6','0'),
('7','浙江省','0','0'),
('701','杭州市','7','0'),
('702','宁波市','7','0'),
('703','温州市','7','0'),
('704','嘉兴市','7','0'),
('705','湖州市','7','0'),
('706','绍兴市','7','0'),
('707','金华市','7','0'),
('708','衢州市','7','0'),
('709','舟山市','7','0'),
('710','台州市','7','0'),
('711','丽水市','7','0'),
('8','江苏省','0','0'),
('801','南京市','8','0'),
('802','徐州市','8','0'),
('803','连云港市','8','0'),
('804','淮安市','8','0'),
('805','宿迁市','8','0'),
('806','盐城市','8','0'),
('807','扬州市','8','0'),
('808','泰州市','8','0'),
('809','南通市','8','0'),
('810','镇江市','8','0'),
('811','常州市','8','0'),
('812','无锡市','8','0'),
('813','苏州市','8','0'),
('9','山东省','0','0'),
('901','济南市','9','0'),
('902','青岛市','9','0'),
('903','淄博市','9','0'),
('904','枣庄市','9','0'),
('905','东营市','9','0'),
('906','潍坊市','9','0'),
('907','烟台市','9','0'),
('908','威海市','9','0'),
('909','济宁市','9','0'),
('910','泰安市','9','0'),
('911','日照市','9','0'),
('912','莱芜市','9','0'),
('913','德州市','9','0'),
('914','临沂市','9','0'),
('915','聊城市','9','0'),
('916','滨州市','9','0'),
('917','菏泽市','9','0'),
('10','辽宁省','0','0'),
('1001','沈阳市','10','0'),
('1002','大连市','10','0'),
('1003','鞍山市','10','0'),
('1004','抚顺市','10','0'),
('1005','本溪市','10','0'),
('1006','丹东市','10','0'),
('1007','锦州市','10','0'),
('1008','葫芦岛市','10','0'),
('1009','营口市','10','0'),
('1010','盘锦市','10','0'),
('1011','阜新市','10','0'),
('1012','辽阳市','10','0'),
('1013','铁岭市','10','0'),
('1014','朝阳市','10','0'),
('11','江西省','0','0'),
('1101','南昌市','11','0'),
('1102','景德镇市','11','0'),
('1103','萍乡市','11','0'),
('1104','新余市','11','0'),
('1105','九江市','11','0'),
('1106','鹰潭市','11','0'),
('1107','赣州市','11','0'),
('1108','吉安市','11','0'),
('1109','宜春市','11','0'),
('1110','抚州市','11','0'),
('1111','上饶市','11','0'),
('12','四川省','0','0'),
('1201','成都市','12','0'),
('1202','自贡市','12','0'),
('1203','攀枝花市','12','0'),
('1204','泸州市','12','0'),
('1205','德阳市','12','0'),
('1206','绵阳市','12','0'),
('1207','广元市','12','0'),
('1208','遂宁市','12','0'),
('1209','内江市','12','0'),
('1210','乐山市','12','0'),
('1211','南充市','12','0'),
('1212','宜宾市','12','0'),
('1213','广安市','12','0'),
('1214','达州市','12','0'),
('1215','巴中市','12','0'),
('1216','雅安市','12','0'),
('1217','眉山市','12','0'),
('1218','资阳市','12','0'),
('1219','阿坝州','12','0'),
('1220','甘孜州','12','0'),
('1221','凉山州','12','0'),
('13','陕西省','0','0'),
('3114','西安市','13','0'),
('1302','铜川市','13','0'),
('1303','宝鸡市','13','0'),
('1304','咸阳市','13','0'),
('1305','渭南市','13','0'),
('1306','延安市','13','0'),
('1307','汉中市','13','0'),
('1308','榆林市','13','0'),
('1309','安康市','13','0'),
('1310','商洛地区','13','0'),
('14','湖北省','0','0'),
('1401','武汉市','14','0'),
('1402','黄石市','14','0'),
('1403','襄樊市','14','0'),
('1404','十堰市','14','0'),
('1405','荆州市','14','0'),
('1406','宜昌市','14','0'),
('1407','荆门市','14','0'),
('1408','鄂州市','14','0'),
('1409','孝感市','14','0'),
('1410','黄冈市','14','0'),
('1411','咸宁市','14','0'),
('1412','随州市','14','0'),
('1413','仙桃市','14','0'),
('1414','天门市','14','0'),
('1415','潜江市','14','0'),
('1416','神农架','14','0'),
('1417','恩施州','14','0'),
('15','河南省','0','0'),
('1501','郑州市','15','0'),
('1502','开封市','15','0'),
('1503','洛阳市','15','0'),
('1504','平顶山市','15','0'),
('1505','焦作市','15','0'),
('1506','鹤壁市','15','0'),
('1507','新乡市','15','0'),
('1508','安阳市','15','0'),
('1509','濮阳市','15','0'),
('1510','许昌市','15','0'),
('1511','漯河市','15','0'),
('1512','三门峡市','15','0'),
('1513','南阳市','15','0'),
('1514','商丘市','15','0'),
('1515','信阳市','15','0'),
('1516','周口市','15','0'),
('1517','驻马店市','15','0'),
('1518','济源市','15','0'),
('16','河北省','0','0'),
('1601','石家庄市','16','0'),
('1602','唐山市','16','0'),
('1603','秦皇岛市','16','0'),
('1604','邯郸市','16','0'),
('1605','邢台市','16','0'),
('1606','保定市','16','0'),
('1607','张家口市','16','0'),
('1608','承德市','16','0'),
('1609','沧州市','16','0'),
('1610','廊坊市','16','0'),
('1611','衡水市','16','0'),
('17','山西省','0','0'),
('1701','太原市','17','0'),
('1702','大同市','17','0'),
('1703','阳泉市','17','0'),
('1704','长治市','17','0'),
('1705','晋城市','17','0'),
('1706','朔州市','17','0'),
('1707','晋中市','17','0'),
('1708','忻州市','17','0'),
('1709','临汾市','17','0'),
('1710','运城市','17','0'),
('1711','吕梁地区','17','0'),
('18','内蒙古','0','0'),
('1801','呼和浩特','18','0'),
('1802','包头市','18','0'),
('1803','乌海市','18','0'),
('1804','赤峰市','18','0'),
('1805','通辽市','18','0'),
('1806','鄂尔多斯','18','0'),
('1807','乌兰察布','18','0'),
('1808','锡林郭勒','18','0'),
('1809','呼伦贝尔','18','0'),
('1810','巴彦淖尔','18','0'),
('1811','阿拉善盟','18','0'),
('1812','兴安盟','18','0'),
('19','吉林省','0','0'),
('1901','长春市','19','0'),
('1902','吉林市','19','0'),
('1903','四平市','19','0'),
('1904','辽源市','19','0'),
('1905','通化市','19','0'),
('1906','白山市','19','0'),
('1907','松原市','19','0'),
('1908','白城市','19','0'),
('1909','延边州','19','0'),
('20','黑龙江','0','0'),
('2001','哈尔滨市','20','0'),
('2002','齐齐哈尔','20','0'),
('2003','鹤岗市','20','0'),
('2004','双鸭山市','20','0'),
('2005','鸡西市','20','0'),
('2006','大庆市','20','0'),
('2007','伊春市','20','0'),
('2008','牡丹江市','20','0'),
('2009','佳木斯市','20','0'),
('2010','七台河市','20','0'),
('2011','黑河市','20','0'),
('2012','绥化市','20','0'),
('2013','大兴安岭','20','0'),
('21','安徽省','0','0'),
('2101','合肥市','21','0'),
('2102','芜湖市','21','0'),
('2103','蚌埠市','21','0'),
('2104','淮南市','21','0'),
('2105','马鞍山市','21','0'),
('2106','淮北市','21','0'),
('2107','铜陵市','21','0'),
('2108','安庆市','21','0'),
('2109','黄山市','21','0'),
('2110','滁州市','21','0'),
('2111','阜阳市','21','0'),
('2112','宿州市','21','0'),
('2113','巢湖市','21','0'),
('2114','六安市','21','0'),
('2115','亳州市','21','0'),
('2116','宣城市','21','0'),
('2117','池州市','21','0'),
('22','湖南省','0','0'),
('2201','长沙市','22','0'),
('2202','株州市','22','0'),
('2203','湘潭市','22','0'),
('2204','衡阳市','22','0'),
('2205','邵阳市','22','0'),
('2206','岳阳市','22','0'),
('2207','常德市','22','0'),
('2208','张家界市','22','0'),
('2209','益阳市','22','0'),
('2210','郴州市','22','0'),
('2211','永州市','22','0'),
('2212','怀化市','22','0'),
('2213','娄底市','22','0'),
('2214','湘西州','22','0'),
('23','广西区','0','0'),
('2301','南宁市','23','0'),
('2302','柳州市','23','0'),
('2303','桂林市','23','0'),
('2304','梧州市','23','0'),
('2305','北海市','23','0'),
('2306','防城港市','23','0'),
('2307','钦州市','23','0'),
('2308','贵港市','23','0'),
('2309','玉林市','23','0'),
('2310','南宁地区','23','0'),
('2311','柳州地区','23','0'),
('2312','贺州地区','23','0'),
('2313','百色地区','23','0'),
('2314','河池地区','23','0'),
('24','海南省','0','0'),
('2401','海口市','24','0'),
('2402','三亚市','24','0'),
('2403','五指山市','24','0'),
('2404','琼海市','24','0'),
('2405','儋州市','24','0'),
('2406','琼山市','24','0'),
('2407','文昌市','24','0'),
('2408','万宁市','24','0'),
('2409','东方市','24','0'),
('2410','澄迈县','24','0'),
('2411','定安县','24','0'),
('2412','屯昌县','24','0'),
('2413','临高县','24','0'),
('2414','白沙县','24','0'),
('2415','昌江县','24','0'),
('2416','乐东县','24','0'),
('2417','陵水县','24','0'),
('2418','保亭县','24','0'),
('2419','琼中县','24','0'),
('25','云南省','0','0'),
('2501','昆明市','25','0'),
('2502','曲靖市','25','0'),
('2503','玉溪市','25','0'),
('2504','保山市','25','0'),
('2505','昭通市','25','0'),
('2506','思茅地区','25','0'),
('2507','临沧地区','25','0'),
('2508','丽江地区','25','0'),
('2509','文山州','25','0'),
('2510','红河州','25','0'),
('2511','西双版纳','25','0'),
('2512','楚雄州','25','0'),
('2513','大理州','25','0'),
('2514','德宏州','25','0'),
('2515','怒江州','25','0'),
('2516','迪庆州','25','0'),
('26','贵州省','0','0'),
('2601','贵阳市','26','0'),
('2602','六盘水市','26','0'),
('2603','遵义市','26','0'),
('2604','安顺市','26','0'),
('2605','铜仁地区','26','0'),
('2606','毕节地区','26','0'),
('2607','黔西南州','26','0'),
('2608','黔东南州','26','0'),
('2609','黔南州','26','0'),
('27','西藏区','0','0'),
('2701','拉萨市','27','0'),
('2702','那曲地区','27','0'),
('2703','昌都地区','27','0'),
('2704','山南地区','27','0'),
('2705','日喀则','27','0'),
('2706','阿里地区','27','0'),
('2707','林芝地区','27','0'),
('28','甘肃省','0','0'),
('2801','兰州市','28','0'),
('2802','金昌市','28','0'),
('2803','白银市','28','0'),
('2804','天水市','28','0'),
('2805','嘉峪关市','28','0'),
('2806','武威市','28','0'),
('2807','定西地区','28','0'),
('2808','平凉地区','28','0'),
('2809','庆阳地区','28','0'),
('2810','陇南地区','28','0'),
('2811','张掖地区','28','0'),
('2812','酒泉地区','28','0'),
('2813','甘南州','28','0'),
('2814','临夏州','28','0'),
('29','宁夏区','0','0'),
('2901','银川市','29','0'),
('2902','石嘴山市','29','0'),
('2903','吴忠市','29','0'),
('2904','固原市','29','0'),
('30','青海省','0','0'),
('3001','西宁市','30','0'),
('3002','海东地区','30','0'),
('3003','海北州','30','0'),
('3004','黄南州','30','0'),
('3005','海南州','30','0'),
('3006','果洛州','30','0'),
('3007','玉树州','30','0'),
('3008','海西州','30','0'),
('31','新疆区','0','0'),
('3101','乌鲁木齐','31','0'),
('3102','克拉玛依','31','0'),
('3103','石河子市','31','0'),
('3104','吐鲁番','31','0'),
('3105','哈密地区','31','0'),
('3106','和田地区','31','0'),
('3107','阿克苏','31','0'),
('3108','喀什地区','31','0'),
('3109','克孜勒苏','31','0'),
('3110','巴音郭楞','31','0'),
('3111','昌吉州','31','0'),
('3112','博尔塔拉','31','0'),
('3113','伊犁州','31','0'),
('3117','东城区','1','0'),
('32','香港区','0','0'),
('33','澳门区','0','0'),
('35','台湾省','0','0');
INSERT INTO `#@__channeltype` VALUES('1','article','普通文章','#@__archives','#@__addonarticle','article_add.php','content_list.php','article_edit.php','article_add.php','content_list.php','article_edit.php','<field:body itemname="文章内容" autofield="0" notsend="0" type="htmltext" isnull="true" islist="1" default="" maxlength="" page="split">\t\n</field:body>\t\n','','','1','1','1','-1','','10','0','1','1','标题','0','0'),
('2','image','图片集','#@__archives','#@__addonimages','album_add.php','content_i_list.php','album_edit.php','album_add.php','content_list.php','album_edit.php','<field:pagestyle itemname="页面风格" type="number" isnull="true" default="2" rename="" notsend="1" />\t\n<field:imgurls itemname="图片集合" type="img" isnull="true" default="" rename="" page="split"/>\t\n<field:body itemname="图集内容" autofield="0" notsend="0" type="htmltext" isnull="true" islist="0" default="" maxlength="250" page=""></field:body>','','','1','1','1','-1','','10','0','1','1','标题','0','0'),
('3','soft','软件','#@__archives','#@__addonsoft','soft_add.php','content_i_list.php','soft_edit.php','','','','<field:filetype islist="1" itemname="文件类型" type="text" isnull="true" default="" rename="" />\t\n<field:language islist="1" itemname="语言" type="text" isnull="true" default="" rename="" />\t\n<field:softtype islist="1" itemname="软件类型" type="text" isnull="true" default="" rename="" />\t\n<field:accredit islist="1" itemname="授权方式" type="text" isnull="true" default="" rename="" />\t\n<field:os islist="1" itemname="操作系统" type="text" isnull="true" default="" rename="" />\t\n<field:softrank islist="1" itemname="软件等级" type="int" isnull="true" default="3" rename="" function="GetRankStar(@me)" notsend="1"/>\t\n<field:officialUrl itemname="官方网址" type="text" isnull="true" default="" rename="" />\t\n<field:officialDemo itemname="演示网址" type="text" isnull="true" default="" rename="" />\t\n<field:softsize itemname="软件大小" type="text" isnull="true" default="" rename="" />\t\n<field:softlinks itemname="软件地址" type="softlinks" isnull="true" default="" rename="" />\t\n<field:introduce itemname="详细介绍" type="htmltext" isnull="trnue" default="" rename="" />\t\n<field:daccess islist="1" itemname="下载级别" type="int" isnull="true" default="0" rename="" function="" notsend="1"/>\t\n<field:needmoney islist="1" itemname="需要金币" type="int" isnull="true" default="0" rename="" function="" notsend="1" />','filetype,language,softtype,os,accredit,softrank','','1','1','1','-1','','10','0','1','1','标题','0','0'),
('-1','spec','专题','#@__archives','#@__addonspec','spec_add.php','content_s_list.php','spec_edit.php','','','','<field:note type="specialtopic" isnull="true" default="" rename=""/>','','','1','1','0','-1','','10','0','1','1','标题','0','0'),
('6','shop','商品','#@__archives','#@__addonshop','archives_add.php','content_list.php','archives_edit.php','archives_add.php','content_list.php','archives_edit.php','<field:body itemname="详细介绍" autofield="1" notsend="0" type="htmltext" isnull="true" islist="0" default="" maxlength="" page="split">\t\n</field:body>\t\n<field:price itemname="市场价" autofield="1" notsend="0" type="float" isnull="true" islist="1" default="" maxlength="" page="">\t\n</field:price>\t\n<field:trueprice itemname="优惠价" autofield="1" notsend="0" type="float" isnull="true" islist="1" default="" maxlength="" page="">\t\n</field:trueprice>\t\n<field:brand itemname="品牌" autofield="1" notsend="0" type="text" isnull="true" islist="1" default="" maxlength="250" page="">\t\n</field:brand>\t\n<field:units itemname="计量单位" autofield="1" notsend="0" type="text" isnull="true" islist="1" default="" maxlength="250" page="">\t\n</field:units>\t\n\n\t\n\n<field:vocation itemname="行业" autofield="1" notsend="0" type="stepselect" isnull="true" islist="0" default="" maxlength="250" page="">\t\n</field:vocation>\t\n\n<field:infotype itemname="信息类型" autofield="1" notsend="0" type="stepselect" isnull="true" islist="0" default="" maxlength="250" page="">\t\n</field:infotype>\t\n\n<field:uptime itemname="上架时间" autofield="1" notsend="0" type="datetime" isnull="true" islist="0" default="" maxlength="250" page="">\t\n</field:uptime>\t\n','price,trueprice,brand,units','','0','1','1','-1','','10','0','1','1','商品名称','0','0'),
('-8','infos','分类信息','#@__archives','#@__addoninfos','archives_sg_add.php','content_sg_list.php','archives_sg_edit.php','archives_sg_add.php','content_sg_list.php','archives_sg_edit.php','<field:channel itemname="频道id" autofield="0" notsend="0" type="int" isnull="true" islist="1" default="0" maxlength="10" page=""></field:channel>\t\n<field:arcrank itemname="浏览权限" autofield="0" notsend="0" type="int" isnull="true" islist="1" default="0" maxlength="5" page=""></field:arcrank>\t\n<field:mid itemname="会员id" autofield="0" notsend="0" type="int" isnull="true" islist="1" default="0" maxlength="8" page=""></field:mid>\t\n<field:click itemname="点击" autofield="0" notsend="0" type="int" isnull="true" islist="1" default="0" maxlength="10" page=""></field:click>\t\n<field:title itemname="标题" autofield="0" notsend="0" type="text" isnull="true" islist="1" default="0" maxlength="60" page=""></field:title>\t\n<field:senddate itemname="发布时间" autofield="0" notsend="0" type="int" isnull="true" islist="1" default="0" maxlength="10" page=""></field:senddate>\t\n<field:flag itemname="推荐属性" autofield="0" notsend="0" type="checkbox" isnull="true" islist="1" default="0" maxlength="10" page=""></field:flag>\t\n<field:litpic itemname="缩略图" autofield="0" notsend="0" type="text" isnull="true" islist="1" default="0" maxlength="60" page=""></field:litpic>\t\n<field:userip itemname="会员IP" autofield="0" notsend="0" type="text" isnull="true" islist="0" default="0" maxlength="15" page=""></field:userip>\t\n<field:lastpost itemname="最后评论时间" autofield="0" notsend="0" type="int" isnull="true" islist="1" default="0" maxlength="10" page=""></field:lastpost>\t\n<field:scores itemname="评论积分" autofield="0" notsend="0" type="int" isnull="true" islist="1" default="0" maxlength="8" page=""></field:scores>\t\n<field:goodpost itemname="好评数" autofield="0" notsend="0" type="int" isnull="true" islist="1" default="0" maxlength="8" page=""></field:goodpost>\t\n<field:badpost itemname="差评数" autofield="0" notsend="0" type="int" isnull="true" islist="1" default="0" maxlength="8" page=""></field:badpost>\t\n<field:nativeplace itemname="地区" autofield="1" notsend="0" type="stepselect" isnull="true" islist="1" default="0" maxlength="250" page="">\t\n</field:nativeplace>\t\n<field:infotype itemname="信息类型" autofield="1" notsend="0" type="stepselect" isnull="true" islist="1" default="0" maxlength="250" page="">\t\n</field:infotype>\t\n<field:body itemname="信息内容" autofield="1" notsend="0" type="htmltext" isnull="true" islist="0" default="" maxlength="250" page="">\t\n</field:body>\t\n<field:endtime itemname="截止日期" autofield="1" notsend="0" type="datetime" isnull="true" islist="1" default="" maxlength="250" page="">\t\n</field:endtime>\t\n<field:linkman itemname="联系人" autofield="1" notsend="0" type="text" isnull="true" islist="0" default="" maxlength="50" page="">\t\n</field:linkman>\t\n<field:tel itemname="联系电话" autofield="1" notsend="0" type="text" isnull="true" islist="0" default="" maxlength="50" page="">\t\n</field:tel>\t\n<field:email itemname="电子邮箱" autofield="1" notsend="0" type="text" isnull="true" islist="0" default="" maxlength="50" page="">\t\n</field:email>\t\n<field:address itemname="地址" autofield="1" notsend="0" type="text" isnull="true" islist="0" default="" maxlength="100" page="">\t\n</field:address>\t\n','channel,arcrank,mid,click,title,senddate,flag,litpic,lastpost,scores,goodpost,badpost,nativeplace,infotype,endtime','','-1','1','1','-1','','0','0','0','1','信息标题','0','0');
INSERT INTO `#@__co_onepage` VALUES('5','www.dedecms.com','织梦网络','1','gb2312','<div class="content">{@body}<div class="cupage">'),
('4','www.techweb.com.cn','Techweb','1','gb2312','<div class="content_txt">{@body}</div>\t\n'),
('6','tw.news.yahoo.com','台湾雅虎','1','big5','<div id="ynwsartcontent">{@body}</div>\t\n');
INSERT INTO `#@__flink` VALUES('2','1','http://www.dedecms.com','织梦CMS官方','','','','1226375403','1','2'),
('9','1','http://docs.dedecms.com/','DedeCMS维基手册','','','','1227772717','1','2'),
('8','1','http://bbs.dedecms.com','织梦技术论坛','','','','1227772703','1','2');
INSERT INTO `#@__flinktype` VALUES('1','综合网站'),
('2','娱乐类'),
('3','教育类'),
('4','计算机类'),
('5','电子商务'),
('6','网上信息'),
('7','论坛类'),
('8','其它类型');
INSERT INTO `#@__freelist` VALUES('1','测试内容','{listdir}/index_{listid}_{page}.html','{cmspath}/freelist/','index.html','1','{style}/list_free.htm','1289712633','100','0','{dede:list pagesize="30" col="1" titlelen="60" orderby="pubdate" orderway="desc" typeid="1" channel="1" }<li>[field:imglink/] [field:textlink/] <span class=info><small>日期:</small>[field:pubdate function="getdatemk(@me)"/] <small>点击:</small>[field:click/] <small>好评:</small>[field:scores/] </span>\t\n<p class=intro>[field:description/]...</p></li>{/dede:list}','阿三大厦大大','阿三大厦大厦大撒'),
('10','Google SiteMap 生成器','{listdir}googlemap_{page}.xml','{cmspath}','index.html','1','{style}/googlemap.htm','1226884666','100','0','{dede:list pagesize="500" col="1" titlelen="60" orderby="pubdate" orderway="desc" \t\n channel="1" keyword="" }<url>\t\n <loc>[field:arcurl function="Gmapurl(@me)"/]</loc> \t\n <title>[field:title function="HtmlReplace(@me)"/]</title>\t\n <news:news>\t\n <news:keywords>[field:keywords/]</news:keywords>\t\n <news:publication_date>[field:senddate function="strftime("%Y-%m-%d",@me)"/]</news:publication_date>\t\n </news:news>\t\n</url>{/dede:list}','','');
INSERT INTO `#@__member_type` VALUES('1','50','中级会员半年','100','7');
INSERT INTO `#@__homepageset` VALUES('default/index.htm','../index.html','0');
INSERT INTO `#@__moneycard_type` VALUES('1','100','30','100点卡'),
('2','200','55','200点卡'),
('3','300','75','300点卡');
INSERT INTO `#@__member_model` VALUES('1','个人','#@__member_person','个人会员模型','1','1','\t\n<field:onlynet itemname="联系方式限制" autofield="1" type="int" isnull="true" default="1" maxlength="250" issearch="" isshow="" state="1">\t\n</field:onlynet>\t\n\t\n<field:sex itemname="性别" autofield="1" type="radio" isnull="true" default="男,女,保密" maxlength="250" issearch="" isshow="" state="1">\t\n</field:sex>\t\n\t\n<field:uname itemname="昵称/公司名称" autofield="1" type="textchar" isnull="true" default="" maxlength="30" issearch="" isshow="" state="1">\t\n</field:uname>\t\n\t\n<field:qq itemname="QQ" autofield="1" type="textchar" isnull="true" default="" maxlength="12" issearch="" isshow="" state="1">\t\n</field:qq>\t\n\t\n<field:msn itemname="MSN" autofield="1" type="textchar" isnull="true" default="" maxlength="50" issearch="" isshow="" state="1">\t\n</field:msn>\t\n\t\n<field:tel itemname="电话号码" autofield="1" type="text" isnull="true" default="" maxlength="15" issearch="" isshow="" state="1">\t\n</field:tel>\t\n\t\n<field:mobile itemname="手机" autofield="1" type="text" isnull="true" default="" maxlength="15" issearch="" isshow="" state="1">\t\n</field:mobile>\t\n\t\n<field:place itemname="目前所在地" autofield="1" type="int" default="0" maxlength="5" issearch="0" isshow="0" state="1">\t\n</field:place>\t\n\t\n\t\n<field:oldplace itemname="家乡所在地" autofield="1" type="int" default="0" maxlength="5" issearch="0" isshow="0" state="1">\t\n</field:oldplace>\t\n\t\n\t\n<field:birthday itemname="生日" autofield="1" type="datetime" isnull="true" default="" maxlength="250" issearch="" isshow="" state="1">\t\n</field:birthday>\t\n\t\n<field:star itemname="星座" autofield="1" type="int" isnull="true" default="1" maxlength="6" issearch="" isshow="" state="1">\t\n</field:star>\t\n\t\n<field:income itemname="收入" autofield="1" type="int" isnull="true" default="0" maxlength="6" issearch="" isshow="" state="1">\t\n</field:income>\t\n\t\n<field:education itemname="学历" autofield="1" type="int" isnull="true" default="0" maxlength="6" issearch="" isshow="" state="1">\t\n</field:education>\t\n\t\n<field:height itemname="身高" autofield="1" type="int" isnull="true" default="160" maxlength="5" issearch="" isshow="" state="1">\t\n</field:height>\t\n\t\n<field:bodytype itemname="体重" autofield="1" type="int" isnull="true" default="0" maxlength="6" issearch="" isshow="" state="1">\t\n</field:bodytype>\t\n\t\n<field:blood itemname="血型" autofield="1" type="int" isnull="true" default="0" maxlength="6" issearch="" isshow="" state="1">\t\n</field:blood>\t\n\t\n<field:vocation itemname="职业" autofield="1" type="text" isnull="true" default="0" maxlength="6" issearch="" isshow="" state="1">\t\n</field:vocation>\t\n\t\n<field:smoke itemname="吸烟" autofield="1" type="int" isnull="true" default="0" maxlength="6" issearch="" isshow="" state="1">\t\n</field:smoke>\t\n\t\n<field:marital itemname="婚姻状况" autofield="1" type="text" isnull="true" default="0" maxlength="6" issearch="" isshow="" state="1">\t\n</field:marital>\t\n\t\n<field:house itemname="住房" autofield="1" type="int" isnull="true" default="0" maxlength="6" issearch="" isshow="" state="1">\t\n</field:house>\t\n\t\n<field:drink itemname="饮酒" autofield="1" type="int" isnull="true" default="0" maxlength="6" issearch="" isshow="" state="1">\t\n</field:drink>\t\n\t\n<field:datingtype itemname="交友" autofield="1" type="int" isnull="true" default="0" maxlength="6" issearch="" isshow="" state="1">\t\n</field:datingtype>\t\n\t\n<field:language itemname="语言" autofield="1" type="checkbox" isnull="true" default="普通话,上海话,广东话,英语,日语,韩语,法语,意大利语,德语,西班牙语,俄语,阿拉伯语" maxlength="250" issearch="" isshow="" state="1">\t\n</field:language>\t\n\t\n\t\n<field:nature itemname="性格" autofield="1" type="checkbox" isnull="true" default="性格外向,性格内向,活泼开朗,豪放不羁,患得患失,冲动,幽默,稳重,轻浮,沉默寡言,多愁善感,时喜时悲,附庸风雅,能说会道,坚强,脆弱,幼稚,成熟,快言快语,损人利己,狡猾善变,交际广泛,优柔寡断,自私,真诚,独立,依赖,难以琢磨,悲观消极,郁郁寡欢,胆小怕事,乐观向上,任性,自负,自卑,拜金,温柔体贴,小心翼翼,暴力倾向,逆来顺受,不拘小节,暴躁,倔强,豪爽,害羞,婆婆妈妈,敢做敢当,助人为乐,耿直,虚伪,孤僻,老实,守旧,敏感,迟钝,婆婆妈妈,武断,果断,刻薄" maxlength="250" issearch="" isshow="" state="1">\t\n</field:nature>\t\n\t\n<field:lovemsg itemname="人生格言" autofield="1" type="text" isnull="true" default="" maxlength="100" issearch="" isshow="" state="1">\t\n</field:lovemsg>\t\n\t\n<field:address itemname="家庭住址" autofield="1" type="text" isnull="true" default="" maxlength="50" issearch="" isshow="" state="1">\t\n</field:address>\t\n\t\n<field:uptime itemname="更新时间" autofield="1" type="int" isnull="true" default="" maxlength="10" issearch="" isshow="" state="1">\t\n</field:uptime>\t\n'),
('2','企业','#@__member_company','公司企业会员模型','1','1','\t\n<field:company itemname="公司名称" autofield="1" type="text" isnull="true" default="" maxlength="36" issearch="" isshow="" state="1">\t\n</field:company>\t\n\t\n<field:product itemname="公司产品" autofield="1" type="text" isnull="true" default="" maxlength="50" issearch="" isshow="" state="1">\t\n</field:product>\t\n\t\n<field:place itemname="所在地址" autofield="1" type="int" isnull="true" default="0" maxlength="5" issearch="" isshow="" state="1">\t\n</field:place>\t\n\t\n<field:vocation itemname="所属行业" autofield="1" type="int" isnull="true" default="0" maxlength="5" issearch="" isshow="" state="1">\t\n</field:vocation>\t\n\t\n<field:cosize itemname="公司规模" autofield="1" type="int" isnull="true" default="0" maxlength="5" issearch="" isshow="" state="1">\t\n</field:cosize>\t\n\t\n<field:tel itemname="电话号码" autofield="1" type="text" isnull="true" default="" maxlength="30" issearch="" isshow="" state="1">\t\n</field:tel>\t\n\t\n<field:fax itemname="传真" autofield="1" type="text" isnull="true" default="" maxlength="30" issearch="" isshow="" state="1">\t\n</field:fax>\t\n\t\n<field:linkman itemname="联系人" autofield="1" type="text" isnull="true" default="" maxlength="20" issearch="" isshow="" state="1">\t\n</field:linkman>\t\n\t\n<field:address itemname="详细地址" autofield="1" type="text" isnull="true" default="" maxlength="50" issearch="" isshow="" state="1">\t\n</field:address>\t\n\t\n<field:mobile itemname="手机" autofield="1" type="text" isnull="true" default="" maxlength="30" issearch="" isshow="" state="1">\t\n</field:mobile>\t\n\t\n<field:email itemname="邮箱" autofield="1" type="text" isnull="true" default="" maxlength="50" issearch="" isshow="" state="1">\t\n</field:email>\t\n\t\n<field:url itemname="地址" autofield="1" type="text" isnull="true" default="" maxlength="50" issearch="" isshow="" state="1">\t\n</field:url>\t\n\t\n<field:uptime itemname="更新时间" autofield="1" type="int" isnull="true" default="0" maxlength="10" issearch="" isshow="" state="1">\t\n</field:uptime>\t\n\t\n<field:checked itemname="是否审核" autofield="1" type="int" isnull="true" default="0" maxlength="1" issearch="" isshow="" state="1">\t\n</field:checked>\t\n\t\n<field:introduce itemname="公司简介" autofield="1" type="multitext" isnull="true" default="" maxlength="250" issearch="" isshow="" state="1">\t\n</field:introduce>\t\n\t\n<field:comface itemname="公司标志" autofield="1" type="text" isnull="true" default="" maxlength="255" issearch="" isshow="" state="1">\t\n</field:comface>\t\n');
INSERT INTO `#@__scores` VALUES('2','列兵','1','0','1'),
('3','班长','2','1000','1'),
('4','少尉','3','2000','1'),
('5','中尉','4','3000','1'),
('6','上尉','5','4000','1'),
('7','少校','6','5000','1'),
('8','中校','7','6000','1'),
('9','上校','8','9000','1'),
('10','少将','9','14000','1'),
('11','中将','10','19000','1'),
('12','上将','11','24000','1'),
('15','大将','12','29000','1');
INSERT INTO `#@__shops_delivery` VALUES('1','送货上门','10.21','送货上门,领取商品时付费.','0'),
('2','特快专递(EMS)','25.00','特快专递(EMS),要另收手续费.','0'),
('3','普通邮递','5.00','普通邮递','0'),
('4','邮局快邮','12.00','邮局快邮','0');
INSERT INTO `#@__member_stowtype` VALUES('sys','系统收藏','archives_do.php'),
('book','小说收藏','/book/book.php?bid');
INSERT INTO `#@__payment` VALUES('3','alipay','支付宝','2','支付宝网站(www.alipay.com) 是国内先进的网上支付平台。<br/>DedeCMS联合支付宝推出支付宝接口。<br/><a href="https://www.alipay.com/himalayas/practicality_customer.htm?customer_external_id=C4335994340215837114&market_type=from_agent_contract&pro_codes=6ACD133C5F350958F7F62F29651356BB " target="_blank"><font color="red">立即在线申请</font></a>','1','a:4:{s:14:"alipay_account";a:4:{s:5:"title";s:14:"支付宝用户账号";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:5:"value";s:20:"[email protected]";}s:10:"alipay_key";a:4:{s:5:"title";s:14:"交易安全校验码";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:5:"value";s:6:"dsfsdf";}s:14:"alipay_partner";a:4:{s:5:"title";s:12:"合作者身份ID";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:5:"value";s:1:"1";}s:17:"alipay_pay_method";a:5:{s:5:"title";s:14:"支付宝账号类型";s:11:"description";s:52:"请选择您最后一次跟支付宝签订的协议里面说明的接口类型";s:4:"type";s:6:"select";s:5:"iterm";s:58:"0:使用标准双接口,1:使用担保交易接口,2:使用即时到帐交易接口";s:5:"value";s:1:"1";}}','1','0','1'),
('2','bank','银行汇款/转帐','0','银行名称\t\n收款人信息:全称 ××× ;帐号或地址 ××× ;开户行 ×××。\t\n注意事项:办理电汇时,请在电汇单“汇款用途”一栏处注明您的订单号。','4','a:0:{}','1','1','0'),
('1','cod','货到付款','0','开通城市:×××\t\n货到付款区域:×××','3','a:0:{}','1','1','0'),
('6','yeepay','YeePay易宝','12','YeePay易宝(北京通融通信息技术有限公司)是专业从事多元化电子支付业务一站式服务的领跑者。在立足于网上支付的同时,YeePay易宝不断创新,将互联网、手机、固定电话整合在一个平台上,继短信支付、手机充值之后,首家推出了YeePay易宝电话支付业务,真正实现了离线支付,为更多传统行业搭建了电子支付的高速公路。YeePay易宝融合世界先进的电子支付文化,聚合众多金融、电信、IT、互联网等领域内的巨擘,旨在通过创新的支付机制,推动中国电子商务新进程。YeePay易宝致力于成为世界一流的电子支付应用和服务提供商,专注于金融增值服务和移动增值服务两大领域,创新并推广多元化、低成本的、安全有效的支付服务。<input type="button" name="Submit" value="立即注册" onclick="window.open("https://www.yeepay.com/selfservice/requestRegister.action")" />','2','a:2:{s:10:"yp_account";a:4:{s:5:"title";s:8:"商户编号";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:5:"value";s:2:"aa";}s:6:"yp_key";a:4:{s:5:"title";s:8:"商户密钥";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:5:"value";s:3:"dsa";}}','1','0','1');
INSERT INTO `#@__softconfig` VALUES('0','1','1','1','http://www.aaa.com | 镜像地址一\t\nhttp://www.bbb.com | 镜像地址二\t\nhttp://www.ccc.com | 镜像地址三\t\n','<p>?推荐使用第三方专业下载工具下载本站软件,使用 WinRAR v3.10 以上版本解压本站软件。<br />\t\n?如果这个软件总是不能下载的请点击报告错误,谢谢合作!!<br />\t\n?下载本站资源,如果服务器暂不能下载请过一段时间重试!<br />\t\n?如果遇到什么问题,请到本站论坛去咨寻,我们将在那里提供更多 、更好的资源!<br />\t\n?本站提供的一些商业软件是供学习研究之用,如用于商业用途,请购买正版。</p>','0','0','0','0');
INSERT INTO `#@__stepselect` VALUES('1','血型','blood','1','1'),
('2','体型','bodytype','1','1'),
('3','公司规模','cosize','1','1'),
('4','交友','datingtype','1','1'),
('5','是否饮酒','drink','1','1'),
('6','教育程度','education','1','1'),
('7','住房','house','1','1'),
('8','收入','income','1','1'),
('9','婚姻','marital','1','1'),
('10','是否抽烟','smoke','1','1'),
('11','星座','star','1','1'),
('12','系统缓存标识','system','1','1'),
('13','行业','vocation','0','0'),
('14','地区','nativeplace','0','0'),
('15','信息类型','infotype','0','0');
INSERT INTO `#@__store_groups` VALUES('1','交友','0','0','2'),
('2','旅游','0','0','0'),
('3','找女友','1','0','0');
INSERT INTO `#@__sys_set` VALUES('1','nature','性格外向,性格内向,活泼开朗,沉默寡言,幽默,稳重,轻浮,冲动,坚强,脆弱,幼稚,成熟,能说会道,自私,真诚,独立,依赖,任性,自负,自卑,温柔体贴,神经质,拜金,小心翼翼,暴躁,倔强,逆来顺受,不拘小节,婆婆妈妈,交际广泛,豪爽,害羞,狡猾善变,耿直,虚伪,乐观向上,悲观消极,郁郁寡欢,孤僻,难以琢磨,胆小怕事,敢做敢当,助人为乐,老实,守旧,敏感,迟钝,武断,果断,优柔寡断,暴力倾向,刻薄,损人利己,附庸风雅,时喜时悲,患得患失,快言快语,豪放不羁,多愁善感,循规蹈矩'),
('2','language','普通话,上海话,广东话,英语,日语,韩语,法语,意大利语,德语,西班牙语,俄语,阿拉伯语');
INSERT INTO `#@__member_group` VALUES('1','朋友','0');
INSERT INTO `#@__vote` VALUES('1','你是从哪儿得知本站的?','1266336000','1584547200','0','0','1','1','0','0','<v:note id="1" count="1">朋友介绍</v:note>rn<v:note id="2" count="0">门户网站的搜索引擎</v:note>rn<v:note id="3" count="2">Google或百度搜索</v:note>rn<v:note id="4" count="2">别的网站上的链接</v:note>rn<v:note id="5" count="1">其它途径</v:note>rn');
INSERT INTO `#@__myad` VALUES('1','0','0','indexTopBanner1','首页顶部导航大图-500*60','0','1297933028','1300525028','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=fronttopbanner&charset=gbk"></script>',''),
('2','0','0','indexTopBanner2','首页顶部导航小图-200*60','0','1297933605','1300525605','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=fronttopbanner2&charset=gbk"></script>',''),
('3','0','0','innerTopBanner1','(频道/列表)顶部导航大图-500*60','0','1297934052','1300526052','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=innertopbanner1&charset=gbk"></script>',''),
('4','0','0','innerTopBanner2','(频道/列表)顶部导航小图-200*60','0','1297934104','1300526104','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=innertopbanner2&charset=gbk"></script>',''),
('5','0','0','indexLeftBanner','首页左侧大图广告-712*75','0','1297934791','1300526791','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=indexleftbanner&charset=gbk"></script>',''),
('6','0','0','indexRightLitpic1','首页右侧小块图1-240*65','0','1297936106','1300528106','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=indexrtlitpic1&charset=gbk"></script>',''),
('7','0','0','indexRightLitpic2','首页右侧小块图2-240*65','0','1297936768','1300528768','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=indexrtlitpic2&charset=gbk"></script>',''),
('8','0','0','indexfooterAD','首页底部图片广告-726*91','0','1297937814','1300529814','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=indexfooterad&charset=gbk"></script>',''),
('9','0','0','innerfooterAD','(频道/列表)底部图片广告-726*91','0','1297991183','1300583183','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=innerfooterad&charset=gbk"></script>',''),
('10','0','0','innerfooterAD2','内容底部图片广告-726*91','0','1297991709','1300583709','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=innerfooterad2&charset=gbk"></script>',''),
('11','0','0','listRtPicAD','(频道/列表)右侧图片广告-240*200','0','1297992254','1300584254','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=listrtpicad&charset=gbk"></script>',''),
('12','0','0','contentRtPicAD','内容右侧图片广告-240*200','0','1297995082','1300587082','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=contentrtpicad&charset=gbk"></script>',''),
('13','0','0','listRtPicAD2','(频道/列表)右侧图片广告2-240*200','0','1297996543','1300588543','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=listrtpicad2&charset=gbk"></script>',''),
('14','0','0','contentRtPicAD2','内容右侧图片广告2-240*200','0','1297997106','1300589106','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=contentrtpicad2&charset=gbk"></script>',''),
('15','0','0','contentMidPicAD','内容页内容中广告-300*250','0','1297997971','1300589971','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=contentmidpicad&charset=gbk"></script>',''),
('16','0','0','searchPicAD','搜索页右侧广告-300*268','0','1297999720','1300591720','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=searchpicad&charset=gbk"></script>',''),
('17','0','0','indexRtpicAd3','首页右侧图片广告-240*200','0','1298000077','1300592077','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=indexrtpicad3&charset=gbk"></script>',''),
('18','0','0','searchTopBanner','搜索页面顶部banner广告-300*40','0','1298012954','1300604954','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=searchtopbanner&charset=gbk"></script>',''),
('19','0','0','contentTopBanner1','内容顶部导航大图-500*60','0','1298017655','1300609655','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=ctenttpbanner1&charset=gbk"></script>',''),
('20','0','0','contentTopBanner2','内容顶部导航小图-200*60','0','1298017688','1300609688','<script type="text/javascript" src="http://ad.dedecms.com/adsview/?action=single&key=ctenttpbanner2&charset=gbk"></script>','');
INSERT INTO `#@__sys_enum` VALUES('139','cms制作','503','vocation','503','0'),
('39','租房','1','house','0','1'),
('40','一房以上','2','house','0','1'),
('41','两房以上','3','house','0','1'),
('42','大户/别墅','4','house','0','1'),
('43','低于1000元','1','income','0','1'),
('44','1000元以上','2','income','0','1'),
('45','2000元以上','3','income','0','1'),
('46','4000元以上','4','income','0','1'),
('47','8000元以上','5','income','0','1'),
('48','15000以上','6','income','0','1'),
('49','初中以上','1','education','0','1'),
('50','高中/中专','2','education','0','1'),
('51','大学专科','3','education','0','1'),
('52','大学本科','4','education','0','1'),
('53','硕士','5','education','0','1'),
('54','博士以上','6','education','0','1'),
('55','仅用于判断缓存是否存在','0','system','0','1'),
('56','白羊座','1','star','0','1'),
('57','金牛座','2','star','0','1'),
('58','双子座','3','star','0','1'),
('59','巨蟹座','4','star','0','1'),
('60','狮子座','5','star','0','1'),
('61','处女座','6','star','0','1'),
('62','天枰座','7','star','0','1'),
('63','天蝎座','8','star','0','1'),
('64','射手座','9','star','0','1'),
('65','摩羯座','10','star','0','1'),
('66','水瓶座','11','star','0','1'),
('67','双鱼座','12','star','0','1'),
('68','不吸烟','1','smoke','0','1'),
('69','偶尔吸一点','2','smoke','0','1'),
('70','抽得很凶','3','smoke','0','1'),
('71','不喝酒','1','drink','0','1'),
('72','偶尔喝一点','2','drink','0','1'),
('73','喝得很凶','3','drink','0','1'),
('74','A','1','blood','0','1'),
('75','B','2','blood','0','1'),
('76','AB','3','blood','0','1'),
('77','O','4','blood','0','1'),
('78','未婚','1','marital','0','1'),
('79','已婚','2','marital','0','1'),
('80','离异','3','marital','0','1'),
('81','丧偶','4','marital','0','1'),
('82','匀称','1','bodytype','0','1'),
('83','苗条','2','bodytype','0','1'),
('84','健壮','3','bodytype','0','1'),
('85','略胖','4','bodytype','0','1'),
('86','丰满','5','bodytype','0','1'),
('87','瘦小','6','bodytype','0','1'),
('88','高瘦','7','bodytype','0','1'),
('89','网友','1','datingtype','0','1'),
('90','恋人','2','datingtype','0','1'),
('91','玩伴','3','datingtype','0','1'),
('92','共同兴趣','4','datingtype','0','1'),
('93','男性朋友','5','datingtype','0','1'),
('94','女性朋友','6','datingtype','0','1'),
('95','50人以下','1','cosize','0','1'),
('96','50-200人','2','cosize','0','1'),
('97','200-500人','3','cosize','0','1'),
('98','500-2000人','4','cosize','0','1'),
('99','2000-5000人','5','cosize','0','1'),
('100','5000人以上','6','cosize','0','1'),
('20019','澳门特别行政区','17500','nativeplace','17500','0'),
('20018','香港特别行政区','17000','nativeplace','17000','0'),
('20017','台湾省','16500','nativeplace','16500','0'),
('20016','图木舒克市','16015.3','nativeplace','16015','2'),
('20015','阿拉尔市','16015.2','nativeplace','16015','2'),
('20014','石河子市','16015.1','nativeplace','16015','2'),
('20013','省直辖行政单位','16015','nativeplace','16015','1'),
('20012','吉木乃县','16014.7','nativeplace','16015','2'),
('20011','青河县','16014.6','nativeplace','16015','2'),
('111','商品','500','infotype','500','0'),
('112','租房','1000','infotype','1000','0'),
('113','交友','1500','infotype','1500','0'),
('114','招聘','2000','infotype','2000','0'),
('115','求职','2500','infotype','2500','0'),
('116','票务','3000','infotype','3000','0'),
('117','服务','3500','infotype','3500','0'),
('118','培训','4000','infotype','4000','0'),
('119','出售','501','infotype','501','1'),
('121','求购','502','infotype','502','1'),
('122','交换','503','infotype','503','1'),
('123','合作','504','infotype','504','1'),
('124','出租','1001','infotype','1001','1'),
('125','求租','1002','infotype','1002','1'),
('126','合租','1003','infotype','1003','1'),
('127','找帅哥','1501','infotype','1501','1'),
('128','找美女','1502','infotype','1502','1'),
('129','纯友谊','1503','infotype','1503','1'),
('130','玩伴','1504','infotype','1504','1'),
('131','互联网','500','vocation','500','0'),
('132','网站制作','501','vocation','501','0'),
('133','机械','1000','vocation','1000','0'),
('134','农业机械','1001','vocation','1001','1'),
('135','机床','1002','vocation','1002','1'),
('136','纺织设备和器材','1003','vocation','1003','1'),
('137','风机/排风设备','1004','vocation','1004','1'),
('138','虚心','502','vocation','502','0'),
('140','模板制作','503.001','vocation','503','2'),
('141','模块开发','503.002','vocation','503','2'),
('142','企业网站','501.001','vocation','501','2'),
('143','门户开发','501.002','vocation','501','2'),
('144','商业网站','501.003','vocation','501','2'),
('145','个人博客','501.004','vocation','501','2'),
('166','化工','1500','vocation','1500','0'),
('147','松松散散','502.001','vocation','502','2'),
('148','测试分类','502.002','vocation','502','2'),
('150','塑料切割机','1002.001','vocation','1002','2'),
('151','打磨机','1002.002','vocation','1002','2'),
('152','水货机器','1002.003','vocation','1002','2'),
('153','自动收割机','1001.001','vocation','1001','2'),
('154','运输机','1001.002','vocation','1001','2'),
('159','水货','2501','infotype','2501','0'),
('160','水111','2501.001','infotype','2501','2'),
('161','水222','2501.002','infotype','2501','2'),
('162','有才','2502','infotype','2502','0'),
('163','有才啊啊啊','2502.001','infotype','2502','2'),
('167','塑料化工','1501','vocation','1501','0'),
('168','加工','1501.001','vocation','1501','2'),
('169','生产','1501.002','vocation','1501','2'),
('170','物流','1501.003','vocation','1501','2'),
('171','挨踢工作者','2000','vocation','2000','0'),
('172','程序员','2001','vocation','2001','0'),
('173','美工设计','2002','vocation','2002','0'),
('174','前端开发','2003','vocation','2003','0'),
('175','配色','2002.001','vocation','2002','2'),
('176','美学设计','2002.002','vocation','2002','2'),
('178','ddddd','502.003','vocation','502','2'),
('179','学习下','502.004','vocation','502','2'),
('20010','哈巴河县','16014.5','nativeplace','16015','2'),
('20009','福海县','16014.4','nativeplace','16014','2'),
('20008','富蕴县','16014.3','nativeplace','16014','2'),
('20007','布尔津县','16014.2','nativeplace','16014','2'),
('20006','阿勒泰市','16014.1','nativeplace','16014','2'),
('20005','阿勒泰地区','16014','nativeplace','16014','1'),
('20004','和布克赛尔蒙古自治县','16013.7','nativeplace','16014','2'),
('20003','裕民县','16013.6','nativeplace','16014','2'),
('20002','托里县','16013.5','nativeplace','16014','2'),
('20001','沙湾县','16013.4','nativeplace','16013','2'),
('20000','额敏县','16013.3','nativeplace','16013','2'),
('19999','乌苏市','16013.2','nativeplace','16013','2'),
('19998','塔城市','16013.1','nativeplace','16013','2'),
('19997','塔城地区','16013','nativeplace','16013','1'),
('19996','尼勒克县','16012.10','nativeplace','16012','2'),
('19995','特克斯县','16012.9','nativeplace','16013','2'),
('19994','昭苏县','16012.8','nativeplace','16013','2'),
('19993','新源县','16012.7','nativeplace','16013','2'),
('19992','巩留县','16012.6','nativeplace','16013','2'),
('19991','霍城县','16012.5','nativeplace','16013','2'),
('19990','察布查尔锡伯自治县','16012.4','nativeplace','16012','2'),
('19989','伊宁县','16012.3','nativeplace','16012','2'),
('19988','奎屯市','16012.2','nativeplace','16012','2'),
('19987','伊宁市','16012.1','nativeplace','16012','2'),
('19986','伊犁哈萨克自治州','16012','nativeplace','16012','1'),
('19985','民丰县','16011.8','nativeplace','16012','2'),
('19984','于田县','16011.7','nativeplace','16012','2'),
('19983','策勒县','16011.6','nativeplace','16012','2'),
('19982','洛浦县','16011.5','nativeplace','16012','2'),
('19981','皮山县','16011.4','nativeplace','16011','2'),
('19980','墨玉县','16011.3','nativeplace','16011','2'),
('19979','和田县','16011.2','nativeplace','16011','2'),
('19978','和田市','16011.1','nativeplace','16011','2'),
('19977','和田地区','16011','nativeplace','16011','1'),
('19976','塔什库尔干塔吉克自治县','16010.12','nativeplace','16010','2'),
('19975','巴楚县','16010.11','nativeplace','16010','2'),
('19974','伽师县','16010.10','nativeplace','16010','2'),
('19973','岳普湖县','16010.9','nativeplace','16011','2'),
('19972','麦盖提县','16010.8','nativeplace','16011','2'),
('19971','叶城县','16010.7','nativeplace','16011','2'),
('19970','莎车县','16010.6','nativeplace','16011','2'),
('19969','泽普县','16010.5','nativeplace','16011','2'),
('19968','英吉沙县','16010.4','nativeplace','16010','2'),
('19967','疏勒县','16010.3','nativeplace','16010','2'),
('19966','疏附县','16010.2','nativeplace','16010','2'),
('19965','喀什市','16010.1','nativeplace','16010','2'),
('19964','喀什地区','16010','nativeplace','16010','1'),
('19963','乌恰县','16009.4','nativeplace','16009','2'),
('19962','阿合奇县','16009.3','nativeplace','16009','2'),
('19961','阿克陶县','16009.2','nativeplace','16009','2'),
('19960','阿图什市','16009.1','nativeplace','16009','2'),
('19959','克孜勒苏柯尔克孜自治州','16009','nativeplace','16009','1'),
('19958','柯坪县','16008.9','nativeplace','16009','2'),
('19957','阿瓦提县','16008.8','nativeplace','16009','2'),
('19956','乌什县','16008.7','nativeplace','16009','2'),
('19955','拜城县','16008.6','nativeplace','16009','2'),
('19954','新和县','16008.5','nativeplace','16009','2'),
('19953','沙雅县','16008.4','nativeplace','16008','2'),
('19952','库车县','16008.3','nativeplace','16008','2'),
('19951','温宿县','16008.2','nativeplace','16008','2'),
('19950','阿克苏市','16008.1','nativeplace','16008','2'),
('19949','阿克苏地区','16008','nativeplace','16008','1'),
('19948','博湖县','16007.9','nativeplace','16008','2'),
('19947','和硕县','16007.8','nativeplace','16008','2'),
('19946','和静县','16007.7','nativeplace','16008','2'),
('19945','焉耆回族自治县','16007.6','nativeplace','16008','2'),
('19944','且末县','16007.5','nativeplace','16008','2'),
('19943','若羌县','16007.4','nativeplace','16007','2'),
('19942','尉犁县','16007.3','nativeplace','16007','2'),
('19941','轮台县','16007.2','nativeplace','16007','2'),
('19940','库尔勒市','16007.1','nativeplace','16007','2'),
('19939','巴音郭楞蒙古自治州','16007','nativeplace','16007','1'),
('19938','温泉县','16006.3','nativeplace','16006','2'),
('19937','精河县','16006.2','nativeplace','16006','2'),
('19936','博乐市','16006.1','nativeplace','16006','2'),
('19935','博尔塔拉蒙古自治州','16006','nativeplace','16006','1'),
('19934','木垒哈萨克自治县','16005.8','nativeplace','16006','2'),
('19933','吉木萨尔县','16005.7','nativeplace','16006','2'),
('19932','奇台县','16005.6','nativeplace','16006','2'),
('19931','玛纳斯县','16005.5','nativeplace','16006','2'),
('19930','呼图壁县','16005.4','nativeplace','16005','2'),
('19929','米泉市','16005.3','nativeplace','16005','2'),
('19928','阜康市','16005.2','nativeplace','16005','2'),
('19927','昌吉市','16005.1','nativeplace','16005','2'),
('19926','昌吉回族自治州','16005','nativeplace','16005','1'),
('19925','伊吾县','16004.3','nativeplace','16004','2'),
('19924','巴里坤哈萨克自治县','16004.2','nativeplace','16004','2'),
('19923','哈密市','16004.1','nativeplace','16004','2'),
('19922','哈密地区','16004','nativeplace','16004','1'),
('19921','托克逊县','16003.3','nativeplace','16003','2'),
('19920','鄯善县','16003.2','nativeplace','16003','2'),
('19919','吐鲁番市','16003.1','nativeplace','16003','2'),
('19918','吐鲁番地区','16003','nativeplace','16003','1'),
('19917','乌尔禾区','16002.4','nativeplace','16002','2'),
('19916','白碱滩区','16002.3','nativeplace','16002','2'),
('19915','克拉玛依区','16002.2','nativeplace','16002','2'),
('19914','独山子区','16002.1','nativeplace','16002','2'),
('19913','克拉玛依市','16002','nativeplace','16002','1'),
('19912','乌鲁木齐县','16001.8','nativeplace','16002','2'),
('19911','东山区','16001.7','nativeplace','16002','2'),
('19910','达坂城区','16001.6','nativeplace','16002','2'),
('19909','头屯河区','16001.5','nativeplace','16002','2'),
('19908','水磨沟区','16001.4','nativeplace','16001','2'),
('19907','新市区','16001.3','nativeplace','16001','2'),
('19906','沙依巴克区','16001.2','nativeplace','16001','2'),
('19905','天山区','16001.1','nativeplace','16001','2'),
('19904','乌鲁木齐市','16001','nativeplace','16001','1'),
('19903','新疆维吾尔自治区','16000','nativeplace','16000','0'),
('19902','海原县','15505.3','nativeplace','15505','2'),
('19901','中宁县','15505.2','nativeplace','15505','2'),
('19900','沙坡头区','15505.1','nativeplace','15505','2'),
('19899','中卫市','15505','nativeplace','15505','1'),
('19898','彭阳县','15504.5','nativeplace','15505','2'),
('19897','泾源县','15504.4','nativeplace','15504','2'),
('19896','隆德县','15504.3','nativeplace','15504','2'),
('19895','西吉县','15504.2','nativeplace','15504','2'),
('19894','原州区','15504.1','nativeplace','15504','2'),
('19893','固原市','15504','nativeplace','15504','1'),
('19892','青铜峡市','15503.4','nativeplace','15503','2'),
('19891','同心县','15503.3','nativeplace','15503','2'),
('19890','盐池县','15503.2','nativeplace','15503','2'),
('19889','利通区','15503.1','nativeplace','15503','2'),
('19888','吴忠市','15503','nativeplace','15503','1'),
('19887','平罗县','15502.3','nativeplace','15502','2'),
('19886','惠农区','15502.2','nativeplace','15502','2'),
('19885','大武口区','15502.1','nativeplace','15502','2'),
('19884','石嘴山市','15502','nativeplace','15502','1'),
('19883','灵武市','15501.6','nativeplace','15502','2'),
('19882','贺兰县','15501.5','nativeplace','15502','2'),
('19881','永宁县','15501.4','nativeplace','15501','2'),
('19880','金凤区','15501.3','nativeplace','15501','2'),
('19879','西夏区','15501.2','nativeplace','15501','2'),
('19878','兴庆区','15501.1','nativeplace','15501','2'),
('19877','银川市','15501','nativeplace','15501','1'),
('19876','宁夏回族自治区','15500','nativeplace','15500','0'),
('19875','天峻县','15008.5','nativeplace','15009','2'),
('19874','都兰县','15008.4','nativeplace','15008','2'),
('19873','乌兰县','15008.3','nativeplace','15008','2'),
('19872','德令哈市','15008.2','nativeplace','15008','2'),
('19871','格尔木市','15008.1','nativeplace','15008','2'),
('19870','海西蒙古族藏族自治州','15008','nativeplace','15008','1'),
('19869','曲麻莱县','15007.6','nativeplace','15008','2'),
('19868','囊谦县','15007.5','nativeplace','15008','2'),
('19867','治多县','15007.4','nativeplace','15007','2'),
('19866','称多县','15007.3','nativeplace','15007','2'),
('19865','杂多县','15007.2','nativeplace','15007','2'),
('19864','玉树县','15007.1','nativeplace','15007','2'),
('19863','玉树藏族自治州','15007','nativeplace','15007','1'),
('19862','玛多县','15006.6','nativeplace','15007','2'),
('19861','久治县','15006.5','nativeplace','15007','2'),
('19860','达日县','15006.4','nativeplace','15006','2'),
('19859','甘德县','15006.3','nativeplace','15006','2'),
('19858','班玛县','15006.2','nativeplace','15006','2'),
('19857','玛沁县','15006.1','nativeplace','15006','2'),
('19856','果洛藏族自治州','15006','nativeplace','15006','1'),
('19855','贵南县','15005.5','nativeplace','15006','2'),
('19854','兴海县','15005.4','nativeplace','15005','2'),
('19853','贵德县','15005.3','nativeplace','15005','2'),
('19852','同德县','15005.2','nativeplace','15005','2'),
('19851','共和县','15005.1','nativeplace','15005','2'),
('19850','海南藏族自治州','15005','nativeplace','15005','1'),
('19849','河南蒙古族自治县','15004.4','nativeplace','15004','2'),
('19848','泽库县','15004.3','nativeplace','15004','2'),
('19847','尖扎县','15004.2','nativeplace','15004','2'),
('19846','同仁县','15004.1','nativeplace','15004','2'),
('19845','黄南藏族自治州','15004','nativeplace','15004','1'),
('19844','刚察县','15003.4','nativeplace','15003','2'),
('19843','海晏县','15003.3','nativeplace','15003','2'),
('19842','祁连县','15003.2','nativeplace','15003','2'),
('19841','门源回族自治县','15003.1','nativeplace','15003','2'),
('19840','海北藏族自治州','15003','nativeplace','15003','1'),
('19839','循化撒拉族自治县','15002.6','nativeplace','15003','2'),
('19838','化隆回族自治县','15002.5','nativeplace','15003','2'),
('19837','互助土族自治县','15002.4','nativeplace','15002','2'),
('19836','乐都县','15002.3','nativeplace','15002','2'),
('19835','民和回族土族自治县','15002.2','nativeplace','15002','2'),
('19834','平安县','15002.1','nativeplace','15002','2'),
('19833','海东地区','15002','nativeplace','15002','1'),
('19832','湟源县','15001.7','nativeplace','15002','2'),
('19831','湟中县','15001.6','nativeplace','15002','2'),
('19830','大通回族土族自治县','15001.5','nativeplace','15002','2'),
('19829','城北区','15001.4','nativeplace','15001','2'),
('19828','城西区','15001.3','nativeplace','15001','2'),
('19827','城中区','15001.2','nativeplace','15001','2'),
('19826','城东区','15001.1','nativeplace','15001','2'),
('19825','西宁市','15001','nativeplace','15001','1'),
('19824','青海省','15000','nativeplace','15000','0'),
('19823','夏河县','14514.8','nativeplace','14515','2'),
('19822','碌曲县','14514.7','nativeplace','14515','2'),
('19821','玛曲县','14514.6','nativeplace','14515','2'),
('19820','迭部县','14514.5','nativeplace','14515','2'),
('19819','舟曲县','14514.4','nativeplace','14514','2'),
('19818','卓尼县','14514.3','nativeplace','14514','2'),
('19817','临潭县','14514.2','nativeplace','14514','2'),
('19816','合作市','14514.1','nativeplace','14514','2'),
('19815','甘南藏族自治州','14514','nativeplace','14514','1'),
('19814','积石山保安族东乡族撒拉族自治县','14513.8','nativeplace','14514','2'),
('19813','东乡族自治县','14513.7','nativeplace','14514','2'),
('19812','和政县','14513.6','nativeplace','14514','2'),
('19811','广河县','14513.5','nativeplace','14514','2'),
('19810','永靖县','14513.4','nativeplace','14513','2'),
('19809','康乐县','14513.3','nativeplace','14513','2'),
('19808','临夏县','14513.2','nativeplace','14513','2'),
('19807','临夏市','14513.1','nativeplace','14513','2'),
('19806','临夏回族自治州','14513','nativeplace','14513','1'),
('19805','两当县','14512.9','nativeplace','14513','2'),
('19804','徽 县','14512.8','nativeplace','14513','2'),
('19803','礼 县','14512.7','nativeplace','14513','2'),
('19802','西和县','14512.6','nativeplace','14513','2'),
('19801','康 县','14512.5','nativeplace','14513','2'),
('19800','宕昌县','14512.4','nativeplace','14512','2'),
('19799','文 县','14512.3','nativeplace','14512','2'),
('19798','成 县','14512.2','nativeplace','14512','2'),
('19797','武都区','14512.1','nativeplace','14512','2'),
('19796','陇南市','14512','nativeplace','14512','1'),
('19795','岷 县','14511.7','nativeplace','14512','2'),
('19794','漳 县','14511.6','nativeplace','14512','2'),
('19793','临洮县','14511.5','nativeplace','14512','2'),
('19792','渭源县','14511.4','nativeplace','14511','2'),
('19791','陇西县','14511.3','nativeplace','14511','2'),
('19790','通渭县','14511.2','nativeplace','14511','2'),
('19789','安定区','14511.1','nativeplace','14511','2'),
('19788','定西市','14511','nativeplace','14511','1'),
('19787','镇原县','14510.8','nativeplace','14511','2'),
('19786','宁 县','14510.7','nativeplace','14511','2'),
('19785','正宁县','14510.6','nativeplace','14511','2'),
('19784','合水县','14510.5','nativeplace','14511','2'),
('19783','华池县','14510.4','nativeplace','14510','2'),
('19782','环 县','14510.3','nativeplace','14510','2'),
('19781','庆城县','14510.2','nativeplace','14510','2'),
('19780','西峰区','14510.1','nativeplace','14510','2'),
('19779','庆阳市','14510','nativeplace','14510','1'),
('19778','敦煌市','14509.7','nativeplace','14510','2'),
('19777','玉门市','14509.6','nativeplace','14510','2'),
('19776','阿克塞哈萨克族自治县','14509.5','nativeplace','14510','2'),
('19775','肃北蒙古族自治县','14509.4','nativeplace','14509','2'),
('19774','安西县','14509.3','nativeplace','14509','2'),
('19773','金塔县','14509.2','nativeplace','14509','2'),
('19772','肃州区','14509.1','nativeplace','14509','2'),
('19771','酒泉市','14509','nativeplace','14509','1'),
('19770','静宁县','14508.7','nativeplace','14509','2'),
('19769','庄浪县','14508.6','nativeplace','14509','2'),
('19768','华亭县','14508.5','nativeplace','14509','2'),
('19767','崇信县','14508.4','nativeplace','14508','2'),
('19766','灵台县','14508.3','nativeplace','14508','2'),
('19765','泾川县','14508.2','nativeplace','14508','2'),
('19764','崆峒区','14508.1','nativeplace','14508','2'),
('19763','平凉市','14508','nativeplace','14508','1'),
('19762','山丹县','14507.6','nativeplace','14508','2'),
('19761','高台县','14507.5','nativeplace','14508','2'),
('19760','临泽县','14507.4','nativeplace','14507','2'),