install_data.sql
303 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
INSERT INTO pre_common_admingroup SET `admingid`='1',`alloweditpost`='1',`alloweditpoll`='1',`allowstickthread`='3',`allowmodpost`='1',`allowdelpost`='1',`allowmassprune`='1',`allowrefund`='1',`allowcensorword`='1',`allowviewip`='1',`allowbanip`='1',`allowedituser`='1',`allowmoduser`='1',`allowbanuser`='1',`allowbanvisituser`='1',`allowpostannounce`='1',`allowviewlog`='1',`allowbanpost`='1',`supe_allowpushthread`='1',`allowhighlightthread`='1',`allowlivethread`='1',`allowdigestthread`='3',`allowrecommendthread`='1',`allowbumpthread`='1',`allowclosethread`='1',`allowmovethread`='1',`allowedittypethread`='1',`allowstampthread`='1',`allowcopythread`='1',`allowmergethread`='1',`allowsplitthread`='1',`allowrepairthread`='1',`allowwarnpost`='1',`allowviewreport`='1',`alloweditforum`='1',`allowremovereward`='1',`allowedittrade`='1',`alloweditactivity`='1',`allowstickreply`='1',`allowmanagearticle`='1',`allowaddtopic`='1',`allowmanagetopic`='1',`allowdiy`='1',`allowclearrecycle`='1',`allowmanagetag`='1',`managefeed`='1',`managedoing`='1',`manageshare`='1',`manageblog`='1',`managealbum`='1',`managecomment`='1',`managemagiclog`='1',`managereport`='1',`managehotuser`='1',`managedefaultuser`='1',`managevideophoto`='1',`managemagic`='1',`manageclick`='1',`allowstamplist`='1',`allowmanagecollection`='1',`allowmakehtml`='1';
INSERT INTO pre_common_admingroup SET `admingid`='2',`alloweditpost`='1',`alloweditpoll`='0',`allowstickthread`='2',`allowmodpost`='1',`allowdelpost`='1',`allowmassprune`='1',`allowrefund`='1',`allowcensorword`='1',`allowviewip`='1',`allowbanip`='1',`allowedituser`='1',`allowmoduser`='1',`allowbanuser`='1',`allowbanvisituser`='1',`allowpostannounce`='1',`allowviewlog`='1',`allowbanpost`='1',`supe_allowpushthread`='0',`allowhighlightthread`='1',`allowlivethread`='1',`allowdigestthread`='3',`allowrecommendthread`='1',`allowbumpthread`='1',`allowclosethread`='1',`allowmovethread`='1',`allowedittypethread`='1',`allowstampthread`='1',`allowcopythread`='1',`allowmergethread`='1',`allowsplitthread`='1',`allowrepairthread`='1',`allowwarnpost`='1',`allowviewreport`='1',`alloweditforum`='1',`allowremovereward`='1',`allowedittrade`='0',`alloweditactivity`='0',`allowstickreply`='0',`allowmanagearticle`='0',`allowaddtopic`='0',`allowmanagetopic`='0',`allowdiy`='0',`allowclearrecycle`='0',`allowmanagetag`='0',`managefeed`='0',`managedoing`='0',`manageshare`='0',`manageblog`='0',`managealbum`='0',`managecomment`='0',`managemagiclog`='0',`managereport`='0',`managehotuser`='0',`managedefaultuser`='0',`managevideophoto`='0',`managemagic`='0',`manageclick`='0',`allowstamplist`='1',`allowmanagecollection`='1',`allowmakehtml`='0';
INSERT INTO pre_common_admingroup SET `admingid`='3',`alloweditpost`='1',`alloweditpoll`='0',`allowstickthread`='1',`allowmodpost`='1',`allowdelpost`='1',`allowmassprune`='0',`allowrefund`='0',`allowcensorword`='0',`allowviewip`='1',`allowbanip`='0',`allowedituser`='0',`allowmoduser`='1',`allowbanuser`='1',`allowbanvisituser`='0',`allowpostannounce`='0',`allowviewlog`='1',`allowbanpost`='1',`supe_allowpushthread`='0',`allowhighlightthread`='1',`allowlivethread`='1',`allowdigestthread`='3',`allowrecommendthread`='1',`allowbumpthread`='1',`allowclosethread`='1',`allowmovethread`='1',`allowedittypethread`='1',`allowstampthread`='1',`allowcopythread`='1',`allowmergethread`='1',`allowsplitthread`='1',`allowrepairthread`='1',`allowwarnpost`='1',`allowviewreport`='1',`alloweditforum`='1',`allowremovereward`='1',`allowedittrade`='0',`alloweditactivity`='0',`allowstickreply`='0',`allowmanagearticle`='0',`allowaddtopic`='0',`allowmanagetopic`='0',`allowdiy`='0',`allowclearrecycle`='0',`allowmanagetag`='0',`managefeed`='0',`managedoing`='0',`manageshare`='0',`manageblog`='0',`managealbum`='0',`managecomment`='0',`managemagiclog`='0',`managereport`='0',`managehotuser`='0',`managedefaultuser`='0',`managevideophoto`='0',`managemagic`='0',`manageclick`='0',`allowstamplist`='1',`allowmanagecollection`='0',`allowmakehtml`='0';
INSERT INTO pre_common_admingroup SET `admingid`='16',`alloweditpost`='0',`alloweditpoll`='0',`allowstickthread`='1',`allowmodpost`='0',`allowdelpost`='0',`allowmassprune`='0',`allowrefund`='0',`allowcensorword`='0',`allowviewip`='0',`allowbanip`='0',`allowedituser`='0',`allowmoduser`='0',`allowbanuser`='0',`allowbanvisituser`='0',`allowpostannounce`='0',`allowviewlog`='0',`allowbanpost`='1',`supe_allowpushthread`='0',`allowhighlightthread`='1',`allowlivethread`='0',`allowdigestthread`='1',`allowrecommendthread`='1',`allowbumpthread`='1',`allowclosethread`='1',`allowmovethread`='0',`allowedittypethread`='0',`allowstampthread`='1',`allowcopythread`='0',`allowmergethread`='0',`allowsplitthread`='0',`allowrepairthread`='0',`allowwarnpost`='1',`allowviewreport`='1',`alloweditforum`='0',`allowremovereward`='0',`allowedittrade`='0',`alloweditactivity`='0',`allowstickreply`='0',`allowmanagearticle`='0',`allowaddtopic`='0',`allowmanagetopic`='0',`allowdiy`='0',`allowclearrecycle`='0',`allowmanagetag`='0',`managefeed`='0',`managedoing`='0',`manageshare`='0',`manageblog`='0',`managealbum`='0',`managecomment`='0',`managemagiclog`='0',`managereport`='0',`managehotuser`='0',`managedefaultuser`='0',`managevideophoto`='0',`managemagic`='0',`manageclick`='0',`allowstamplist`='0',`allowmanagecollection`='0',`allowmakehtml`='0';
INSERT INTO pre_common_admingroup SET `admingid`='17',`alloweditpost`='1',`alloweditpoll`='0',`allowstickthread`='2',`allowmodpost`='1',`allowdelpost`='0',`allowmassprune`='0',`allowrefund`='1',`allowcensorword`='0',`allowviewip`='1',`allowbanip`='0',`allowedituser`='0',`allowmoduser`='0',`allowbanuser`='0',`allowbanvisituser`='0',`allowpostannounce`='1',`allowviewlog`='1',`allowbanpost`='1',`supe_allowpushthread`='0',`allowhighlightthread`='1',`allowlivethread`='0',`allowdigestthread`='3',`allowrecommendthread`='1',`allowbumpthread`='1',`allowclosethread`='1',`allowmovethread`='1',`allowedittypethread`='1',`allowstampthread`='1',`allowcopythread`='1',`allowmergethread`='1',`allowsplitthread`='1',`allowrepairthread`='1',`allowwarnpost`='1',`allowviewreport`='1',`alloweditforum`='1',`allowremovereward`='1',`allowedittrade`='0',`alloweditactivity`='0',`allowstickreply`='0',`allowmanagearticle`='0',`allowaddtopic`='0',`allowmanagetopic`='0',`allowdiy`='0',`allowclearrecycle`='0',`allowmanagetag`='0',`managefeed`='0',`managedoing`='0',`manageshare`='0',`manageblog`='0',`managealbum`='0',`managecomment`='0',`managemagiclog`='0',`managereport`='0',`managehotuser`='0',`managedefaultuser`='0',`managevideophoto`='0',`managemagic`='0',`manageclick`='0',`allowstamplist`='0',`allowmanagecollection`='0',`allowmakehtml`='0';
INSERT INTO pre_common_admingroup SET `admingid`='18',`alloweditpost`='0',`alloweditpoll`='0',`allowstickthread`='0',`allowmodpost`='0',`allowdelpost`='0',`allowmassprune`='0',`allowrefund`='0',`allowcensorword`='0',`allowviewip`='1',`allowbanip`='0',`allowedituser`='0',`allowmoduser`='0',`allowbanuser`='0',`allowbanvisituser`='0',`allowpostannounce`='0',`allowviewlog`='0',`allowbanpost`='0',`supe_allowpushthread`='1',`allowhighlightthread`='0',`allowlivethread`='0',`allowdigestthread`='0',`allowrecommendthread`='0',`allowbumpthread`='0',`allowclosethread`='0',`allowmovethread`='0',`allowedittypethread`='0',`allowstampthread`='0',`allowcopythread`='0',`allowmergethread`='0',`allowsplitthread`='0',`allowrepairthread`='0',`allowwarnpost`='0',`allowviewreport`='0',`alloweditforum`='0',`allowremovereward`='0',`allowedittrade`='0',`alloweditactivity`='0',`allowstickreply`='0',`allowmanagearticle`='0',`allowaddtopic`='0',`allowmanagetopic`='0',`allowdiy`='0',`allowclearrecycle`='0',`allowmanagetag`='0',`managefeed`='0',`managedoing`='0',`manageshare`='0',`manageblog`='0',`managealbum`='0',`managecomment`='0',`managemagiclog`='0',`managereport`='0',`managehotuser`='0',`managedefaultuser`='0',`managevideophoto`='0',`managemagic`='0',`manageclick`='0',`allowstamplist`='0',`allowmanagecollection`='0',`allowmakehtml`='0';
INSERT INTO pre_common_admingroup SET `admingid`='19',`alloweditpost`='0',`alloweditpoll`='0',`allowstickthread`='0',`allowmodpost`='1',`allowdelpost`='0',`allowmassprune`='0',`allowrefund`='0',`allowcensorword`='0',`allowviewip`='1',`allowbanip`='1',`allowedituser`='0',`allowmoduser`='1',`allowbanuser`='1',`allowbanvisituser`='0',`allowpostannounce`='0',`allowviewlog`='0',`allowbanpost`='0',`supe_allowpushthread`='0',`allowhighlightthread`='0',`allowlivethread`='0',`allowdigestthread`='0',`allowrecommendthread`='0',`allowbumpthread`='0',`allowclosethread`='0',`allowmovethread`='0',`allowedittypethread`='0',`allowstampthread`='0',`allowcopythread`='0',`allowmergethread`='0',`allowsplitthread`='0',`allowrepairthread`='0',`allowwarnpost`='0',`allowviewreport`='0',`alloweditforum`='0',`allowremovereward`='0',`allowedittrade`='0',`alloweditactivity`='0',`allowstickreply`='0',`allowmanagearticle`='0',`allowaddtopic`='0',`allowmanagetopic`='0',`allowdiy`='0',`allowclearrecycle`='0',`allowmanagetag`='0',`managefeed`='0',`managedoing`='0',`manageshare`='0',`manageblog`='0',`managealbum`='0',`managecomment`='0',`managemagiclog`='0',`managereport`='0',`managehotuser`='0',`managedefaultuser`='0',`managevideophoto`='0',`managemagic`='0',`manageclick`='0',`allowstamplist`='0',`allowmanagecollection`='0',`allowmakehtml`='0';
INSERT INTO pre_common_credit_rule VALUES ('1','发表主题','post','4','0','0','0','0','2','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('2','发表回复','reply','4','0','0','0','0','1','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('3','加精华','digest','4','0','0','0','0','5','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('4','上传附件','postattach','4','0','0','0','0','0','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('5','下载附件','getattach','4','0','0','0','0','0','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('6','发短消息','sendpm','4','0','0','0','0','0','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('7','搜索','search','4','0','0','0','0','0','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('8','访问推广','promotion_visit','4','0','0','0','0','1','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('9','注册推广','promotion_register','4','0','0','0','0','2','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('10','成功交易','tradefinished','4','0','0','0','0','0','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('11','邮箱认证','realemail','0','0','1','0','0','10','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('12','设置头像','setavatar','0','0','1','0','0','5','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('13','视频认证','videophoto','0','0','1','0','0','10','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('14','热点信息','hotinfo','4','0','0','0','0','0','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('15','每天登录','daylogin','1','0','1','0','0','2','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('16','访问别人空间','visit','1','0','10','2','0','2','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('17','打招呼','poke','1','0','10','2','0','1','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('18','留言','guestbook','1','0','20','2','0','1','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('19','被留言','getguestbook','1','0','5','2','0','1','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('20','发表记录','doing','1','0','5','0','0','1','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('21','发表日志','publishblog','1','0','3','0','0','2','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('22','参与投票','joinpoll','1','0','10','1','0','1','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('23','发起分享','createshare','1','0','3','0','0','1','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('24','评论','comment','1','0','40','1','0','1','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('25','被评论','getcomment','1','0','20','1','0','2','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('26','安装应用','installapp','4','0','0','3','0','0','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('27','使用应用','useapp','1','0','10','3','0','0','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('28','信息表态','click','1','0','10','1','0','0','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('29','修改域名','modifydomain','0','0','1','0','0','0','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('30','文章评论','portalcomment','1','0','40','1','0','1','0','0','0','0','0','0','');
INSERT INTO pre_common_credit_rule VALUES ('31','淘专辑被订阅','followedcollection','1','0','3','0','0','1','0','0','0','0','0','0','');
INSERT INTO pre_common_cron VALUES ('1','1','system','清空今日发帖数','cron_todaypost_daily.php','1269746623','1269792000','-1','-1','0','0');
INSERT INTO pre_common_cron VALUES ('2','1','system','清空本月在线时间','cron_onlinetime_monthly.php','1269682366','1270051200','-1','1','0','0');
INSERT INTO pre_common_cron VALUES ('3','1','system','每日数据清理','cron_cleanup_daily.php','1269746634','1269811800','-1','-1','5','30');
INSERT INTO pre_common_cron VALUES ('5','1','system','每日公告清理','cron_announcement_daily.php','1269746629','1269792000','-1','-1','0','0');
INSERT INTO pre_common_cron VALUES ('6','1','system','限时操作清理','cron_threadexpiry_hourly.php','1269746634','1269810000','-1','-1','-1','0');
INSERT INTO pre_common_cron VALUES ('7','1','system','论坛推广清理','cron_promotion_hourly.php','1269746629','1269792000','-1','-1','0','00');
INSERT INTO pre_common_cron VALUES ('8','1','system','每月主题清理','cron_cleanup_monthly.php','1269682408','1270072800','-1','1','6','00');
INSERT INTO pre_common_cron VALUES ('9','1','system','道具自动补货','cron_magic_daily.php','1269746629','1269792000','-1','-1','0','0');
INSERT INTO pre_common_cron VALUES ('10','1','system','每日验证问答更新','cron_secqaa_daily.php','1269746634','1269813600','-1','-1','6','0');
INSERT INTO pre_common_cron VALUES ('11','1','system','每日标签更新','cron_tag_daily.php','1269746633','1269792000','-1','-1','0','0');
INSERT INTO pre_common_cron VALUES ('12','1','system','每日勋章更新','cron_medal_daily.php','1269746634','1269792000','-1','-1','0','0');
INSERT INTO pre_common_cron VALUES ('13','1','system','清理过期动态','cron_cleanfeed.php','1269746634','1269792000','-1','-1','0','0');
INSERT INTO pre_common_cron VALUES ('14','1','system','每日获取安全补丁','cron_checkpatch_daily.php','1269746639','1269792000','-1','-1','2','22');
INSERT INTO pre_common_cron VALUES ('15','1','system','定时发布主题','cron_publish_halfhourly.php','1269746639','1269792000','-1','-1','-1','0 30');
INSERT INTO pre_common_cron VALUES ('16','1','system','每周广播归档','cron_follow_daily.php','1269746639','1269792000','-1','-1','02','0');
INSERT INTO pre_common_cron VALUES ('17','1','system','更新每日查看数','cron_todayviews_daily.php','1321500558','1321556400','-1','-1','3','0 5 10 15 20 25 30 35 40 45 50 55');
INSERT INTO pre_common_cron VALUES ('18','0','system','每日用户表优化','cron_member_optimize_daily.php','1321500558','1321556400','-1','-1','2','0 5 10 15 20 25 30 35 40 45 50 55');
INSERT INTO pre_common_cron VALUES ('19','1','system','统计今日热帖','cron_todayheats_daily.php','1269746623','1269792000','-1','-1','0','0');
INSERT INTO pre_common_cron VALUES ('20','1','system','更新版块最后发表(防水墙相关)','cron_security_cleanup_lastpost.php','1269746623','1269792000','-1','-1','7','0');
INSERT INTO pre_common_friendlink VALUES ('1','0','官方论坛','http://www.discuz.net','提供最新 Discuz! 产品新闻、软件下载与技术交流','static/image/common/logo_88_31.gif','2');
INSERT INTO pre_common_friendlink VALUES ('2','4','专用主机','http://www.verydz.com/','','','2');
INSERT INTO pre_common_friendlink VALUES ('3','2','漫游平台','http://www.manyou.com/','','','2');
INSERT INTO pre_common_friendlink VALUES ('4','3','Yeswan','http://www.yeswan.com','','','2');
INSERT INTO pre_common_friendlink VALUES ('5','1','Comsenz','http://www.comsenz.com','','','2');
INSERT INTO pre_common_member_count SET uid='1';
INSERT INTO pre_common_member_status SET uid='1';
INSERT INTO pre_common_member_field_forum SET uid='1';
INSERT INTO pre_common_member_field_home SET uid='1';
INSERT INTO pre_common_member_profile SET uid='1';
INSERT INTO pre_common_member_profile_setting VALUES('realname', 1, 0, 0, '真实姓名', '', 0, 0, 0, 0, 0, 0, 1, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('gender', 1, 0, 0, '性别', '', 0, 0, 0, 0, 0, 0, 1, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('birthyear', 1, 0, 0, '出生年份', '', 0, 0, 0, 0, 0, 0, 1, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('birthmonth', 1, 0, 0, '出生月份', '', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('birthday', 1, 0, 0, '生日', '', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('constellation', 1, 1, 0, '星座', '星座(根据生日自动计算)', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('zodiac', 1, 1, 0, '生肖', '生肖(根据生日自动计算)', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('telephone', 1, 1, 0, '固定电话', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('mobile', 1, 1, 0, '手机', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('idcardtype', 1, 1, 0, '证件类型', '身份证 护照 驾驶证等', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '身份证\n护照\n驾驶证', '');
INSERT INTO pre_common_member_profile_setting VALUES('idcard', 1, 1, 0, '证件号', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('address', 1, 1, 0, '邮寄地址', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('zipcode', 1, 1, 0, '邮编', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('nationality', 0, 0, 0, '国籍', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('birthprovince', 1, 0, 0, '出生省份', '', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('birthcity', 1, 0, 0, '出生地', '', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('birthdist', 1, 0, 0, '出生县', '出生行政区/县', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('birthcommunity', 1, 0, 0, '出生小区', '', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('resideprovince', 1, 0, 0, '居住省份', '', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('residecity', 1, 0, 0, '居住地', '', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('residedist', 1, 0, 0, '居住县', '居住行政区/县', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('residecommunity', 1, 0, 0, '居住小区', '', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('residesuite', 0, 0, 0, '房间', '小区、写字楼门牌号', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('graduateschool', 1, 0, 0, '毕业学校', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('education', 1, 0, 0, '学历', '', 0, 0, 0, 0, 0, 0, 0, 'select', 0, '博士\n硕士\n本科\n专科\n中学\n小学\n其它', '');
INSERT INTO pre_common_member_profile_setting VALUES('company', 1, 0, 0, '公司', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('occupation', 1, 0, 0, '职业', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('position', 1, 0, 0, '职位', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('revenue', 1, 1, 0, '年收入', '单位 元', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('affectivestatus', 1, 1, 0, '情感状态', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('lookingfor', 1, 0, 0, '交友目的', '希望在网站找到什么样的朋友', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('bloodtype', 1, 1, 0, '血型', '', 0, 0, 0, 0, 0, 0, 0, 'select', 0, 'A\nB\nAB\nO\n其它', '');
INSERT INTO pre_common_member_profile_setting VALUES('height', 0, 1, 0, '身高', '单位 cm', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('weight', 0, 1, 0, '体重', '单位 kg', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('alipay', 1, 1, 0, '支付宝', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('icq', 0, 1, 0, 'ICQ', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('qq', 1, 1, 0, 'QQ', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('yahoo', 0, 1, 0, 'YAHOO帐号', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('msn', 1, 1, 0, 'MSN', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('taobao', 1, 1, 0, '阿里旺旺', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('site', 1, 0, 0, '个人主页', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('bio', 1, 1, 0, '自我介绍', '', 0, 0, 0, 0, 0, 0, 0, 'textarea', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('interest', 1, 0, 0, '兴趣爱好', '', 0, 0, 0, 0, 0, 0, 0, 'textarea', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('field1', 0, 1, 0, '自定义字段1', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('field2', 0, 1, 0, '自定义字段2', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('field3', 0, 1, 0, '自定义字段3', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('field4', 0, 1, 0, '自定义字段4', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('field5', 0, 1, 0, '自定义字段5', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('field6', 0, 1, 0, '自定义字段6', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('field7', 0, 1, 0, '自定义字段7', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
INSERT INTO pre_common_member_profile_setting VALUES('field8', 0, 1, 0, '自定义字段8', '', 0, 0, 0, 0, 0, 0, 0, 'text', 0, '', '');
-- INSERT INTO `pre_portal_category` VALUES (1, 0, '产品动态', 0, 0);
-- INSERT INTO `pre_portal_category` VALUES (2, 0, '公司新闻', 0, 0);
-- INSERT INTO `pre_portal_category` VALUES (3, 0, '产品服务', 0, 0);
-- INSERT INTO `pre_portal_category` VALUES (4, 0, '业界动态', 0, 0);
-- INSERT INTO `pre_portal_category` VALUES (5, 2, '市场活动', 0, 0);
-- INSERT INTO `pre_portal_category` VALUES (6, 2, '互联网', 0, 0);
-- INSERT INTO `pre_portal_category` VALUES (7, 2, '走进康盛', 0, 0);
-- [update_nav]
INSERT INTO pre_common_nav VALUES ('','0','门户','Portal','portal.php','1','0','0','-1','1','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','论坛','BBS','forum.php','2','0','0','1','2','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','群组','Group','group.php','3','0','0','-1','7','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','动态','Space','home.php','4','0','0','-1','8','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','游戏','Manyou','userapp.php','5','0','0','1','6','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','插件','Plugin','#','6','0','0','1','9','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','帮助','Help','misc.php?mod=faq','7','0','0','0','10','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','排行榜','Ranklist','misc.php?mod=ranklist','8','0','0','-1','16','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','广播','Follow','home.php?mod=follow','9','0','0','-1','5','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','导读','Guide','forum.php?mod=guide','10','0','0','-1','3','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','淘帖','Collection','forum.php?mod=collection','11','0','0','-1','11','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','日志','Blog','home.php?mod=space&do=blog','12','0','0','-1','12','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','相册','Album','home.php?mod=space&do=album','13','0','0','-1','13','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','分享','Share','home.php?mod=space&do=share','14','0','0','-1','14','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('','0','记录','Doing','home.php?mod=space&do=doing','15','0','0','-1','15','0','0','0', 0, '', '', '', 0, '');
INSERT INTO pre_common_nav VALUES ('', '0', '站点统计', '', 'misc.php?mod=stat', 'stat', 0, 0, 1, 1, 0, 0, 0, 0, '', '', '', 1, '');
INSERT INTO pre_common_nav VALUES ('', '0', '举报', '', '#', 'report', 0, 0, 1, 2, 0, 0, 0, 0, '', '', '', 1, '');
INSERT INTO pre_common_nav VALUES ('', '0', 'Archiver', '', 'archiver/', 'archiver', 0, 0, 1, 3, 0, 0, 0, 0, '', '', '', 1, '');
INSERT INTO pre_common_nav VALUES ('', '0', '手机版', '', 'forum.php?mobile=yes', 'mobile', 0, 0, 1, 3, 0, 0, 0, 0, '', '', '', 1, '');
INSERT INTO pre_common_nav VALUES ('', '0', '小黑屋', '', 'forum.php?mod=misc&action=showdarkroom', 'darkroom', 0, 0, 1, 3, 0, 0, 0, 0, '', '', '', 1, '');
INSERT INTO pre_common_nav VALUES ('', '0', '日志', '', 'home.php?mod=space&do=blog', 'blog', 0, 0, -1, 2, 0, 0, 0, 0, '{STATICURL}image/feed/blog.gif', '发布', 'home.php?mod=spacecp&ac=blog', 2, '');
INSERT INTO pre_common_nav VALUES ('', '0', '相册', '', 'home.php?mod=space&do=album', 'album', 0, 0, -1, 3, 0, 0, 0, 0, '{STATICURL}image/feed/album.gif', '上传', 'home.php?mod=spacecp&ac=upload', 2, '');
INSERT INTO pre_common_nav VALUES ('', '0', '分享', '', 'home.php?mod=space&do=share', 'share', 0, 0, -1, 4, 0, 0, 0, 0, '{STATICURL}image/feed/share.gif', '添加', 'home.php?mod=spacecp&ac=share', 2, '');
INSERT INTO pre_common_nav VALUES ('', '0', '记录', '', 'home.php?mod=space&do=doing', 'doing', 0, 0, -1, 5, 0, 0, 0, 0, '{STATICURL}image/feed/doing.gif', '', '', 2, '');
INSERT INTO pre_common_nav VALUES ('', '0', '广播', '', 'home.php?mod=follow', 'follow', 0, 0, -1, 6, 0, 0, 0, 0, '{STATICURL}image/feed/follow.gif', '', '', 2, '');
INSERT INTO pre_common_nav VALUES ('', '0', '{userpanelarea1}', '', '', '', 0, 0, 1, 7, 0, 0, 0, 0, '', '', '', 2, '');
INSERT INTO pre_common_nav VALUES ('', '0', '{hr}', '', '', '', 0, 1, 1, 8, 0, 0, 0, 0, '', '', '', 2, '');
INSERT INTO pre_common_nav VALUES ('', '0', '{userpanelarea2}', '', '', '', 0, 0, 1, 9, 0, 0, 0, 0, '', '', '', 2, '');
INSERT INTO pre_common_nav VALUES ('', '0', '好友', '', 'home.php?mod=space&do=friend', 'friend', 0, 0, 0, 1, 0, 0, 0, 0, '{STATICURL}image/feed/friend_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '帖子', '', 'forum.php?mod=guide&view=my', 'thread', 0, 0, 0, 2, 0, 0, 0, 0, '{STATICURL}image/feed/thread_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '收藏', '', 'home.php?mod=space&do=favorite&view=me', 'favorite', 0, 0, 0, 3, 0, 0, 0, 0, '{STATICURL}image/feed/favorite_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '道具', '', 'home.php?mod=magic', 'magic', 0, 0, 1, 4, 0, 0, 0, 0, '{STATICURL}image/feed/magic_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '勋章', '', 'home.php?mod=medal', 'medal', 0, 0, 1, 5, 0, 0, 0, 0, '{STATICURL}image/feed/medal_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '任务', '', 'home.php?mod=task', 'task', 0, 0, 1, 6, 0, 0, 0, 0, '{STATICURL}image/feed/task_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '淘帖', '', 'forum.php?mod=collection&op=my', 'collection', 0, 0, -1, 7, 0, 0, 0, 0, '{STATICURL}image/feed/collection_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '动态', '', 'home.php', 'feed', 0, 0, -1, 8, 0, 0, 0, 0, '{STATICURL}image/feed/feed_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '日志', '', 'home.php?mod=space&do=blog', 'blog', 0, 0, -1, 9, 0, 0, 0, 0, '{STATICURL}image/feed/blog_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '相册', '', 'home.php?mod=space&do=album', 'album', 0, 0, -1, 10, 0, 0, 0, 0, '{STATICURL}image/feed/album_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '分享', '', 'home.php?mod=space&do=share', 'share', 0, 0, -1, 11, 0, 0, 0, 0, '{STATICURL}image/feed/share_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '记录', '', 'home.php?mod=space&do=doing', 'doing', 0, 0, -1, 12, 0, 0, 0, 0, '{STATICURL}image/feed/doing_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '留言板', '', 'home.php?mod=space&do=wall', 'wall', 0, 0, -1, 13, 0, 0, 0, 0, '{STATICURL}image/feed/wall_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '广播', '', 'home.php?mod=follow', 'follow', 0, 0, -1, 14, 0, 0, 0, 0, '{STATICURL}image/feed/follow_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '群组', '', 'group.php', 'group', 0, 0, -1, 15, 0, 0, 0, 0, '{STATICURL}image/feed/group_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '门户', '', 'portal.php', 'portal', 0, 0, -1, 16, 0, 0, 0, 0, '{STATICURL}image/feed/portal_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '导读', '', 'forum.php?mod=guide', 'guide', 0, 0, -1, 17, 0, 0, 0, 0, '{STATICURL}image/feed/guide_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '排行榜', '', 'misc.php?mod=ranklist', 'ranklist', 0, 0, -1, 18, 0, 0, 0, 0, '{STATICURL}image/feed/ranklist_b.png', '', '', 3, '');
INSERT INTO pre_common_nav VALUES ('', '0', '设为首页', '', '#', 'sethomepage', 0, 0, 1, 1, 0, 0, 0, 0, '', '', '', 4, '');
INSERT INTO pre_common_nav VALUES ('', '0', '收藏本站', '', '#', 'setfavorite', 0, 0, 1, 2, 0, 0, 0, 0, '', '', '', 4, '');
-- [/update_nav]
INSERT INTO pre_common_setting VALUES ('accessemail','');
INSERT INTO pre_common_setting VALUES ('activityforumid','0');
INSERT INTO pre_common_setting VALUES ('activityfield','');
INSERT INTO pre_common_setting VALUES ('activityextnum','0');
INSERT INTO pre_common_setting VALUES ('activitypp','8');
INSERT INTO pre_common_setting VALUES ('activitycredit','1');
INSERT INTO pre_common_setting VALUES ('activitytype','朋友聚会\r\n出外郊游\r\n自驾出行\r\n公益活动\r\n线上活动');
INSERT INTO pre_common_setting VALUES ('adminemail','');
INSERT INTO pre_common_setting VALUES ('adminipaccess','');
INSERT INTO pre_common_setting VALUES ('adminnotifytypes','verifythread,verifypost,verifyuser,verifyblog,verifydoing,verifypic,verifyshare,verifycommontes,verifyrecycle,verifyrecyclepost,verifyarticle,verifyacommont,verifymedal,verify_1,verify_2,verify_3,verify_4,verify_5,verify_6,verify_7');
INSERT INTO pre_common_setting VALUES ('anonymoustext','匿名');
INSERT INTO pre_common_setting VALUES ('advtype','a:1:{i:0;s:6:\"custom\";}');
INSERT INTO pre_common_setting VALUES ('allowattachurl','0');
INSERT INTO pre_common_setting VALUES ('allowdomain','0');
INSERT INTO pre_common_setting VALUES ('alloweditpost','0');
INSERT INTO pre_common_setting VALUES ('allowswitcheditor','1');
INSERT INTO pre_common_setting VALUES ('allowthreadplugin','');
INSERT INTO pre_common_setting VALUES ('allowviewuserthread','a:2:{s:5:\"allow\";s:1:\"1\";s:4:\"fids\";a:1:{i:0;s:0:\"\";}}');
INSERT INTO pre_common_setting VALUES ('archiver','1');
INSERT INTO pre_common_setting VALUES ('archiverredirect','0');
INSERT INTO pre_common_setting VALUES ('attachbanperiods','');
INSERT INTO pre_common_setting VALUES ('attachdir','./data/attachment');
INSERT INTO pre_common_setting VALUES ('attachexpire','');
INSERT INTO pre_common_setting VALUES ('attachimgpost','1');
INSERT INTO pre_common_setting VALUES ('attachrefcheck','0');
INSERT INTO pre_common_setting VALUES ('attachsave','3');
INSERT INTO pre_common_setting VALUES ('attachurl','data/attachment');
INSERT INTO pre_common_setting VALUES ('authkey','9f50c9zryqZt5FYA');
INSERT INTO pre_common_setting VALUES ('authoronleft','1');
INSERT INTO pre_common_setting VALUES ('uidlogin','0');
INSERT INTO pre_common_setting VALUES ('autoidselect','0');
INSERT INTO pre_common_setting VALUES ('avatarmethod','0');
INSERT INTO pre_common_setting VALUES ('backupdir','f027b6');
INSERT INTO pre_common_setting VALUES ('bannedmessages','1');
INSERT INTO pre_common_setting VALUES ('bbclosed','');
INSERT INTO pre_common_setting VALUES ('bbname','Discuz! Board');
INSERT INTO pre_common_setting VALUES ('bbrules','0');
INSERT INTO pre_common_setting VALUES ('bbrulesforce','0');
INSERT INTO pre_common_setting VALUES ('bbrulestxt','');
INSERT INTO pre_common_setting VALUES ('bdaystatus','0');
INSERT INTO pre_common_setting VALUES ('binddomains','a:0:{}');
INSERT INTO pre_common_setting VALUES ('boardlicensed','0');
INSERT INTO pre_common_setting VALUES ('cacheindexlife','0');
INSERT INTO pre_common_setting VALUES ('cachethreaddir','data/threadcache');
INSERT INTO pre_common_setting VALUES ('cachethreadlife','0');
INSERT INTO pre_common_setting VALUES ('censoremail','');
INSERT INTO pre_common_setting VALUES ('censoruser','');
INSERT INTO pre_common_setting VALUES ('closedallowactivation','0');
INSERT INTO pre_common_setting VALUES ('closedreason','');
INSERT INTO pre_common_setting VALUES ('commentfirstpost','1');
INSERT INTO pre_common_setting VALUES ('commentitem',' ');
INSERT INTO pre_common_setting VALUES ('commentnumber','5');
INSERT INTO pre_common_setting VALUES ('creditnotice','1');
INSERT INTO pre_common_setting VALUES ('creditsformula','posts+digestposts*5+extcredits1*2+extcredits2+extcredits3');
INSERT INTO pre_common_setting VALUES ('creditsformulaexp','<u>总积分</u>=<u>发帖数</u>+<u>精华帖数</u>*5+<u>威望</u>*2+<u>金钱</u>+<u>贡献</u>');
INSERT INTO pre_common_setting VALUES ('creditsnotify','');
INSERT INTO pre_common_setting VALUES ('creditspolicy','a:12:{s:4:\"post\";a:0:{}s:5:\"reply\";a:0:{}s:6:\"digest\";a:1:{i:1;i:10;}s:10:\"postattach\";a:0:{}s:9:\"getattach\";a:0:{}s:6:\"sendpm\";a:0:{}s:6:\"search\";a:0:{}s:15:\"promotion_visit\";a:0:{}s:18:\"promotion_register\";a:0:{}s:13:\"tradefinished\";a:0:{}s:8:\"votepoll\";a:0:{}s:10:\"lowerlimit\";a:0:{}}');
INSERT INTO pre_common_setting VALUES ('creditstax','0.2');
INSERT INTO pre_common_setting VALUES ('creditstrans','2,0,0,0,0,0,0');
INSERT INTO pre_common_setting VALUES ('customauthorinfo','a:1:{i:0;a:10:{s:5:\"posts\";a:2:{s:5:\"order\";s:0:\"\";s:4:\"menu\";s:1:\"1\";}s:7:\"threads\";a:1:{s:5:\"order\";s:0:\"\";}s:6:\"digest\";a:2:{s:5:\"order\";s:0:\"\";s:4:\"menu\";s:1:\"1\";}s:7:\"credits\";a:2:{s:5:\"order\";s:0:\"\";s:4:\"menu\";s:1:\"1\";}s:8:\"readperm\";a:2:{s:5:\"order\";s:0:\"\";s:4:\"menu\";s:1:\"1\";}s:7:\"regtime\";a:2:{s:5:\"order\";s:0:\"\";s:4:\"menu\";s:1:\"1\";}s:8:\"lastdate\";a:2:{s:5:\"order\";s:0:\"\";s:4:\"menu\";s:1:\"1\";}s:11:\"extcredits1\";a:1:{s:5:\"order\";s:0:\"\";}s:11:\"extcredits2\";a:1:{s:5:\"order\";s:0:\"\";}s:11:\"extcredits3\";a:1:{s:5:\"order\";s:0:\"\";}}}');
INSERT INTO pre_common_setting VALUES ('custombackup','');
INSERT INTO pre_common_setting VALUES ('dateconvert','1');
INSERT INTO pre_common_setting VALUES ('dateformat','Y-n-j');
INSERT INTO pre_common_setting VALUES ('debateforumid','0');
INSERT INTO pre_common_setting VALUES ('debug','1');
INSERT INTO pre_common_setting VALUES ('defaulteditormode','1');
INSERT INTO pre_common_setting VALUES ('delayviewcount','0');
INSERT INTO pre_common_setting VALUES ('deletereason','');
INSERT INTO pre_common_setting VALUES ('disallowfloat','a:1:{i:3;s:9:\"newthread\";}');
INSERT INTO pre_common_setting VALUES ('domainroot','');
INSERT INTO pre_common_setting VALUES ('domainwhitelist','');
INSERT INTO pre_common_setting VALUES ('doublee','1');
INSERT INTO pre_common_setting VALUES ('dupkarmarate','0');
INSERT INTO pre_common_setting VALUES ('ec_account','');
INSERT INTO pre_common_setting VALUES ('ec_contract','');
INSERT INTO pre_common_setting VALUES ('ec_credit','a:2:{s:18:\"maxcreditspermonth\";i:6;s:4:\"rank\";a:15:{i:1;i:4;i:2;i:11;i:3;i:41;i:4;i:91;i:5;i:151;i:6;i:251;i:7;i:501;i:8;i:1001;i:9;i:2001;i:10;i:5001;i:11;i:10001;i:12;i:20001;i:13;i:50001;i:14;i:100001;i:15;i:200001;}}');
INSERT INTO pre_common_setting VALUES ('ec_maxcredits','1000');
INSERT INTO pre_common_setting VALUES ('ec_maxcreditspermonth','0');
INSERT INTO pre_common_setting VALUES ('ec_mincredits','0');
INSERT INTO pre_common_setting VALUES ('ec_ratio','0');
INSERT INTO pre_common_setting VALUES ('ec_tenpay_bargainor','');
INSERT INTO pre_common_setting VALUES ('ec_tenpay_key','');
INSERT INTO pre_common_setting VALUES ('postappend','0');
INSERT INTO pre_common_setting VALUES ('editedby','1');
INSERT INTO pre_common_setting VALUES ('editoroptions','6');
INSERT INTO pre_common_setting VALUES ('edittimelimit','');
INSERT INTO pre_common_setting VALUES ('exchangemincredits','100');
INSERT INTO pre_common_setting VALUES ('extcredits','');
INSERT INTO pre_common_setting VALUES ('fastpost','1');
INSERT INTO pre_common_setting VALUES ('forumallowside','0');
INSERT INTO pre_common_setting VALUES ('fastsmilies','1');
INSERT INTO pre_common_setting VALUES ('feedday','7');
INSERT INTO pre_common_setting VALUES ('feedhotday','2');
INSERT INTO pre_common_setting VALUES ('feedhotmin','3');
INSERT INTO pre_common_setting VALUES ('feedhotnum','3');
INSERT INTO pre_common_setting VALUES ('feedmaxnum','100');
INSERT INTO pre_common_setting VALUES ('showallfriendnum','8');
INSERT INTO pre_common_setting VALUES ('feedtargetblank','1');
INSERT INTO pre_common_setting VALUES ('floodctrl','15');
INSERT INTO pre_common_setting VALUES ('forumdomains','a:0:{}');
INSERT INTO pre_common_setting VALUES ('forumjump','0');
INSERT INTO pre_common_setting VALUES ('forumlinkstatus','1');
INSERT INTO pre_common_setting VALUES ('forumseparator','1');
INSERT INTO pre_common_setting VALUES ('frameon','0');
INSERT INTO pre_common_setting VALUES ('framewidth','180');
INSERT INTO pre_common_setting VALUES ('friendgroupnum','8');
INSERT INTO pre_common_setting VALUES ('ftp','a:10:{s:2:\"on\";s:1:\"0\";s:3:\"ssl\";s:1:\"0\";s:4:\"host\";s:0:\"\";s:4:\"port\";s:2:\"21\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:9:\"attachdir\";s:1:\".\";s:9:\"attachurl\";s:0:\"\";s:7:\"hideurl\";s:1:\"0\";s:7:\"timeout\";s:1:\"0\";}');
INSERT INTO pre_common_setting VALUES ('globalstick','1');
INSERT INTO pre_common_setting VALUES ('targetblank','0');
INSERT INTO pre_common_setting VALUES ('google','1');
INSERT INTO pre_common_setting VALUES ('groupstatus','0');
INSERT INTO pre_common_setting VALUES ('portalstatus','0');
INSERT INTO pre_common_setting VALUES ('followstatus','0');
INSERT INTO pre_common_setting VALUES ('collectionstatus','0');
INSERT INTO pre_common_setting VALUES ('guidestatus','0');
INSERT INTO pre_common_setting VALUES ('feedstatus','0');
INSERT INTO pre_common_setting VALUES ('blogstatus','0');
INSERT INTO pre_common_setting VALUES ('doingstatus','0');
INSERT INTO pre_common_setting VALUES ('albumstatus','0');
INSERT INTO pre_common_setting VALUES ('sharestatus','0');
INSERT INTO pre_common_setting VALUES ('wallstatus','0');
INSERT INTO pre_common_setting VALUES ('rankliststatus','0');
INSERT INTO pre_common_setting VALUES ('homestyle','0');
INSERT INTO pre_common_setting VALUES ('homepagestyle','0');
INSERT INTO pre_common_setting VALUES ('group_allowfeed','1');
INSERT INTO pre_common_setting VALUES ('group_admingroupids','a:1:{i:1;s:1:\"1\";}');
INSERT INTO pre_common_setting VALUES ('group_imgsizelimit','512');
INSERT INTO pre_common_setting VALUES ('group_userperm','a:21:{s:16:\"allowstickthread\";s:1:\"1\";s:15:\"allowbumpthread\";s:1:\"1\";s:20:\"allowhighlightthread\";s:1:\"1\";s:16:\"allowstampthread\";s:1:\"1\";s:16:\"allowclosethread\";s:1:\"1\";s:16:\"allowmergethread\";s:1:\"1\";s:16:\"allowsplitthread\";s:1:\"1\";s:17:\"allowrepairthread\";s:1:\"1\";s:11:\"allowrefund\";s:1:\"1\";s:13:\"alloweditpoll\";s:1:\"1\";s:17:\"allowremovereward\";s:1:\"1\";s:17:\"alloweditactivity\";s:1:\"1\";s:14:\"allowedittrade\";s:1:\"1\";s:17:\"allowdigestthread\";s:1:\"3\";s:13:\"alloweditpost\";s:1:\"1\";s:13:\"allowwarnpost\";s:1:\"1\";s:12:\"allowbanpost\";s:1:\"1\";s:12:\"allowdelpost\";s:1:\"1\";s:13:\"allowupbanner\";s:1:\"1\";s:15:\"disablepostctrl\";s:1:\"0\";s:11:\"allowviewip\";s:1:\"1\";s:15:\"allowlivethread\";s:1:\"1\";}');
INSERT INTO pre_common_setting VALUES ('heatthread','a:5:{s:4:\"type\";s:1:\"2\";s:5:\"reply\";i:5;s:9:\"recommend\";i:3;s:6:\"period\";s:2:\"15\";s:10:\"iconlevels\";s:10:\"50,100,200\";}');
INSERT INTO pre_common_setting VALUES ('guide','a:2:{s:5:\"hotdt\";i:604800;s:8:\"digestdt\";i:604800;}');
INSERT INTO pre_common_setting VALUES ('hideprivate','1');
INSERT INTO pre_common_setting VALUES ('historyposts','0 7');
INSERT INTO pre_common_setting VALUES ('hottopic','10');
INSERT INTO pre_common_setting VALUES ('icp','');
INSERT INTO pre_common_setting VALUES ('imageimpath','');
INSERT INTO pre_common_setting VALUES ('imagelib','0');
INSERT INTO pre_common_setting VALUES ('imagemaxwidth','600');
INSERT INTO pre_common_setting VALUES ('watermarkminheight', 'a:3:{s:6:\"portal\";s:1:\"0\";s:5:\"forum\";s:1:\"0\";s:5:\"album\";s:1:\"0\";}');
INSERT INTO pre_common_setting VALUES ('watermarkminwidth', 'a:3:{s:6:\"portal\";s:1:\"0\";s:5:\"forum\";s:1:\"0\";s:5:\"album\";s:1:\"0\";}');
INSERT INTO pre_common_setting VALUES ('watermarkquality', 'a:3:{s:6:\"portal\";s:2:\"90\";s:5:\"forum\";i:90;s:5:\"album\";i:90;}');
INSERT INTO pre_common_setting VALUES ('watermarkstatus', 'a:3:{s:6:\"portal\";s:1:\"0\";s:5:\"forum\";s:1:\"0\";s:5:\"album\";s:1:\"0\";}');
INSERT INTO pre_common_setting VALUES ('watermarktext', 'a:12:{s:4:\"text\";a:3:{s:6:\"portal\";s:0:\"\";s:5:\"forum\";s:0:\"\";s:5:\"album\";s:0:\"\";}s:8:\"fontpath\";a:3:{s:6:\"portal\";s:21:\"FetteSteinschrift.ttf\";s:5:\"forum\";s:21:\"FetteSteinschrift.ttf\";s:5:\"album\";s:21:\"FetteSteinschrift.ttf\";}s:4:\"size\";a:3:{s:6:\"portal\";s:0:\"\";s:5:\"forum\";s:0:\"\";s:5:\"album\";s:0:\"\";}s:5:\"angle\";a:3:{s:6:\"portal\";s:0:\"\";s:5:\"forum\";s:0:\"\";s:5:\"album\";s:0:\"\";}s:5:\"color\";a:3:{s:6:\"portal\";s:0:\"\";s:5:\"forum\";s:0:\"\";s:5:\"album\";s:0:\"\";}s:7:\"shadowx\";a:3:{s:6:\"portal\";s:0:\"\";s:5:\"forum\";s:0:\"\";s:5:\"album\";s:0:\"\";}s:7:\"shadowy\";a:3:{s:6:\"portal\";s:0:\"\";s:5:\"forum\";s:0:\"\";s:5:\"album\";s:0:\"\";}s:11:\"shadowcolor\";a:3:{s:6:\"portal\";s:0:\"\";s:5:\"forum\";s:0:\"\";s:5:\"album\";s:0:\"\";}s:10:\"translatex\";a:3:{s:6:\"portal\";s:0:\"\";s:5:\"forum\";s:0:\"\";s:5:\"album\";s:0:\"\";}s:10:\"translatey\";a:3:{s:6:\"portal\";s:0:\"\";s:5:\"forum\";s:0:\"\";s:5:\"album\";s:0:\"\";}s:5:\"skewx\";a:3:{s:6:\"portal\";s:0:\"\";s:5:\"forum\";s:0:\"\";s:5:\"album\";s:0:\"\";}s:5:\"skewy\";a:3:{s:6:\"portal\";s:0:\"\";s:5:\"forum\";s:0:\"\";s:5:\"album\";s:0:\"\";}}');
INSERT INTO pre_common_setting VALUES ('watermarktrans', 'a:3:{s:6:\"portal\";s:2:\"50\";s:5:\"forum\";i:50;s:5:\"album\";i:50;}');
INSERT INTO pre_common_setting VALUES ('watermarktype', 'a:3:{s:6:\"portal\";s:3:\"png\";s:5:\"forum\";s:3:\"png\";s:5:\"album\";s:3:\"png\";}');
INSERT INTO pre_common_setting VALUES ('indexhot','a:7:{s:6:\"status\";s:1:\"0\";s:5:\"limit\";s:2:\"10\";s:4:\"days\";s:1:\"7\";s:10:\"expiration\";s:3:\"900\";s:10:\"messagecut\";s:3:\"200\";s:5:\"width\";i:100;s:6:\"height\";i:70;}');
INSERT INTO pre_common_setting VALUES ('indextype','classics');
INSERT INTO pre_common_setting VALUES ('infosidestatus','0');
INSERT INTO pre_common_setting VALUES ('initcredits','0,0,0,0,0,0,0,0,0');
INSERT INTO pre_common_setting VALUES ('inviteconfig','');
INSERT INTO pre_common_setting VALUES ('ipaccess','');
INSERT INTO pre_common_setting VALUES ('ipregctrl','');
INSERT INTO pre_common_setting VALUES ('ipverifywhite','');
INSERT INTO pre_common_setting VALUES ('jscachelife','1800');
INSERT INTO pre_common_setting VALUES ('jsdateformat','');
INSERT INTO pre_common_setting VALUES ('jspath','static/js/');
INSERT INTO pre_common_setting VALUES ('jsrefdomains','');
INSERT INTO pre_common_setting VALUES ('jsstatus','0');
INSERT INTO pre_common_setting VALUES ('jswizard','');
INSERT INTO pre_common_setting VALUES ('karmaratelimit','0');
INSERT INTO pre_common_setting VALUES ('losslessdel','365');
INSERT INTO pre_common_setting VALUES ('magicdiscount','85');
INSERT INTO pre_common_setting VALUES ('magicmarket','1');
INSERT INTO pre_common_setting VALUES ('magicstatus','1');
INSERT INTO pre_common_setting VALUES ('mail','a:10:{s:8:\"mailsend\";s:1:\"1\";s:6:\"server\";s:13:\"smtp.21cn.com\";s:4:\"port\";s:2:\"25\";s:4:\"auth\";s:1:\"1\";s:4:\"from\";s:26:\"Discuz <username@21cn.com>\";s:13:\"auth_username\";s:17:\"username@21cn.com\";s:13:\"auth_password\";s:8:\"password\";s:13:\"maildelimiter\";s:1:\"0\";s:12:\"mailusername\";s:1:\"1\";s:15:\"sendmail_silent\";s:1:\"1\";}');
INSERT INTO pre_common_setting VALUES ('maxavatarpixel','120');
INSERT INTO pre_common_setting VALUES ('maxavatarsize','20000');
INSERT INTO pre_common_setting VALUES ('maxbdays','0');
INSERT INTO pre_common_setting VALUES ('maxchargespan','0');
INSERT INTO pre_common_setting VALUES ('maxfavorites','100');
INSERT INTO pre_common_setting VALUES ('maxincperthread','0');
INSERT INTO pre_common_setting VALUES ('maxmagicprice','50');
INSERT INTO pre_common_setting VALUES ('maxmodworksmonths','3');
INSERT INTO pre_common_setting VALUES ('maxonlinelist','0');
INSERT INTO pre_common_setting VALUES ('maxonlines','5000');
INSERT INTO pre_common_setting VALUES ('maxpage','100');
INSERT INTO pre_common_setting VALUES ('maxpolloptions','20');
INSERT INTO pre_common_setting VALUES ('maxpostsize','10000');
INSERT INTO pre_common_setting VALUES ('maxsigrows','100');
INSERT INTO pre_common_setting VALUES ('maxsmilies','10');
INSERT INTO pre_common_setting VALUES ('membermaxpages','100');
INSERT INTO pre_common_setting VALUES ('memberperpage','25');
INSERT INTO pre_common_setting VALUES ('memliststatus','1');
INSERT INTO pre_common_setting VALUES ('memory', 'a:16:{s:13:"common_member";i:0;s:19:"common_member_count";i:0;s:20:"common_member_status";i:0;s:21:"common_member_profile";i:0;s:24:"common_member_field_home";i:0;s:25:"common_member_field_forum";i:0;s:20:"common_member_verify";i:0;s:12:"forum_thread";i:172800;s:25:"forum_thread_forumdisplay";i:300;s:23:"forum_collectionrelated";i:0;s:15:"forum_postcache";i:300;s:16:"forum_collection";i:300;s:11:"home_follow";i:86400;s:10:"forumindex";i:30;s:8:"diyblock";i:300;s:14:"diyblockoutput";i:30;}');
INSERT INTO pre_common_setting VALUES ('minpostsize','10');
INSERT INTO pre_common_setting VALUES ('minpostsize_mobile','0');
INSERT INTO pre_common_setting VALUES ('mobile','a:10:{s:11:\"allowmobile\";i:0;s:13:\"mobileforward\";i:1;s:14:\"mobileregister\";i:0;s:13:\"mobilecharset\";s:5:\"utf-8\";s:16:\"mobilesimpletype\";i:0;s:18:\"mobiletopicperpage\";i:10;s:17:\"mobilepostperpage\";i:5;s:15:\"mobilecachetime\";i:0;s:15:\"mobileforumview\";i:0;s:13:\"mobilepreview\";i:1;}');
INSERT INTO pre_common_setting VALUES ('moddisplay','flat');
INSERT INTO pre_common_setting VALUES ('modratelimit','0');
INSERT INTO pre_common_setting VALUES ('modreasons','广告/SPAM\r\n恶意灌水\r\n违规内容\r\n文不对题\r\n重复发帖\r\n\r\n我很赞同\r\n精品文章\r\n原创内容');
INSERT INTO pre_common_setting VALUES ('userreasons','很给力!\r\n神马都是浮云\r\n赞一个!\r\n山寨\r\n淡定');
INSERT INTO pre_common_setting VALUES ('modworkstatus','1');
INSERT INTO pre_common_setting VALUES ('msgforward','a:3:{s:11:\"refreshtime\";i:2;s:5:\"quick\";i:1;s:8:\"messages\";a:14:{i:0;s:19:\"thread_poll_succeed\";i:1;s:19:\"thread_rate_succeed\";i:2;s:23:\"usergroups_join_succeed\";i:3;s:23:\"usergroups_exit_succeed\";i:4;s:25:\"usergroups_update_succeed\";i:5;s:20:\"buddy_update_succeed\";i:6;s:17:\"post_edit_succeed\";i:7;s:18:\"post_reply_succeed\";i:8;s:24:\"post_edit_delete_succeed\";i:9;s:22:\"post_newthread_succeed\";i:10;s:13:\"admin_succeed\";i:11;s:17:\"pm_delete_succeed\";i:12;s:15:\"search_redirect\";i:13;s:10:\"do_success\";}}');
INSERT INTO pre_common_setting VALUES ('msn','');
INSERT INTO pre_common_setting VALUES ('networkpage','0');
INSERT INTO pre_common_setting VALUES ('newbiespan','2');
INSERT INTO pre_common_setting VALUES ('newbietasks','');
INSERT INTO pre_common_setting VALUES ('newbietaskupdate','');
INSERT INTO pre_common_setting VALUES ('newsletter','');
INSERT INTO pre_common_setting VALUES ('newspaceavatar','0');
INSERT INTO pre_common_setting VALUES ('nocacheheaders','0');
INSERT INTO pre_common_setting VALUES ('oltimespan','10');
INSERT INTO pre_common_setting VALUES ('onlinehold','15');
INSERT INTO pre_common_setting VALUES ('onlinerecord','7 1269749404');
INSERT INTO pre_common_setting VALUES ('pollforumid','0');
INSERT INTO pre_common_setting VALUES ('postbanperiods','');
INSERT INTO pre_common_setting VALUES ('postmodperiods','');
INSERT INTO pre_common_setting VALUES ('postno','#');
INSERT INTO pre_common_setting VALUES ('postnocustom','');
INSERT INTO pre_common_setting VALUES ('postperpage','10');
INSERT INTO pre_common_setting VALUES ('privacy','a:2:{s:4:\"view\";a:8:{s:5:\"index\";i:0;s:6:\"friend\";i:0;s:4:\"wall\";i:0;s:4:\"home\";i:0;s:5:\"doing\";i:0;s:4:\"blog\";i:0;s:5:\"album\";i:0;s:5:\"share\";i:0;}s:4:\"feed\";a:5:{s:5:\"doing\";i:1;s:4:\"blog\";i:1;s:6:\"upload\";i:1;s:4:\"poll\";i:1;s:9:\"newthread\";i:1;}}');
INSERT INTO pre_common_setting VALUES ('pvfrequence','60');
INSERT INTO pre_common_setting VALUES ('pwdsafety','0');
INSERT INTO pre_common_setting VALUES ('pwlength','6');
INSERT INTO pre_common_setting VALUES ('qihoo','a:9:{s:6:\"status\";i:0;s:9:\"searchbox\";i:6;s:7:\"summary\";i:1;s:6:\"jammer\";i:1;s:9:\"maxtopics\";i:10;s:8:\"keywords\";s:0:\"\";s:10:\"adminemail\";s:0:\"\";s:8:\"validity\";i:1;s:14:\"relatedthreads\";a:6:{s:6:\"bbsnum\";i:0;s:6:\"webnum\";i:0;s:4:\"type\";a:3:{s:4:\"blog\";s:4:\"blog\";s:4:\"news\";s:4:\"news\";s:3:\"bbs\";s:3:\"bbs\";}s:6:\"banurl\";s:0:\"\";s:8:\"position\";i:1;s:8:\"validity\";i:1;}}');
INSERT INTO pre_common_setting VALUES ('ratelogon','1');
INSERT INTO pre_common_setting VALUES ('ratelogrecord','20');
INSERT INTO pre_common_setting VALUES ('relatenum','10');
INSERT INTO pre_common_setting VALUES ('relatetime','60');
INSERT INTO pre_common_setting VALUES ('realname','0');
INSERT INTO pre_common_setting VALUES ('recommendthread','a:6:{s:6:\"status\";s:1:\"0\";s:7:\"addtext\";s:0:\"\";s:12:\"subtracttext\";s:0:\"\";s:8:\"daycount\";s:1:\"0\";s:9:\"ownthread\";s:1:\"0\";s:10:\"iconlevels\";s:0:\"\";}');
INSERT INTO pre_common_setting VALUES ('regclosemessage','');
INSERT INTO pre_common_setting VALUES ('regctrl','0');
INSERT INTO pre_common_setting VALUES ('strongpw','0');
INSERT INTO pre_common_setting VALUES ('regfloodctrl','0');
INSERT INTO pre_common_setting VALUES ('regname','register');
INSERT INTO pre_common_setting VALUES ('reglinkname','立即注册');
INSERT INTO pre_common_setting VALUES ('regstatus','1');
INSERT INTO pre_common_setting VALUES ('regverify','0');
INSERT INTO pre_common_setting VALUES ('relatedtag','');
INSERT INTO pre_common_setting VALUES ('report_reward','a:2:{s:3:\"min\";i:-3;s:3:\"max\";i:3;}');
INSERT INTO pre_common_setting VALUES ('rewardforumid','0');
INSERT INTO pre_common_setting VALUES ('rewritecompatible','');
INSERT INTO pre_common_setting VALUES ('rewritestatus','0');
INSERT INTO pre_common_setting VALUES ('rssstatus','1');
INSERT INTO pre_common_setting VALUES ('rssttl','60');
INSERT INTO pre_common_setting VALUES ('runwizard','1');
INSERT INTO pre_common_setting VALUES ('search', 'a:6:{s:6:\"portal\";a:4:{s:6:\"status\";i:1;s:10:\"searchctrl\";i:10;s:6:\"maxspm\";i:10;s:16:\"maxsearchresults\";i:500;}s:5:\"forum\";a:4:{s:6:\"status\";i:1;s:10:\"searchctrl\";i:10;s:6:\"maxspm\";i:10;s:16:\"maxsearchresults\";i:500;}s:4:\"blog\";a:4:{s:6:\"status\";i:1;s:10:\"searchctrl\";i:10;s:6:\"maxspm\";i:10;s:16:\"maxsearchresults\";i:500;}s:5:\"album\";a:4:{s:6:\"status\";i:1;s:10:\"searchctrl\";i:10;s:6:\"maxspm\";i:10;s:16:\"maxsearchresults\";i:500;}s:5:\"group\";a:4:{s:6:\"status\";i:1;s:10:\"searchctrl\";i:10;s:6:\"maxspm\";i:10;s:16:\"maxsearchresults\";i:500;}s:10:\"collection\";a:4:{s:6:\"status\";i:1;s:10:\"searchctrl\";i:10;s:6:\"maxspm\";i:10;s:16:\"maxsearchresults\";i:500;}}');
INSERT INTO pre_common_setting VALUES ('sphinxon', '');
INSERT INTO pre_common_setting VALUES ('sphinxhost', '');
INSERT INTO pre_common_setting VALUES ('sphinxport', '');
INSERT INTO pre_common_setting VALUES ('sphinxsubindex', 'threads,threads_minute');
INSERT INTO pre_common_setting VALUES ('sphinxmsgindex', 'posts,posts_minute');
INSERT INTO pre_common_setting VALUES ('sphinxmaxquerytime', '');
INSERT INTO pre_common_setting VALUES ('sphinxlimit', '');
INSERT INTO pre_common_setting VALUES ('sphinxrank', '');
INSERT INTO pre_common_setting VALUES ('searchbanperiods','');
INSERT INTO pre_common_setting VALUES ('seccodedata','a:16:{s:7:\"cloudip\";s:1:\"0\";s:4:\"rule\";a:5:{s:8:\"register\";a:3:{s:5:\"allow\";s:1:\"1\";s:8:\"numlimit\";s:0:\"\";s:9:\"timelimit\";s:2:\"60\";}s:5:\"login\";a:7:{s:5:\"allow\";s:1:\"1\";s:7:\"nolocal\";s:1:\"0\";s:8:\"pwsimple\";s:1:\"0\";s:7:\"pwerror\";s:1:\"0\";s:8:\"outofday\";s:0:\"\";s:8:\"numiptry\";s:0:\"\";s:9:\"timeiptry\";s:2:\"60\";}s:4:\"post\";a:5:{s:5:\"allow\";s:1:\"1\";s:8:\"numlimit\";s:0:\"\";s:9:\"timelimit\";s:2:\"60\";s:7:\"nplimit\";s:0:\"\";s:7:\"vplimit\";s:0:\"\";}s:8:\"password\";a:1:{s:5:\"allow\";s:1:\"1\";}s:4:\"card\";a:1:{s:5:\"allow\";s:1:\"1\";}}s:8:\"minposts\";s:0:\"\";s:4:\"type\";s:1:\"0\";s:5:\"width\";i:100;s:6:\"height\";i:30;s:7:\"scatter\";s:0:\"\";s:10:\"background\";s:1:\"0\";s:10:\"adulterate\";s:1:\"0\";s:3:\"ttf\";s:1:\"0\";s:5:\"angle\";s:1:\"0\";s:7:\"warping\";s:1:\"0\";s:5:\"color\";s:1:\"0\";s:4:\"size\";s:1:\"0\";s:6:\"shadow\";s:1:\"0\";s:8:\"animator\";s:1:\"0\";}');
INSERT INTO pre_common_setting VALUES ('seccodestatus','16');
INSERT INTO pre_common_setting VALUES ('seclevel','1');
INSERT INTO pre_common_setting VALUES ('secqaa','a:2:{s:8:\"minposts\";s:1:\"1\";s:6:\"status\";i:0;}');
INSERT INTO pre_common_setting VALUES ('sendmailday','0');
INSERT INTO pre_common_setting VALUES ('seodescription','');
INSERT INTO pre_common_setting VALUES ('seohead','');
INSERT INTO pre_common_setting VALUES ('seokeywords','');
INSERT INTO pre_common_setting VALUES ('seotitle','');
INSERT INTO pre_common_setting VALUES ('showavatars','1');
INSERT INTO pre_common_setting VALUES ('showemail','');
INSERT INTO pre_common_setting VALUES ('showimages','1');
INSERT INTO pre_common_setting VALUES ('shownewuser','0');
INSERT INTO pre_common_setting VALUES ('showsettings','7');
INSERT INTO pre_common_setting VALUES ('showsignatures','1');
INSERT INTO pre_common_setting VALUES ('sigviewcond','0');
INSERT INTO pre_common_setting VALUES ('sitemessage','a:5:{s:4:\"time\";s:1:\"3\";s:8:\"register\";s:0:\"\";s:5:\"login\";s:0:\"\";s:9:\"newthread\";s:0:\"\";s:5:\"reply\";s:0:\"\";}');
INSERT INTO pre_common_setting VALUES ('sitename','Comsenz Inc.');
INSERT INTO pre_common_setting VALUES ('siteuniqueid','KD1Q6Vbd03ALJ34u');
INSERT INTO pre_common_setting VALUES ('siteurl','http://www.comsenz.com/');
INSERT INTO pre_common_setting VALUES ('smcols','8');
INSERT INTO pre_common_setting VALUES ('smrows','5');
INSERT INTO pre_common_setting VALUES ('smthumb','20');
INSERT INTO pre_common_setting VALUES ('spacedata','a:11:{s:9:\"cachelife\";s:3:\"900\";s:14:\"limitmythreads\";s:1:\"5\";s:14:\"limitmyreplies\";s:1:\"5\";s:14:\"limitmyrewards\";s:1:\"5\";s:13:\"limitmytrades\";s:1:\"5\";s:13:\"limitmyvideos\";s:1:\"0\";s:12:\"limitmyblogs\";s:1:\"8\";s:14:\"limitmyfriends\";s:1:\"0\";s:16:\"limitmyfavforums\";s:1:\"5\";s:17:\"limitmyfavthreads\";s:1:\"0\";s:10:\"textlength\";s:3:\"300\";}');
INSERT INTO pre_common_setting VALUES ('spacestatus','1');
INSERT INTO pre_common_setting VALUES ('srchhotkeywords','活动\r\n交友\r\ndiscuz');
INSERT INTO pre_common_setting VALUES ('starthreshold','2');
INSERT INTO pre_common_setting VALUES ('statcode','');
INSERT INTO pre_common_setting VALUES ('statscachelife','180');
INSERT INTO pre_common_setting VALUES ('statstatus','');
INSERT INTO pre_common_setting VALUES ('styleid','1');
INSERT INTO pre_common_setting VALUES ('styleid1','1');
INSERT INTO pre_common_setting VALUES ('styleid2','1');
INSERT INTO pre_common_setting VALUES ('styleid3','1');
INSERT INTO pre_common_setting VALUES ('stylejump','1');
INSERT INTO pre_common_setting VALUES ('subforumsindex','0');
INSERT INTO pre_common_setting VALUES ('tagstatus','1');
INSERT INTO pre_common_setting VALUES ('taskon','0');
INSERT INTO pre_common_setting VALUES ('tasktypes','');
INSERT INTO pre_common_setting VALUES ('threadmaxpages','1000');
INSERT INTO pre_common_setting VALUES ('threadsticky','全局置顶,分类置顶,本版置顶');
INSERT INTO pre_common_setting VALUES ('thumbwidth','400');
INSERT INTO pre_common_setting VALUES ('thumbheight','300');
INSERT INTO pre_common_setting VALUES ('sourcewidth','');
INSERT INTO pre_common_setting VALUES ('sourceheight','');
INSERT INTO pre_common_setting VALUES ('thumbquality','100');
INSERT INTO pre_common_setting VALUES ('thumbstatus','');
INSERT INTO pre_common_setting VALUES ('timeformat','H:i');
INSERT INTO pre_common_setting VALUES ('timeoffset','8');
INSERT INTO pre_common_setting VALUES ('topcachetime','60');
INSERT INTO pre_common_setting VALUES ('topicperpage','20');
INSERT INTO pre_common_setting VALUES ('tradeforumid','0');
INSERT INTO pre_common_setting VALUES ('transfermincredits','1000');
INSERT INTO pre_common_setting VALUES ('uc','a:1:{s:7:\"addfeed\";i:1;}');
INSERT INTO pre_common_setting VALUES ('ucactivation','1');
INSERT INTO pre_common_setting VALUES ('updatestat','1');
INSERT INTO pre_common_setting VALUES ('userdateformat','Y-n-j\r\nY/n/j\r\nj-n-Y\r\nj/n/Y');
INSERT INTO pre_common_setting VALUES ('userstatusby','1');
INSERT INTO pre_common_setting VALUES ('videophoto','0');
INSERT INTO pre_common_setting VALUES ('video_allowalbum','0');
INSERT INTO pre_common_setting VALUES ('video_allowblog','0');
INSERT INTO pre_common_setting VALUES ('video_allowcomment','0');
INSERT INTO pre_common_setting VALUES ('video_allowdoing','1');
INSERT INTO pre_common_setting VALUES ('video_allowfriend','1');
INSERT INTO pre_common_setting VALUES ('video_allowpoke','1');
INSERT INTO pre_common_setting VALUES ('video_allowshare','0');
INSERT INTO pre_common_setting VALUES ('video_allowuserapp','0');
INSERT INTO pre_common_setting VALUES ('video_allowviewspace','1');
INSERT INTO pre_common_setting VALUES ('video_allowwall','1');
INSERT INTO pre_common_setting VALUES ('viewthreadtags','100');
INSERT INTO pre_common_setting VALUES ('visitbanperiods','');
INSERT INTO pre_common_setting VALUES ('visitedforums','10');
INSERT INTO pre_common_setting VALUES ('vtonlinestatus','1');
INSERT INTO pre_common_setting VALUES ('wapcharset','0');
INSERT INTO pre_common_setting VALUES ('wapdateformat','n/j');
INSERT INTO pre_common_setting VALUES ('wapmps','500');
INSERT INTO pre_common_setting VALUES ('wapppp','5');
INSERT INTO pre_common_setting VALUES ('wapregister','0');
INSERT INTO pre_common_setting VALUES ('wapstatus','0');
INSERT INTO pre_common_setting VALUES ('waptpp','10');
INSERT INTO pre_common_setting VALUES ('warningexpiration','30');
INSERT INTO pre_common_setting VALUES ('warninglimit','3');
INSERT INTO pre_common_setting VALUES ('welcomemsg','1');
INSERT INTO pre_common_setting VALUES ('welcomemsgtitle','{username},您好,感谢您的注册,请阅读以下内容。');
INSERT INTO pre_common_setting VALUES ('welcomemsgtxt','尊敬的{username},您已经注册成为{sitename}的会员,请您在发表言论时,遵守当地法律法规。\r\n如果您有什么疑问可以联系管理员,Email: {adminemail}。\r\n\r\n\r\n{bbname}\r\n{time}');
INSERT INTO pre_common_setting VALUES ('whosonlinestatus','3');
INSERT INTO pre_common_setting VALUES ('whosonline_contract','0');
INSERT INTO pre_common_setting VALUES ('zoomstatus','1 600');
INSERT INTO pre_common_setting VALUES ('my_app_status','0');
INSERT INTO pre_common_setting VALUES ('my_siteid','');
INSERT INTO pre_common_setting VALUES ('my_sitekey','');
INSERT INTO pre_common_setting VALUES ('my_closecheckupdate','');
INSERT INTO pre_common_setting VALUES ('my_ip','');
INSERT INTO pre_common_setting VALUES ('my_search_data','');
INSERT INTO pre_common_setting VALUES ('rewardexpiration','30');
INSERT INTO pre_common_setting VALUES ('stamplistlevel','3');
INSERT INTO pre_common_setting VALUES ('visitedthreads','0');
INSERT INTO pre_common_setting VALUES ('navsubhover','0');
INSERT INTO pre_common_setting VALUES ('showusercard','1');
INSERT INTO pre_common_setting VALUES ('allowspacedomain', '0');
INSERT INTO pre_common_setting VALUES ('allowgroupdomain', '0');
INSERT INTO pre_common_setting VALUES ('holddomain', 'www|*blog*|*space*|*bbs*');
INSERT INTO pre_common_setting VALUES ('domain', 'a:5:{s:12:"defaultindex";s:9:"forum.php";s:10:"holddomain";s:18:"www|*blog*|*space*";s:4:"list";a:0:{}s:3:"app";a:5:{s:6:"portal";s:0:"";s:5:"forum";s:0:"";s:5:"group";s:0:"";s:4:"home";s:0:"";s:7:"default";s:0:"";}s:4:"root";a:5:{s:4:"home";s:0:"";s:5:"group";s:0:"";s:5:"forum";s:0:"";s:5:"topic";s:0:"";s:7:"channel";s:0:"";}}');
INSERT INTO pre_common_setting VALUES ('ranklist', 'a:11:{s:6:"status";s:1:"1";s:10:"cache_time";s:1:"1";s:12:"index_select";s:8:"thisweek";s:6:"member";a:3:{s:9:"available";s:1:"1";s:10:"cache_time";s:1:"5";s:8:"show_num";s:2:"20";}s:6:"thread";a:3:{s:9:"available";s:1:"1";s:10:"cache_time";s:1:"5";s:8:"show_num";s:2:"20";}s:4:"blog";a:3:{s:9:"available";s:1:"1";s:10:"cache_time";s:1:"5";s:8:"show_num";s:2:"20";}s:4:"poll";a:3:{s:9:"available";s:1:"1";s:10:"cache_time";s:1:"5";s:8:"show_num";s:2:"20";}s:8:"activity";a:3:{s:9:"available";s:1:"1";s:10:"cache_time";s:1:"5";s:8:"show_num";s:2:"20";}s:7:"picture";a:3:{s:9:"available";s:1:"1";s:10:"cache_time";s:1:"5";s:8:"show_num";s:2:"20";}s:5:"forum";a:3:{s:9:"available";s:1:"1";s:10:"cache_time";s:1:"5";s:8:"show_num";s:2:"20";}s:5:"group";a:3:{s:9:"available";s:1:"1";s:10:"cache_time";s:1:"5";s:8:"show_num";s:2:"20";}}');
INSERT INTO pre_common_setting VALUES ('fastsmiley', 'a:1:{i:1;a:16:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"4\";i:8;s:1:\"5\";i:9;s:1:\"6\";i:10;s:1:\"7\";i:11;s:1:\"8\";i:12;s:1:\"9\";i:13;s:2:\"10\";i:14;s:2:\"11\";i:15;s:2:\"12\";i:16;s:2:\"13\";i:17;s:2:\"14\";i:18;s:2:\"15\";i:19;s:2:\"16\";}}');
INSERT INTO pre_common_setting VALUES ('outlandverify', '0');
INSERT INTO pre_common_setting VALUES ('allowquickviewprofile', '1');
INSERT INTO pre_common_setting VALUES ('allowmoderatingthread', '1');
INSERT INTO pre_common_setting VALUES ('editperdel', '1');
INSERT INTO pre_common_setting VALUES ('defaultindex', 'forum.php');
INSERT INTO pre_common_setting VALUES ('ipregctrltime','72');
INSERT INTO pre_common_setting VALUES ('verify','a:0:{}');
INSERT INTO pre_common_setting VALUES ('focus', 'a:0:{}');
INSERT INTO pre_common_setting VALUES ('robotarchiver','0');
INSERT INTO pre_common_setting VALUES ('profilegroup', 'a:0:{}');
INSERT INTO pre_common_setting VALUES ('onlyacceptfriendpm','0');
INSERT INTO pre_common_setting VALUES ('pmreportuser','1');
INSERT INTO pre_common_setting VALUES ('chatpmrefreshtime','8');
INSERT INTO pre_common_setting VALUES ('preventrefresh','1');
INSERT INTO pre_common_setting VALUES ('imagelistthumb','0');
INSERT INTO pre_common_setting VALUES ('regconnect', '1');
INSERT INTO pre_common_setting VALUES ('connect', 'a:19:{s:5:"allow";s:1:"1";s:4:"feed";a:2:{s:5:"allow";s:1:"1";s:5:"group";s:1:"0";}s:1:"t";a:2:{s:5:"allow";s:1:"1";s:5:"group";s:1:"0";}s:10:"like_allow";s:1:"1";s:7:"like_qq";s:0:"";s:10:"turl_allow";s:1:"1";s:7:"turl_qq";s:0:"";s:8:"like_url";s:0:"";s:17:"register_birthday";s:1:"0";s:15:"register_gender";s:1:"0";s:17:"register_uinlimit";s:0:"";s:21:"register_rewardcredit";s:1:"1";s:18:"register_addcredit";s:0:"";s:16:"register_groupid";s:1:"0";s:18:"register_regverify";s:1:"1";s:15:"register_invite";s:1:"0";s:10:"newbiespan";s:0:"";s:9:"turl_code";s:0:"";s:13:"mblog_app_key";s:3:"abc";}');
INSERT INTO pre_common_setting VALUES ('allowwidthauto', '0');
INSERT INTO pre_common_setting VALUES ('switchwidthauto', '1');
INSERT INTO pre_common_setting VALUES ('leftsidewidth', '0');
INSERT INTO pre_common_setting VALUES ('card', 'a:1:{s:4:"open";s:1:"0";}');
INSERT INTO pre_common_setting VALUES ('report_receive', 'a:2:{s:9:"adminuser";a:1:{i:0;s:1:"1";}s:12:"supmoderator";N;}');
INSERT INTO pre_common_setting VALUES ('leftsideopen', '0');
INSERT INTO pre_common_setting VALUES ('showexif', '0');
INSERT INTO pre_common_setting VALUES ('followretainday', '7');
INSERT INTO pre_common_setting VALUES ('newbie', '20');
INSERT INTO pre_common_setting VALUES ('collectionteamworkernum', '3');
INSERT INTO pre_common_setting VALUES ('collectionnum', '10');
INSERT INTO pre_common_setting VALUES ('blockmaxaggregationitem','20000');
INSERT INTO pre_common_setting VALUES ('moddetail','0');
INSERT INTO pre_common_setting VALUES ('antitheft','a:2:{s:5:"allow";i:0;s:3:"max";i:200;}');
INSERT INTO pre_common_setting VALUES ('repliesrank','1');
INSERT INTO pre_common_setting VALUES ('threadblacklist','1');
INSERT INTO pre_common_setting VALUES ('threadhotreplies','3');
INSERT INTO pre_common_setting VALUES ('threadfilternum','10');
INSERT INTO pre_common_setting VALUES ('hidefilteredpost','0');
INSERT INTO pre_common_setting VALUES ('forumdisplaythreadpreview','1');
INSERT INTO pre_common_setting VALUES ('nofilteredpost','0');
INSERT INTO pre_common_setting VALUES ('filterednovote','1');
INSERT INTO pre_common_setting VALUES ('numbercard','a:1:{s:3:"row";a:3:{i:1;s:7:"threads";i:2;s:5:"posts";i:3;s:7:"credits";}}');
INSERT INTO pre_common_setting VALUES ('darkroom','1');
INSERT INTO pre_common_setting VALUES ('creditspolicymobile','0');
INSERT INTO pre_common_setting VALUES ('showsignin','1');
INSERT INTO pre_common_setting VALUES ('showfjump','1');
INSERT INTO pre_common_setting VALUES ('grid','a:8:{s:8:"showgrid";s:1:"0";s:8:"gridtype";s:1:"0";s:8:"textleng";s:2:"30";s:4:"fids";a:1:{i:0;i:0;}s:9:"highlight";s:1:"1";s:11:"targetblank";s:1:"1";s:8:"showtips";s:1:"1";s:9:"cachelife";s:3:"600";}');
INSERT INTO pre_common_setting VALUES ('showfollowcollection','8');
INSERT INTO pre_common_setting VALUES ('allowfastreply','0');
INSERT INTO pre_common_smiley VALUES ('1','1','1','smiley',':)','smile.gif');
INSERT INTO pre_common_smiley VALUES ('2','1','2','smiley',':(','sad.gif');
INSERT INTO pre_common_smiley VALUES ('3','1','3','smiley',':D','biggrin.gif');
INSERT INTO pre_common_smiley VALUES ('4','1','4','smiley',':\'(','cry.gif');
INSERT INTO pre_common_smiley VALUES ('5','1','5','smiley',':@','huffy.gif');
INSERT INTO pre_common_smiley VALUES ('6','1','6','smiley',':o','shocked.gif');
INSERT INTO pre_common_smiley VALUES ('7','1','7','smiley',':P','tongue.gif');
INSERT INTO pre_common_smiley VALUES ('8','1','8','smiley',':$','shy.gif');
INSERT INTO pre_common_smiley VALUES ('9','1','9','smiley',';P','titter.gif');
INSERT INTO pre_common_smiley VALUES ('10','1','10','smiley',':L','sweat.gif');
INSERT INTO pre_common_smiley VALUES ('11','1','11','smiley',':Q','mad.gif');
INSERT INTO pre_common_smiley VALUES ('12','1','12','smiley',':lol','lol.gif');
INSERT INTO pre_common_smiley VALUES ('13','1','13','smiley',':loveliness:','loveliness.gif');
INSERT INTO pre_common_smiley VALUES ('14','1','14','smiley',':funk:','funk.gif');
INSERT INTO pre_common_smiley VALUES ('15','1','15','smiley',':curse:','curse.gif');
INSERT INTO pre_common_smiley VALUES ('16','1','16','smiley',':dizzy:','dizzy.gif');
INSERT INTO pre_common_smiley VALUES ('17','1','17','smiley',':shutup:','shutup.gif');
INSERT INTO pre_common_smiley VALUES ('18','1','18','smiley',':sleepy:','sleepy.gif');
INSERT INTO pre_common_smiley VALUES ('19','1','19','smiley',':hug:','hug.gif');
INSERT INTO pre_common_smiley VALUES ('20','1','20','smiley',':victory:','victory.gif');
INSERT INTO pre_common_smiley VALUES ('21','1','21','smiley',':time:','time.gif');
INSERT INTO pre_common_smiley VALUES ('22','1','22','smiley',':kiss:','kiss.gif');
INSERT INTO pre_common_smiley VALUES ('23','1','23','smiley',':handshake','handshake.gif');
INSERT INTO pre_common_smiley VALUES ('24','1','24','smiley',':call:','call.gif');
INSERT INTO pre_common_smiley VALUES ('25','2','1','smiley','{:2_25:}','01.gif');
INSERT INTO pre_common_smiley VALUES ('26','2','2','smiley','{:2_26:}','02.gif');
INSERT INTO pre_common_smiley VALUES ('27','2','3','smiley','{:2_27:}','03.gif');
INSERT INTO pre_common_smiley VALUES ('28','2','4','smiley','{:2_28:}','04.gif');
INSERT INTO pre_common_smiley VALUES ('29','2','5','smiley','{:2_29:}','05.gif');
INSERT INTO pre_common_smiley VALUES ('30','2','6','smiley','{:2_30:}','06.gif');
INSERT INTO pre_common_smiley VALUES ('31','2','7','smiley','{:2_31:}','07.gif');
INSERT INTO pre_common_smiley VALUES ('32','2','8','smiley','{:2_32:}','08.gif');
INSERT INTO pre_common_smiley VALUES ('33','2','9','smiley','{:2_33:}','09.gif');
INSERT INTO pre_common_smiley VALUES ('34','2','10','smiley','{:2_34:}','10.gif');
INSERT INTO pre_common_smiley VALUES ('35','2','11','smiley','{:2_35:}','11.gif');
INSERT INTO pre_common_smiley VALUES ('36','2','12','smiley','{:2_36:}','12.gif');
INSERT INTO pre_common_smiley VALUES ('37','2','13','smiley','{:2_37:}','13.gif');
INSERT INTO pre_common_smiley VALUES ('38','2','14','smiley','{:2_38:}','14.gif');
INSERT INTO pre_common_smiley VALUES ('39','2','15','smiley','{:2_39:}','15.gif');
INSERT INTO pre_common_smiley VALUES ('40','2','16','smiley','{:2_40:}','16.gif');
INSERT INTO pre_common_smiley VALUES ('41','3','1','smiley','{:3_41:}','01.gif');
INSERT INTO pre_common_smiley VALUES ('42','3','2','smiley','{:3_42:}','02.gif');
INSERT INTO pre_common_smiley VALUES ('43','3','3','smiley','{:3_43:}','03.gif');
INSERT INTO pre_common_smiley VALUES ('44','3','4','smiley','{:3_44:}','04.gif');
INSERT INTO pre_common_smiley VALUES ('45','3','5','smiley','{:3_45:}','05.gif');
INSERT INTO pre_common_smiley VALUES ('46','3','6','smiley','{:3_46:}','06.gif');
INSERT INTO pre_common_smiley VALUES ('47','3','7','smiley','{:3_47:}','07.gif');
INSERT INTO pre_common_smiley VALUES ('48','3','8','smiley','{:3_48:}','08.gif');
INSERT INTO pre_common_smiley VALUES ('49','3','9','smiley','{:3_49:}','09.gif');
INSERT INTO pre_common_smiley VALUES ('50','3','10','smiley','{:3_50:}','10.gif');
INSERT INTO pre_common_smiley VALUES ('51','3','11','smiley','{:3_51:}','11.gif');
INSERT INTO pre_common_smiley VALUES ('52','3','12','smiley','{:3_52:}','12.gif');
INSERT INTO pre_common_smiley VALUES ('53','3','13','smiley','{:3_53:}','13.gif');
INSERT INTO pre_common_smiley VALUES ('54','3','14','smiley','{:3_54:}','14.gif');
INSERT INTO pre_common_smiley VALUES ('55','3','15','smiley','{:3_55:}','15.gif');
INSERT INTO pre_common_smiley VALUES ('56','3','16','smiley','{:3_56:}','16.gif');
INSERT INTO pre_common_smiley VALUES ('57','3','17','smiley','{:3_57:}','17.gif');
INSERT INTO pre_common_smiley VALUES ('58','3','18','smiley','{:3_58:}','18.gif');
INSERT INTO pre_common_smiley VALUES ('59','3','19','smiley','{:3_59:}','19.gif');
INSERT INTO pre_common_smiley VALUES ('60','3','20','smiley','{:3_60:}','20.gif');
INSERT INTO pre_common_smiley VALUES ('61','3','21','smiley','{:3_61:}','21.gif');
INSERT INTO pre_common_smiley VALUES ('62','3','22','smiley','{:3_62:}','22.gif');
INSERT INTO pre_common_smiley VALUES ('63','3','23','smiley','{:3_63:}','23.gif');
INSERT INTO pre_common_smiley VALUES ('64','3','24','smiley','{:3_64:}','24.gif');
INSERT INTO pre_common_smiley VALUES ('65','0','0','stamp','精华','001.gif');
INSERT INTO pre_common_smiley VALUES ('66','0','1','stamp','热帖','002.gif');
INSERT INTO pre_common_smiley VALUES ('67','0','2','stamp','美图','003.gif');
INSERT INTO pre_common_smiley VALUES ('68','0','3','stamp','优秀','004.gif');
INSERT INTO pre_common_smiley VALUES ('69','0','4','stamp','置顶','005.gif');
INSERT INTO pre_common_smiley VALUES ('70','0','5','stamp','推荐','006.gif');
INSERT INTO pre_common_smiley VALUES ('71','0','6','stamp','原创','007.gif');
INSERT INTO pre_common_smiley VALUES ('72','0','7','stamp','版主推荐','008.gif');
INSERT INTO pre_common_smiley VALUES ('73','0','8','stamp','爆料','009.gif');
INSERT INTO pre_common_smiley VALUES ('74','0','9','stamplist','精华','001.small.gif');
INSERT INTO pre_common_smiley VALUES ('75','0','10','stamplist','热帖','002.small.gif');
INSERT INTO pre_common_smiley VALUES ('76','0','11','stamplist','美图','003.small.gif');
INSERT INTO pre_common_smiley VALUES ('77','0','12','stamplist','优秀','004.small.gif');
INSERT INTO pre_common_smiley VALUES ('78','0','13','stamplist','置顶','005.small.gif');
INSERT INTO pre_common_smiley VALUES ('79','0','14','stamplist','推荐','006.small.gif');
INSERT INTO pre_common_smiley VALUES ('80','0','15','stamplist','原创','007.small.gif');
INSERT INTO pre_common_smiley VALUES ('81','0','16','stamplist','版主推荐','008.small.gif');
INSERT INTO pre_common_smiley VALUES ('82','0','17','stamplist','爆料','009.small.gif');
INSERT INTO pre_common_smiley VALUES ('83','4','19','stamp','编辑采用','010.gif');
INSERT INTO pre_common_smiley VALUES ('84','0','18','stamplist','编辑采用','010.small.gif');
INSERT INTO pre_common_smiley VALUES ('85','0','20','stamplist','新人帖','011.small.gif');
INSERT INTO pre_common_statuser VALUES ('1','0','login');
INSERT INTO pre_common_style VALUES ('1','默认风格','1','1', 't1 t2 t3 t4 t5|');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'menuhoverbgcolor', '#005AB4 nv_a.png no-repeat 50% -33px');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'lightlink', '#FFF');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'floatbgcolor', '#FFF');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'dropmenubgcolor', '#FEFEFE');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'floatmaskbgcolor', '#000');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'dropmenuborder', '#DDD');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'specialbg', '#E5EDF2');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'specialborder', '#C2D5E3');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'commonbg', '#F2F2F2');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'commonborder', '#CDCDCD');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'inputbg', '#FFF');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'stypeid', '1');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'inputborderdarkcolor', '#848484');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'headerbgcolor', '');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'headerborder', '0');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'sidebgcolor', ' vlineb.png repeat-y 0 0');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'msgfontsize', '14px');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'bgcolor', '#FFF background.png repeat-x 0 0');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'noticetext', '#F26C4F');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'highlightlink', '#369');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'link', '#333');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'lighttext', '#999');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'midtext', '#666');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'tabletext', '#444');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'smfontsize', '0.83em');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'threadtitlefont', 'Tahoma,Helvetica,''SimSun'',sans-serif');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'threadtitlefontsize', '14px');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'smfont', 'Tahoma,Helvetica,sans-serif');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'titlebgcolor', '#E5EDF2 titlebg.png repeat-x 0 0');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'fontsize', '12px/1.5');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'font', 'Tahoma,Helvetica,\'SimSun\',sans-serif');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'styleimgdir', '');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'imgdir', '');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'boardimg', 'logo.png');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'available', '');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'headertext', '#444');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'footertext', '#666');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'menubgcolor', '#2B7ACD nv.png no-repeat 0 0');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'menutext', '#FFF');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'menuhovertext', '#FFF');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'wrapbg', '#FFF');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'wrapbordercolor', '#CCC');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'contentwidth', '630px');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'contentseparate', '#C2D5E3');
INSERT INTO `pre_common_stylevar` (`styleid`, `variable`, `substitute`) VALUES (1, 'inputborder', '#E0E0E0');
INSERT INTO pre_common_template VALUES ('1','默认模板套系','./template/default','北京康盛新创科技有限责任公司');
INSERT INTO pre_common_usergroup VALUES ('1','1','system','private','管理员','0','0','9','','','1','1','1','1','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('2','2','system','private','超级版主','0','0','8','','','1','1','1','1','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('3','3','system','private','版主','0','0','7','','','1','1','1','1','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('4','0','system','private','禁止发言','0','0','0','','','1','1','0','0','0','0','0');
INSERT INTO pre_common_usergroup VALUES ('5','0','system','private','禁止访问','0','0','0','','','0','1','0','0','0','0','0');
INSERT INTO pre_common_usergroup VALUES ('6','0','system','private','禁止 IP','0','0','0','','','0','1','0','0','0','0','0');
INSERT INTO pre_common_usergroup VALUES ('7','0','system','private','游客','0','0','0','','','1','1','0','0','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('8','0','system','private','等待验证会员','0','0','0','','','1','1','0','0','0','0','0');
INSERT INTO pre_common_usergroup VALUES ('9','0','member','private','限制会员','-9999999','0','0','','','1','1','0','0','0','0','0');
INSERT INTO pre_common_usergroup VALUES ('10','0','member','private','新手上路','0','50','1','','','1','1','0','0','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('11','0','member','private','注册会员','50','200','2','','','1','1','0','0','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('12','0','member','private','中级会员','200','500','3','','','1','1','0','0','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('13','0','member','private','高级会员','500','1000','4','','','1','1','0','0','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('14','0','member','private','金牌会员','1000','3000','6','','','1','1','0','0','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('15','0','member','private','论坛元老','3000','9999999','8','','','1','1','0','0','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('16','3','special','private','实习版主','0','0','7','','','1','1','0','0','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('17','2','special','private','网站编辑','0','0','8','','','1','1','0','0','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('18','1','special','private','信息监察员','0','0','9','','','1','1','0','0','0','0','10');
INSERT INTO pre_common_usergroup VALUES ('19','3','special','private','审核员','0','0','7','','','1','1','0','0','0','0','10');
INSERT INTO pre_common_usergroup_field SET `groupid`='1',`allowgroupdirectpost`='3',`allowgroupposturl`='3',`readaccess`='200',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='3',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='127',`allowcstatus`='1',`allowinvisible`='1',`allowtransfer`='1',`allowsetreadperm`='1',`allowsetattachperm`='1',`allowposttag`='1',`allowhidecode`='1',`allowhtml`='1',`allowanonymous`='1',`allowsigbbcode`='1',`allowsigimgcode`='1',`allowmagics`='2',`disableperiodctrl`='1',`reasonpm`='0',`maxprice`='30',`maxsigsize`='500',`maxattachsize`='2048000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='200',`allowpostdebate`='1',`tradestick`='5',`exempt`='255',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='1',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='1',`videophotoignore`='1',`allowviewvideophoto`='1',`allowmyop`='1',`magicdiscount`='0',`domainlength`='5',`seccode`='1',`disablepostctrl`='1',`allowbuildgroup`='30',`edittimelimit`='0',`allowpostarticle`='1',`allowdownlocalimg`='1',`allowspacediyhtml`='1',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='3',`allowcommentitem`='1',`allowreplycredit` = '1',`allowstatdata`='1',`ignorecensor`='1',`allowsendallpm`='1', `allowdownremoteimg`='1', `allowmediacode`='1', `allowbegincode`='1', `allowat`='50', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='2',`allowgroupdirectpost`='3',`readaccess`='150',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='3',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='1',`allowinvisible`='1',`allowtransfer`='1',`allowsetreadperm`='1',`allowsetattachperm`='1',`allowposttag`='0',`allowhidecode`='1',`allowhtml`='0',`allowanonymous`='1',`allowsigbbcode`='1',`allowsigimgcode`='1',`allowmagics`='2',`disableperiodctrl`='1',`reasonpm`='0',`maxprice`='20',`maxsigsize`='300',`maxattachsize`='2048000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='180',`allowpostdebate`='1',`tradestick`='5',`exempt`='255',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='5',`seccode`='1',`disablepostctrl`='1',`allowbuildgroup`='20',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit` = '1',`allowstatdata`='0',`ignorecensor`='1',`allowsendallpm`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='3',`allowgroupdirectpost`='3',`readaccess`='100',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='1',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='1',`allowinvisible`='0',`allowtransfer`='1',`allowsetreadperm`='1',`allowsetattachperm`='1',`allowposttag`='0',`allowhidecode`='1',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='1',`allowsigimgcode`='1',`allowmagics`='2',`disableperiodctrl`='1',`reasonpm`='0',`maxprice`='10',`maxsigsize`='200',`maxattachsize`='2048000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='160',`allowpostdebate`='1',`tradestick`='5',`exempt`='224',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='5',`seccode`='1',`disablepostctrl`='1',`allowbuildgroup`='15',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit` = '1',`allowstatdata`='0',`ignorecensor`='1',`allowsendallpm`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='4',`allowgroupdirectpost`='3',`readaccess`='0',`allowpost`='0',`allowreply`='0',`allowpostpoll`='0',`allowpostreward`='0',`allowposttrade`='0',`allowpostactivity`='0',`allowdirectpost`='0',`allowgetattach`='0',`allowgetimage`='0',`allowpostattach`='0',`allowpostimage`='0',`allowvote`='0',`allowsearch`='0',`allowcstatus`='0',`allowinvisible`='0',`allowtransfer`='0',`allowsetreadperm`='0',`allowsetattachperm`='0',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='0',`allowsigimgcode`='0',`allowmagics`='0',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='0',`maxattachsize`='0',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='0',`allowpostdebate`='0',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='0',`allowcommentarticle`='0',`searchinterval`='0',`searchignore`='0',`allowblog`='0',`allowdoing`='0',`allowupload`='0',`allowshare`='0',`allowcss`='0',`allowpoke`='0',`allowfriend`='0',`allowclick`='0',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='0',`magicdiscount`='0',`domainlength`='0',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='0',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='0',`allowspacediyimgcode`='0',`allowcommentpost`='0',`allowcommentitem`='0',`allowreplycredit`='0',`allowstatdata`='0';
INSERT INTO pre_common_usergroup_field SET `groupid`='5',`allowgroupdirectpost`='3',`readaccess`='0',`allowpost`='0',`allowreply`='0',`allowpostpoll`='0',`allowpostreward`='0',`allowposttrade`='0',`allowpostactivity`='0',`allowdirectpost`='0',`allowgetattach`='0',`allowgetimage`='0',`allowpostattach`='0',`allowpostimage`='0',`allowvote`='0',`allowsearch`='0',`allowcstatus`='0',`allowinvisible`='0',`allowtransfer`='0',`allowsetreadperm`='0',`allowsetattachperm`='0',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='0',`allowsigimgcode`='0',`allowmagics`='0',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='0',`maxattachsize`='0',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='0',`allowpostdebate`='0',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='0',`allowcommentarticle`='0',`searchinterval`='0',`searchignore`='0',`allowblog`='0',`allowdoing`='0',`allowupload`='0',`allowshare`='0',`allowcss`='0',`allowpoke`='0',`allowfriend`='0',`allowclick`='0',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='0',`magicdiscount`='0',`domainlength`='0',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='0',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='0',`allowspacediyimgcode`='0',`allowcommentpost`='0',`allowcommentitem`='0',`allowreplycredit`='0',`allowstatdata`='0';
INSERT INTO pre_common_usergroup_field SET `groupid`='6',`allowgroupdirectpost`='3',`readaccess`='0',`allowpost`='0',`allowreply`='0',`allowpostpoll`='0',`allowpostreward`='0',`allowposttrade`='0',`allowpostactivity`='0',`allowdirectpost`='0',`allowgetattach`='0',`allowgetimage`='0',`allowpostattach`='0',`allowpostimage`='0',`allowvote`='0',`allowsearch`='0',`allowcstatus`='0',`allowinvisible`='0',`allowtransfer`='0',`allowsetreadperm`='0',`allowsetattachperm`='0',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='0',`allowsigimgcode`='0',`allowmagics`='0',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='0',`maxattachsize`='0',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='0',`allowpostdebate`='0',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='0',`allowcommentarticle`='0',`searchinterval`='0',`searchignore`='0',`allowblog`='0',`allowdoing`='0',`allowupload`='0',`allowshare`='0',`allowcss`='0',`allowpoke`='0',`allowfriend`='0',`allowclick`='0',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='0',`magicdiscount`='0',`domainlength`='0',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='0',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='0',`allowspacediyimgcode`='0',`allowcommentpost`='0',`allowcommentitem`='0',`allowreplycredit`='0',`allowstatdata`='0';
INSERT INTO pre_common_usergroup_field SET `groupid`='7',`allowgroupdirectpost`='3',`readaccess`='1',`allowpost`='0',`allowreply`='0',`allowpostpoll`='0',`allowpostreward`='0',`allowposttrade`='0',`allowpostactivity`='0',`allowdirectpost`='0',`allowgetattach`='0',`allowgetimage`='0',`allowpostattach`='0',`allowpostimage`='0',`allowvote`='0',`allowsearch`='19',`allowcstatus`='0',`allowinvisible`='0',`allowtransfer`='0',`allowsetreadperm`='0',`allowsetattachperm`='0',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='0',`allowsigimgcode`='0',`allowmagics`='0',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='0',`maxattachsize`='0',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='0',`allowpostdebate`='0',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='0',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcommentarticle`='0',`allowcomment`='0',`searchinterval`='0',`searchignore`='0',`allowblog`='0',`allowdoing`='0',`allowupload`='0',`allowshare`='0',`allowcss`='0',`allowpoke`='0',`allowfriend`='0',`allowclick`='0',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='0',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='0',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='0',`allowspacediyimgcode`='0',`allowcommentpost`='0',`allowcommentitem`='0',`allowreplycredit`='0',`allowstatdata`='0';
INSERT INTO pre_common_usergroup_field SET `groupid`='8',`allowgroupdirectpost`='3',`readaccess`='0',`allowpost`='0',`allowreply`='0',`allowpostpoll`='0',`allowpostreward`='0',`allowposttrade`='0',`allowpostactivity`='0',`allowdirectpost`='0',`allowgetattach`='0',`allowgetimage`='0',`allowpostattach`='0',`allowpostimage`='0',`allowvote`='0',`allowsearch`='2',`allowcstatus`='0',`allowinvisible`='0',`allowtransfer`='0',`allowsetreadperm`='0',`allowsetattachperm`='0',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='1',`allowsigimgcode`='0',`allowmagics`='0',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='50',`maxattachsize`='0',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='0',`allowpostdebate`='0',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='0',`allowcommentarticle`='0',`searchinterval`='0',`searchignore`='0',`allowblog`='0',`allowdoing`='0',`allowupload`='0',`allowshare`='0',`allowcss`='0',`allowpoke`='0',`allowfriend`='0',`allowclick`='0',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='0',`magicdiscount`='0',`domainlength`='0',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='0',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='0',`allowspacediyimgcode`='0',`allowcommentpost`='2',`allowcommentitem`='0',`allowreplycredit`='0',`allowstatdata`='0';
INSERT INTO pre_common_usergroup_field SET `groupid`='9',`allowgroupdirectpost`='0',`readaccess`='0',`allowpost`='0',`allowreply`='0',`allowpostpoll`='0',`allowpostreward`='0',`allowposttrade`='0',`allowpostactivity`='0',`allowdirectpost`='0',`allowgetattach`='0',`allowgetimage`='0',`allowpostattach`='0',`allowpostimage`='0',`allowvote`='0',`allowsearch`='0',`allowcstatus`='0',`allowinvisible`='0',`allowtransfer`='0',`allowsetreadperm`='0',`allowsetattachperm`='0',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='0',`allowsigimgcode`='0',`allowmagics`='0',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='0',`maxattachsize`='0',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm,pdf,zip,rar,tar,gz,bzip2,gif,jpg,jpeg,png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='1',`maxmagicsweight`='0',`allowpostdebate`='0',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='0',`allowrecommend`='0',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='0',`allowcommentarticle`='0',`searchinterval`='0',`searchignore`='0',`allowblog`='0',`allowdoing`='0',`allowupload`='0',`allowshare`='0',`allowcss`='0',`allowpoke`='0',`allowfriend`='0',`allowclick`='0',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='0',`magicdiscount`='0',`domainlength`='0',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='0',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='0',`allowspacediyimgcode`='0',`allowcommentpost`='0',`allowcommentitem`='1',`allowreplycredit`='0',`allowstatdata`='0';
INSERT INTO pre_common_usergroup_field SET `groupid`='10',`allowgroupdirectpost`='3',`readaccess`='10',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='0',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='0',`allowinvisible`='0',`allowtransfer`='0',`allowsetreadperm`='0',`allowsetattachperm`='0',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='1',`allowsigimgcode`='0',`allowmagics`='1',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='80',`maxattachsize`='1024000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='40',`allowpostdebate`='1',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='5',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='5',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit`='0',`allowstatdata`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='11',`allowgroupdirectpost`='3',`readaccess`='20',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='0',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='0',`allowinvisible`='0',`allowtransfer`='0',`allowsetreadperm`='0',`allowsetattachperm`='0',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='1',`allowsigimgcode`='0',`allowmagics`='1',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='100',`maxattachsize`='1024000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='60',`allowpostdebate`='1',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='5',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='5',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit`='1',`allowstatdata`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='12',`allowgroupdirectpost`='3',`readaccess`='30',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='0',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='0',`allowinvisible`='0',`allowtransfer`='0',`allowsetreadperm`='0',`allowsetattachperm`='0',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='1',`allowsigimgcode`='0',`allowmagics`='1',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='150',`maxattachsize`='1024000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='80',`allowpostdebate`='1',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='5',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='5',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit`='1',`allowstatdata`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='13',`allowgroupdirectpost`='3',`readaccess`='50',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='0',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='1',`allowinvisible`='0',`allowtransfer`='0',`allowsetreadperm`='0',`allowsetattachperm`='0',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='1',`allowsigimgcode`='0',`allowmagics`='2',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='200',`maxattachsize`='2048000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='100',`allowpostdebate`='1',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='0',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='10',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit`='1',`allowstatdata`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='14',`allowgroupdirectpost`='3',`readaccess`='70',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='0',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='1',`allowinvisible`='0',`allowtransfer`='0',`allowsetreadperm`='1',`allowsetattachperm`='1',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='1',`allowsigimgcode`='1',`allowmagics`='2',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='300',`maxattachsize`='2048000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='120',`allowpostdebate`='1',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='5',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='10',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit`='1',`allowstatdata`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='15',`allowgroupdirectpost`='3',`readaccess`='90',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='0',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='1',`allowinvisible`='1',`allowtransfer`='0',`allowsetreadperm`='1',`allowsetattachperm`='1',`allowposttag`='0',`allowhidecode`='0',`allowhtml`='0',`allowanonymous`='1',`allowsigbbcode`='1',`allowsigimgcode`='1',`allowmagics`='2',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='0',`maxsigsize`='500',`maxattachsize`='2048000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='140',`allowpostdebate`='1',`tradestick`='5',`exempt`='0',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='1',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='5',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='10',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit`= '1',`allowstatdata`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='16',`allowgroupdirectpost`='3',`readaccess`='100',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='1',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='1',`allowinvisible`='0',`allowtransfer`='1',`allowsetreadperm`='1',`allowsetattachperm`='1',`allowposttag`='0',`allowhidecode`='1',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='1',`allowsigimgcode`='1',`allowmagics`='2',`disableperiodctrl`='1',`reasonpm`='0',`maxprice`='10',`maxsigsize`='200',`maxattachsize`='2048000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='160',`allowpostdebate`='1',`tradestick`='5',`exempt`='188',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='0',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='5',`seccode`='1',`disablepostctrl`='0',`allowbuildgroup`='15',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit`='1',`allowstatdata`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='17',`allowgroupdirectpost`='3',`readaccess`='150',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='3',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='1',`allowinvisible`='1',`allowtransfer`='1',`allowsetreadperm`='1',`allowsetattachperm`='1',`allowposttag`='0',`allowhidecode`='1',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='1',`allowsigimgcode`='1',`allowmagics`='2',`disableperiodctrl`='1',`reasonpm`='0',`maxprice`='20',`maxsigsize`='300',`maxattachsize`='2048000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='180',`allowpostdebate`='1',`tradestick`='5',`exempt`='255',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='0',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='5',`seccode`='1',`disablepostctrl`='1',`allowbuildgroup`='15',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit`='1',`allowstatdata`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='18',`allowgroupdirectpost`='3',`readaccess`='200',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='3',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='0',`allowinvisible`='1',`allowtransfer`='1',`allowsetreadperm`='1',`allowsetattachperm`='1',`allowposttag`='0',`allowhidecode`='1',`allowhtml`='1',`allowanonymous`='1',`allowsigbbcode`='1',`allowsigimgcode`='1',`allowmagics`='2',`disableperiodctrl`='0',`reasonpm`='0',`maxprice`='30',`maxsigsize`='500',`maxattachsize`='0',`maxsizeperday`='0',`maxpostsperhour`='1',`attachextensions`='',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='200',`allowpostdebate`='1',`tradestick`='5',`exempt`='255',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='3',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='15',`seccode`='1',`disablepostctrl`='1',`allowbuildgroup`='5',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit`='1',`allowstatdata`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_usergroup_field SET `groupid`='19',`allowgroupdirectpost`='3',`readaccess`='100',`allowpost`='1',`allowreply`='1',`allowpostpoll`='1',`allowpostreward`='1',`allowposttrade`='1',`allowpostactivity`='1',`allowdirectpost`='1',`allowgetattach`='1',`allowgetimage`='1',`allowpostattach`='1',`allowpostimage`='1',`allowvote`='1',`allowsearch`='95',`allowcstatus`='1',`allowinvisible`='0',`allowtransfer`='1',`allowsetreadperm`='1',`allowsetattachperm`='1',`allowposttag`='0',`allowhidecode`='1',`allowhtml`='0',`allowanonymous`='0',`allowsigbbcode`='1',`allowsigimgcode`='1',`allowmagics`='2',`disableperiodctrl`='1',`reasonpm`='0',`maxprice`='10',`maxsigsize`='200',`maxattachsize`='2048000',`maxsizeperday`='0',`maxpostsperhour`='0',`attachextensions`='chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png',`raterange`='',`mintradeprice`='1',`maxtradeprice`='0',`minrewardprice`='1',`maxrewardprice`='0',`magicsdiscount`='0',`maxmagicsweight`='160',`allowpostdebate`='1',`tradestick`='5',`exempt`='188',`maxattachnum`='0',`allowposturl`='3',`allowrecommend`='0',`allowpostrushreply`='0',`maxfriendnum`='0',`maxspacesize`='0',`allowcomment`='1',`allowcommentarticle`='1000',`searchinterval`='0',`searchignore`='0',`allowblog`='1',`allowdoing`='1',`allowupload`='1',`allowshare`='1',`allowcss`='0',`allowpoke`='1',`allowfriend`='1',`allowclick`='1',`allowmagic`='0',`allowstat`='0',`videophotoignore`='0',`allowviewvideophoto`='0',`allowmyop`='1',`magicdiscount`='0',`domainlength`='5',`seccode`='1',`disablepostctrl`='1',`allowbuildgroup`='15',`edittimelimit`='0',`allowpostarticle`='0',`allowspacediyhtml`='0',`allowspacediybbcode`='1',`allowspacediyimgcode`='1',`allowcommentpost`='2',`allowcommentitem`='1',`allowreplycredit`='1',`allowstatdata`='0', `allowcreatecollection`='5', `allowcommentcollection`='1', `allowfollowcollection`='30';
INSERT INTO pre_common_word_type SET `id`='1', `typename`='政治';
INSERT INTO pre_common_word_type SET `id`='2', `typename`='广告';
INSERT INTO pre_forum_bbcode VALUES ('1','0','fly','bb_fly.gif','<marquee width=\"90%\" scrollamount=\"3\">{1}</marquee>','[fly]This is sample text[/fly]','使内容横向滚动,这个效果类似 HTML 的 marquee 标签,注意:这个效果只在 Internet Explorer 浏览器下有效。','1','请输入滚动显示的文字:','1','19','1 2 3 12 13 14 15 16 17 18 19');
INSERT INTO pre_forum_bbcode VALUES ('2','2','qq','bb_qq.gif','<a href=\"http://wpa.qq.com/msgrd?V=3&Uin={1}&Site=[Discuz!]&from=discuz&Menu=yes\" target=\"_blank\"><img src=\"static/image/common/qq_big.gif\" border=\"0\"></a>','[qq]688888[/qq]','显示 QQ 在线状态,点这个图标可以和他(她)聊天','1','请输入 QQ 号码:<a href=\"\" class=\"xi2\" onclick=\"this.href=\'http://wp.qq.com/set.html?from=discuz&uin=\'+$(\'e_cst1_qq_param_1\').value\" target=\"_blank\" style=\"float:right;\">设置QQ在线状态 </a>','1','21','1 2 3 10 11 12 13 14 15 16 17 18 19');
INSERT INTO pre_forum_bbcode VALUES ('3','0','sup','bb_sup.gif','<sup>{1}</sup>','X[sup]2[/sup]','上标','1','请输入上标文字:','1','22','1 2 3 12 13 14 15 16 17 18 19');
INSERT INTO pre_forum_bbcode VALUES ('4','0','sub','bb_sub.gif','<sub>{1}</sub>','X[sub]2[/sub]','下标','1','请输入下标文字:','1','23','1 2 3 12 13 14 15 16 17 18 19');
INSERT INTO pre_forum_forum SET `fid`='1',`fup`='0',`type`='group',`name`='Discuz!',`status`='1';
INSERT INTO pre_forum_forum SET `fid`='2',`fup`='1',`type`='forum',`name`='默认版块',`status`='1',`allowsmilies`='1',`allowbbcode`='1',`allowimgcode`='1',`allowmediacode`='1',`allowpostspecial`='1',`recyclebin`='1', `allowfeed`='1';
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(3, 0, 'group', '影音', 3, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(4, 0, 'group', '情感', 3, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(5, 0, 'group', '生活', 3, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(6, 0, 'group', '休闲', 3, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(7, 0, 'group', '游戏', 3, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(8, 0, 'group', '体育', 3, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(9, 3, 'forum', '电影', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(10, 3, 'forum', '音乐', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(11, 3, 'forum', '视频', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(12, 3, 'forum', '电视', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(13, 4, 'forum', '交友', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(14, 4, 'forum', '单身', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(15, 4, 'forum', '诉说', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(16, 4, 'forum', '婚恋', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(17, 5, 'forum', '美食', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(18, 5, 'forum', '购物', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(19, 5, 'forum', '美容', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(20, 5, 'forum', '健康', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(21, 5, 'forum', '汽车', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(22, 6, 'forum', '时尚', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(23, 6, 'forum', '星座', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(24, 6, 'forum', '摄影', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(25, 6, 'forum', '宠物', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(26, 6, 'forum', '动漫', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(27, 6, 'forum', '旅游', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(28, 6, 'forum', '设计', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(29, 8, 'forum', '足球', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(30, 8, 'forum', '篮球', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(31, 8, 'forum', '羽毛球', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(32, 8, 'forum', '乒乓球', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(33, 7, 'forum', '网游', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forum (`fid`, `fup`, `type`, `name`, `status`, `displayorder`, `styleid`, `threads`, `posts`, `todayposts`, `lastpost`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimgcode`, `allowmediacode`, `allowanonymous`, `allowpostspecial`, `allowspecialonly`, `alloweditrules`, `allowfeed`, `allowside`, `recyclebin`, `modnewposts`, `jammer`, `disablewatermark`, `inheritedmod`, `autoclose`, `forumcolumns`, `threadcaches`, `alloweditpost`, `simple`, `modworks`, `allowglobalstick`, `level`, `commoncredits`, `archive`, `recommend`) VALUES(35, 7, 'forum', '单机', 3, 0, 0, 0, 0, 0, '', 1, 0, 1, 1, 0, 0, 127, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0);
INSERT INTO pre_forum_forumfield SET `fid`='1';
INSERT INTO pre_forum_forumfield SET `fid`='2';
INSERT INTO pre_forum_forumfield SET `fid`='3';
INSERT INTO pre_forum_forumfield SET `fid`='4';
INSERT INTO pre_forum_forumfield SET `fid`='5';
INSERT INTO pre_forum_forumfield SET `fid`='6';
INSERT INTO pre_forum_forumfield SET `fid`='7';
INSERT INTO pre_forum_forumfield SET `fid`='8';
INSERT INTO pre_forum_forumfield SET `fid`='9';
INSERT INTO pre_forum_forumfield SET `fid`='10';
INSERT INTO pre_forum_forumfield SET `fid`='11';
INSERT INTO pre_forum_forumfield SET `fid`='12';
INSERT INTO pre_forum_forumfield SET `fid`='13';
INSERT INTO pre_forum_forumfield SET `fid`='14';
INSERT INTO pre_forum_forumfield SET `fid`='15';
INSERT INTO pre_forum_forumfield SET `fid`='16';
INSERT INTO pre_forum_forumfield SET `fid`='17';
INSERT INTO pre_forum_forumfield SET `fid`='18';
INSERT INTO pre_forum_forumfield SET `fid`='19';
INSERT INTO pre_forum_forumfield SET `fid`='20';
INSERT INTO pre_forum_forumfield SET `fid`='21';
INSERT INTO pre_forum_forumfield SET `fid`='22';
INSERT INTO pre_forum_forumfield SET `fid`='23';
INSERT INTO pre_forum_forumfield SET `fid`='24';
INSERT INTO pre_forum_forumfield SET `fid`='25';
INSERT INTO pre_forum_forumfield SET `fid`='26';
INSERT INTO pre_forum_forumfield SET `fid`='27';
INSERT INTO pre_forum_forumfield SET `fid`='28';
INSERT INTO pre_forum_forumfield SET `fid`='29';
INSERT INTO pre_forum_forumfield SET `fid`='30';
INSERT INTO pre_forum_forumfield SET `fid`='31';
INSERT INTO pre_forum_forumfield SET `fid`='32';
INSERT INTO pre_forum_forumfield SET `fid`='33';
INSERT INTO pre_forum_forumfield SET `fid`='34';
INSERT INTO pre_forum_forumfield SET `fid`='35';
INSERT INTO pre_forum_grouplevel VALUES ('1','default','普通级','-999999999','500','','a:1:{s:4:\"post\";s:1:\"1\";s:5:\"reply\";s:1:\"1\";}','a:11:{s:13:\"alloweditpost\";s:1:\"1\";s:10:\"recyclebin\";s:1:\"1\";s:12:\"allowsmilies\";s:1:\"1\";s:9:\"allowhtml\";i:0;s:11:\"allowbbcode\";s:1:\"1\";s:14:\"allowanonymous\";i:0;s:6:\"jammer\";i:0;s:12:\"allowimgcode\";s:1:\"1\";s:14:\"allowmediacode\";s:1:\"1\";s:16:\"allowpostspecial\";i:31;s:16:\"attachextensions\";s:7:\"jpg,gif\";}','a:5:{s:15:\"allowchangename\";s:1:\"1\";s:15:\"allowchangetype\";s:1:\"1\";s:15:\"allowclosegroup\";s:1:\"1\";s:15:\"allowthreadtype\";s:1:\"1\";s:13:\"membermaximum\";s:0:\"\";}');
INSERT INTO pre_forum_grouplevel VALUES ('2','default','中级','500','3000','','a:2:{s:4:\"post\";s:1:\"1\";s:5:\"reply\";s:1:\"1\";}','a:11:{s:13:\"alloweditpost\";s:1:\"1\";s:10:\"recyclebin\";s:1:\"1\";s:12:\"allowsmilies\";s:1:\"1\";s:9:\"allowhtml\";i:0;s:11:\"allowbbcode\";s:1:\"1\";s:14:\"allowanonymous\";i:0;s:6:\"jammer\";i:0;s:12:\"allowimgcode\";s:1:\"1\";s:14:\"allowmediacode\";s:1:\"1\";s:16:\"allowpostspecial\";i:31;s:16:\"attachextensions\";s:11:\"jpg,gif,rar\";}','');
INSERT INTO pre_forum_grouplevel VALUES ('3','default','高级','3000','999999999','','a:2:{s:4:\"post\";s:1:\"1\";s:5:\"reply\";s:1:\"1\";}','a:11:{s:13:\"alloweditpost\";s:1:\"1\";s:10:\"recyclebin\";s:1:\"1\";s:12:\"allowsmilies\";s:1:\"1\";s:9:\"allowhtml\";s:1:\"0\";s:11:\"allowbbcode\";s:1:\"1\";s:14:\"allowanonymous\";s:1:\"0\";s:6:\"jammer\";s:1:\"1\";s:12:\"allowimgcode\";s:1:\"1\";s:14:\"allowmediacode\";s:1:\"1\";s:16:\"allowpostspecial\";i:31;s:16:\"attachextensions\";s:31:\"jpg,gif,png,bmp,rar,doc,txt,zip\";}','');
INSERT INTO pre_forum_imagetype VALUES ('1','1','默认','smiley','1','default');
INSERT INTO pre_forum_imagetype VALUES ('2','1','酷猴','smiley','2','coolmonkey');
INSERT INTO pre_forum_imagetype VALUES ('3','1','呆呆男','smiley','3','grapeman');
INSERT INTO pre_forum_medal VALUES ('1','最佳新人','0','medal1.gif','0','0','注册账号后积极发帖的会员','0','','0','0');
INSERT INTO pre_forum_medal VALUES ('2','活跃会员','0','medal2.gif','0','0','经常参与各类话题的讨论,发帖内容较有主见','0','','0','0');
INSERT INTO pre_forum_medal VALUES ('3','热心会员','0','medal3.gif','0','0','经常帮助其他会员答疑','0','','0','0');
INSERT INTO pre_forum_medal VALUES ('4','推广达人','0','medal4.gif','0','0','积极宣传本站,为本站带来更多注册会员','0','','0','0');
INSERT INTO pre_forum_medal VALUES ('5','宣传达人','0','medal5.gif','0','0','积极宣传本站,为本站带来更多的用户访问量','0','','0','0');
INSERT INTO pre_forum_medal VALUES ('6','灌水之王','0','medal6.gif','0','0','经常在论坛发帖,且发帖量较大','0','','0','0');
INSERT INTO pre_forum_medal VALUES ('7','突出贡献','0','medal7.gif','0','0','长期对论坛的繁荣而不断努力,或多次提出建设性意见','0','','0','0');
INSERT INTO pre_forum_medal VALUES ('8','优秀版主','0','medal8.gif','0','0','活跃且尽责职守的版主','0','','0','0');
INSERT INTO pre_forum_medal VALUES ('9','荣誉管理','0','medal9.gif','0','0','曾经为论坛做出突出贡献目前已离职的版主','0','','0','0');
INSERT INTO pre_forum_medal VALUES ('10','论坛元老','0','medal10.gif','0','0','为论坛做出突出贡献的会员','0','','0','0');
INSERT INTO pre_forum_onlinelist VALUES ('1','1','管理员','online_admin.gif');
INSERT INTO pre_forum_onlinelist VALUES ('2','2','超级版主','online_supermod.gif');
INSERT INTO pre_forum_onlinelist VALUES ('3','3','版主','online_moderator.gif');
INSERT INTO pre_forum_onlinelist VALUES ('0','4','会员','online_member.gif');
INSERT INTO pre_forum_typeoption SET `optionid`=1, `title`='分类A';
INSERT INTO pre_forum_typeoption SET `optionid`=2, `title`='分类B';
INSERT INTO pre_forum_typeoption SET `optionid`=3, `title`='分类C';
INSERT INTO pre_forum_typeoption SET `optionid`=4, `title`='分类D';
INSERT INTO pre_forum_typeoption SET `optionid`=5, `title`='分类E';
INSERT INTO pre_forum_typeoption SET `optionid`=6, `title`='分类F';
INSERT INTO pre_home_click VALUES ('1','路过','luguo.gif','blogid','1','0');
INSERT INTO pre_home_click VALUES ('2','雷人','leiren.gif','blogid','1','0');
INSERT INTO pre_home_click VALUES ('3','握手','woshou.gif','blogid','1','0');
INSERT INTO pre_home_click VALUES ('4','鲜花','xianhua.gif','blogid','1','0');
INSERT INTO pre_home_click VALUES ('5','鸡蛋','jidan.gif','blogid','1','0');
INSERT INTO pre_home_click VALUES ('6','漂亮','piaoliang.gif','picid','1','0');
INSERT INTO pre_home_click VALUES ('7','酷毙','kubi.gif','picid','1','0');
INSERT INTO pre_home_click VALUES ('8','雷人','leiren.gif','picid','1','0');
INSERT INTO pre_home_click VALUES ('9','鲜花','xianhua.gif','picid','1','0');
INSERT INTO pre_home_click VALUES ('10','鸡蛋','jidan.gif','picid','1','0');
INSERT INTO pre_home_click VALUES ('11','路过','luguo.gif','aid','1','0');
INSERT INTO pre_home_click VALUES ('12','雷人','leiren.gif','aid','1','0');
INSERT INTO pre_home_click VALUES ('13','握手','woshou.gif','aid','1','0');
INSERT INTO pre_home_click VALUES ('14','鲜花','xianhua.gif','aid','1','0');
INSERT INTO pre_home_click VALUES ('15','鸡蛋','jidan.gif','aid','1','0');
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (1, '北京市', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (2, '天津市', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (3, '河北省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (4, '山西省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (5, '内蒙古自治区', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (6, '辽宁省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (7, '吉林省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (8, '黑龙江省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (9, '上海市', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (10, '江苏省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (11, '浙江省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (12, '安徽省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (13, '福建省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (14, '江西省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (15, '山东省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (16, '河南省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (17, '湖北省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (18, '湖南省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (19, '广东省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (20, '广西壮族自治区', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (21, '海南省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (22, '重庆市', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (23, '四川省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (24, '贵州省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (25, '云南省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (26, '西藏自治区', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (27, '陕西省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (28, '甘肃省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (29, '青海省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (30, '宁夏回族自治区', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (31, '新疆维吾尔自治区', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (32, '台湾省', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (33, '香港特别行政区', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (34, '澳门特别行政区', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (35, '海外', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `usetype`) VALUES (36, '其他', 1, 0, 3);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (37, '东城区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (38, '西城区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (39, '崇文区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (40, '宣武区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (41, '朝阳区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (42, '丰台区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (43, '石景山区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (44, '海淀区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (45, '门头沟区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (46, '房山区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (47, '通州区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (48, '顺义区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (49, '昌平区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (50, '大兴区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (51, '怀柔区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (52, '平谷区', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (53, '密云县', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (54, '延庆县', 2, 1, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (55, '和平区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (56, '河东区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (57, '河西区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (58, '南开区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (59, '河北区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (60, '红桥区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (61, '塘沽区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (62, '汉沽区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (63, '大港区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (64, '东丽区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (65, '西青区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (66, '津南区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (67, '北辰区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (68, '武清区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (69, '宝坻区', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (70, '宁河县', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (71, '静海县', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (72, '蓟县', 2, 2, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (73, '石家庄市', 2, 3, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (74, '唐山市', 2, 3, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (75, '秦皇岛市', 2, 3, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (76, '邯郸市', 2, 3, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (77, '邢台市', 2, 3, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (78, '保定市', 2, 3, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (79, '张家口市', 2, 3, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (80, '承德市', 2, 3, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (81, '衡水市', 2, 3, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (82, '廊坊市', 2, 3, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (83, '沧州市', 2, 3, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (84, '太原市', 2, 4, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (85, '大同市', 2, 4, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (86, '阳泉市', 2, 4, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (87, '长治市', 2, 4, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (88, '晋城市', 2, 4, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (89, '朔州市', 2, 4, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (90, '晋中市', 2, 4, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (91, '运城市', 2, 4, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (92, '忻州市', 2, 4, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (93, '临汾市', 2, 4, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (94, '吕梁市', 2, 4, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (95, '呼和浩特市', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (96, '包头市', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (97, '乌海市', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (98, '赤峰市', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (99, '通辽市', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (100, '鄂尔多斯市', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (101, '呼伦贝尔市', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (102, '巴彦淖尔市', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (103, '乌兰察布市', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (104, '兴安盟', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (105, '锡林郭勒盟', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (106, '阿拉善盟', 2, 5, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (107, '沈阳市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (108, '大连市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (109, '鞍山市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (110, '抚顺市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (111, '本溪市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (112, '丹东市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (113, '锦州市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (114, '营口市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (115, '阜新市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (116, '辽阳市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (117, '盘锦市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (118, '铁岭市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (119, '朝阳市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (120, '葫芦岛市', 2, 6, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (121, '长春市', 2, 7, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (122, '吉林市', 2, 7, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (123, '四平市', 2, 7, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (124, '辽源市', 2, 7, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (125, '通化市', 2, 7, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (126, '白山市', 2, 7, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (127, '松原市', 2, 7, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (128, '白城市', 2, 7, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (129, '延边朝鲜族自治州', 2, 7, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (130, '哈尔滨市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (131, '齐齐哈尔市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (132, '鸡西市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (133, '鹤岗市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (134, '双鸭山市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (135, '大庆市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (136, '伊春市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (137, '佳木斯市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (138, '七台河市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (139, '牡丹江市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (140, '黑河市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (141, '绥化市', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (142, '大兴安岭地区', 2, 8, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (143, '黄浦区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (144, '卢湾区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (145, '徐汇区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (146, '长宁区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (147, '静安区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (148, '普陀区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (149, '闸北区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (150, '虹口区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (151, '杨浦区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (152, '闵行区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (153, '宝山区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (154, '嘉定区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (155, '浦东新区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (156, '金山区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (157, '松江区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (158, '青浦区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (159, '南汇区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (160, '奉贤区', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (161, '崇明县', 2, 9, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (162, '南京市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (163, '无锡市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (164, '徐州市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (165, '常州市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (166, '苏州市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (167, '南通市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (168, '连云港市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (169, '淮安市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (170, '盐城市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (171, '扬州市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (172, '镇江市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (173, '泰州市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (174, '宿迁市', 2, 10, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (175, '杭州市', 2, 11, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (176, '宁波市', 2, 11, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (177, '温州市', 2, 11, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (178, '嘉兴市', 2, 11, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (179, '湖州市', 2, 11, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (180, '绍兴市', 2, 11, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (181, '舟山市', 2, 11, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (182, '衢州市', 2, 11, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (183, '金华市', 2, 11, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (184, '台州市', 2, 11, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (185, '丽水市', 2, 11, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (186, '合肥市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (187, '芜湖市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (188, '蚌埠市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (189, '淮南市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (190, '马鞍山市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (191, '淮北市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (192, '铜陵市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (193, '安庆市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (194, '黄山市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (195, '滁州市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (196, '阜阳市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (197, '宿州市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (198, '巢湖市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (199, '六安市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (200, '亳州市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (201, '池州市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (202, '宣城市', 2, 12, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (203, '福州市', 2, 13, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (204, '厦门市', 2, 13, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (205, '莆田市', 2, 13, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (206, '三明市', 2, 13, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (207, '泉州市', 2, 13, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (208, '漳州市', 2, 13, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (209, '南平市', 2, 13, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (210, '龙岩市', 2, 13, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (211, '宁德市', 2, 13, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (212, '南昌市', 2, 14, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (213, '景德镇市', 2, 14, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (214, '萍乡市', 2, 14, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (215, '九江市', 2, 14, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (216, '新余市', 2, 14, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (217, '鹰潭市', 2, 14, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (218, '赣州市', 2, 14, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (219, '吉安市', 2, 14, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (220, '宜春市', 2, 14, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (221, '抚州市', 2, 14, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (222, '上饶市', 2, 14, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (223, '济南市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (224, '青岛市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (225, '淄博市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (226, '枣庄市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (227, '东营市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (228, '烟台市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (229, '潍坊市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (230, '济宁市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (231, '泰安市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (232, '威海市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (233, '日照市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (234, '莱芜市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (235, '临沂市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (236, '德州市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (237, '聊城市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (238, '滨州市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (239, '菏泽市', 2, 15, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (240, '郑州市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (241, '开封市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (242, '洛阳市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (243, '平顶山市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (244, '安阳市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (245, '鹤壁市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (246, '新乡市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (247, '焦作市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (248, '濮阳市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (249, '许昌市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (250, '漯河市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (251, '三门峡市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (252, '南阳市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (253, '商丘市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (254, '信阳市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (255, '周口市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (256, '驻马店市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (257, '济源市', 2, 16, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (258, '武汉市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (259, '黄石市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (260, '十堰市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (261, '宜昌市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (262, '襄樊市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (263, '鄂州市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (264, '荆门市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (265, '孝感市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (266, '荆州市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (267, '黄冈市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (268, '咸宁市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (269, '随州市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (270, '恩施土家族苗族自治州', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (271, '仙桃市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (272, '潜江市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (273, '天门市', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (274, '神农架林区', 2, 17, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (275, '长沙市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (276, '株洲市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (277, '湘潭市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (278, '衡阳市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (279, '邵阳市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (280, '岳阳市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (281, '常德市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (282, '张家界市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (283, '益阳市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (284, '郴州市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (285, '永州市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (286, '怀化市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (287, '娄底市', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (288, '湘西土家族苗族自治州', 2, 18, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (289, '广州市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (290, '韶关市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (291, '深圳市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (292, '珠海市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (293, '汕头市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (294, '佛山市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (295, '江门市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (296, '湛江市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (297, '茂名市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (298, '肇庆市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (299, '惠州市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (300, '梅州市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (301, '汕尾市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (302, '河源市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (303, '阳江市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (304, '清远市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (305, '东莞市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (306, '中山市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (307, '潮州市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (308, '揭阳市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (309, '云浮市', 2, 19, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (310, '南宁市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (311, '柳州市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (312, '桂林市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (313, '梧州市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (314, '北海市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (315, '防城港市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (316, '钦州市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (317, '贵港市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (318, '玉林市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (319, '百色市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (320, '贺州市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (321, '河池市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (322, '来宾市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (323, '崇左市', 2, 20, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (324, '海口市', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (325, '三亚市', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (326, '五指山市', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (327, '琼海市', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (328, '儋州市', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (329, '文昌市', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (330, '万宁市', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (331, '东方市', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (332, '定安县', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (333, '屯昌县', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (334, '澄迈县', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (335, '临高县', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (336, '白沙黎族自治县', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (337, '昌江黎族自治县', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (338, '乐东黎族自治县', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (339, '陵水黎族自治县', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (340, '保亭黎族苗族自治县', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (341, '琼中黎族苗族自治县', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (342, '西沙群岛', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (343, '南沙群岛', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (344, '中沙群岛的岛礁及其海域', 2, 21, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (345, '万州区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (346, '涪陵区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (347, '渝中区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (348, '大渡口区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (349, '江北区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (350, '沙坪坝区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (351, '九龙坡区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (352, '南岸区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (353, '北碚区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (354, '双桥区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (355, '万盛区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (356, '渝北区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (357, '巴南区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (358, '黔江区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (359, '长寿区', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (360, '綦江县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (361, '潼南县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (362, '铜梁县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (363, '大足县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (364, '荣昌县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (365, '璧山县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (366, '梁平县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (367, '城口县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (368, '丰都县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (369, '垫江县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (370, '武隆县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (371, '忠县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (372, '开县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (373, '云阳县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (374, '奉节县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (375, '巫山县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (376, '巫溪县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (377, '石柱土家族自治县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (378, '秀山土家族苗族自治县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (379, '酉阳土家族苗族自治县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (380, '彭水苗族土家族自治县', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (381, '江津市', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (382, '合川市', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (383, '永川市', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (384, '南川市', 2, 22, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (385, '成都市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (386, '自贡市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (387, '攀枝花市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (388, '泸州市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (389, '德阳市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (390, '绵阳市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (391, '广元市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (392, '遂宁市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (393, '内江市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (394, '乐山市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (395, '南充市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (396, '眉山市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (397, '宜宾市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (398, '广安市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (399, '达州市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (400, '雅安市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (401, '巴中市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (402, '资阳市', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (403, '阿坝藏族羌族自治州', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (404, '甘孜藏族自治州', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (405, '凉山彝族自治州', 2, 23, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (406, '贵阳市', 2, 24, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (407, '六盘水市', 2, 24, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (408, '遵义市', 2, 24, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (409, '安顺市', 2, 24, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (410, '铜仁地区', 2, 24, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (411, '黔西南布依族苗族自治州', 2, 24, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (412, '毕节地区', 2, 24, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (413, '黔东南苗族侗族自治州', 2, 24, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (414, '黔南布依族苗族自治州', 2, 24, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (415, '昆明市', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (416, '曲靖市', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (417, '玉溪市', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (418, '保山市', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (419, '昭通市', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (420, '丽江市', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (421, '思茅市', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (422, '临沧市', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (423, '楚雄彝族自治州', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (424, '红河哈尼族彝族自治州', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (425, '文山壮族苗族自治州', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (426, '西双版纳傣族自治州', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (427, '大理白族自治州', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (428, '德宏傣族景颇族自治州', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (429, '怒江傈僳族自治州', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (430, '迪庆藏族自治州', 2, 25, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (431, '拉萨市', 2, 26, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (432, '昌都地区', 2, 26, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (433, '山南地区', 2, 26, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (434, '日喀则地区', 2, 26, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (435, '那曲地区', 2, 26, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (436, '阿里地区', 2, 26, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (437, '林芝地区', 2, 26, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (438, '西安市', 2, 27, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (439, '铜川市', 2, 27, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (440, '宝鸡市', 2, 27, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (441, '咸阳市', 2, 27, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (442, '渭南市', 2, 27, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (443, '延安市', 2, 27, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (444, '汉中市', 2, 27, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (445, '榆林市', 2, 27, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (446, '安康市', 2, 27, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (447, '商洛市', 2, 27, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (448, '兰州市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (449, '嘉峪关市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (450, '金昌市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (451, '白银市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (452, '天水市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (453, '武威市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (454, '张掖市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (455, '平凉市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (456, '酒泉市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (457, '庆阳市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (458, '定西市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (459, '陇南市', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (460, '临夏回族自治州', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (461, '甘南藏族自治州', 2, 28, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (462, '西宁市', 2, 29, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (463, '海东地区', 2, 29, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (464, '海北藏族自治州', 2, 29, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (465, '黄南藏族自治州', 2, 29, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (466, '海南藏族自治州', 2, 29, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (467, '果洛藏族自治州', 2, 29, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (468, '玉树藏族自治州', 2, 29, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (469, '海西蒙古族藏族自治州', 2, 29, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (470, '银川市', 2, 30, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (471, '石嘴山市', 2, 30, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (472, '吴忠市', 2, 30, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (473, '固原市', 2, 30, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (474, '中卫市', 2, 30, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (475, '乌鲁木齐市', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (476, '克拉玛依市', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (477, '吐鲁番地区', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (478, '哈密地区', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (479, '昌吉回族自治州', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (480, '博尔塔拉蒙古自治州', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (481, '巴音郭楞蒙古自治州', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (482, '阿克苏地区', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (483, '克孜勒苏柯尔克孜自治州', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (484, '喀什地区', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (485, '和田地区', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (486, '伊犁哈萨克自治州', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (487, '塔城地区', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (488, '阿勒泰地区', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (489, '石河子市', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (490, '阿拉尔市', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (491, '图木舒克市', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (492, '五家渠市', 2, 31, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (493, '台北市', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (494, '高雄市', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (495, '基隆市', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (496, '台中市', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (497, '台南市', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (498, '新竹市', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (499, '嘉义市', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (500, '台北县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (501, '宜兰县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (502, '桃园县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (503, '新竹县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (504, '苗栗县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (505, '台中县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (506, '彰化县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (507, '南投县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (508, '云林县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (509, '嘉义县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (510, '台南县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (511, '高雄县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (512, '屏东县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (513, '澎湖县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (514, '台东县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (515, '花莲县', 2, 32, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (516, '中西区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (517, '东区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (518, '九龙城区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (519, '观塘区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (520, '南区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (521, '深水埗区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (522, '黄大仙区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (523, '湾仔区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (524, '油尖旺区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (525, '离岛区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (526, '葵青区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (527, '北区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (528, '西贡区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (529, '沙田区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (530, '屯门区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (531, '大埔区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (532, '荃湾区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (533, '元朗区', 2, 33, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (534, '澳门特别行政区', 2, 34, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (535, '美国', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (536, '加拿大', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (537, '澳大利亚', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (538, '新西兰', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (539, '英国', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (540, '法国', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (541, '德国', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (542, '捷克', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (543, '荷兰', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (544, '瑞士', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (545, '希腊', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (546, '挪威', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (547, '瑞典', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (548, '丹麦', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (549, '芬兰', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (550, '爱尔兰', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (551, '奥地利', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (552, '意大利', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (553, '乌克兰', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (554, '俄罗斯', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (555, '西班牙', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (556, '韩国', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (557, '新加坡', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (558, '马来西亚', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (559, '印度', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (560, '泰国', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (561, '日本', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (562, '巴西', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (563, '阿根廷', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (564, '南非', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (565, '埃及', 2, 35, 0);
INSERT INTO pre_common_district (`id`, `name`, `level`, `upid`, `displayorder`) VALUES (566, '其他', 2, 36, 0);
-- [block_style]
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(1, 'html_html', '[内置]空模板', 'a:9:{s:3:"raw";s:0:"";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";a:0:{}}', 'ee3e718a', 0, 0, 0, 0, 'a:0:{}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(2, 'forum_forum', '[内置]版块名称列表', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'c6c48ef5', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(3, 'forum_forum', '[内置]版块名称+总帖数', 'a:9:{s:3:"raw";s:146:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{posts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:76:"<li><em>{posts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '91c25611', 0, 0, 0, 1, 'a:3:{i:0;s:5:"posts";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(4, 'forum_forum', '[内置]版块名称+总帖数(有序)', 'a:9:{s:3:"raw";s:146:"<div class="module cl xl xl1">\r\n<ol>\r\n[loop]\r\n<li><em>{posts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ol>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:76:"<li><em>{posts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '951323a8', 0, 0, 0, 1, 'a:3:{i:0;s:5:"posts";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(5, 'forum_forum', '[内置]版块名称+今日发贴数', 'a:9:{s:3:"raw";s:151:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{todayposts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:81:"<li><em>{todayposts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'e08c8a30', 0, 0, 0, 1, 'a:3:{i:0;s:10:"todayposts";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(6, 'forum_forum', '[内置]版块名称+今日发贴数(有序)', 'a:9:{s:3:"raw";s:151:"<div class="module cl xl xl1">\r\n<ol>\r\n[loop]\r\n<li><em>{todayposts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ol>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:81:"<li><em>{todayposts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '12516b2d', 0, 0, 0, 1, 'a:3:{i:0;s:10:"todayposts";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(7, 'forum_forum', '[内置]版块名称(两列)', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl2">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '0e51a193', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(8, 'forum_forum', '[内置]版块名称+介绍', 'a:9:{s:3:"raw";s:160:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:106:"<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '2bf344ae', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(9, 'forum_thread', '[内置]帖子标题', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '079cd140', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(10, 'forum_thread', '[内置]帖子标题+回复数', 'a:9:{s:3:"raw";s:148:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{replies}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:78:"<li><em>{replies}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '0cc45858', 0, 0, 0, 1, 'a:3:{i:0;s:7:"replies";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(11, 'forum_thread', '[内置]帖子标题+查看数', 'a:9:{s:3:"raw";s:146:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{views}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:76:"<li><em>{views}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'c5361e32', 0, 0, 0, 1, 'a:3:{i:0;s:5:"views";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(12, 'forum_thread', '[内置]帖子标题+热度', 'a:9:{s:3:"raw";s:146:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{heats}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:76:"<li><em>{heats}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'dfac2b4f', 0, 0, 0, 1, 'a:3:{i:0;s:5:"heats";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(13, 'forum_thread', '[内置]帖子标题+发帖时间', 'a:9:{s:3:"raw";s:149:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{dateline}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:79:"<li><em>{dateline}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '37a3603a', 0, 0, 0, 1, 'a:3:{i:0;s:8:"dateline";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(14, 'forum_thread', '[内置]帖子标题+最后回复时间', 'a:9:{s:3:"raw";s:149:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{lastpost}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:79:"<li><em>{lastpost}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '1ae9c85b', 0, 0, 0, 1, 'a:3:{i:0;s:8:"lastpost";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(15, 'forum_thread', '[内置]帖子标题+作者', 'a:9:{s:3:"raw";s:203:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:133:"<li><em><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '30def87f', 0, 0, 0, 1, 'a:4:{i:0;s:8:"authorid";i:1;s:6:"author";i:2;s:3:"url";i:3;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(16, 'forum_thread', '[内置]帖子标题+作者+摘要', 'a:9:{s:3:"raw";s:251:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dt><em class="y xg1 xw0"><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:197:"<dl class="cl">\r\n <dt><em class="y xg1 xw0"><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '8ebc8d5f', 0, 1, 0, 1, 'a:5:{i:0;s:8:"authorid";i:1;s:6:"author";i:2;s:3:"url";i:3;s:5:"title";i:4;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(17, 'forum_thread', '[内置]帖子标题+摘要', 'a:9:{s:3:"raw";s:160:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:106:"<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '1107d2bd', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(18, 'forum_thread', '[内置]焦点模式', 'a:9:{s:3:"raw";s:164:"<div class="module cl xld fcs">\r\n[loop]\r\n<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:106:"<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', 'b6337920', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(19, 'forum_thread', '[内置]帖子标题(第一条带摘要)', 'a:9:{s:3:"raw";s:297:"<div class="module cl xl">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n[order=1]\r\n<li>\r\n <dl class="cl xld">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n </dl> \r\n <hr class="da" />\r\n</li>\r\n[/order]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:1:{i:1;s:148:"<li>\r\n <dl class="cl xld">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n </dl> \r\n <hr class="da" />\r\n</li>";}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '2e06f8b5', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(24, 'group_thread', '[内置]帖子标题', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '176fcc68', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(25, 'group_thread', '[内置]帖子标题+回复数', 'a:9:{s:3:"raw";s:148:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{replies}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:78:"<li><em>{replies}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '8baa57ad', 0, 0, 0, 1, 'a:3:{i:0;s:7:"replies";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(26, 'group_thread', '[内置]帖子标题+查看数', 'a:9:{s:3:"raw";s:146:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{views}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:76:"<li><em>{views}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '8f012db4', 0, 0, 0, 1, 'a:3:{i:0;s:5:"views";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(27, 'group_thread', '[内置]帖子标题+热度', 'a:9:{s:3:"raw";s:146:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{heats}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:76:"<li><em>{heats}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '7f002523', 0, 0, 0, 1, 'a:3:{i:0;s:5:"heats";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(28, 'group_thread', '[内置]帖子标题+发帖时间', 'a:9:{s:3:"raw";s:149:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{dateline}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:79:"<li><em>{dateline}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '23ba8554', 0, 0, 0, 1, 'a:3:{i:0;s:8:"dateline";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(29, 'group_thread', '[内置]帖子标题+最后回复时间', 'a:9:{s:3:"raw";s:149:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{lastpost}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:79:"<li><em>{lastpost}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'a6fbd13d', 0, 0, 0, 1, 'a:3:{i:0;s:8:"lastpost";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(30, 'group_thread', '[内置]帖子标题+作者', 'a:9:{s:3:"raw";s:203:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:133:"<li><em><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '49245e40', 0, 0, 0, 1, 'a:4:{i:0;s:8:"authorid";i:1;s:6:"author";i:2;s:3:"url";i:3;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(31, 'group_thread', '[内置]帖子标题+作者+摘要', 'a:9:{s:3:"raw";s:243:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dt><em class="y"><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:189:"<dl class="cl">\r\n <dt><em class="y"><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', 'd9c23f31', 0, 1, 0, 1, 'a:5:{i:0;s:8:"authorid";i:1;s:6:"author";i:2;s:3:"url";i:3;s:5:"title";i:4;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(32, 'group_thread', '[内置]帖子标题+摘要', 'a:9:{s:3:"raw";s:160:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:106:"<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '9e90211d', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(33, 'group_thread', '[内置]焦点模式', 'a:9:{s:3:"raw";s:164:"<div class="module cl xld fcs">\r\n[loop]\r\n<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:106:"<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '9670c626', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(34, 'group_thread', '[内置]帖子标题(第一条带摘要)', 'a:9:{s:3:"raw";s:297:"<div class="module cl xl">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n[order=1]\r\n<li>\r\n <dl class="cl xld">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n </dl> \r\n <hr class="da" />\r\n</li>\r\n[/order]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:1:{i:1;s:148:"<li>\r\n <dl class="cl xld">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n </dl> \r\n <hr class="da" />\r\n</li>";}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '9355f559', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(39, 'group_group', '[内置]群组名称', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '9872d550', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(40, 'group_group', '[内置]群组名称+成员数', 'a:9:{s:3:"raw";s:150:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{membernum}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:80:"<li><em>{membernum}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '20a09ec8', 0, 0, 0, 1, 'a:3:{i:0;s:9:"membernum";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(41, 'group_group', '[内置]群组名称+成员数(有序)', 'a:9:{s:3:"raw";s:150:"<div class="module cl xl xl1">\r\n<ol>\r\n[loop]\r\n<li><em>{membernum}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ol>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:80:"<li><em>{membernum}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'af166b44', 0, 0, 0, 1, 'a:3:{i:0;s:9:"membernum";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(42, 'group_group', '[内置]群组名称+总帖数', 'a:9:{s:3:"raw";s:146:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{posts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:76:"<li><em>{posts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '43ed1e7c', 0, 0, 0, 1, 'a:3:{i:0;s:5:"posts";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(43, 'group_group', '[内置]群组名称+今日发贴数', 'a:9:{s:3:"raw";s:151:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{todayposts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:81:"<li><em>{todayposts}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '3c59217b', 0, 0, 0, 1, 'a:3:{i:0;s:10:"todayposts";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(44, 'group_group', '[内置]群组图标+名称+介绍', 'a:9:{s:3:"raw";s:253:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{icon}" width="48" height="48" /></a></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:199:"<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{icon}" width="48" height="48" /></a></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '6f470107', 0, 1, 0, 1, 'a:4:{i:0;s:3:"url";i:1;s:4:"icon";i:2;s:5:"title";i:3;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(45, 'group_group', '[内置]群组图标列表', 'a:9:{s:3:"raw";s:208:"<div class="module cl ml mls">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}"{target}><img src="{icon}" width="48" height="48" /></a><p><a href="{url}" title="{title}"{target}>{title}</a></p></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:138:"<li><a href="{url}"{target}><img src="{icon}" width="48" height="48" /></a><p><a href="{url}" title="{title}"{target}>{title}</a></p></li>";}', 'f3646b2a', 0, 0, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:4:"icon";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(46, 'group_group', '[内置]群组名称(两列)', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl2">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '5279d89d', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(47, 'portal_article', '[内置]文章标题', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '527a563d', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(48, 'portal_article', '[内置]文章标题+时间', 'a:9:{s:3:"raw";s:149:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{dateline}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:79:"<li><em>{dateline}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '6e4be436', 0, 0, 0, 1, 'a:3:{i:0;s:8:"dateline";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(49, 'portal_article', '[内置]文章标题+时间(带栏目)', 'a:9:{s:3:"raw";s:206:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{dateline}</em><label>[<a href="{caturl}"{target}>{catname}</a>]</label><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:136:"<li><em>{dateline}</em><label>[<a href="{caturl}"{target}>{catname}</a>]</label><a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'c3b98a2f', 0, 0, 0, 1, 'a:5:{i:0;s:8:"dateline";i:1;s:6:"caturl";i:2;s:7:"catname";i:3;s:3:"url";i:4;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(50, 'portal_article', '[内置]文章标题+摘要+缩略图', 'a:9:{s:3:"raw";s:279:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:225:"<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', 'a5b550ee', 1, 1, 1, 1, 'a:4:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(51, 'portal_article', '[内置]文章标题+摘要', 'a:9:{s:3:"raw";s:160:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:106:"<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', 'e57dbe5a', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(52, 'portal_article', '[内置]焦点模式', 'a:9:{s:3:"raw";s:164:"<div class="module cl xld fcs">\r\n[loop]\r\n<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:106:"<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '3b234c9c', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(53, 'portal_article', '[内置]文章图片幻灯', 'a:9:{s:3:"raw";s:333:"<div class="module cl slidebox">\r\n<ul class="slideshow">\r\n[loop]\r\n<li style="width: {picwidth}px; height: {picheight}px;"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" /></a><span class="title">{title}</span></li>\r\n[/loop]\r\n</ul>\r\n</div>\r\n<script type="text/javascript">\r\nrunslideshow();\r\n</script>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:182:"<li style="width: {picwidth}px; height: {picheight}px;"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" /></a><span class="title">{title}</span></li>";}', '8ff81e35', 1, 0, 1, 1, 'a:3:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(54, 'portal_article', '[内置]文章图文幻灯', 'a:9:{s:3:"raw";s:336:"<div class="module cl xld slideshow">\r\n[loop]\r\n<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" /></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>\r\n<script type="text/javascript">\r\nrunslideshow();\r\n</script>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:211:"<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" /></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', 'd88aded4', 1, 1, 1, 1, 'a:4:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(55, 'portal_category', '[内置]栏目名称', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '6846b818', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(56, 'portal_category', '[内置]栏目名称(两列)', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl2">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'fa5b40c1', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(57, 'portal_topic', '[内置]专题名称', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '268501b8', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(58, 'portal_topic', '[内置]专题名称(两列)', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl2">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'b21a9795', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(59, 'portal_topic', '[内置]专题名称+介绍+缩略图', 'a:9:{s:3:"raw";s:279:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:225:"<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', 'e07e6128', 1, 1, 1, 1, 'a:4:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(60, 'portal_topic', '[内置]专题名称+介绍', 'a:9:{s:3:"raw";s:160:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:106:"<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '573d0170', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(61, 'portal_topic', '[内置]焦点模式', 'a:9:{s:3:"raw";s:164:"<div class="module cl xld fcs">\r\n[loop]\r\n<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:106:"<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '7cc2ab53', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(62, 'space_doing', '[内置]作者+内容', 'a:9:{s:3:"raw";s:202:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="home.php?mod=space&uid={uid}" title="{username}" c="1"{target}>{username}</a>: <a href="{url}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:132:"<li><a href="home.php?mod=space&uid={uid}" title="{username}" c="1"{target}>{username}</a>: <a href="{url}"{target}>{title}</a></li>";}', 'd0ca1426', 0, 0, 0, 1, 'a:4:{i:0;s:3:"uid";i:1;s:8:"username";i:2;s:3:"url";i:3;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(63, 'space_doing', '[内置]头像+作者+内容', 'a:9:{s:3:"raw";s:392:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dd class="m"><a href="home.php?mod=space&uid={uid}" c="1"{target}><img src="{avatar}" width="48" height="48" alt="{username}" /></a></dd>\r\n <dt><a href="home.php?mod=space&uid={uid}" title="{username}"{target}>{username}</a> <em class="xg1 xw0">{dateline}</em></dt>\r\n <dd><a href="{url}"{target}>{title}</a></dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:338:"<dl class="cl">\r\n <dd class="m"><a href="home.php?mod=space&uid={uid}" c="1"{target}><img src="{avatar}" width="48" height="48" alt="{username}" /></a></dd>\r\n <dt><a href="home.php?mod=space&uid={uid}" title="{username}"{target}>{username}</a> <em class="xg1 xw0">{dateline}</em></dt>\r\n <dd><a href="{url}"{target}>{title}</a></dd>\r\n</dl>";}', '13f43cab', 0, 0, 0, 1, 'a:6:{i:0;s:3:"uid";i:1;s:6:"avatar";i:2;s:8:"username";i:3;s:8:"dateline";i:4;s:3:"url";i:5;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(64, 'space_doing', '[内置]作者+内容(多行)+时间', 'a:9:{s:3:"raw";s:236:"<div class="module cl xl">\r\n<ul>\r\n[loop]\r\n<li><a href="home.php?mod=space&uid={uid}" title="{username}" c="1"{target}>{username}</a>: <a href="{url}"{target}>{title}</a> <span class="xg1">({dateline})</span></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:170:"<li><a href="home.php?mod=space&uid={uid}" title="{username}" c="1"{target}>{username}</a>: <a href="{url}"{target}>{title}</a> <span class="xg1">({dateline})</span></li>";}', '927ed021', 0, 0, 0, 1, 'a:5:{i:0;s:3:"uid";i:1;s:8:"username";i:2;s:3:"url";i:3;s:5:"title";i:4;s:8:"dateline";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(65, 'space_blog', '[内置]日志标题', 'a:9:{s:3:"raw";s:130:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '9349072a', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(66, 'space_blog', '[内置]日志标题+作者', 'a:9:{s:3:"raw";s:200:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em><a href="home.php?mod=space&uid={uid}"{target}>{username}</a></em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:130:"<li><em><a href="home.php?mod=space&uid={uid}"{target}>{username}</a></em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'd2a5c82a', 0, 0, 0, 1, 'a:4:{i:0;s:3:"uid";i:1;s:8:"username";i:2;s:3:"url";i:3;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(67, 'space_blog', '[内置]日志标题+发布时间', 'a:9:{s:3:"raw";s:149:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{dateline}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:79:"<li><em>{dateline}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'c68ceade', 0, 0, 0, 1, 'a:3:{i:0;s:8:"dateline";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(68, 'space_blog', '[内置]日志标题+评论数', 'a:9:{s:3:"raw";s:149:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><em>{replynum}</em><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:79:"<li><em>{replynum}</em><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '0345faa7', 0, 0, 0, 1, 'a:3:{i:0;s:8:"replynum";i:1;s:3:"url";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(69, 'space_blog', '[内置]日志标题+作者+简介', 'a:9:{s:3:"raw";s:248:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dt><em class="y xg1 xw0"><a href="home.php?mod=space&uid={uid}"{target}>{username}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:194:"<dl class="cl">\r\n <dt><em class="y xg1 xw0"><a href="home.php?mod=space&uid={uid}"{target}>{username}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', 'cd5e700c', 0, 1, 0, 1, 'a:5:{i:0;s:3:"uid";i:1;s:8:"username";i:2;s:3:"url";i:3;s:5:"title";i:4;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(70, 'space_blog', '[内置]日志缩略图+标题+简介', 'a:9:{s:3:"raw";s:361:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a></dd>\r\n <dt><em class="y xg1 xw0"><a href="home.php?uid={uid}"{target}>{username}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:307:"<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a></dd>\r\n <dt><em class="y xg1 xw0"><a href="home.php?uid={uid}"{target}>{username}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '323bc8e0', 1, 1, 1, 1, 'a:6:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:3:"uid";i:4;s:8:"username";i:5;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(71, 'space_blog', '[内置]日志图片幻灯', 'a:9:{s:3:"raw";s:333:"<div class="module cl slidebox">\r\n<ul class="slideshow">\r\n[loop]\r\n<li style="width: {picwidth}px; height: {picheight}px;"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" /></a><span class="title">{title}</span></li>\r\n[/loop]\r\n</ul>\r\n</div>\r\n<script type="text/javascript">\r\nrunslideshow();\r\n</script>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:182:"<li style="width: {picwidth}px; height: {picheight}px;"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" /></a><span class="title">{title}</span></li>";}', 'c23cc347', 1, 0, 1, 1, 'a:3:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(72, 'space_blog', '[内置]焦点模式', 'a:9:{s:3:"raw";s:164:"<div class="module cl xld fcs">\r\n[loop]\r\n<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:106:"<dl class="cl">\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '3bb0bf67', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(73, 'space_album', '[内置]相册列表', 'a:9:{s:3:"raw";s:253:"<div class="module cl ml">\r\n<ul>\r\n[loop]\r\n<li>\r\n <a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a> ({picnum})</p>\r\n</li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:187:"<li>\r\n <a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a> ({picnum})</p>\r\n</li>";}', '73e0a54f', 1, 0, 1, 1, 'a:4:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:6:"picnum";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(74, 'space_album', '[内置]相册列表+名称+用户', 'a:9:{s:3:"raw";s:320:"<div class="module cl ml">\r\n<ul>\r\n[loop]\r\n<li>\r\n <a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a> ({picnum})</p>\r\n <span><a href="home.php?uid={uid}"{target}>{username}</a></span>\r\n</li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:254:"<li>\r\n <a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a> ({picnum})</p>\r\n <span><a href="home.php?uid={uid}"{target}>{username}</a></span>\r\n</li>";}', 'cc34db30', 1, 0, 1, 1, 'a:6:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:6:"picnum";i:4;s:3:"uid";i:5;s:8:"username";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(75, 'space_pic', '[内置]图片列表', 'a:9:{s:3:"raw";s:271:"<div class="module cl ml">\r\n<ul>\r\n[loop]\r\n<li style="width: {picwidth}px;">\r\n <a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:205:"<li style="width: {picwidth}px;">\r\n <a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>";}', '9e9201a8', 1, 0, 1, 1, 'a:3:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(76, 'space_pic', '[内置]图片幻灯', 'a:9:{s:3:"raw";s:333:"<div class="module cl slidebox">\r\n<ul class="slideshow">\r\n[loop]\r\n<li style="width: {picwidth}px; height: {picheight}px;"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" /></a><span class="title">{title}</span></li>\r\n[/loop]\r\n</ul>\r\n</div>\r\n<script type="text/javascript">\r\nrunslideshow();\r\n</script>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:182:"<li style="width: {picwidth}px; height: {picheight}px;"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" /></a><span class="title">{title}</span></li>";}', 'c5d88e6d', 1, 0, 1, 1, 'a:3:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(77, 'member_member', '[内置]会员头像列表', 'a:9:{s:3:"raw";s:238:"<div class="module cl ml mls">\r\n<ul>\r\n[loop]\r\n<li>\r\n <a href="{url}" c="1"{target}><img src="{avatar}" width="48" height="48" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:168:"<li>\r\n <a href="{url}" c="1"{target}><img src="{avatar}" width="48" height="48" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>";}', '2ef16e64', 0, 0, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:6:"avatar";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(78, 'member_member', '[内置]用户名列表', 'a:9:{s:3:"raw";s:136:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}" c="1"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:66:"<li><a href="{url}" title="{title}" c="1"{target}>{title}</a></li>";}', 'ed36c3b0', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(79, 'member_member', '[内置]头像+用户名+发贴数(有序)', 'a:9:{s:3:"raw";s:223:"<div class="module cl xl xl1">\r\n<ol>\r\n[loop]\r\n<li><em>{posts}</em><img class="vm" src="{avatar}" width="16" height="16" alt="{title}" /> <a href="{url}" title="{title}" c="1"{target}>{title}</a></li>\r\n[/loop]\r\n</ol>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:153:"<li><em>{posts}</em><img class="vm" src="{avatar}" width="16" height="16" alt="{title}" /> <a href="{url}" title="{title}" c="1"{target}>{title}</a></li>";}', 'b185afb9', 0, 0, 0, 1, 'a:4:{i:0;s:5:"posts";i:1;s:6:"avatar";i:2;s:5:"title";i:3;s:3:"url";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(80, 'member_member', '[内置]头像+用户名+积分数(有序)', 'a:9:{s:3:"raw";s:225:"<div class="module cl xl xl1">\r\n<ol>\r\n[loop]\r\n<li><em>{credits}</em><img class="vm" src="{avatar}" width="16" height="16" alt="{title}" /> <a href="{url}" title="{title}" c="1"{target}>{title}</a></li>\r\n[/loop]\r\n</ol>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:155:"<li><em>{credits}</em><img class="vm" src="{avatar}" width="16" height="16" alt="{title}" /> <a href="{url}" title="{title}" c="1"{target}>{title}</a></li>";}', '8431f4e1', 0, 0, 0, 1, 'a:4:{i:0;s:7:"credits";i:1;s:6:"avatar";i:2;s:5:"title";i:3;s:3:"url";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(81, 'forum_trade', '[内置]商品列表', 'a:9:{s:3:"raw";s:423:"<div class="module cl ml">\r\n<ul>\r\n[loop]\r\n<li style="padding: 0 12px 10px; width: {picwidth}px;">\r\n<a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" style="padding: 1px; border: 1px solid #CCC; background: #FFF;" /></a>\r\n<p class="xs2"><a href="{url}"{target} class="xi1">{price}</a></p>\r\n<p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:357:"<li style="padding: 0 12px 10px; width: {picwidth}px;">\r\n<a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" style="padding: 1px; border: 1px solid #CCC; background: #FFF;" /></a>\r\n<p class="xs2"><a href="{url}"{target} class="xi1">{price}</a></p>\r\n<p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>";}', '4fd3ffc9', 1, 0, 1, 1, 'a:4:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:5:"price";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(82, 'forum_activity', '[内置]活动列表', 'a:9:{s:3:"raw";s:326:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{time} {place}</dd>\r\n <dd> 已有 {applynumber} 人报名</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:272:"<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{time} {place}</dd>\r\n <dd> 已有 {applynumber} 人报名</dd>\r\n</dl>";}', '3d04a558', 1, 0, 1, 1, 'a:6:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:4:"time";i:4;s:5:"place";i:5;s:11:"applynumber";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(83, 'group_trade', '[内置]商品列表', 'a:9:{s:3:"raw";s:288:"<div class="module cl ml">\r\n<ul>\r\n[loop]\r\n<li style="width: {picwidth}px;">\r\n <a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n <p>{price}</p>\r\n</li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:222:"<li style="width: {picwidth}px;">\r\n <a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n <p>{price}</p>\r\n</li>";}', 'edd331a7', 1, 0, 1, 1, 'a:4:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:5:"price";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(84, 'group_activity', '[内置]活动列表', 'a:9:{s:3:"raw";s:326:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{time} {place}</dd>\r\n <dd> 已有 {applynumber} 人报名</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:272:"<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a></dd>\r\n <dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{time} {place}</dd>\r\n <dd> 已有 {applynumber} 人报名</dd>\r\n</dl>";}', '502cc3f6', 1, 0, 1, 1, 'a:6:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:4:"time";i:4;s:5:"place";i:5;s:11:"applynumber";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(85, 'forum_thread', '[内置]帖子作者+标题+摘要(带头像)', 'a:9:{s:3:"raw";s:466:"<div class="module cl xld xlda">\r\n[loop]\r\n<dl class="cl">\r\n<dd class="m"><a href="home.php?mod=space&uid={authorid}" c="1"{target}><img src="{avatar}" width="48" height="48" alt="{author}" /></a></dd>\r\n<dt style="padding-bottom: 0;"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd style="margin-bottom: 0;">{summary}</dd>\r\n<dd style="margin-bottom: 0;">作者: <a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:407:"<dl class="cl">\r\n<dd class="m"><a href="home.php?mod=space&uid={authorid}" c="1"{target}><img src="{avatar}" width="48" height="48" alt="{author}" /></a></dd>\r\n<dt style="padding-bottom: 0;"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd style="margin-bottom: 0;">{summary}</dd>\r\n<dd style="margin-bottom: 0;">作者: <a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></dd>\r\n</dl>";}', '87d533ea', 0, 1, 0, 1, 'a:6:{i:0;s:8:"authorid";i:1;s:6:"avatar";i:2;s:6:"author";i:3;s:3:"url";i:4;s:5:"title";i:5;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(86, 'portal_article', '[内置]频道栏目+标题', 'a:9:{s:3:"raw";s:205:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><label>[<a href="{caturl}" title="{catname}"{target}>{catname}</a>]</label><a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:135:"<li><label>[<a href="{caturl}" title="{catname}"{target}>{catname}</a>]</label><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '7720f457', 0, 0, 0, 1, 'a:4:{i:0;s:6:"caturl";i:1;s:7:"catname";i:2;s:3:"url";i:3;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(87, 'forum_thread', '[内置]悬赏主题专用样式', 'a:9:{s:3:"raw";s:139:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a>{summary}</li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:69:"<li><a href="{url}" title="{title}"{target}>{title}</a>{summary}</li>";}', '56bffda0', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(88, 'forum_thread', '[内置]首页热议-帖子', 'a:9:{s:3:"raw";s:278:"<div class="module cl xld">\r\n[loop]\r\n<dl>\r\n <dd style="margin-bottom: 0; font-size: 12px; color: #369">{author} ›</dd>\r\n <dt style="padding: 0;"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd style="margin-bottom: 0;">{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:224:"<dl>\r\n <dd style="margin-bottom: 0; font-size: 12px; color: #369">{author} ›</dd>\r\n <dt style="padding: 0;"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd style="margin-bottom: 0;">{summary}</dd>\r\n</dl>";}', '08596517', 0, 1, 0, 1, 'a:4:{i:0;s:6:"author";i:1;s:3:"url";i:2;s:5:"title";i:3;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(89, 'group_thread', '[内置]首页热议-群组帖子', 'a:9:{s:3:"raw";s:278:"<div class="module cl xld">\r\n[loop]\r\n<dl>\r\n <dd style="margin-bottom: 0; font-size: 12px; color: #369">{author} ›</dd>\r\n <dt style="padding: 0;"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd style="margin-bottom: 0;">{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:224:"<dl>\r\n <dd style="margin-bottom: 0; font-size: 12px; color: #369">{author} ›</dd>\r\n <dt style="padding: 0;"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd style="margin-bottom: 0;">{summary}</dd>\r\n</dl>";}', 'a75db897', 0, 1, 0, 1, 'a:4:{i:0;s:6:"author";i:1;s:3:"url";i:2;s:5:"title";i:3;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(90, 'space_blog', '[内置]首页热议-日志', 'a:9:{s:3:"raw";s:280:"<div class="module cl xld">\r\n[loop]\r\n<dl>\r\n <dd style="margin-bottom: 0; font-size: 12px; color: #369">{username} ›</dd>\r\n <dt style="padding: 0;"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd style="margin-bottom: 0;">{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:226:"<dl>\r\n <dd style="margin-bottom: 0; font-size: 12px; color: #369">{username} ›</dd>\r\n <dt style="padding: 0;"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd style="margin-bottom: 0;">{summary}</dd>\r\n</dl>";}', '9e68bc9b', 0, 1, 0, 1, 'a:4:{i:0;s:8:"username";i:1;s:3:"url";i:2;s:5:"title";i:3;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(91, 'forum_thread', '[内置]投票主题专用样式', 'a:9:{s:3:"raw";s:166:"<div class="module cl xld b_poll">\r\n[loop]\r\n<dl>\r\n<dt class="xs2"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:105:"<dl>\r\n<dt class="xs2"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd>{summary}</dd>\r\n</dl>";}', 'fa07a66f', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(92, 'forum_thread', '[内置]辩论主题专用样式', 'a:9:{s:3:"raw";s:168:"<div class="module cl xld b_debate">\r\n[loop]\r\n<dl>\r\n<dt class="xs2"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:105:"<dl>\r\n<dt class="xs2"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd>{summary}</dd>\r\n</dl>";}', '6a480986', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(93, 'group_activity', '[内置]群组活动:大图+摘要', 'a:9:{s:3:"raw";s:363:"<div class="module cl xld">\r\n[loop]\r\n<dl>\r\n<dd class="m"><a href="{url}"{target}><img src="{pic}" width="120" height="140" alt="{title}" /></a></dd>\r\n<dt class="xs2"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd>\r\n<p class="pbn">{summary}</p>\r\n<p>{place} {class}</p>\r\n<p>时间: {time}</p>\r\n<p>{applynumber} 人关注</p>\r\n</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:309:"<dl>\r\n<dd class="m"><a href="{url}"{target}><img src="{pic}" width="120" height="140" alt="{title}" /></a></dd>\r\n<dt class="xs2"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd>\r\n<p class="pbn">{summary}</p>\r\n<p>{place} {class}</p>\r\n<p>时间: {time}</p>\r\n<p>{applynumber} 人关注</p>\r\n</dd>\r\n</dl>";}', '11d4011e', 1, 1, 0, 1, 'a:8:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:7:"summary";i:4;s:5:"place";i:5;s:5:"class";i:6;s:4:"time";i:7;s:11:"applynumber";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(94, 'group_activity', '[内置]群组活动:小图+标题', 'a:9:{s:3:"raw";s:378:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n<dd class="m"><a href="{url}"{target}><img src="{pic}" width="48" height="48“ alt="{title}" /></a></dd>\r\n<dt style="padding-bottom: 0;"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd style="margin: 0;"> {time} {place}</dd>\r\n<dd class="xg1" style="margin: 0;">{applynumber} 人关注</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:324:"<dl class="cl">\r\n<dd class="m"><a href="{url}"{target}><img src="{pic}" width="48" height="48“ alt="{title}" /></a></dd>\r\n<dt style="padding-bottom: 0;"><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd style="margin: 0;"> {time} {place}</dd>\r\n<dd class="xg1" style="margin: 0;">{applynumber} 人关注</dd>\r\n</dl>";}', '51658dfa', 1, 0, 0, 1, 'a:6:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:4:"time";i:4;s:5:"place";i:5;s:11:"applynumber";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(95, 'space_album', '[内置]相册列表(竖线分隔)', 'a:9:{s:3:"raw";s:594:"<div class="module cl ml">\r\n<ul>\r\n[loop]\r\n<li style="width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}" title="{title}"{target}>{title}</a> ({picnum})</p>\r\n</li>\r\n[/loop]\r\n[order=odd]\r\n<li style="margin-right: 18px; padding-right: 24px; border-right: 1px solid #CCC; width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a> ({picnum})</p>\r\n</li>\r\n[/order]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:1:{s:3:"odd";s:279:"<li style="margin-right: 18px; padding-right: 24px; border-right: 1px solid #CCC; width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a> ({picnum})</p>\r\n</li>";}s:8:"loopplus";a:0:{}s:4:"loop";s:224:"<li style="width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}" title="{title}"{target}>{title}</a> ({picnum})</p>\r\n</li>";}', '771549b7', 1, 0, 1, 1, 'a:4:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:6:"picnum";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(96, 'space_pic', '[内置]图片列表(竖线分隔)', 'a:9:{s:3:"raw";s:556:"<div class="module cl ml">\r\n<ul>\r\n[loop]\r\n<li style="width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>\r\n[/loop]\r\n[order=odd]\r\n<li style="margin-right: 18px; padding-right: 24px; border-right: 1px solid #EEE; width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>\r\n[/order]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:1:{s:3:"odd";s:268:"<li style="margin-right: 18px; padding-right: 24px; border-right: 1px solid #EEE; width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>";}s:8:"loopplus";a:0:{}s:4:"loop";s:197:"<li style="width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>";}', 'ab23af19', 1, 0, 1, 1, 'a:3:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(97, 'portal_article', '[内置]碎片式文章标题列表', 'a:9:{s:3:"raw";s:261:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li><a href="{url}" title="{title}"{target}>{title}</a>\r\n[/loop]\r\n[order=even]\r\n<a href="{url}" title="{title}"{target} class="lit" style="margin-left: 5px; font-size: 12px">{title}</a></li>\r\n[/order]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:1:{s:4:"even";s:110:"<a href="{url}" title="{title}"{target} class="lit" style="margin-left: 5px; font-size: 12px">{title}</a></li>";}s:8:"loopplus";a:0:{}s:4:"loop";s:55:"<li><a href="{url}" title="{title}"{target}>{title}</a>";}', 'bc85eab4', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(98, 'portal_article', '[内置]文章封面列表(竖线分隔)', 'a:9:{s:3:"raw";s:556:"<div class="module cl ml">\r\n<ul>\r\n[loop]\r\n<li style="width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>\r\n[/loop]\r\n[order=odd]\r\n<li style="margin-right: 18px; padding-right: 24px; border-right: 1px solid #EEE; width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>\r\n[/order]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:1:{s:3:"odd";s:268:"<li style="margin-right: 18px; padding-right: 24px; border-right: 1px solid #EEE; width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>";}s:8:"loopplus";a:0:{}s:4:"loop";s:197:"<li style="width: {picwidth}px;">\r\n <a href="{url}"><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>";}', '6b653acb', 1, 0, 1, 1, 'a:3:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(99, 'html_announcement', '[内置]站点公告', 'a:9:{s:3:"raw";s:193:"<div class="module cl">\r\n<ul>\r\n[loop]\r\n<li><img alt="公告" src="static/image/common/ann_icon.gif"><a href="{url}" title="{title}"{target}>{title}({starttime})</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:130:"<li><img alt="公告" src="static/image/common/ann_icon.gif"><a href="{url}" title="{title}"{target}>{title}({starttime})</a></li>";}', '1f88cc82', 0, 0, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:9:"starttime";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(100, 'forum_thread', '[内置]帖子图文展示', 'a:9:{s:3:"raw";s:374:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a></dd>\r\n <dt><em class="y xg1 xw0"><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:320:"<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a></dd>\r\n <dt><em class="y xg1 xw0"><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', '881ee4a3', 1, 1, 1, 1, 'a:6:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:8:"authorid";i:4;s:6:"author";i:5;s:7:"summary";}');
INSERT INTO pre_common_block_style (styleid, blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES(101, 'group_thread', '[内置]帖子图文列表', 'a:9:{s:3:"raw";s:374:"<div class="module cl xld">\r\n[loop]\r\n<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a></dd>\r\n <dt><em class="y xg1 xw0"><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>\r\n[/loop]\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:320:"<dl class="cl">\r\n <dd class="m"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a></dd>\r\n <dt><em class="y xg1 xw0"><a href="home.php?mod=space&uid={authorid}"{target}>{author}</a></em><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n <dd>{summary}</dd>\r\n</dl>";}', 'b67132d6', 1, 1, 1, 1, 'a:6:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";i:3;s:8:"authorid";i:4;s:6:"author";i:5;s:7:"summary";}');
-- [key:dbc27d3d]
INSERT INTO pre_common_block_style (blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES('html_myapp', '[内置]应用列表(图标)', 'a:9:{s:3:"raw";s:253:"<div class="module cl ml">\r\n<ul>\r\n[loop]\r\n<li style="width: {picwidth}px;">\r\n<a href="{url}"{target}><img src="{icon}" width="75" height="75" alt="{title}" /></a>\r\n<p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:187:"<li style="width: {picwidth}px;">\r\n<a href="{url}"{target}><img src="{icon}" width="75" height="75" alt="{title}" /></a>\r\n<p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>";}', 'dbc27d3d', 0, 0, 1, 1, 'a:3:{i:0;s:3:"url";i:1;s:4:"icon";i:2;s:5:"title";}');
--[/key]
-- [key:99a6e938]
INSERT INTO pre_common_block_style (blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES('html_myapp', '[内置]应用列表(小图标)', 'a:9:{s:3:"raw";s:189:"<div class="module cl xl xl1">\r\n<ol>\r\n[loop]\r\n<li><img class="vm" src="{icon_small}" width="16" height="16" alt="{title}" /> <a href="{url}"{target}>{title}</a></li>\r\n[/loop]\r\n</ol>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:119:"<li><img class="vm" src="{icon_small}" width="16" height="16" alt="{title}" /> <a href="{url}"{target}>{title}</a></li>";}', '99a6e938', 0, 0, 0, 1, 'a:3:{i:0;s:10:"icon_small";i:1;s:5:"title";i:2;s:3:"url";}');
-- [/key]
-- [key:a2f9089e]
INSERT INTO pre_common_block_style (blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES('group_thread', '[内置][群组名]+群组帖子标题', 'a:9:{s:3:"raw";s:177:"<div class="module cl xl xl1">\r\n<ul>\r\n[loop]\r\n<li>[<a href="{groupurl}"{target}>{groupname}</a>] <a href="{url}" title="{title}"{target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:107:"<li>[<a href="{groupurl}"{target}>{groupname}</a>] <a href="{url}" title="{title}"{target}>{title}</a></li>";}', 'a2f9089e', 0, 0, 0, 1, 'a:4:{i:0;s:8:"groupurl";i:1;s:9:"groupname";i:2;s:3:"url";i:3;s:5:"title";}');
-- [/key]
-- [key:b921ea24]
INSERT INTO pre_common_block_style (blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES('other_otherfriendlink', '[内置]友情链接图文', 'a:9:{s:3:"raw";s:298:"<div class="bn lk">\r\n<ul class="m cl">\r\n[loop]\r\n<li class="cl">\r\n<div class="forumlogo"><a href="{url}" {target}><img border="0" alt="{title}" src="{pic}"></a></div>\r\n<div class="forumcontent"><h5><a target="_blank" href="{url}">{title}</a></h5><p>{summary}</p></div>\r\n</li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:226:"<li class="cl">\r\n<div class="forumlogo"><a href="{url}" {target}><img border="0" alt="{title}" src="{pic}"></a></div>\r\n<div class="forumcontent"><h5><a target="_blank" href="{url}">{title}</a></h5><p>{summary}</p></div>\r\n</li>";}', 'b921ea24', 0, 1, 1, 1, 'a:4:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:3:"pic";i:3;s:7:"summary";}');
-- [/key]
-- [key:c8d00338]
INSERT INTO pre_common_block_style (blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES('other_otherfriendlink', '[内置]友情链接仅图片', 'a:9:{s:3:"raw";s:147:"<div class="bn lk">\r\n<div class="cl mbm">\r\n[loop]\r\n<a href="{url}" {target}><img border="0" alt="{title}" src="{pic}"></a>\r\n[/loop]\r\n</div>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:71:"<a href="{url}" {target}><img border="0" alt="{title}" src="{pic}"></a>";}', 'c8d00338', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:3:"pic";}');
-- [/key]
-- [key:b615e0d0]
INSERT INTO pre_common_block_style (blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES('other_otherfriendlink', '[内置]友情链接仅文字', 'a:9:{s:3:"raw";s:118:"<div class="x cl">\r\n<ul class="cl mbm">\r\n[loop]\r\n<li><a href="{url}" {target}>{title}</a></li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:45:"<li><a href="{url}" {target}>{title}</a></li>";}', 'b615e0d0', 0, 0, 0, 1, 'a:2:{i:0;s:3:"url";i:1;s:5:"title";}');
-- [/key]
-- [key:027d3e60]
INSERT INTO pre_common_block_style (blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES('other_otherstat', '[内置]全部统计信息', 'a:9:{s:3:"raw";s:664:"[loop]<div class="tns">\r\n<ul>\r\n<li>{posts_title}:<em>{posts}</em></li>\r\n<li>{groups_title}:<em>{groups}</em></li>\r\n<li>{members_title}:<em>{members}</em></li>\r\n<li>{groupnewposts_title}:<em>{groupnewposts}</em></li>\r\n<li>{bbsnewposts_title}:<em>{bbsnewposts}</em></li>\r\n<li>{bbslastposts_title}:<em>{bbslastposts}</em></li>\r\n<li>{onlinemembers_title}:<em>{onlinemembers}</em></li>\r\n<li>{maxmembers_title}:<em>{maxmembers}</em></li>\r\n<li>{doings_title}:<em>{doings}</em></li>\r\n<li>{blogs_title}:<em>{blogs}</em></li>\r\n<li>{albums_title}:<em>{albums}</em></li>\r\n<li>{pics_title}:<em>{pics}</em></li>\r\n<li>{shares_title}:<em>{shares}</em></li>\r\n</ul>\r\n</div>\r\n[/loop]";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:649:"<div class="tns">\r\n<ul>\r\n<li>{posts_title}:<em>{posts}</em></li>\r\n<li>{groups_title}:<em>{groups}</em></li>\r\n<li>{members_title}:<em>{members}</em></li>\r\n<li>{groupnewposts_title}:<em>{groupnewposts}</em></li>\r\n<li>{bbsnewposts_title}:<em>{bbsnewposts}</em></li>\r\n<li>{bbslastposts_title}:<em>{bbslastposts}</em></li>\r\n<li>{onlinemembers_title}:<em>{onlinemembers}</em></li>\r\n<li>{maxmembers_title}:<em>{maxmembers}</em></li>\r\n<li>{doings_title}:<em>{doings}</em></li>\r\n<li>{blogs_title}:<em>{blogs}</em></li>\r\n<li>{albums_title}:<em>{albums}</em></li>\r\n<li>{pics_title}:<em>{pics}</em></li>\r\n<li>{shares_title}:<em>{shares}</em></li>\r\n</ul>\r\n</div>";}', '027d3e60', 0, 0, 0, 0, 'a:26:{i:0;s:11:"posts_title";i:1;s:5:"posts";i:2;s:12:"groups_title";i:3;s:6:"groups";i:4;s:13:"members_title";i:5;s:7:"members";i:6;s:19:"groupnewposts_title";i:7;s:13:"groupnewposts";i:8;s:17:"bbsnewposts_title";i:9;s:11:"bbsnewposts";i:10;s:18:"bbslastposts_title";i:11;s:12:"bbslastposts";i:12;s:19:"onlinemembers_title";i:13;s:13:"onlinemembers";i:14;s:16:"maxmembers_title";i:15;s:10:"maxmembers";i:16;s:12:"doings_title";i:17;s:6:"doings";i:18;s:11:"blogs_title";i:19;s:5:"blogs";i:20;s:12:"albums_title";i:21;s:6:"albums";i:22;s:10:"pics_title";i:23;s:4:"pics";i:24;s:12:"shares_title";i:25;s:6:"shares";}');
-- [/key]
-- [key:9e2ea31f]
INSERT INTO pre_common_block_style (blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES('forum_thread', '[内置]一简介+两列标题', 'a:9:{s:3:"raw";s:284:"<div class="bm bw0">\r\n[index=1]\r\n<dl class="cl xld">\r\n<dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd>{summary}</dd>\r\n</dl>\r\n<hr class="da" />\r\n[/index]\r\n<ul class="xl xl2 cl">\r\n[loop]<li><a href="{url}" title="{title}"{target}>{title}</a></li>[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:1:{i:1;s:127:"<dl class="cl xld">\r\n<dt><a href="{url}" title="{title}"{target}>{title}</a></dt>\r\n<dd>{summary}</dd>\r\n</dl>\r\n<hr class="da" />";}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:60:"<li><a href="{url}" title="{title}"{target}>{title}</a></li>";}', '9e2ea31f', 0, 1, 0, 1, 'a:3:{i:0;s:3:"url";i:1;s:5:"title";i:2;s:7:"summary";}');
-- [/key]
-- [key:cba1f109]
INSERT INTO pre_common_block_style (blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES('forum_thread', '[内置]帖子图片幻灯片', 'a:9:{s:3:"raw";s:333:"<div class="module cl slidebox">\r\n<ul class="slideshow">\r\n[loop]\r\n<li style="width: {picwidth}px; height: {picheight}px;"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" /></a><span class="title">{title}</span></li>\r\n[/loop]\r\n</ul>\r\n</div>\r\n<script type="text/javascript">\r\nrunslideshow();\r\n</script>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:182:"<li style="width: {picwidth}px; height: {picheight}px;"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" /></a><span class="title">{title}</span></li>";}', 'cba1f109', 1, 0, 1, 1, 'a:3:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";}');
-- [/key]
-- [key:0ab2e307]
INSERT INTO pre_common_block_style (blockclass, `name`, template, `hash`, getpic, getsummary, makethumb, settarget, `fields`) VALUES('forum_thread', '[内置]帖子图片列表', 'a:9:{s:3:"raw";s:271:"<div class="module cl ml">\r\n<ul>\r\n[loop]\r\n<li style="width: {picwidth}px;">\r\n <a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>\r\n[/loop]\r\n</ul>\r\n</div>";s:6:"footer";s:0:"";s:6:"header";s:0:"";s:9:"indexplus";a:0:{}s:5:"index";a:0:{}s:9:"orderplus";a:0:{}s:5:"order";a:0:{}s:8:"loopplus";a:0:{}s:4:"loop";s:205:"<li style="width: {picwidth}px;">\r\n <a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" alt="{title}" /></a>\r\n <p><a href="{url}" title="{title}"{target}>{title}</a></p>\r\n</li>";}', '0ab2e307', 1, 0, 1, 1, 'a:3:{i:0;s:3:"url";i:1;s:3:"pic";i:2;s:5:"title";}');
-- [/key]
-- [/block_style]
INSERT INTO `pre_common_admincp_group` (`cpgroupid`, `cpgroupname`) VALUES (1, '门户管理员');
INSERT INTO `pre_common_admincp_group` (`cpgroupid`, `cpgroupname`) VALUES (2, '论坛管理员');
INSERT INTO `pre_common_admincp_group` (`cpgroupid`, `cpgroupname`) VALUES (3, '群组管理员');
INSERT INTO `pre_common_admincp_group` (`cpgroupid`, `cpgroupname`) VALUES (4, '空间管理员');
INSERT INTO `pre_common_admincp_group` (`cpgroupid`, `cpgroupname`) VALUES (5, '用户管理员');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (1, 'albumcategory');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (1, 'article');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (1, 'block');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (1, 'blockstyle');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (1, 'blogcategory');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (1, 'portalcategory');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (1, 'topic');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (1, 'diytemplate');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (1, '_allowpost');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'attach');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'forums');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'forums_merge');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'misc_attachtype');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'misc_censor');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'moderate_replies');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'moderate_threads');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'prune');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'recyclebin');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'report');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'threads');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'threads_forumstick');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'threads_postposition');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, 'threadtypes');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (2, '_allowpost');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (3, 'group_deletegroup');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (3, 'group_editgroup');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (3, 'group_level');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (3, 'group_manage');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (3, 'group_setting');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (3, 'group_type');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (3, 'group_userperm');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (3, '_allowpost');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (3, 'threads_group');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (3, 'prune_group');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (3, 'attach_group');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (4, 'album');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (4, 'blog');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (4, 'comment');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (4, 'doing');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (4, 'feed');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (4, 'pic');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (4, 'share');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (4, '_allowpost');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (4, 'click');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (4, 'setting_home');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'admingroup');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_access');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_add');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_ban');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_clean');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_credit');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_edit');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_group');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_ipban');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_medal');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_newsletter');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_profile');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_repeat');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_reward');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_search');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'members_verify');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'moderate_members');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'specialuser_defaultuser');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'specialuser_follow');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'usergroups');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, '_allowpost');
INSERT INTO `pre_common_admincp_perm` (`cpgroupid`, `perm`) VALUES (5, 'verify_verify');
INSERT INTO `pre_forum_threadprofile` (`id`, `name`, `template`, `global`) VALUES (1, '默认方案', 'a:2:{s:4:\"left\";s:399:\"{numbercard}\r\n{groupicon}<p>{*}</p>{/groupicon}\r\n{authortitle}<p><em>{*}</em></p>{/authortitle}\r\n{customstatus}<p class=\"xg1\">{*}</p>{/customstatus}\r\n{star}<p>{*}</p>{/star}\r\n{upgradeprogress}<p>{*}</p>{/upgradeprogress}\r\n<dl class=\"pil cl\">\r\n\t<dt>{baseinfo=credits,1}</dt><dd>{baseinfo=credits,0}</dd>\r\n</dl>\r\n{medal}<p class=\"md_ctrl\">{*}</p>{/medal}\r\n<dl class=\"pil cl\">{baseinfo=field_qq,0}</dl>\";s:3:\"top\";s:82:\"<dl class=\"cl\">\r\n<dt>{baseinfo=credits,1}</dt><dd>{baseinfo=credits,0}</dd>\r\n</dl>\";}', 1);