SensitiveWordCFG.lua 249 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251
  1. SensitiveWordCFG = {}
  2. function SensitiveWordCFG:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function SensitiveWordCFG:init()
  9. self.datas = {}
  10. self.datas[1] = {ID = 1, SensitiveWord = "悠扬"}
  11. self.datas[2] = {ID = 2, SensitiveWord = "福玺"}
  12. self.datas[3] = {ID = 3, SensitiveWord = "阿扁推翻"}
  13. self.datas[4] = {ID = 4, SensitiveWord = "阿宾"}
  14. self.datas[5] = {ID = 5, SensitiveWord = "阿賓"}
  15. self.datas[6] = {ID = 6, SensitiveWord = "挨了一炮"}
  16. self.datas[7] = {ID = 7, SensitiveWord = "爱液横流"}
  17. self.datas[8] = {ID = 8, SensitiveWord = "安街逆"}
  18. self.datas[9] = {ID = 9, SensitiveWord = "安局办公楼"}
  19. self.datas[10] = {ID = 10, SensitiveWord = "安局豪华"}
  20. self.datas[11] = {ID = 11, SensitiveWord = "安门事"}
  21. self.datas[12] = {ID = 12, SensitiveWord = "安眠藥"}
  22. self.datas[13] = {ID = 13, SensitiveWord = "案的准确"}
  23. self.datas[14] = {ID = 14, SensitiveWord = "八九民"}
  24. self.datas[15] = {ID = 15, SensitiveWord = "八九学"}
  25. self.datas[16] = {ID = 16, SensitiveWord = "八九政治"}
  26. self.datas[17] = {ID = 17, SensitiveWord = "把病人整"}
  27. self.datas[18] = {ID = 18, SensitiveWord = "把邓小平"}
  28. self.datas[19] = {ID = 19, SensitiveWord = "把学生整"}
  29. self.datas[20] = {ID = 20, SensitiveWord = "罢工门"}
  30. self.datas[21] = {ID = 21, SensitiveWord = "白黄牙签"}
  31. self.datas[22] = {ID = 22, SensitiveWord = "败培训"}
  32. self.datas[23] = {ID = 23, SensitiveWord = "办本科"}
  33. self.datas[24] = {ID = 24, SensitiveWord = "办理本科"}
  34. self.datas[25] = {ID = 25, SensitiveWord = "办理各种"}
  35. self.datas[26] = {ID = 26, SensitiveWord = "办理票据"}
  36. self.datas[27] = {ID = 27, SensitiveWord = "办理文凭"}
  37. self.datas[28] = {ID = 28, SensitiveWord = "办理真实"}
  38. self.datas[29] = {ID = 29, SensitiveWord = "办理证书"}
  39. self.datas[30] = {ID = 30, SensitiveWord = "办理资格"}
  40. self.datas[31] = {ID = 31, SensitiveWord = "办文凭"}
  41. self.datas[32] = {ID = 32, SensitiveWord = "办怔"}
  42. self.datas[33] = {ID = 33, SensitiveWord = "办证"}
  43. self.datas[34] = {ID = 34, SensitiveWord = "半刺刀"}
  44. self.datas[35] = {ID = 35, SensitiveWord = "辦毕业"}
  45. self.datas[36] = {ID = 36, SensitiveWord = "辦證"}
  46. self.datas[37] = {ID = 37, SensitiveWord = "谤罪获刑"}
  47. self.datas[38] = {ID = 38, SensitiveWord = "磅解码器"}
  48. self.datas[39] = {ID = 39, SensitiveWord = "磅遥控器"}
  49. self.datas[40] = {ID = 40, SensitiveWord = "宝在甘肃修"}
  50. self.datas[41] = {ID = 41, SensitiveWord = "保过答案"}
  51. self.datas[42] = {ID = 42, SensitiveWord = "报复执法"}
  52. self.datas[43] = {ID = 43, SensitiveWord = "爆发骚"}
  53. self.datas[44] = {ID = 44, SensitiveWord = "北省委门"}
  54. self.datas[45] = {ID = 45, SensitiveWord = "被打死"}
  55. self.datas[46] = {ID = 46, SensitiveWord = "被指抄袭"}
  56. self.datas[47] = {ID = 47, SensitiveWord = "被中共"}
  57. self.datas[48] = {ID = 48, SensitiveWord = "本公司担"}
  58. self.datas[49] = {ID = 49, SensitiveWord = "本无码"}
  59. self.datas[50] = {ID = 50, SensitiveWord = "毕业證"}
  60. self.datas[51] = {ID = 51, SensitiveWord = "变牌绝"}
  61. self.datas[52] = {ID = 52, SensitiveWord = "辩词与梦"}
  62. self.datas[53] = {ID = 53, SensitiveWord = "冰毒"}
  63. self.datas[54] = {ID = 54, SensitiveWord = "冰火毒"}
  64. self.datas[55] = {ID = 55, SensitiveWord = "冰火佳"}
  65. self.datas[56] = {ID = 56, SensitiveWord = "冰火九重"}
  66. self.datas[57] = {ID = 57, SensitiveWord = "冰火漫"}
  67. self.datas[58] = {ID = 58, SensitiveWord = "冰淫传"}
  68. self.datas[59] = {ID = 59, SensitiveWord = "冰在火上"}
  69. self.datas[60] = {ID = 60, SensitiveWord = "波推龙"}
  70. self.datas[61] = {ID = 61, SensitiveWord = "博彩娱"}
  71. self.datas[62] = {ID = 62, SensitiveWord = "博会暂停"}
  72. self.datas[63] = {ID = 63, SensitiveWord = "博园区伪"}
  73. self.datas[64] = {ID = 64, SensitiveWord = "不查都"}
  74. self.datas[65] = {ID = 65, SensitiveWord = "不查全"}
  75. self.datas[66] = {ID = 66, SensitiveWord = "不思四化"}
  76. self.datas[67] = {ID = 67, SensitiveWord = "布卖淫女"}
  77. self.datas[68] = {ID = 68, SensitiveWord = "部忙组阁"}
  78. self.datas[69] = {ID = 69, SensitiveWord = "部是这样"}
  79. self.datas[70] = {ID = 70, SensitiveWord = "才知道只生"}
  80. self.datas[71] = {ID = 71, SensitiveWord = "财众科技"}
  81. self.datas[72] = {ID = 72, SensitiveWord = "采花堂"}
  82. self.datas[73] = {ID = 73, SensitiveWord = "踩踏事"}
  83. self.datas[74] = {ID = 74, SensitiveWord = "苍山兰"}
  84. self.datas[75] = {ID = 75, SensitiveWord = "苍蝇水"}
  85. self.datas[76] = {ID = 76, SensitiveWord = "藏春阁"}
  86. self.datas[77] = {ID = 77, SensitiveWord = "藏獨"}
  87. self.datas[78] = {ID = 78, SensitiveWord = "操了嫂"}
  88. self.datas[79] = {ID = 79, SensitiveWord = "操嫂子"}
  89. self.datas[80] = {ID = 80, SensitiveWord = "策没有不"}
  90. self.datas[81] = {ID = 81, SensitiveWord = "插屁屁"}
  91. self.datas[82] = {ID = 82, SensitiveWord = "察象蚂"}
  92. self.datas[83] = {ID = 83, SensitiveWord = "拆迁灭"}
  93. self.datas[84] = {ID = 84, SensitiveWord = "车牌隐"}
  94. self.datas[85] = {ID = 85, SensitiveWord = "成人电"}
  95. self.datas[86] = {ID = 86, SensitiveWord = "成人卡通"}
  96. self.datas[87] = {ID = 87, SensitiveWord = "成人聊"}
  97. self.datas[88] = {ID = 88, SensitiveWord = "成人片"}
  98. self.datas[89] = {ID = 89, SensitiveWord = "成人视"}
  99. self.datas[90] = {ID = 90, SensitiveWord = "成人图"}
  100. self.datas[91] = {ID = 91, SensitiveWord = "成人文"}
  101. self.datas[92] = {ID = 92, SensitiveWord = "成人小"}
  102. self.datas[93] = {ID = 93, SensitiveWord = "城管灭"}
  103. self.datas[94] = {ID = 94, SensitiveWord = "惩公安"}
  104. self.datas[95] = {ID = 95, SensitiveWord = "惩贪难"}
  105. self.datas[96] = {ID = 96, SensitiveWord = "充气娃"}
  106. self.datas[97] = {ID = 97, SensitiveWord = "冲凉死"}
  107. self.datas[98] = {ID = 98, SensitiveWord = "抽着大中"}
  108. self.datas[99] = {ID = 99, SensitiveWord = "抽着芙蓉"}
  109. self.datas[100] = {ID = 100, SensitiveWord = "出成绩付"}
  110. self.datas[101] = {ID = 101, SensitiveWord = "出售发票"}
  111. self.datas[102] = {ID = 102, SensitiveWord = "出售军"}
  112. self.datas[103] = {ID = 103, SensitiveWord = "穿透仪器"}
  113. self.datas[104] = {ID = 104, SensitiveWord = "春水横溢"}
  114. self.datas[105] = {ID = 105, SensitiveWord = "纯度白"}
  115. self.datas[106] = {ID = 106, SensitiveWord = "纯度黄"}
  116. self.datas[107] = {ID = 107, SensitiveWord = "次通过考"}
  117. self.datas[108] = {ID = 108, SensitiveWord = "催眠水"}
  118. self.datas[109] = {ID = 109, SensitiveWord = "催情粉"}
  119. self.datas[110] = {ID = 110, SensitiveWord = "催情药"}
  120. self.datas[111] = {ID = 111, SensitiveWord = "催情藥"}
  121. self.datas[112] = {ID = 112, SensitiveWord = "挫仑"}
  122. self.datas[113] = {ID = 113, SensitiveWord = "达毕业证"}
  123. self.datas[114] = {ID = 114, SensitiveWord = "答案包"}
  124. self.datas[115] = {ID = 115, SensitiveWord = "答案提供"}
  125. self.datas[116] = {ID = 116, SensitiveWord = "打标语"}
  126. self.datas[117] = {ID = 117, SensitiveWord = "打错门"}
  127. self.datas[118] = {ID = 118, SensitiveWord = "打飞机专"}
  128. self.datas[119] = {ID = 119, SensitiveWord = "打死经过"}
  129. self.datas[120] = {ID = 120, SensitiveWord = "打死人"}
  130. self.datas[121] = {ID = 121, SensitiveWord = "打砸办公"}
  131. self.datas[122] = {ID = 122, SensitiveWord = "大鸡巴"}
  132. self.datas[123] = {ID = 123, SensitiveWord = "大雞巴"}
  133. self.datas[124] = {ID = 124, SensitiveWord = "大纪元"}
  134. self.datas[125] = {ID = 125, SensitiveWord = "大揭露"}
  135. self.datas[126] = {ID = 126, SensitiveWord = "大奶子"}
  136. self.datas[127] = {ID = 127, SensitiveWord = "大批贪官"}
  137. self.datas[128] = {ID = 128, SensitiveWord = "大肉棒"}
  138. self.datas[129] = {ID = 129, SensitiveWord = "大嘴歌"}
  139. self.datas[130] = {ID = 130, SensitiveWord = "代办发票"}
  140. self.datas[131] = {ID = 131, SensitiveWord = "代办各"}
  141. self.datas[132] = {ID = 132, SensitiveWord = "代办文"}
  142. self.datas[133] = {ID = 133, SensitiveWord = "代办学"}
  143. self.datas[134] = {ID = 134, SensitiveWord = "代办制"}
  144. self.datas[135] = {ID = 135, SensitiveWord = "代辦"}
  145. self.datas[136] = {ID = 136, SensitiveWord = "代表烦"}
  146. self.datas[137] = {ID = 137, SensitiveWord = "代開"}
  147. self.datas[138] = {ID = 138, SensitiveWord = "代考"}
  148. self.datas[139] = {ID = 139, SensitiveWord = "代理发票"}
  149. self.datas[140] = {ID = 140, SensitiveWord = "代理票据"}
  150. self.datas[141] = {ID = 141, SensitiveWord = "代您考"}
  151. self.datas[142] = {ID = 142, SensitiveWord = "代您考"}
  152. self.datas[143] = {ID = 143, SensitiveWord = "代写毕"}
  153. self.datas[144] = {ID = 144, SensitiveWord = "代写论"}
  154. self.datas[145] = {ID = 145, SensitiveWord = "代孕"}
  155. self.datas[146] = {ID = 146, SensitiveWord = "贷办"}
  156. self.datas[147] = {ID = 147, SensitiveWord = "贷借款"}
  157. self.datas[148] = {ID = 148, SensitiveWord = "贷开"}
  158. self.datas[149] = {ID = 149, SensitiveWord = "戴海静"}
  159. self.datas[150] = {ID = 150, SensitiveWord = "当代七整"}
  160. self.datas[151] = {ID = 151, SensitiveWord = "当官要精"}
  161. self.datas[152] = {ID = 152, SensitiveWord = "当官在于"}
  162. self.datas[153] = {ID = 153, SensitiveWord = "党的官"}
  163. self.datas[154] = {ID = 154, SensitiveWord = "党后萎"}
  164. self.datas[155] = {ID = 155, SensitiveWord = "党前干劲"}
  165. self.datas[156] = {ID = 156, SensitiveWord = "刀架保安"}
  166. self.datas[157] = {ID = 157, SensitiveWord = "导的情人"}
  167. self.datas[158] = {ID = 158, SensitiveWord = "导叫失"}
  168. self.datas[159] = {ID = 159, SensitiveWord = "导人的最"}
  169. self.datas[160] = {ID = 160, SensitiveWord = "导人最"}
  170. self.datas[161] = {ID = 161, SensitiveWord = "导小商"}
  171. self.datas[162] = {ID = 162, SensitiveWord = "到花心"}
  172. self.datas[163] = {ID = 163, SensitiveWord = "得财兼"}
  173. self.datas[164] = {ID = 164, SensitiveWord = "的同修"}
  174. self.datas[165] = {ID = 165, SensitiveWord = "灯草和"}
  175. self.datas[166] = {ID = 166, SensitiveWord = "等级證"}
  176. self.datas[167] = {ID = 167, SensitiveWord = "等屁民"}
  177. self.datas[168] = {ID = 168, SensitiveWord = "等人老百"}
  178. self.datas[169] = {ID = 169, SensitiveWord = "等人是老"}
  179. self.datas[170] = {ID = 170, SensitiveWord = "等人手术"}
  180. self.datas[171] = {ID = 171, SensitiveWord = "邓爷爷转"}
  181. self.datas[172] = {ID = 172, SensitiveWord = "邓玉娇"}
  182. self.datas[173] = {ID = 173, SensitiveWord = "地产之歌"}
  183. self.datas[174] = {ID = 174, SensitiveWord = "地下先烈"}
  184. self.datas[175] = {ID = 175, SensitiveWord = "地震哥"}
  185. self.datas[176] = {ID = 176, SensitiveWord = "帝国之梦"}
  186. self.datas[177] = {ID = 177, SensitiveWord = "递纸死"}
  187. self.datas[178] = {ID = 178, SensitiveWord = "点数优惠"}
  188. self.datas[179] = {ID = 179, SensitiveWord = "电狗"}
  189. self.datas[180] = {ID = 180, SensitiveWord = "电话监"}
  190. self.datas[181] = {ID = 181, SensitiveWord = "电鸡"}
  191. self.datas[182] = {ID = 182, SensitiveWord = "甸果敢"}
  192. self.datas[183] = {ID = 183, SensitiveWord = "蝶舞按"}
  193. self.datas[184] = {ID = 184, SensitiveWord = "丁香社"}
  194. self.datas[185] = {ID = 185, SensitiveWord = "丁子霖"}
  195. self.datas[186] = {ID = 186, SensitiveWord = "顶花心"}
  196. self.datas[187] = {ID = 187, SensitiveWord = "东北独立"}
  197. self.datas[188] = {ID = 188, SensitiveWord = "东复活"}
  198. self.datas[189] = {ID = 189, SensitiveWord = "东京热"}
  199. self.datas[190] = {ID = 190, SensitiveWord = "東京熱"}
  200. self.datas[191] = {ID = 191, SensitiveWord = "洞小口紧"}
  201. self.datas[192] = {ID = 192, SensitiveWord = "都当警"}
  202. self.datas[193] = {ID = 193, SensitiveWord = "都当小姐"}
  203. self.datas[194] = {ID = 194, SensitiveWord = "都进中央"}
  204. self.datas[195] = {ID = 195, SensitiveWord = "毒蛇钻"}
  205. self.datas[196] = {ID = 196, SensitiveWord = "独立台湾"}
  206. self.datas[197] = {ID = 197, SensitiveWord = "赌球网"}
  207. self.datas[198] = {ID = 198, SensitiveWord = "短信截"}
  208. self.datas[199] = {ID = 199, SensitiveWord = "对日强硬"}
  209. self.datas[200] = {ID = 200, SensitiveWord = "多美康"}
  210. self.datas[201] = {ID = 201, SensitiveWord = "躲猫猫"}
  211. self.datas[202] = {ID = 202, SensitiveWord = "俄羅斯"}
  212. self.datas[203] = {ID = 203, SensitiveWord = "恶势力操"}
  213. self.datas[204] = {ID = 204, SensitiveWord = "恶势力插"}
  214. self.datas[205] = {ID = 205, SensitiveWord = "恩氟烷"}
  215. self.datas[206] = {ID = 206, SensitiveWord = "儿园惨"}
  216. self.datas[207] = {ID = 207, SensitiveWord = "儿园砍"}
  217. self.datas[208] = {ID = 208, SensitiveWord = "儿园杀"}
  218. self.datas[209] = {ID = 209, SensitiveWord = "儿园凶"}
  219. self.datas[210] = {ID = 210, SensitiveWord = "二奶大"}
  220. self.datas[211] = {ID = 211, SensitiveWord = "发牌绝"}
  221. self.datas[212] = {ID = 212, SensitiveWord = "发票出"}
  222. self.datas[213] = {ID = 213, SensitiveWord = "发票代"}
  223. self.datas[214] = {ID = 214, SensitiveWord = "发票销"}
  224. self.datas[215] = {ID = 215, SensitiveWord = "發票"}
  225. self.datas[216] = {ID = 216, SensitiveWord = "法车仑"}
  226. self.datas[217] = {ID = 217, SensitiveWord = "法伦功"}
  227. self.datas[218] = {ID = 218, SensitiveWord = "法轮"}
  228. self.datas[219] = {ID = 219, SensitiveWord = "法轮佛"}
  229. self.datas[220] = {ID = 220, SensitiveWord = "法维权"}
  230. self.datas[221] = {ID = 221, SensitiveWord = "法一轮"}
  231. self.datas[222] = {ID = 222, SensitiveWord = "法院给废"}
  232. self.datas[223] = {ID = 223, SensitiveWord = "法正乾"}
  233. self.datas[224] = {ID = 224, SensitiveWord = "反测速雷"}
  234. self.datas[225] = {ID = 225, SensitiveWord = "反雷达测"}
  235. self.datas[226] = {ID = 226, SensitiveWord = "反屏蔽"}
  236. self.datas[227] = {ID = 227, SensitiveWord = "范燕琼"}
  237. self.datas[228] = {ID = 228, SensitiveWord = "方迷香"}
  238. self.datas[229] = {ID = 229, SensitiveWord = "防电子眼"}
  239. self.datas[230] = {ID = 230, SensitiveWord = "防身药水"}
  240. self.datas[231] = {ID = 231, SensitiveWord = "房贷给废"}
  241. self.datas[232] = {ID = 232, SensitiveWord = "仿真枪"}
  242. self.datas[233] = {ID = 233, SensitiveWord = "仿真证"}
  243. self.datas[234] = {ID = 234, SensitiveWord = "诽谤罪"}
  244. self.datas[235] = {ID = 235, SensitiveWord = "费私服"}
  245. self.datas[236] = {ID = 236, SensitiveWord = "封锁消"}
  246. self.datas[237] = {ID = 237, SensitiveWord = "佛同修"}
  247. self.datas[238] = {ID = 238, SensitiveWord = "夫妻交换"}
  248. self.datas[239] = {ID = 239, SensitiveWord = "福尔马林"}
  249. self.datas[240] = {ID = 240, SensitiveWord = "福娃的預"}
  250. self.datas[241] = {ID = 241, SensitiveWord = "福娃頭上"}
  251. self.datas[242] = {ID = 242, SensitiveWord = "福香巴"}
  252. self.datas[243] = {ID = 243, SensitiveWord = "府包庇"}
  253. self.datas[244] = {ID = 244, SensitiveWord = "府集中领"}
  254. self.datas[245] = {ID = 245, SensitiveWord = "妇销魂"}
  255. self.datas[246] = {ID = 246, SensitiveWord = "附送枪"}
  256. self.datas[247] = {ID = 247, SensitiveWord = "复印件生"}
  257. self.datas[248] = {ID = 248, SensitiveWord = "复印件制"}
  258. self.datas[249] = {ID = 249, SensitiveWord = "富民穷"}
  259. self.datas[250] = {ID = 250, SensitiveWord = "富婆给废"}
  260. self.datas[251] = {ID = 251, SensitiveWord = "改号软件"}
  261. self.datas[252] = {ID = 252, SensitiveWord = "感扑克"}
  262. self.datas[253] = {ID = 253, SensitiveWord = "冈本真"}
  263. self.datas[254] = {ID = 254, SensitiveWord = "肛交"}
  264. self.datas[255] = {ID = 255, SensitiveWord = "肛门是邻"}
  265. self.datas[256] = {ID = 256, SensitiveWord = "岡本真"}
  266. self.datas[257] = {ID = 257, SensitiveWord = "钢针狗"}
  267. self.datas[258] = {ID = 258, SensitiveWord = "钢珠枪"}
  268. self.datas[259] = {ID = 259, SensitiveWord = "港澳博球"}
  269. self.datas[260] = {ID = 260, SensitiveWord = "港馬會"}
  270. self.datas[261] = {ID = 261, SensitiveWord = "港鑫華"}
  271. self.datas[262] = {ID = 262, SensitiveWord = "高就在政"}
  272. self.datas[263] = {ID = 263, SensitiveWord = "高考黑"}
  273. self.datas[264] = {ID = 264, SensitiveWord = "高莺莺"}
  274. self.datas[265] = {ID = 265, SensitiveWord = "搞媛交"}
  275. self.datas[266] = {ID = 266, SensitiveWord = "告长期"}
  276. self.datas[267] = {ID = 267, SensitiveWord = "告洋状"}
  277. self.datas[268] = {ID = 268, SensitiveWord = "格证考试"}
  278. self.datas[269] = {ID = 269, SensitiveWord = "各类考试"}
  279. self.datas[270] = {ID = 270, SensitiveWord = "各类文凭"}
  280. self.datas[271] = {ID = 271, SensitiveWord = "跟踪器"}
  281. self.datas[272] = {ID = 272, SensitiveWord = "工程吞得"}
  282. self.datas[273] = {ID = 273, SensitiveWord = "工力人"}
  283. self.datas[274] = {ID = 274, SensitiveWord = "公安错打"}
  284. self.datas[275] = {ID = 275, SensitiveWord = "公安网监"}
  285. self.datas[276] = {ID = 276, SensitiveWord = "公开小姐"}
  286. self.datas[277] = {ID = 277, SensitiveWord = "攻官小姐"}
  287. self.datas[278] = {ID = 278, SensitiveWord = "共狗"}
  288. self.datas[279] = {ID = 279, SensitiveWord = "共产党"}
  289. self.datas[280] = {ID = 280, SensitiveWord = "共王储"}
  290. self.datas[281] = {ID = 281, SensitiveWord = "狗粮"}
  291. self.datas[282] = {ID = 282, SensitiveWord = "狗屁专家"}
  292. self.datas[283] = {ID = 283, SensitiveWord = "鼓动一些"}
  293. self.datas[284] = {ID = 284, SensitiveWord = "乖乖粉"}
  294. self.datas[285] = {ID = 285, SensitiveWord = "官商勾"}
  295. self.datas[286] = {ID = 286, SensitiveWord = "官也不容"}
  296. self.datas[287] = {ID = 287, SensitiveWord = "官因发帖"}
  297. self.datas[288] = {ID = 288, SensitiveWord = "光学真题"}
  298. self.datas[289] = {ID = 289, SensitiveWord = "跪真相"}
  299. self.datas[290] = {ID = 290, SensitiveWord = "滚圆大乳"}
  300. self.datas[291] = {ID = 291, SensitiveWord = "国际投注"}
  301. self.datas[292] = {ID = 292, SensitiveWord = "国家妓"}
  302. self.datas[293] = {ID = 293, SensitiveWord = "国家软弱"}
  303. self.datas[294] = {ID = 294, SensitiveWord = "国家吞得"}
  304. self.datas[295] = {ID = 295, SensitiveWord = "国库折"}
  305. self.datas[296] = {ID = 296, SensitiveWord = "国一九五七"}
  306. self.datas[297] = {ID = 297, SensitiveWord = "國內美"}
  307. self.datas[298] = {ID = 298, SensitiveWord = "哈药直销"}
  308. self.datas[299] = {ID = 299, SensitiveWord = "海访民"}
  309. self.datas[300] = {ID = 300, SensitiveWord = "豪圈钱"}
  310. self.datas[301] = {ID = 301, SensitiveWord = "号屏蔽器"}
  311. self.datas[302] = {ID = 302, SensitiveWord = "和狗交"}
  312. self.datas[303] = {ID = 303, SensitiveWord = "和狗性"}
  313. self.datas[304] = {ID = 304, SensitiveWord = "和狗做"}
  314. self.datas[305] = {ID = 305, SensitiveWord = "黑火药的"}
  315. self.datas[306] = {ID = 306, SensitiveWord = "红色恐怖"}
  316. self.datas[307] = {ID = 307, SensitiveWord = "红外透视"}
  317. self.datas[308] = {ID = 308, SensitiveWord = "紅色恐"}
  318. self.datas[309] = {ID = 309, SensitiveWord = "胡江内斗"}
  319. self.datas[310] = {ID = 310, SensitiveWord = "胡紧套"}
  320. self.datas[311] = {ID = 311, SensitiveWord = "胡锦涛"}
  321. self.datas[312] = {ID = 312, SensitiveWord = "胡錦濤"}
  322. self.datas[313] = {ID = 313, SensitiveWord = "胡适眼"}
  323. self.datas[314] = {ID = 314, SensitiveWord = "胡耀邦"}
  324. self.datas[315] = {ID = 315, SensitiveWord = "湖淫娘"}
  325. self.datas[316] = {ID = 316, SensitiveWord = "虎头猎"}
  326. self.datas[317] = {ID = 317, SensitiveWord = "华国锋"}
  327. self.datas[318] = {ID = 318, SensitiveWord = "华门开"}
  328. self.datas[319] = {ID = 319, SensitiveWord = "化学扫盲"}
  329. self.datas[320] = {ID = 320, SensitiveWord = "划老公"}
  330. self.datas[321] = {ID = 321, SensitiveWord = "还会吹萧"}
  331. self.datas[322] = {ID = 322, SensitiveWord = "还看锦涛"}
  332. self.datas[323] = {ID = 323, SensitiveWord = "环球证件"}
  333. self.datas[324] = {ID = 324, SensitiveWord = "换妻"}
  334. self.datas[325] = {ID = 325, SensitiveWord = "皇冠投注"}
  335. self.datas[326] = {ID = 326, SensitiveWord = "黄冰"}
  336. self.datas[327] = {ID = 327, SensitiveWord = "浑圆豪乳"}
  337. self.datas[328] = {ID = 328, SensitiveWord = "活不起"}
  338. self.datas[329] = {ID = 329, SensitiveWord = "火车也疯"}
  339. self.datas[330] = {ID = 330, SensitiveWord = "机定位器"}
  340. self.datas[331] = {ID = 331, SensitiveWord = "机号定"}
  341. self.datas[332] = {ID = 332, SensitiveWord = "机号卫"}
  342. self.datas[333] = {ID = 333, SensitiveWord = "机卡密"}
  343. self.datas[334] = {ID = 334, SensitiveWord = "机屏蔽器"}
  344. self.datas[335] = {ID = 335, SensitiveWord = "基本靠吼"}
  345. self.datas[336] = {ID = 336, SensitiveWord = "绩过后付"}
  346. self.datas[337] = {ID = 337, SensitiveWord = "激情电"}
  347. self.datas[338] = {ID = 338, SensitiveWord = "激情短"}
  348. self.datas[339] = {ID = 339, SensitiveWord = "激情妹"}
  349. self.datas[340] = {ID = 340, SensitiveWord = "激情炮"}
  350. self.datas[341] = {ID = 341, SensitiveWord = "级办理"}
  351. self.datas[342] = {ID = 342, SensitiveWord = "级答案"}
  352. self.datas[343] = {ID = 343, SensitiveWord = "急需嫖"}
  353. self.datas[344] = {ID = 344, SensitiveWord = "集体打砸"}
  354. self.datas[345] = {ID = 345, SensitiveWord = "集体腐"}
  355. self.datas[346] = {ID = 346, SensitiveWord = "挤乳汁"}
  356. self.datas[347] = {ID = 347, SensitiveWord = "擠乳汁"}
  357. self.datas[348] = {ID = 348, SensitiveWord = "佳静安定"}
  358. self.datas[349] = {ID = 349, SensitiveWord = "家一样饱"}
  359. self.datas[350] = {ID = 350, SensitiveWord = "家属被打"}
  360. self.datas[351] = {ID = 351, SensitiveWord = "甲虫跳"}
  361. self.datas[352] = {ID = 352, SensitiveWord = "甲流了"}
  362. self.datas[353] = {ID = 353, SensitiveWord = "奸成瘾"}
  363. self.datas[354] = {ID = 354, SensitiveWord = "兼职上门"}
  364. self.datas[355] = {ID = 355, SensitiveWord = "监听器"}
  365. self.datas[356] = {ID = 356, SensitiveWord = "监听王"}
  366. self.datas[357] = {ID = 357, SensitiveWord = "简易炸"}
  367. self.datas[358] = {ID = 358, SensitiveWord = "江胡内斗"}
  368. self.datas[359] = {ID = 359, SensitiveWord = "江太上"}
  369. self.datas[360] = {ID = 360, SensitiveWord = "江系人"}
  370. self.datas[361] = {ID = 361, SensitiveWord = "江贼民"}
  371. self.datas[362] = {ID = 362, SensitiveWord = "疆獨"}
  372. self.datas[363] = {ID = 363, SensitiveWord = "蒋彦永"}
  373. self.datas[364] = {ID = 364, SensitiveWord = "叫自慰"}
  374. self.datas[365] = {ID = 365, SensitiveWord = "揭贪难"}
  375. self.datas[366] = {ID = 366, SensitiveWord = "姐包夜"}
  376. self.datas[367] = {ID = 367, SensitiveWord = "姐服务"}
  377. self.datas[368] = {ID = 368, SensitiveWord = "姐兼职"}
  378. self.datas[369] = {ID = 369, SensitiveWord = "姐上门"}
  379. self.datas[370] = {ID = 370, SensitiveWord = "金扎金"}
  380. self.datas[371] = {ID = 371, SensitiveWord = "金钟气"}
  381. self.datas[372] = {ID = 372, SensitiveWord = "津大地震"}
  382. self.datas[373] = {ID = 373, SensitiveWord = "津地震"}
  383. self.datas[374] = {ID = 374, SensitiveWord = "进来的罪"}
  384. self.datas[375] = {ID = 375, SensitiveWord = "京地震"}
  385. self.datas[376] = {ID = 376, SensitiveWord = "京要地震"}
  386. self.datas[377] = {ID = 377, SensitiveWord = "经典谎言"}
  387. self.datas[378] = {ID = 378, SensitiveWord = "精子射在"}
  388. self.datas[379] = {ID = 379, SensitiveWord = "警察被"}
  389. self.datas[380] = {ID = 380, SensitiveWord = "警察的幌"}
  390. self.datas[381] = {ID = 381, SensitiveWord = "警察殴打"}
  391. self.datas[382] = {ID = 382, SensitiveWord = "警察说保"}
  392. self.datas[383] = {ID = 383, SensitiveWord = "警车雷达"}
  393. self.datas[384] = {ID = 384, SensitiveWord = "警方包庇"}
  394. self.datas[385] = {ID = 385, SensitiveWord = "警用品"}
  395. self.datas[386] = {ID = 386, SensitiveWord = "径步枪"}
  396. self.datas[387] = {ID = 387, SensitiveWord = "敬请忍"}
  397. self.datas[388] = {ID = 388, SensitiveWord = "究生答案"}
  398. self.datas[389] = {ID = 389, SensitiveWord = "九龙论坛"}
  399. self.datas[390] = {ID = 390, SensitiveWord = "九评共"}
  400. self.datas[391] = {ID = 391, SensitiveWord = "酒象喝汤"}
  401. self.datas[392] = {ID = 392, SensitiveWord = "酒像喝汤"}
  402. self.datas[393] = {ID = 393, SensitiveWord = "就爱插"}
  403. self.datas[394] = {ID = 394, SensitiveWord = "就要色"}
  404. self.datas[395] = {ID = 395, SensitiveWord = "举国体"}
  405. self.datas[396] = {ID = 396, SensitiveWord = "巨乳"}
  406. self.datas[397] = {ID = 397, SensitiveWord = "据说全民"}
  407. self.datas[398] = {ID = 398, SensitiveWord = "绝食声"}
  408. self.datas[399] = {ID = 399, SensitiveWord = "军长发威"}
  409. self.datas[400] = {ID = 400, SensitiveWord = "军刺"}
  410. self.datas[401] = {ID = 401, SensitiveWord = "军品特"}
  411. self.datas[402] = {ID = 402, SensitiveWord = "军用手"}
  412. self.datas[403] = {ID = 403, SensitiveWord = "开邓选"}
  413. self.datas[404] = {ID = 404, SensitiveWord = "开锁工具"}
  414. self.datas[405] = {ID = 405, SensitiveWord = "開碼"}
  415. self.datas[406] = {ID = 406, SensitiveWord = "開票"}
  416. self.datas[407] = {ID = 407, SensitiveWord = "砍杀幼"}
  417. self.datas[408] = {ID = 408, SensitiveWord = "砍伤儿"}
  418. self.datas[409] = {ID = 409, SensitiveWord = "康没有不"}
  419. self.datas[410] = {ID = 410, SensitiveWord = "康跳楼"}
  420. self.datas[411] = {ID = 411, SensitiveWord = "考答案"}
  421. self.datas[412] = {ID = 412, SensitiveWord = "考后付款"}
  422. self.datas[413] = {ID = 413, SensitiveWord = "考机构"}
  423. self.datas[414] = {ID = 414, SensitiveWord = "考考邓"}
  424. self.datas[415] = {ID = 415, SensitiveWord = "考联盟"}
  425. self.datas[416] = {ID = 416, SensitiveWord = "考前答"}
  426. self.datas[417] = {ID = 417, SensitiveWord = "考前答案"}
  427. self.datas[418] = {ID = 418, SensitiveWord = "考前付"}
  428. self.datas[419] = {ID = 419, SensitiveWord = "考设备"}
  429. self.datas[420] = {ID = 420, SensitiveWord = "考试包过"}
  430. self.datas[421] = {ID = 421, SensitiveWord = "考试保"}
  431. self.datas[422] = {ID = 422, SensitiveWord = "考试答案"}
  432. self.datas[423] = {ID = 423, SensitiveWord = "考试机构"}
  433. self.datas[424] = {ID = 424, SensitiveWord = "考试联盟"}
  434. self.datas[425] = {ID = 425, SensitiveWord = "考试枪"}
  435. self.datas[426] = {ID = 426, SensitiveWord = "考研考中"}
  436. self.datas[427] = {ID = 427, SensitiveWord = "考中答案"}
  437. self.datas[428] = {ID = 428, SensitiveWord = "磕彰"}
  438. self.datas[429] = {ID = 429, SensitiveWord = "克分析"}
  439. self.datas[430] = {ID = 430, SensitiveWord = "克千术"}
  440. self.datas[431] = {ID = 431, SensitiveWord = "克透视"}
  441. self.datas[432] = {ID = 432, SensitiveWord = "空和雅典"}
  442. self.datas[433] = {ID = 433, SensitiveWord = "孔摄像"}
  443. self.datas[434] = {ID = 434, SensitiveWord = "控诉世博"}
  444. self.datas[435] = {ID = 435, SensitiveWord = "控制媒"}
  445. self.datas[436] = {ID = 436, SensitiveWord = "口手枪"}
  446. self.datas[437] = {ID = 437, SensitiveWord = "骷髅死"}
  447. self.datas[438] = {ID = 438, SensitiveWord = "快速办"}
  448. self.datas[439] = {ID = 439, SensitiveWord = "矿难不公"}
  449. self.datas[440] = {ID = 440, SensitiveWord = "拉登说"}
  450. self.datas[441] = {ID = 441, SensitiveWord = "拉开水晶"}
  451. self.datas[442] = {ID = 442, SensitiveWord = "来福猎"}
  452. self.datas[443] = {ID = 443, SensitiveWord = "拦截器"}
  453. self.datas[444] = {ID = 444, SensitiveWord = "狼全部跪"}
  454. self.datas[445] = {ID = 445, SensitiveWord = "浪穴"}
  455. self.datas[446] = {ID = 446, SensitiveWord = "老虎机"}
  456. self.datas[447] = {ID = 447, SensitiveWord = "雷人女官"}
  457. self.datas[448] = {ID = 448, SensitiveWord = "类准确答"}
  458. self.datas[449] = {ID = 449, SensitiveWord = "黎阳平"}
  459. self.datas[450] = {ID = 450, SensitiveWord = "李洪志"}
  460. self.datas[451] = {ID = 451, SensitiveWord = "李咏曰"}
  461. self.datas[452] = {ID = 452, SensitiveWord = "理各种证"}
  462. self.datas[453] = {ID = 453, SensitiveWord = "理是影帝"}
  463. self.datas[454] = {ID = 454, SensitiveWord = "理证件"}
  464. self.datas[455] = {ID = 455, SensitiveWord = "理做帐报"}
  465. self.datas[456] = {ID = 456, SensitiveWord = "力骗中央"}
  466. self.datas[457] = {ID = 457, SensitiveWord = "力月西"}
  467. self.datas[458] = {ID = 458, SensitiveWord = "丽媛离"}
  468. self.datas[459] = {ID = 459, SensitiveWord = "利他林"}
  469. self.datas[460] = {ID = 460, SensitiveWord = "连发手"}
  470. self.datas[461] = {ID = 461, SensitiveWord = "聯繫電"}
  471. self.datas[462] = {ID = 462, SensitiveWord = "炼大法"}
  472. self.datas[463] = {ID = 463, SensitiveWord = "两岸才子"}
  473. self.datas[464] = {ID = 464, SensitiveWord = "两会代"}
  474. self.datas[465] = {ID = 465, SensitiveWord = "两会又三"}
  475. self.datas[466] = {ID = 466, SensitiveWord = "聊视频"}
  476. self.datas[467] = {ID = 467, SensitiveWord = "聊斋艳"}
  477. self.datas[468] = {ID = 468, SensitiveWord = "了件渔袍"}
  478. self.datas[469] = {ID = 469, SensitiveWord = "猎好帮手"}
  479. self.datas[470] = {ID = 470, SensitiveWord = "猎枪销"}
  480. self.datas[471] = {ID = 471, SensitiveWord = "猎槍"}
  481. self.datas[472] = {ID = 472, SensitiveWord = "獵槍"}
  482. self.datas[473] = {ID = 473, SensitiveWord = "领土拿"}
  483. self.datas[474] = {ID = 474, SensitiveWord = "流血事"}
  484. self.datas[475] = {ID = 475, SensitiveWord = "六合彩"}
  485. self.datas[476] = {ID = 476, SensitiveWord = "六死"}
  486. self.datas[477] = {ID = 477, SensitiveWord = "六四事"}
  487. self.datas[478] = {ID = 478, SensitiveWord = "六月联盟"}
  488. self.datas[479] = {ID = 479, SensitiveWord = "龙湾事件"}
  489. self.datas[480] = {ID = 480, SensitiveWord = "隆手指"}
  490. self.datas[481] = {ID = 481, SensitiveWord = "陆封锁"}
  491. self.datas[482] = {ID = 482, SensitiveWord = "陆同修"}
  492. self.datas[483] = {ID = 483, SensitiveWord = "氯胺酮"}
  493. self.datas[484] = {ID = 484, SensitiveWord = "乱奸"}
  494. self.datas[485] = {ID = 485, SensitiveWord = "乱伦类"}
  495. self.datas[486] = {ID = 486, SensitiveWord = "乱伦小"}
  496. self.datas[487] = {ID = 487, SensitiveWord = "亂倫"}
  497. self.datas[488] = {ID = 488, SensitiveWord = "伦理大"}
  498. self.datas[489] = {ID = 489, SensitiveWord = "伦理电影"}
  499. self.datas[490] = {ID = 490, SensitiveWord = "伦理毛"}
  500. self.datas[491] = {ID = 491, SensitiveWord = "伦理片"}
  501. self.datas[492] = {ID = 492, SensitiveWord = "轮功"}
  502. self.datas[493] = {ID = 493, SensitiveWord = "轮手枪"}
  503. self.datas[494] = {ID = 494, SensitiveWord = "论文代"}
  504. self.datas[495] = {ID = 495, SensitiveWord = "罗斯小姐"}
  505. self.datas[496] = {ID = 496, SensitiveWord = "裸聊网"}
  506. self.datas[497] = {ID = 497, SensitiveWord = "裸舞视"}
  507. self.datas[498] = {ID = 498, SensitiveWord = "落霞缀"}
  508. self.datas[499] = {ID = 499, SensitiveWord = "麻古"}
  509. self.datas[500] = {ID = 500, SensitiveWord = "麻果配"}
  510. self.datas[501] = {ID = 501, SensitiveWord = "麻果丸"}
  511. self.datas[502] = {ID = 502, SensitiveWord = "麻将透"}
  512. self.datas[503] = {ID = 503, SensitiveWord = "麻醉狗"}
  513. self.datas[504] = {ID = 504, SensitiveWord = "麻醉枪"}
  514. self.datas[505] = {ID = 505, SensitiveWord = "麻醉槍"}
  515. self.datas[506] = {ID = 506, SensitiveWord = "麻醉藥"}
  516. self.datas[507] = {ID = 507, SensitiveWord = "蟆叫专家"}
  517. self.datas[508] = {ID = 508, SensitiveWord = "卖地财政"}
  518. self.datas[509] = {ID = 509, SensitiveWord = "卖发票"}
  519. self.datas[510] = {ID = 510, SensitiveWord = "卖银行卡"}
  520. self.datas[511] = {ID = 511, SensitiveWord = "卖自考"}
  521. self.datas[512] = {ID = 512, SensitiveWord = "漫步丝"}
  522. self.datas[513] = {ID = 513, SensitiveWord = "忙爱国"}
  523. self.datas[514] = {ID = 514, SensitiveWord = "猫眼工具"}
  524. self.datas[515] = {ID = 515, SensitiveWord = "毛一鲜"}
  525. self.datas[516] = {ID = 516, SensitiveWord = "媒体封锁"}
  526. self.datas[517] = {ID = 517, SensitiveWord = "每周一死"}
  527. self.datas[518] = {ID = 518, SensitiveWord = "美艳少妇"}
  528. self.datas[519] = {ID = 519, SensitiveWord = "妹按摩"}
  529. self.datas[520] = {ID = 520, SensitiveWord = "妹上门"}
  530. self.datas[521] = {ID = 521, SensitiveWord = "门按摩"}
  531. self.datas[522] = {ID = 522, SensitiveWord = "门保健"}
  532. self.datas[523] = {ID = 523, SensitiveWord = "門服務"}
  533. self.datas[524] = {ID = 524, SensitiveWord = "氓培训"}
  534. self.datas[525] = {ID = 525, SensitiveWord = "蒙汗药"}
  535. self.datas[526] = {ID = 526, SensitiveWord = "迷幻型"}
  536. self.datas[527] = {ID = 527, SensitiveWord = "迷幻药"}
  537. self.datas[528] = {ID = 528, SensitiveWord = "迷幻藥"}
  538. self.datas[529] = {ID = 529, SensitiveWord = "迷昏口"}
  539. self.datas[530] = {ID = 530, SensitiveWord = "迷昏药"}
  540. self.datas[531] = {ID = 531, SensitiveWord = "迷昏藥"}
  541. self.datas[532] = {ID = 532, SensitiveWord = "迷魂香"}
  542. self.datas[533] = {ID = 533, SensitiveWord = "迷魂药"}
  543. self.datas[534] = {ID = 534, SensitiveWord = "迷魂藥"}
  544. self.datas[535] = {ID = 535, SensitiveWord = "迷奸药"}
  545. self.datas[536] = {ID = 536, SensitiveWord = "迷情水"}
  546. self.datas[537] = {ID = 537, SensitiveWord = "迷情药"}
  547. self.datas[538] = {ID = 538, SensitiveWord = "迷藥"}
  548. self.datas[539] = {ID = 539, SensitiveWord = "谜奸药"}
  549. self.datas[540] = {ID = 540, SensitiveWord = "蜜穴"}
  550. self.datas[541] = {ID = 541, SensitiveWord = "灭绝罪"}
  551. self.datas[542] = {ID = 542, SensitiveWord = "民储害"}
  552. self.datas[543] = {ID = 543, SensitiveWord = "民九亿商"}
  553. self.datas[544] = {ID = 544, SensitiveWord = "民抗议"}
  554. self.datas[545] = {ID = 545, SensitiveWord = "明慧网"}
  555. self.datas[546] = {ID = 546, SensitiveWord = "铭记印尼"}
  556. self.datas[547] = {ID = 547, SensitiveWord = "摩小姐"}
  557. self.datas[548] = {ID = 548, SensitiveWord = "母乳家"}
  558. self.datas[549] = {ID = 549, SensitiveWord = "木齐针"}
  559. self.datas[550] = {ID = 550, SensitiveWord = "幕没有不"}
  560. self.datas[551] = {ID = 551, SensitiveWord = "幕前戲"}
  561. self.datas[552] = {ID = 552, SensitiveWord = "内射"}
  562. self.datas[553] = {ID = 553, SensitiveWord = "南充针"}
  563. self.datas[554] = {ID = 554, SensitiveWord = "嫩穴"}
  564. self.datas[555] = {ID = 555, SensitiveWord = "嫩阴"}
  565. self.datas[556] = {ID = 556, SensitiveWord = "泥马之歌"}
  566. self.datas[557] = {ID = 557, SensitiveWord = "你的西域"}
  567. self.datas[558] = {ID = 558, SensitiveWord = "拟涛哥"}
  568. self.datas[559] = {ID = 559, SensitiveWord = "娘两腿之间"}
  569. self.datas[560] = {ID = 560, SensitiveWord = "妞上门"}
  570. self.datas[561] = {ID = 561, SensitiveWord = "浓精"}
  571. self.datas[562] = {ID = 562, SensitiveWord = "怒的志愿"}
  572. self.datas[563] = {ID = 563, SensitiveWord = "女被人家搞"}
  573. self.datas[564] = {ID = 564, SensitiveWord = "女激情"}
  574. self.datas[565] = {ID = 565, SensitiveWord = "女技师"}
  575. self.datas[566] = {ID = 566, SensitiveWord = "女人和狗"}
  576. self.datas[567] = {ID = 567, SensitiveWord = "女任职名"}
  577. self.datas[568] = {ID = 568, SensitiveWord = "女上门"}
  578. self.datas[569] = {ID = 569, SensitiveWord = "女優"}
  579. self.datas[570] = {ID = 570, SensitiveWord = "鸥之歌"}
  580. self.datas[571] = {ID = 571, SensitiveWord = "拍肩神药"}
  581. self.datas[572] = {ID = 572, SensitiveWord = "拍肩型"}
  582. self.datas[573] = {ID = 573, SensitiveWord = "牌分析"}
  583. self.datas[574] = {ID = 574, SensitiveWord = "牌技网"}
  584. self.datas[575] = {ID = 575, SensitiveWord = "炮的小蜜"}
  585. self.datas[576] = {ID = 576, SensitiveWord = "陪考枪"}
  586. self.datas[577] = {ID = 577, SensitiveWord = "配有消"}
  587. self.datas[578] = {ID = 578, SensitiveWord = "喷尿"}
  588. self.datas[579] = {ID = 579, SensitiveWord = "嫖俄罗"}
  589. self.datas[580] = {ID = 580, SensitiveWord = "嫖鸡"}
  590. self.datas[581] = {ID = 581, SensitiveWord = "平惨案"}
  591. self.datas[582] = {ID = 582, SensitiveWord = "平叫到床"}
  592. self.datas[583] = {ID = 583, SensitiveWord = "仆不怕饮"}
  593. self.datas[584] = {ID = 584, SensitiveWord = "普通嘌"}
  594. self.datas[585] = {ID = 585, SensitiveWord = "期货配"}
  595. self.datas[586] = {ID = 586, SensitiveWord = "奇迹的黄"}
  596. self.datas[587] = {ID = 587, SensitiveWord = "奇淫散"}
  597. self.datas[588] = {ID = 588, SensitiveWord = "骑单车出"}
  598. self.datas[589] = {ID = 589, SensitiveWord = "气狗"}
  599. self.datas[590] = {ID = 590, SensitiveWord = "气枪"}
  600. self.datas[591] = {ID = 591, SensitiveWord = "汽狗"}
  601. self.datas[592] = {ID = 592, SensitiveWord = "汽枪"}
  602. self.datas[593] = {ID = 593, SensitiveWord = "氣槍"}
  603. self.datas[594] = {ID = 594, SensitiveWord = "铅弹"}
  604. self.datas[595] = {ID = 595, SensitiveWord = "钱三字经"}
  605. self.datas[596] = {ID = 596, SensitiveWord = "枪出售"}
  606. self.datas[597] = {ID = 597, SensitiveWord = "枪的参"}
  607. self.datas[598] = {ID = 598, SensitiveWord = "枪的分"}
  608. self.datas[599] = {ID = 599, SensitiveWord = "枪的结"}
  609. self.datas[600] = {ID = 600, SensitiveWord = "枪的制"}
  610. self.datas[601] = {ID = 601, SensitiveWord = "枪货到"}
  611. self.datas[602] = {ID = 602, SensitiveWord = "枪决女犯"}
  612. self.datas[603] = {ID = 603, SensitiveWord = "枪决现场"}
  613. self.datas[604] = {ID = 604, SensitiveWord = "枪模"}
  614. self.datas[605] = {ID = 605, SensitiveWord = "枪手队"}
  615. self.datas[606] = {ID = 606, SensitiveWord = "枪手网"}
  616. self.datas[607] = {ID = 607, SensitiveWord = "枪销售"}
  617. self.datas[608] = {ID = 608, SensitiveWord = "枪械制"}
  618. self.datas[609] = {ID = 609, SensitiveWord = "枪子弹"}
  619. self.datas[610] = {ID = 610, SensitiveWord = "强权政府"}
  620. self.datas[611] = {ID = 611, SensitiveWord = "强硬发言"}
  621. self.datas[612] = {ID = 612, SensitiveWord = "抢其火炬"}
  622. self.datas[613] = {ID = 613, SensitiveWord = "切听器"}
  623. self.datas[614] = {ID = 614, SensitiveWord = "窃听器"}
  624. self.datas[615] = {ID = 615, SensitiveWord = "禽流感了"}
  625. self.datas[616] = {ID = 616, SensitiveWord = "勤捞致"}
  626. self.datas[617] = {ID = 617, SensitiveWord = "氢弹手"}
  627. self.datas[618] = {ID = 618, SensitiveWord = "清除负面"}
  628. self.datas[619] = {ID = 619, SensitiveWord = "清純壆"}
  629. self.datas[620] = {ID = 620, SensitiveWord = "情聊天室"}
  630. self.datas[621] = {ID = 621, SensitiveWord = "情妹妹"}
  631. self.datas[622] = {ID = 622, SensitiveWord = "情视频"}
  632. self.datas[623] = {ID = 623, SensitiveWord = "情自拍"}
  633. self.datas[624] = {ID = 624, SensitiveWord = "氰化钾"}
  634. self.datas[625] = {ID = 625, SensitiveWord = "氰化钠"}
  635. self.datas[626] = {ID = 626, SensitiveWord = "请集会"}
  636. self.datas[627] = {ID = 627, SensitiveWord = "请示威"}
  637. self.datas[628] = {ID = 628, SensitiveWord = "请愿"}
  638. self.datas[629] = {ID = 629, SensitiveWord = "琼花问"}
  639. self.datas[630] = {ID = 630, SensitiveWord = "区的雷人"}
  640. self.datas[631] = {ID = 631, SensitiveWord = "娶韩国"}
  641. self.datas[632] = {ID = 632, SensitiveWord = "全真证"}
  642. self.datas[633] = {ID = 633, SensitiveWord = "群奸暴"}
  643. self.datas[634] = {ID = 634, SensitiveWord = "群起抗暴"}
  644. self.datas[635] = {ID = 635, SensitiveWord = "群体性事"}
  645. self.datas[636] = {ID = 636, SensitiveWord = "绕过封锁"}
  646. self.datas[637] = {ID = 637, SensitiveWord = "惹的国"}
  647. self.datas[638] = {ID = 638, SensitiveWord = "人权律"}
  648. self.datas[639] = {ID = 639, SensitiveWord = "人体艺"}
  649. self.datas[640] = {ID = 640, SensitiveWord = "人游行"}
  650. self.datas[641] = {ID = 641, SensitiveWord = "人在云上"}
  651. self.datas[642] = {ID = 642, SensitiveWord = "人真钱"}
  652. self.datas[643] = {ID = 643, SensitiveWord = "认牌绝"}
  653. self.datas[644] = {ID = 644, SensitiveWord = "任于斯国"}
  654. self.datas[645] = {ID = 645, SensitiveWord = "柔胸粉"}
  655. self.datas[646] = {ID = 646, SensitiveWord = "肉洞"}
  656. self.datas[647] = {ID = 647, SensitiveWord = "肉棍"}
  657. self.datas[648] = {ID = 648, SensitiveWord = "如厕死"}
  658. self.datas[649] = {ID = 649, SensitiveWord = "乳交"}
  659. self.datas[650] = {ID = 650, SensitiveWord = "软弱的国"}
  660. self.datas[651] = {ID = 651, SensitiveWord = "赛后骚"}
  661. self.datas[652] = {ID = 652, SensitiveWord = "三挫"}
  662. self.datas[653] = {ID = 653, SensitiveWord = "三级片"}
  663. self.datas[654] = {ID = 654, SensitiveWord = "三秒倒"}
  664. self.datas[655] = {ID = 655, SensitiveWord = "三网友"}
  665. self.datas[656] = {ID = 656, SensitiveWord = "三唑"}
  666. self.datas[657] = {ID = 657, SensitiveWord = "骚妇"}
  667. self.datas[658] = {ID = 658, SensitiveWord = "骚浪"}
  668. self.datas[659] = {ID = 659, SensitiveWord = "骚穴"}
  669. self.datas[660] = {ID = 660, SensitiveWord = "骚嘴"}
  670. self.datas[661] = {ID = 661, SensitiveWord = "扫了爷爷"}
  671. self.datas[662] = {ID = 662, SensitiveWord = "色电影"}
  672. self.datas[663] = {ID = 663, SensitiveWord = "色妹妹"}
  673. self.datas[664] = {ID = 664, SensitiveWord = "色视频"}
  674. self.datas[665] = {ID = 665, SensitiveWord = "色小说"}
  675. self.datas[666] = {ID = 666, SensitiveWord = "杀指南"}
  676. self.datas[667] = {ID = 667, SensitiveWord = "山涉黑"}
  677. self.datas[668] = {ID = 668, SensitiveWord = "煽动不明"}
  678. self.datas[669] = {ID = 669, SensitiveWord = "煽动群众"}
  679. self.datas[670] = {ID = 670, SensitiveWord = "上门激"}
  680. self.datas[671] = {ID = 671, SensitiveWord = "烧公安局"}
  681. self.datas[672] = {ID = 672, SensitiveWord = "烧瓶的"}
  682. self.datas[673] = {ID = 673, SensitiveWord = "韶关斗"}
  683. self.datas[674] = {ID = 674, SensitiveWord = "韶关玩"}
  684. self.datas[675] = {ID = 675, SensitiveWord = "韶关旭"}
  685. self.datas[676] = {ID = 676, SensitiveWord = "射网枪"}
  686. self.datas[677] = {ID = 677, SensitiveWord = "涉嫌抄袭"}
  687. self.datas[678] = {ID = 678, SensitiveWord = "深喉冰"}
  688. self.datas[679] = {ID = 679, SensitiveWord = "神七假"}
  689. self.datas[680] = {ID = 680, SensitiveWord = "神韵艺术"}
  690. self.datas[681] = {ID = 681, SensitiveWord = "生被砍"}
  691. self.datas[682] = {ID = 682, SensitiveWord = "生踩踏"}
  692. self.datas[683] = {ID = 683, SensitiveWord = "生肖中特"}
  693. self.datas[684] = {ID = 684, SensitiveWord = "圣战不息"}
  694. self.datas[685] = {ID = 685, SensitiveWord = "盛行在舞"}
  695. self.datas[686] = {ID = 686, SensitiveWord = "尸博"}
  696. self.datas[687] = {ID = 687, SensitiveWord = "失身水"}
  697. self.datas[688] = {ID = 688, SensitiveWord = "失意药"}
  698. self.datas[689] = {ID = 689, SensitiveWord = "狮子旗"}
  699. self.datas[690] = {ID = 690, SensitiveWord = "十八等"}
  700. self.datas[691] = {ID = 691, SensitiveWord = "十大谎"}
  701. self.datas[692] = {ID = 692, SensitiveWord = "十大禁"}
  702. self.datas[693] = {ID = 693, SensitiveWord = "十个预言"}
  703. self.datas[694] = {ID = 694, SensitiveWord = "十类人不"}
  704. self.datas[695] = {ID = 695, SensitiveWord = "十七大幕"}
  705. self.datas[696] = {ID = 696, SensitiveWord = "实毕业证"}
  706. self.datas[697] = {ID = 697, SensitiveWord = "实体娃"}
  707. self.datas[698] = {ID = 698, SensitiveWord = "实学历文"}
  708. self.datas[699] = {ID = 699, SensitiveWord = "士康事件"}
  709. self.datas[700] = {ID = 700, SensitiveWord = "式粉推"}
  710. self.datas[701] = {ID = 701, SensitiveWord = "视解密"}
  711. self.datas[702] = {ID = 702, SensitiveWord = "是躲猫"}
  712. self.datas[703] = {ID = 703, SensitiveWord = "手变牌"}
  713. self.datas[704] = {ID = 704, SensitiveWord = "手答案"}
  714. self.datas[705] = {ID = 705, SensitiveWord = "手狗"}
  715. self.datas[706] = {ID = 706, SensitiveWord = "手机跟"}
  716. self.datas[707] = {ID = 707, SensitiveWord = "手机监"}
  717. self.datas[708] = {ID = 708, SensitiveWord = "手机窃"}
  718. self.datas[709] = {ID = 709, SensitiveWord = "手机追"}
  719. self.datas[710] = {ID = 710, SensitiveWord = "手拉鸡"}
  720. self.datas[711] = {ID = 711, SensitiveWord = "手木仓"}
  721. self.datas[712] = {ID = 712, SensitiveWord = "手槍"}
  722. self.datas[713] = {ID = 713, SensitiveWord = "守所死法"}
  723. self.datas[714] = {ID = 714, SensitiveWord = "兽交"}
  724. self.datas[715] = {ID = 715, SensitiveWord = "售步枪"}
  725. self.datas[716] = {ID = 716, SensitiveWord = "售纯度"}
  726. self.datas[717] = {ID = 717, SensitiveWord = "售单管"}
  727. self.datas[718] = {ID = 718, SensitiveWord = "售弹簧刀"}
  728. self.datas[719] = {ID = 719, SensitiveWord = "售防身"}
  729. self.datas[720] = {ID = 720, SensitiveWord = "售狗子"}
  730. self.datas[721] = {ID = 721, SensitiveWord = "售虎头"}
  731. self.datas[722] = {ID = 722, SensitiveWord = "售火药"}
  732. self.datas[723] = {ID = 723, SensitiveWord = "售假币"}
  733. self.datas[724] = {ID = 724, SensitiveWord = "售健卫"}
  734. self.datas[725] = {ID = 725, SensitiveWord = "售军用"}
  735. self.datas[726] = {ID = 726, SensitiveWord = "售猎枪"}
  736. self.datas[727] = {ID = 727, SensitiveWord = "售氯胺"}
  737. self.datas[728] = {ID = 728, SensitiveWord = "售麻醉"}
  738. self.datas[729] = {ID = 729, SensitiveWord = "售冒名"}
  739. self.datas[730] = {ID = 730, SensitiveWord = "售枪支"}
  740. self.datas[731] = {ID = 731, SensitiveWord = "售热武"}
  741. self.datas[732] = {ID = 732, SensitiveWord = "售三棱"}
  742. self.datas[733] = {ID = 733, SensitiveWord = "售手枪"}
  743. self.datas[734] = {ID = 734, SensitiveWord = "售五四"}
  744. self.datas[735] = {ID = 735, SensitiveWord = "售信用"}
  745. self.datas[736] = {ID = 736, SensitiveWord = "售一元硬"}
  746. self.datas[737] = {ID = 737, SensitiveWord = "售子弹"}
  747. self.datas[738] = {ID = 738, SensitiveWord = "售左轮"}
  748. self.datas[739] = {ID = 739, SensitiveWord = "书办理"}
  749. self.datas[740] = {ID = 740, SensitiveWord = "熟妇"}
  750. self.datas[741] = {ID = 741, SensitiveWord = "术牌具"}
  751. self.datas[742] = {ID = 742, SensitiveWord = "双管立"}
  752. self.datas[743] = {ID = 743, SensitiveWord = "双管平"}
  753. self.datas[744] = {ID = 744, SensitiveWord = "水阎王"}
  754. self.datas[745] = {ID = 745, SensitiveWord = "丝护士"}
  755. self.datas[746] = {ID = 746, SensitiveWord = "丝情侣"}
  756. self.datas[747] = {ID = 747, SensitiveWord = "丝袜保"}
  757. self.datas[748] = {ID = 748, SensitiveWord = "丝袜恋"}
  758. self.datas[749] = {ID = 749, SensitiveWord = "丝袜美"}
  759. self.datas[750] = {ID = 750, SensitiveWord = "丝袜妹"}
  760. self.datas[751] = {ID = 751, SensitiveWord = "丝袜网"}
  761. self.datas[752] = {ID = 752, SensitiveWord = "丝足按"}
  762. self.datas[753] = {ID = 753, SensitiveWord = "司长期有"}
  763. self.datas[754] = {ID = 754, SensitiveWord = "司法黑"}
  764. self.datas[755] = {ID = 755, SensitiveWord = "私房写真"}
  765. self.datas[756] = {ID = 756, SensitiveWord = "死法分布"}
  766. self.datas[757] = {ID = 757, SensitiveWord = "死要见毛"}
  767. self.datas[758] = {ID = 758, SensitiveWord = "四博会"}
  768. self.datas[759] = {ID = 759, SensitiveWord = "四大扯个"}
  769. self.datas[760] = {ID = 760, SensitiveWord = "四小码"}
  770. self.datas[761] = {ID = 761, SensitiveWord = "苏家屯集"}
  771. self.datas[762] = {ID = 762, SensitiveWord = "诉讼集团"}
  772. self.datas[763] = {ID = 763, SensitiveWord = "素女心"}
  773. self.datas[764] = {ID = 764, SensitiveWord = "速代办"}
  774. self.datas[765] = {ID = 765, SensitiveWord = "速取证"}
  775. self.datas[766] = {ID = 766, SensitiveWord = "酸羟亚胺"}
  776. self.datas[767] = {ID = 767, SensitiveWord = "蹋纳税"}
  777. self.datas[768] = {ID = 768, SensitiveWord = "太王四神"}
  778. self.datas[769] = {ID = 769, SensitiveWord = "泰兴幼"}
  779. self.datas[770] = {ID = 770, SensitiveWord = "泰兴镇中"}
  780. self.datas[771] = {ID = 771, SensitiveWord = "泰州幼"}
  781. self.datas[772] = {ID = 772, SensitiveWord = "贪官也辛"}
  782. self.datas[773] = {ID = 773, SensitiveWord = "探测狗"}
  783. self.datas[774] = {ID = 774, SensitiveWord = "涛共产"}
  784. self.datas[775] = {ID = 775, SensitiveWord = "涛一样胡"}
  785. self.datas[776] = {ID = 776, SensitiveWord = "特工资"}
  786. self.datas[777] = {ID = 777, SensitiveWord = "特码"}
  787. self.datas[778] = {ID = 778, SensitiveWord = "特上门"}
  788. self.datas[779] = {ID = 779, SensitiveWord = "体透视镜"}
  789. self.datas[780] = {ID = 780, SensitiveWord = "替考"}
  790. self.datas[781] = {ID = 781, SensitiveWord = "替人体"}
  791. self.datas[782] = {ID = 782, SensitiveWord = "天朝特"}
  792. self.datas[783] = {ID = 783, SensitiveWord = "天鹅之旅"}
  793. self.datas[784] = {ID = 784, SensitiveWord = "天推广歌"}
  794. self.datas[785] = {ID = 785, SensitiveWord = "田罢工"}
  795. self.datas[786] = {ID = 786, SensitiveWord = "田田桑"}
  796. self.datas[787] = {ID = 787, SensitiveWord = "田停工"}
  797. self.datas[788] = {ID = 788, SensitiveWord = "庭保养"}
  798. self.datas[789] = {ID = 789, SensitiveWord = "庭审直播"}
  799. self.datas[790] = {ID = 790, SensitiveWord = "通钢总经"}
  800. self.datas[791] = {ID = 791, SensitiveWord = "偷電器"}
  801. self.datas[792] = {ID = 792, SensitiveWord = "偷肃贪"}
  802. self.datas[793] = {ID = 793, SensitiveWord = "偷听器"}
  803. self.datas[794] = {ID = 794, SensitiveWord = "偷偷贪"}
  804. self.datas[795] = {ID = 795, SensitiveWord = "头双管"}
  805. self.datas[796] = {ID = 796, SensitiveWord = "透视功能"}
  806. self.datas[797] = {ID = 797, SensitiveWord = "透视镜"}
  807. self.datas[798] = {ID = 798, SensitiveWord = "透视扑"}
  808. self.datas[799] = {ID = 799, SensitiveWord = "透视器"}
  809. self.datas[800] = {ID = 800, SensitiveWord = "透视眼镜"}
  810. self.datas[801] = {ID = 801, SensitiveWord = "透视药"}
  811. self.datas[802] = {ID = 802, SensitiveWord = "透视仪"}
  812. self.datas[803] = {ID = 803, SensitiveWord = "秃鹰汽"}
  813. self.datas[804] = {ID = 804, SensitiveWord = "突破封锁"}
  814. self.datas[805] = {ID = 805, SensitiveWord = "突破网路"}
  815. self.datas[806] = {ID = 806, SensitiveWord = "推油按"}
  816. self.datas[807] = {ID = 807, SensitiveWord = "脱衣艳"}
  817. self.datas[808] = {ID = 808, SensitiveWord = "瓦斯手"}
  818. self.datas[809] = {ID = 809, SensitiveWord = "袜按摩"}
  819. self.datas[810] = {ID = 810, SensitiveWord = "外透视镜"}
  820. self.datas[811] = {ID = 811, SensitiveWord = "外围赌球"}
  821. self.datas[812] = {ID = 812, SensitiveWord = "湾版假"}
  822. self.datas[813] = {ID = 813, SensitiveWord = "万能钥匙"}
  823. self.datas[814] = {ID = 814, SensitiveWord = "万人骚动"}
  824. self.datas[815] = {ID = 815, SensitiveWord = "王立军"}
  825. self.datas[816] = {ID = 816, SensitiveWord = "王益案"}
  826. self.datas[817] = {ID = 817, SensitiveWord = "网民案"}
  827. self.datas[818] = {ID = 818, SensitiveWord = "网民获刑"}
  828. self.datas[819] = {ID = 819, SensitiveWord = "网民诬"}
  829. self.datas[820] = {ID = 820, SensitiveWord = "微型摄像"}
  830. self.datas[821] = {ID = 821, SensitiveWord = "围攻警"}
  831. self.datas[822] = {ID = 822, SensitiveWord = "围攻上海"}
  832. self.datas[823] = {ID = 823, SensitiveWord = "维汉员"}
  833. self.datas[824] = {ID = 824, SensitiveWord = "维权基"}
  834. self.datas[825] = {ID = 825, SensitiveWord = "维权人"}
  835. self.datas[826] = {ID = 826, SensitiveWord = "维权谈"}
  836. self.datas[827] = {ID = 827, SensitiveWord = "委坐船"}
  837. self.datas[828] = {ID = 828, SensitiveWord = "谓的和谐"}
  838. self.datas[829] = {ID = 829, SensitiveWord = "温家堡"}
  839. self.datas[830] = {ID = 830, SensitiveWord = "温切斯特"}
  840. self.datas[831] = {ID = 831, SensitiveWord = "温影帝"}
  841. self.datas[832] = {ID = 832, SensitiveWord = "溫家寶"}
  842. self.datas[833] = {ID = 833, SensitiveWord = "瘟加饱"}
  843. self.datas[834] = {ID = 834, SensitiveWord = "瘟假饱"}
  844. self.datas[835] = {ID = 835, SensitiveWord = "文凭证"}
  845. self.datas[836] = {ID = 836, SensitiveWord = "文强"}
  846. self.datas[837] = {ID = 837, SensitiveWord = "纹了毛"}
  847. self.datas[838] = {ID = 838, SensitiveWord = "闻被控制"}
  848. self.datas[839] = {ID = 839, SensitiveWord = "闻封锁"}
  849. self.datas[840] = {ID = 840, SensitiveWord = "瓮安"}
  850. self.datas[841] = {ID = 841, SensitiveWord = "我的西域"}
  851. self.datas[842] = {ID = 842, SensitiveWord = "我搞台独"}
  852. self.datas[843] = {ID = 843, SensitiveWord = "乌蝇水"}
  853. self.datas[844] = {ID = 844, SensitiveWord = "无耻语录"}
  854. self.datas[845] = {ID = 845, SensitiveWord = "无码专"}
  855. self.datas[846] = {ID = 846, SensitiveWord = "五套功"}
  856. self.datas[847] = {ID = 847, SensitiveWord = "五月天"}
  857. self.datas[848] = {ID = 848, SensitiveWord = "午夜电"}
  858. self.datas[849] = {ID = 849, SensitiveWord = "午夜极"}
  859. self.datas[850] = {ID = 850, SensitiveWord = "武警暴"}
  860. self.datas[851] = {ID = 851, SensitiveWord = "武警殴"}
  861. self.datas[852] = {ID = 852, SensitiveWord = "武警已增"}
  862. self.datas[853] = {ID = 853, SensitiveWord = "务员答案"}
  863. self.datas[854] = {ID = 854, SensitiveWord = "务员考试"}
  864. self.datas[855] = {ID = 855, SensitiveWord = "雾型迷"}
  865. self.datas[856] = {ID = 856, SensitiveWord = "西藏限"}
  866. self.datas[857] = {ID = 857, SensitiveWord = "西服进去"}
  867. self.datas[858] = {ID = 858, SensitiveWord = "希脏"}
  868. self.datas[859] = {ID = 859, SensitiveWord = "习进平"}
  869. self.datas[860] = {ID = 860, SensitiveWord = "习晋平"}
  870. self.datas[861] = {ID = 861, SensitiveWord = "席复活"}
  871. self.datas[862] = {ID = 862, SensitiveWord = "席临终前"}
  872. self.datas[863] = {ID = 863, SensitiveWord = "席指着护"}
  873. self.datas[864] = {ID = 864, SensitiveWord = "洗澡死"}
  874. self.datas[865] = {ID = 865, SensitiveWord = "喜贪赃"}
  875. self.datas[866] = {ID = 866, SensitiveWord = "先烈纷纷"}
  876. self.datas[867] = {ID = 867, SensitiveWord = "现大地震"}
  877. self.datas[868] = {ID = 868, SensitiveWord = "现金投注"}
  878. self.datas[869] = {ID = 869, SensitiveWord = "线透视镜"}
  879. self.datas[870] = {ID = 870, SensitiveWord = "限制言"}
  880. self.datas[871] = {ID = 871, SensitiveWord = "陷害案"}
  881. self.datas[872] = {ID = 872, SensitiveWord = "陷害罪"}
  882. self.datas[873] = {ID = 873, SensitiveWord = "相自首"}
  883. self.datas[874] = {ID = 874, SensitiveWord = "香港论坛"}
  884. self.datas[875] = {ID = 875, SensitiveWord = "香港马会"}
  885. self.datas[876] = {ID = 876, SensitiveWord = "香港一类"}
  886. self.datas[877] = {ID = 877, SensitiveWord = "香港总彩"}
  887. self.datas[878] = {ID = 878, SensitiveWord = "硝化甘"}
  888. self.datas[879] = {ID = 879, SensitiveWord = "小穴"}
  889. self.datas[880] = {ID = 880, SensitiveWord = "校骚乱"}
  890. self.datas[881] = {ID = 881, SensitiveWord = "协晃悠"}
  891. self.datas[882] = {ID = 882, SensitiveWord = "写两会"}
  892. self.datas[883] = {ID = 883, SensitiveWord = "泄漏的内"}
  893. self.datas[884] = {ID = 884, SensitiveWord = "新建户"}
  894. self.datas[885] = {ID = 885, SensitiveWord = "新疆叛"}
  895. self.datas[886] = {ID = 886, SensitiveWord = "新疆限"}
  896. self.datas[887] = {ID = 887, SensitiveWord = "新金瓶"}
  897. self.datas[888] = {ID = 888, SensitiveWord = "新唐人"}
  898. self.datas[889] = {ID = 889, SensitiveWord = "信访专班"}
  899. self.datas[890] = {ID = 890, SensitiveWord = "信接收器"}
  900. self.datas[891] = {ID = 891, SensitiveWord = "兴中心幼"}
  901. self.datas[892] = {ID = 892, SensitiveWord = "星上门"}
  902. self.datas[893] = {ID = 893, SensitiveWord = "行长王益"}
  903. self.datas[894] = {ID = 894, SensitiveWord = "形透视镜"}
  904. self.datas[895] = {ID = 895, SensitiveWord = "型手枪"}
  905. self.datas[896] = {ID = 896, SensitiveWord = "姓忽悠"}
  906. self.datas[897] = {ID = 897, SensitiveWord = "幸运码"}
  907. self.datas[898] = {ID = 898, SensitiveWord = "性爱日"}
  908. self.datas[899] = {ID = 899, SensitiveWord = "性福情"}
  909. self.datas[900] = {ID = 900, SensitiveWord = "性感少"}
  910. self.datas[901] = {ID = 901, SensitiveWord = "性推广歌"}
  911. self.datas[902] = {ID = 902, SensitiveWord = "胸主席"}
  912. self.datas[903] = {ID = 903, SensitiveWord = "徐玉元"}
  913. self.datas[904] = {ID = 904, SensitiveWord = "学骚乱"}
  914. self.datas[905] = {ID = 905, SensitiveWord = "学位證"}
  915. self.datas[906] = {ID = 906, SensitiveWord = "學生妹"}
  916. self.datas[907] = {ID = 907, SensitiveWord = "丫与王益"}
  917. self.datas[908] = {ID = 908, SensitiveWord = "烟感器"}
  918. self.datas[909] = {ID = 909, SensitiveWord = "严晓玲"}
  919. self.datas[910] = {ID = 910, SensitiveWord = "言被劳教"}
  920. self.datas[911] = {ID = 911, SensitiveWord = "言论罪"}
  921. self.datas[912] = {ID = 912, SensitiveWord = "盐酸曲"}
  922. self.datas[913] = {ID = 913, SensitiveWord = "颜射"}
  923. self.datas[914] = {ID = 914, SensitiveWord = "恙虫病"}
  924. self.datas[915] = {ID = 915, SensitiveWord = "姚明进去"}
  925. self.datas[916] = {ID = 916, SensitiveWord = "要人权"}
  926. self.datas[917] = {ID = 917, SensitiveWord = "要射精了"}
  927. self.datas[918] = {ID = 918, SensitiveWord = "要射了"}
  928. self.datas[919] = {ID = 919, SensitiveWord = "要泄了"}
  929. self.datas[920] = {ID = 920, SensitiveWord = "夜激情"}
  930. self.datas[921] = {ID = 921, SensitiveWord = "液体炸"}
  931. self.datas[922] = {ID = 922, SensitiveWord = "一小撮别"}
  932. self.datas[923] = {ID = 923, SensitiveWord = "遗情书"}
  933. self.datas[924] = {ID = 924, SensitiveWord = "蚁力神"}
  934. self.datas[925] = {ID = 925, SensitiveWord = "益关注组"}
  935. self.datas[926] = {ID = 926, SensitiveWord = "益受贿"}
  936. self.datas[927] = {ID = 927, SensitiveWord = "阴间来电"}
  937. self.datas[928] = {ID = 928, SensitiveWord = "陰唇"}
  938. self.datas[929] = {ID = 929, SensitiveWord = "陰道"}
  939. self.datas[930] = {ID = 930, SensitiveWord = "陰戶"}
  940. self.datas[931] = {ID = 931, SensitiveWord = "淫魔舞"}
  941. self.datas[932] = {ID = 932, SensitiveWord = "淫情女"}
  942. self.datas[933] = {ID = 933, SensitiveWord = "淫肉"}
  943. self.datas[934] = {ID = 934, SensitiveWord = "淫騷妹"}
  944. self.datas[935] = {ID = 935, SensitiveWord = "淫兽"}
  945. self.datas[936] = {ID = 936, SensitiveWord = "淫兽学"}
  946. self.datas[937] = {ID = 937, SensitiveWord = "淫水"}
  947. self.datas[938] = {ID = 938, SensitiveWord = "淫穴"}
  948. self.datas[939] = {ID = 939, SensitiveWord = "隐形耳"}
  949. self.datas[940] = {ID = 940, SensitiveWord = "隐形喷剂"}
  950. self.datas[941] = {ID = 941, SensitiveWord = "应子弹"}
  951. self.datas[942] = {ID = 942, SensitiveWord = "婴儿命"}
  952. self.datas[943] = {ID = 943, SensitiveWord = "咏妓"}
  953. self.datas[944] = {ID = 944, SensitiveWord = "用手枪"}
  954. self.datas[945] = {ID = 945, SensitiveWord = "幽谷三"}
  955. self.datas[946] = {ID = 946, SensitiveWord = "游精佑"}
  956. self.datas[947] = {ID = 947, SensitiveWord = "有奶不一"}
  957. self.datas[948] = {ID = 948, SensitiveWord = "右转是政"}
  958. self.datas[949] = {ID = 949, SensitiveWord = "幼齿类"}
  959. self.datas[950] = {ID = 950, SensitiveWord = "娱乐透视"}
  960. self.datas[951] = {ID = 951, SensitiveWord = "愚民同"}
  961. self.datas[952] = {ID = 952, SensitiveWord = "愚民政"}
  962. self.datas[953] = {ID = 953, SensitiveWord = "与狗性"}
  963. self.datas[954] = {ID = 954, SensitiveWord = "玉蒲团"}
  964. self.datas[955] = {ID = 955, SensitiveWord = "育部女官"}
  965. self.datas[956] = {ID = 956, SensitiveWord = "冤民大"}
  966. self.datas[957] = {ID = 957, SensitiveWord = "鸳鸯洗"}
  967. self.datas[958] = {ID = 958, SensitiveWord = "园惨案"}
  968. self.datas[959] = {ID = 959, SensitiveWord = "园发生砍"}
  969. self.datas[960] = {ID = 960, SensitiveWord = "园砍杀"}
  970. self.datas[961] = {ID = 961, SensitiveWord = "园凶杀"}
  971. self.datas[962] = {ID = 962, SensitiveWord = "园血案"}
  972. self.datas[963] = {ID = 963, SensitiveWord = "原一九五七"}
  973. self.datas[964] = {ID = 964, SensitiveWord = "原装弹"}
  974. self.datas[965] = {ID = 965, SensitiveWord = "袁腾飞"}
  975. self.datas[966] = {ID = 966, SensitiveWord = "晕倒型"}
  976. self.datas[967] = {ID = 967, SensitiveWord = "韵徐娘"}
  977. self.datas[968] = {ID = 968, SensitiveWord = "遭便衣"}
  978. self.datas[969] = {ID = 969, SensitiveWord = "遭到警"}
  979. self.datas[970] = {ID = 970, SensitiveWord = "遭警察"}
  980. self.datas[971] = {ID = 971, SensitiveWord = "遭武警"}
  981. self.datas[972] = {ID = 972, SensitiveWord = "择油录"}
  982. self.datas[973] = {ID = 973, SensitiveWord = "曾道人"}
  983. self.datas[974] = {ID = 974, SensitiveWord = "炸弹教"}
  984. self.datas[975] = {ID = 975, SensitiveWord = "炸弹遥控"}
  985. self.datas[976] = {ID = 976, SensitiveWord = "炸广州"}
  986. self.datas[977] = {ID = 977, SensitiveWord = "炸立交"}
  987. self.datas[978] = {ID = 978, SensitiveWord = "炸药的制"}
  988. self.datas[979] = {ID = 979, SensitiveWord = "炸药配"}
  989. self.datas[980] = {ID = 980, SensitiveWord = "炸药制"}
  990. self.datas[981] = {ID = 981, SensitiveWord = "张春桥"}
  991. self.datas[982] = {ID = 982, SensitiveWord = "找枪手"}
  992. self.datas[983] = {ID = 983, SensitiveWord = "找援交"}
  993. self.datas[984] = {ID = 984, SensitiveWord = "找政法委副"}
  994. self.datas[985] = {ID = 985, SensitiveWord = "赵紫阳"}
  995. self.datas[986] = {ID = 986, SensitiveWord = "针刺案"}
  996. self.datas[987] = {ID = 987, SensitiveWord = "针刺伤"}
  997. self.datas[988] = {ID = 988, SensitiveWord = "针刺事"}
  998. self.datas[989] = {ID = 989, SensitiveWord = "针刺死"}
  999. self.datas[990] = {ID = 990, SensitiveWord = "侦探设备"}
  1000. self.datas[991] = {ID = 991, SensitiveWord = "真钱斗地"}
  1001. self.datas[992] = {ID = 992, SensitiveWord = "真钱投注"}
  1002. self.datas[993] = {ID = 993, SensitiveWord = "真善忍"}
  1003. self.datas[994] = {ID = 994, SensitiveWord = "真实文凭"}
  1004. self.datas[995] = {ID = 995, SensitiveWord = "真实资格"}
  1005. self.datas[996] = {ID = 996, SensitiveWord = "震惊一个民"}
  1006. self.datas[997] = {ID = 997, SensitiveWord = "震其国土"}
  1007. self.datas[998] = {ID = 998, SensitiveWord = "证到付款"}
  1008. self.datas[999] = {ID = 999, SensitiveWord = "证件办"}
  1009. self.datas[1000] = {ID = 1000, SensitiveWord = "证件集团"}
  1010. self.datas[1001] = {ID = 1001, SensitiveWord = "证生成器"}
  1011. self.datas[1002] = {ID = 1002, SensitiveWord = "证书办"}
  1012. self.datas[1003] = {ID = 1003, SensitiveWord = "证一次性"}
  1013. self.datas[1004] = {ID = 1004, SensitiveWord = "政府操"}
  1014. self.datas[1005] = {ID = 1005, SensitiveWord = "政论区"}
  1015. self.datas[1006] = {ID = 1006, SensitiveWord = "證件"}
  1016. self.datas[1007] = {ID = 1007, SensitiveWord = "植物冰"}
  1017. self.datas[1008] = {ID = 1008, SensitiveWord = "殖器护"}
  1018. self.datas[1009] = {ID = 1009, SensitiveWord = "指纹考勤"}
  1019. self.datas[1010] = {ID = 1010, SensitiveWord = "指纹膜"}
  1020. self.datas[1011] = {ID = 1011, SensitiveWord = "指纹套"}
  1021. self.datas[1012] = {ID = 1012, SensitiveWord = "至国家高"}
  1022. self.datas[1013] = {ID = 1013, SensitiveWord = "志不愿跟"}
  1023. self.datas[1014] = {ID = 1014, SensitiveWord = "制服诱"}
  1024. self.datas[1015] = {ID = 1015, SensitiveWord = "制手枪"}
  1025. self.datas[1016] = {ID = 1016, SensitiveWord = "制证定金"}
  1026. self.datas[1017] = {ID = 1017, SensitiveWord = "制作证件"}
  1027. self.datas[1018] = {ID = 1018, SensitiveWord = "中的班禅"}
  1028. self.datas[1019] = {ID = 1019, SensitiveWord = "中共黑"}
  1029. self.datas[1020] = {ID = 1020, SensitiveWord = "中国不强"}
  1030. self.datas[1021] = {ID = 1021, SensitiveWord = "种公务员"}
  1031. self.datas[1022] = {ID = 1022, SensitiveWord = "种学历证"}
  1032. self.datas[1023] = {ID = 1023, SensitiveWord = "众像羔"}
  1033. self.datas[1024] = {ID = 1024, SensitiveWord = "州惨案"}
  1034. self.datas[1025] = {ID = 1025, SensitiveWord = "州大批贪"}
  1035. self.datas[1026] = {ID = 1026, SensitiveWord = "州三箭"}
  1036. self.datas[1027] = {ID = 1027, SensitiveWord = "宙最高法"}
  1037. self.datas[1028] = {ID = 1028, SensitiveWord = "昼将近"}
  1038. self.datas[1029] = {ID = 1029, SensitiveWord = "主席忏"}
  1039. self.datas[1030] = {ID = 1030, SensitiveWord = "住英国房"}
  1040. self.datas[1031] = {ID = 1031, SensitiveWord = "助考"}
  1041. self.datas[1032] = {ID = 1032, SensitiveWord = "助考网"}
  1042. self.datas[1033] = {ID = 1033, SensitiveWord = "专业办理"}
  1043. self.datas[1034] = {ID = 1034, SensitiveWord = "专业代"}
  1044. self.datas[1035] = {ID = 1035, SensitiveWord = "专业代写"}
  1045. self.datas[1036] = {ID = 1036, SensitiveWord = "专业助"}
  1046. self.datas[1037] = {ID = 1037, SensitiveWord = "转是政府"}
  1047. self.datas[1038] = {ID = 1038, SensitiveWord = "赚钱资料"}
  1048. self.datas[1039] = {ID = 1039, SensitiveWord = "装弹甲"}
  1049. self.datas[1040] = {ID = 1040, SensitiveWord = "装枪套"}
  1050. self.datas[1041] = {ID = 1041, SensitiveWord = "装消音"}
  1051. self.datas[1042] = {ID = 1042, SensitiveWord = "着护士的胸"}
  1052. self.datas[1043] = {ID = 1043, SensitiveWord = "着涛哥"}
  1053. self.datas[1044] = {ID = 1044, SensitiveWord = "姿不对死"}
  1054. self.datas[1045] = {ID = 1045, SensitiveWord = "资格證"}
  1055. self.datas[1046] = {ID = 1046, SensitiveWord = "资料泄"}
  1056. self.datas[1047] = {ID = 1047, SensitiveWord = "梓健特药"}
  1057. self.datas[1048] = {ID = 1048, SensitiveWord = "字牌汽"}
  1058. self.datas[1049] = {ID = 1049, SensitiveWord = "自己找枪"}
  1059. self.datas[1050] = {ID = 1050, SensitiveWord = "自慰用"}
  1060. self.datas[1051] = {ID = 1051, SensitiveWord = "自由圣"}
  1061. self.datas[1052] = {ID = 1052, SensitiveWord = "自由亚"}
  1062. self.datas[1053] = {ID = 1053, SensitiveWord = "总会美女"}
  1063. self.datas[1054] = {ID = 1054, SensitiveWord = "足球玩法"}
  1064. self.datas[1055] = {ID = 1055, SensitiveWord = "最牛公安"}
  1065. self.datas[1056] = {ID = 1056, SensitiveWord = "醉钢枪"}
  1066. self.datas[1057] = {ID = 1057, SensitiveWord = "醉迷药"}
  1067. self.datas[1058] = {ID = 1058, SensitiveWord = "醉乙醚"}
  1068. self.datas[1059] = {ID = 1059, SensitiveWord = "尊爵粉"}
  1069. self.datas[1060] = {ID = 1060, SensitiveWord = "左转是政"}
  1070. self.datas[1061] = {ID = 1061, SensitiveWord = "作弊器"}
  1071. self.datas[1062] = {ID = 1062, SensitiveWord = "作各种证"}
  1072. self.datas[1063] = {ID = 1063, SensitiveWord = "作硝化甘"}
  1073. self.datas[1064] = {ID = 1064, SensitiveWord = "唑仑"}
  1074. self.datas[1065] = {ID = 1065, SensitiveWord = "做爱小"}
  1075. self.datas[1066] = {ID = 1066, SensitiveWord = "做原子弹"}
  1076. self.datas[1067] = {ID = 1067, SensitiveWord = "做证件"}
  1077. self.datas[1068] = {ID = 1068, SensitiveWord = "习近平"}
  1078. self.datas[1069] = {ID = 1069, SensitiveWord = "刁近平"}
  1079. self.datas[1070] = {ID = 1070, SensitiveWord = "李克强"}
  1080. self.datas[1071] = {ID = 1071, SensitiveWord = "张德江"}
  1081. self.datas[1072] = {ID = 1072, SensitiveWord = "俞正声"}
  1082. self.datas[1073] = {ID = 1073, SensitiveWord = "刘云山"}
  1083. self.datas[1074] = {ID = 1074, SensitiveWord = "王岐山"}
  1084. self.datas[1075] = {ID = 1075, SensitiveWord = "张高丽"}
  1085. self.datas[1076] = {ID = 1076, SensitiveWord = "党中央"}
  1086. self.datas[1077] = {ID = 1077, SensitiveWord = "毛泽东"}
  1087. self.datas[1078] = {ID = 1078, SensitiveWord = "邓小平"}
  1088. self.datas[1079] = {ID = 1079, SensitiveWord = "江泽民"}
  1089. self.datas[1080] = {ID = 1080, SensitiveWord = "习近平"}
  1090. self.datas[1081] = {ID = 1081, SensitiveWord = "台独"}
  1091. self.datas[1082] = {ID = 1082, SensitiveWord = "藏独"}
  1092. self.datas[1083] = {ID = 1083, SensitiveWord = "法轮功"}
  1093. self.datas[1084] = {ID = 1084, SensitiveWord = "我日"}
  1094. self.datas[1085] = {ID = 1085, SensitiveWord = "我操"}
  1095. self.datas[1086] = {ID = 1086, SensitiveWord = "系统"}
  1096. self.datas[1087] = {ID = 1087, SensitiveWord = "电玩城"}
  1097. self.datas[1088] = {ID = 1088, SensitiveWord = "运营"}
  1098. self.datas[1089] = {ID = 1089, SensitiveWord = "团队"}
  1099. self.datas[1090] = {ID = 1090, SensitiveWord = "客服"}
  1100. self.datas[1091] = {ID = 1091, SensitiveWord = "毛泽东"}
  1101. self.datas[1092] = {ID = 1092, SensitiveWord = "周恩来"}
  1102. self.datas[1093] = {ID = 1093, SensitiveWord = "刘少奇"}
  1103. self.datas[1094] = {ID = 1094, SensitiveWord = "朱德"}
  1104. self.datas[1095] = {ID = 1095, SensitiveWord = "彭德怀"}
  1105. self.datas[1096] = {ID = 1096, SensitiveWord = "林彪"}
  1106. self.datas[1097] = {ID = 1097, SensitiveWord = "刘伯承"}
  1107. self.datas[1098] = {ID = 1098, SensitiveWord = "陈毅"}
  1108. self.datas[1099] = {ID = 1099, SensitiveWord = "贺龙"}
  1109. self.datas[1100] = {ID = 1100, SensitiveWord = "聂荣臻"}
  1110. self.datas[1101] = {ID = 1101, SensitiveWord = "徐向前"}
  1111. self.datas[1102] = {ID = 1102, SensitiveWord = "罗荣桓"}
  1112. self.datas[1103] = {ID = 1103, SensitiveWord = "叶剑英"}
  1113. self.datas[1104] = {ID = 1104, SensitiveWord = "李大钊"}
  1114. self.datas[1105] = {ID = 1105, SensitiveWord = "陈独秀"}
  1115. self.datas[1106] = {ID = 1106, SensitiveWord = "孙中山"}
  1116. self.datas[1107] = {ID = 1107, SensitiveWord = "孙文"}
  1117. self.datas[1108] = {ID = 1108, SensitiveWord = "孙逸仙"}
  1118. self.datas[1109] = {ID = 1109, SensitiveWord = "邓小平"}
  1119. self.datas[1110] = {ID = 1110, SensitiveWord = "陈云"}
  1120. self.datas[1111] = {ID = 1111, SensitiveWord = "江泽民"}
  1121. self.datas[1112] = {ID = 1112, SensitiveWord = "李鹏"}
  1122. self.datas[1113] = {ID = 1113, SensitiveWord = "朱镕基"}
  1123. self.datas[1114] = {ID = 1114, SensitiveWord = "李瑞环"}
  1124. self.datas[1115] = {ID = 1115, SensitiveWord = "尉健行"}
  1125. self.datas[1116] = {ID = 1116, SensitiveWord = "李岚清"}
  1126. self.datas[1117] = {ID = 1117, SensitiveWord = "胡锦涛"}
  1127. self.datas[1118] = {ID = 1118, SensitiveWord = "罗干"}
  1128. self.datas[1119] = {ID = 1119, SensitiveWord = "温家宝"}
  1129. self.datas[1120] = {ID = 1120, SensitiveWord = "吴邦国"}
  1130. self.datas[1121] = {ID = 1121, SensitiveWord = "曾庆红"}
  1131. self.datas[1122] = {ID = 1122, SensitiveWord = "贾庆林"}
  1132. self.datas[1123] = {ID = 1123, SensitiveWord = "黄菊"}
  1133. self.datas[1124] = {ID = 1124, SensitiveWord = "吴官正"}
  1134. self.datas[1125] = {ID = 1125, SensitiveWord = "李长春"}
  1135. self.datas[1126] = {ID = 1126, SensitiveWord = "吴仪"}
  1136. self.datas[1127] = {ID = 1127, SensitiveWord = "回良玉"}
  1137. self.datas[1128] = {ID = 1128, SensitiveWord = "曾培炎"}
  1138. self.datas[1129] = {ID = 1129, SensitiveWord = "周永康"}
  1139. self.datas[1130] = {ID = 1130, SensitiveWord = "曹刚川"}
  1140. self.datas[1131] = {ID = 1131, SensitiveWord = "唐家璇"}
  1141. self.datas[1132] = {ID = 1132, SensitiveWord = "华建敏"}
  1142. self.datas[1133] = {ID = 1133, SensitiveWord = "陈至立"}
  1143. self.datas[1134] = {ID = 1134, SensitiveWord = "陈良宇"}
  1144. self.datas[1135] = {ID = 1135, SensitiveWord = "张德江"}
  1145. self.datas[1136] = {ID = 1136, SensitiveWord = "张立昌"}
  1146. self.datas[1137] = {ID = 1137, SensitiveWord = "张德江"}
  1147. self.datas[1138] = {ID = 1138, SensitiveWord = "俞正声"}
  1148. self.datas[1139] = {ID = 1139, SensitiveWord = "刘云山"}
  1149. self.datas[1140] = {ID = 1140, SensitiveWord = "王岐山"}
  1150. self.datas[1141] = {ID = 1141, SensitiveWord = "张高丽"}
  1151. self.datas[1142] = {ID = 1142, SensitiveWord = "王乐泉"}
  1152. self.datas[1143] = {ID = 1143, SensitiveWord = "刘云山"}
  1153. self.datas[1144] = {ID = 1144, SensitiveWord = "王刚"}
  1154. self.datas[1145] = {ID = 1145, SensitiveWord = "王兆国"}
  1155. self.datas[1146] = {ID = 1146, SensitiveWord = "刘淇"}
  1156. self.datas[1147] = {ID = 1147, SensitiveWord = "贺国强"}
  1157. self.datas[1148] = {ID = 1148, SensitiveWord = "郭伯雄"}
  1158. self.datas[1149] = {ID = 1149, SensitiveWord = "胡耀邦"}
  1159. self.datas[1150] = {ID = 1150, SensitiveWord = "王乐泉"}
  1160. self.datas[1151] = {ID = 1151, SensitiveWord = "王兆国"}
  1161. self.datas[1152] = {ID = 1152, SensitiveWord = "周永康"}
  1162. self.datas[1153] = {ID = 1153, SensitiveWord = "李登辉"}
  1163. self.datas[1154] = {ID = 1154, SensitiveWord = "连战"}
  1164. self.datas[1155] = {ID = 1155, SensitiveWord = "陈水扁"}
  1165. self.datas[1156] = {ID = 1156, SensitiveWord = "宋楚瑜"}
  1166. self.datas[1157] = {ID = 1157, SensitiveWord = "吕秀莲"}
  1167. self.datas[1158] = {ID = 1158, SensitiveWord = "郁慕明"}
  1168. self.datas[1159] = {ID = 1159, SensitiveWord = "蒋介石"}
  1169. self.datas[1160] = {ID = 1160, SensitiveWord = "蒋中正"}
  1170. self.datas[1161] = {ID = 1161, SensitiveWord = "蒋经国"}
  1171. self.datas[1162] = {ID = 1162, SensitiveWord = "马英九"}
  1172. self.datas[1163] = {ID = 1163, SensitiveWord = "习近平"}
  1173. self.datas[1164] = {ID = 1164, SensitiveWord = "李克强"}
  1174. self.datas[1165] = {ID = 1165, SensitiveWord = "吴帮国"}
  1175. self.datas[1166] = {ID = 1166, SensitiveWord = "无帮国"}
  1176. self.datas[1167] = {ID = 1167, SensitiveWord = "无邦国"}
  1177. self.datas[1168] = {ID = 1168, SensitiveWord = "无帮过"}
  1178. self.datas[1169] = {ID = 1169, SensitiveWord = "瘟家宝"}
  1179. self.datas[1170] = {ID = 1170, SensitiveWord = "假庆林"}
  1180. self.datas[1171] = {ID = 1171, SensitiveWord = "甲庆林"}
  1181. self.datas[1172] = {ID = 1172, SensitiveWord = "假青林"}
  1182. self.datas[1173] = {ID = 1173, SensitiveWord = "离长春"}
  1183. self.datas[1174] = {ID = 1174, SensitiveWord = "习远平"}
  1184. self.datas[1175] = {ID = 1175, SensitiveWord = "袭近平"}
  1185. self.datas[1176] = {ID = 1176, SensitiveWord = "李磕墙"}
  1186. self.datas[1177] = {ID = 1177, SensitiveWord = "贺过墙"}
  1187. self.datas[1178] = {ID = 1178, SensitiveWord = "和锅枪"}
  1188. self.datas[1179] = {ID = 1179, SensitiveWord = "粥永康"}
  1189. self.datas[1180] = {ID = 1180, SensitiveWord = "轴永康"}
  1190. self.datas[1181] = {ID = 1181, SensitiveWord = "肘永康"}
  1191. self.datas[1182] = {ID = 1182, SensitiveWord = "周健康"}
  1192. self.datas[1183] = {ID = 1183, SensitiveWord = "粥健康"}
  1193. self.datas[1184] = {ID = 1184, SensitiveWord = "周小康"}
  1194. self.datas[1185] = {ID = 1185, SensitiveWord = "李肇星务"}
  1195. self.datas[1186] = {ID = 1186, SensitiveWord = "国务委员"}
  1196. self.datas[1187] = {ID = 1187, SensitiveWord = "国务院"}
  1197. self.datas[1188] = {ID = 1188, SensitiveWord = "中央委员"}
  1198. self.datas[1189] = {ID = 1189, SensitiveWord = "发改委"}
  1199. self.datas[1190] = {ID = 1190, SensitiveWord = "国家发展和改革委员会"}
  1200. self.datas[1191] = {ID = 1191, SensitiveWord = "发展和改革委员会"}
  1201. self.datas[1192] = {ID = 1192, SensitiveWord = "国家发展与改革委员会"}
  1202. self.datas[1193] = {ID = 1193, SensitiveWord = "发展与改革委员会"}
  1203. self.datas[1194] = {ID = 1194, SensitiveWord = "薄熙来"}
  1204. self.datas[1195] = {ID = 1195, SensitiveWord = "温家饱"}
  1205. self.datas[1196] = {ID = 1196, SensitiveWord = "温假饱"}
  1206. self.datas[1197] = {ID = 1197, SensitiveWord = "胡惊涛"}
  1207. self.datas[1198] = {ID = 1198, SensitiveWord = "习仲勋"}
  1208. self.datas[1199] = {ID = 1199, SensitiveWord = "华国锋"}
  1209. self.datas[1200] = {ID = 1200, SensitiveWord = "徐才厚"}
  1210. self.datas[1201] = {ID = 1201, SensitiveWord = "王立军"}
  1211. self.datas[1202] = {ID = 1202, SensitiveWord = "彭丽媛"}
  1212. self.datas[1203] = {ID = 1203, SensitiveWord = "令计划"}
  1213. self.datas[1204] = {ID = 1204, SensitiveWord = "蔡英文"}
  1214. self.datas[1205] = {ID = 1205, SensitiveWord = "布什"}
  1215. self.datas[1206] = {ID = 1206, SensitiveWord = "布莱尔"}
  1216. self.datas[1207] = {ID = 1207, SensitiveWord = "小泉"}
  1217. self.datas[1208] = {ID = 1208, SensitiveWord = "纯一郎"}
  1218. self.datas[1209] = {ID = 1209, SensitiveWord = "萨马兰奇"}
  1219. self.datas[1210] = {ID = 1210, SensitiveWord = "安南"}
  1220. self.datas[1211] = {ID = 1211, SensitiveWord = "阿拉法特"}
  1221. self.datas[1212] = {ID = 1212, SensitiveWord = "普京"}
  1222. self.datas[1213] = {ID = 1213, SensitiveWord = "默克尔"}
  1223. self.datas[1214] = {ID = 1214, SensitiveWord = "克林顿"}
  1224. self.datas[1215] = {ID = 1215, SensitiveWord = "里根"}
  1225. self.datas[1216] = {ID = 1216, SensitiveWord = "尼克松"}
  1226. self.datas[1217] = {ID = 1217, SensitiveWord = "林肯"}
  1227. self.datas[1218] = {ID = 1218, SensitiveWord = "杜鲁门"}
  1228. self.datas[1219] = {ID = 1219, SensitiveWord = "赫鲁晓夫"}
  1229. self.datas[1220] = {ID = 1220, SensitiveWord = "列宁"}
  1230. self.datas[1221] = {ID = 1221, SensitiveWord = "斯大林"}
  1231. self.datas[1222] = {ID = 1222, SensitiveWord = "马克思"}
  1232. self.datas[1223] = {ID = 1223, SensitiveWord = "恩格斯"}
  1233. self.datas[1224] = {ID = 1224, SensitiveWord = "金正日"}
  1234. self.datas[1225] = {ID = 1225, SensitiveWord = "金日成"}
  1235. self.datas[1226] = {ID = 1226, SensitiveWord = "萨达姆"}
  1236. self.datas[1227] = {ID = 1227, SensitiveWord = "胡志明"}
  1237. self.datas[1228] = {ID = 1228, SensitiveWord = "西哈努克"}
  1238. self.datas[1229] = {ID = 1229, SensitiveWord = "希拉克"}
  1239. self.datas[1230] = {ID = 1230, SensitiveWord = "撒切尔"}
  1240. self.datas[1231] = {ID = 1231, SensitiveWord = "阿罗约"}
  1241. self.datas[1232] = {ID = 1232, SensitiveWord = "曼德拉"}
  1242. self.datas[1233] = {ID = 1233, SensitiveWord = "卡斯特罗"}
  1243. self.datas[1234] = {ID = 1234, SensitiveWord = "富兰克林"}
  1244. self.datas[1235] = {ID = 1235, SensitiveWord = "华盛顿"}
  1245. self.datas[1236] = {ID = 1236, SensitiveWord = "艾森豪威尔"}
  1246. self.datas[1237] = {ID = 1237, SensitiveWord = "拿破仑"}
  1247. self.datas[1238] = {ID = 1238, SensitiveWord = "亚历山大"}
  1248. self.datas[1239] = {ID = 1239, SensitiveWord = "路易"}
  1249. self.datas[1240] = {ID = 1240, SensitiveWord = "拉姆斯菲尔德"}
  1250. self.datas[1241] = {ID = 1241, SensitiveWord = "劳拉"}
  1251. self.datas[1242] = {ID = 1242, SensitiveWord = "鲍威尔"}
  1252. self.datas[1243] = {ID = 1243, SensitiveWord = "奥巴马"}
  1253. self.datas[1244] = {ID = 1244, SensitiveWord = "默罕默德"}
  1254. self.datas[1245] = {ID = 1245, SensitiveWord = "本拉登"}
  1255. self.datas[1246] = {ID = 1246, SensitiveWord = "奥马尔"}
  1256. self.datas[1247] = {ID = 1247, SensitiveWord = "柴玲"}
  1257. self.datas[1248] = {ID = 1248, SensitiveWord = "达赖喇嘛"}
  1258. self.datas[1249] = {ID = 1249, SensitiveWord = "江青"}
  1259. self.datas[1250] = {ID = 1250, SensitiveWord = "张春桥"}
  1260. self.datas[1251] = {ID = 1251, SensitiveWord = "姚文元"}
  1261. self.datas[1252] = {ID = 1252, SensitiveWord = "王洪文"}
  1262. self.datas[1253] = {ID = 1253, SensitiveWord = "东条英机"}
  1263. self.datas[1254] = {ID = 1254, SensitiveWord = "希特勒"}
  1264. self.datas[1255] = {ID = 1255, SensitiveWord = "墨索里尼"}
  1265. self.datas[1256] = {ID = 1256, SensitiveWord = "冈村秀树"}
  1266. self.datas[1257] = {ID = 1257, SensitiveWord = "冈村宁次"}
  1267. self.datas[1258] = {ID = 1258, SensitiveWord = "高丽朴"}
  1268. self.datas[1259] = {ID = 1259, SensitiveWord = "赵紫阳"}
  1269. self.datas[1260] = {ID = 1260, SensitiveWord = "王丹"}
  1270. self.datas[1261] = {ID = 1261, SensitiveWord = "沃尔开西"}
  1271. self.datas[1262] = {ID = 1262, SensitiveWord = "李洪志"}
  1272. self.datas[1263] = {ID = 1263, SensitiveWord = "李大师"}
  1273. self.datas[1264] = {ID = 1264, SensitiveWord = "赖昌星"}
  1274. self.datas[1265] = {ID = 1265, SensitiveWord = "马加爵"}
  1275. self.datas[1266] = {ID = 1266, SensitiveWord = "班禅"}
  1276. self.datas[1267] = {ID = 1267, SensitiveWord = "额尔德尼"}
  1277. self.datas[1268] = {ID = 1268, SensitiveWord = "山本五十六"}
  1278. self.datas[1269] = {ID = 1269, SensitiveWord = "阿扁"}
  1279. self.datas[1270] = {ID = 1270, SensitiveWord = "阿扁万岁"}
  1280. self.datas[1271] = {ID = 1271, SensitiveWord = "热那亚"}
  1281. self.datas[1272] = {ID = 1272, SensitiveWord = "热比娅"}
  1282. self.datas[1273] = {ID = 1273, SensitiveWord = "尖阁列岛"}
  1283. self.datas[1274] = {ID = 1274, SensitiveWord = "实际神"}
  1284. self.datas[1275] = {ID = 1275, SensitiveWord = "东方闪电"}
  1285. self.datas[1276] = {ID = 1276, SensitiveWord = "全能神"}
  1286. self.datas[1277] = {ID = 1277, SensitiveWord = "安倍晋三"}
  1287. self.datas[1278] = {ID = 1278, SensitiveWord = "金正恩"}
  1288. self.datas[1279] = {ID = 1279, SensitiveWord = "恐怖组织"}
  1289. self.datas[1280] = {ID = 1280, SensitiveWord = "买毒品"}
  1290. self.datas[1281] = {ID = 1281, SensitiveWord = "卖毒品"}
  1291. self.datas[1282] = {ID = 1282, SensitiveWord = "茉莉花"}
  1292. self.datas[1283] = {ID = 1283, SensitiveWord = "钓鱼岛"}
  1293. self.datas[1284] = {ID = 1284, SensitiveWord = "钓鱼岛不属于中国"}
  1294. self.datas[1285] = {ID = 1285, SensitiveWord = "突尼斯"}
  1295. self.datas[1286] = {ID = 1286, SensitiveWord = "gongchandang"}
  1296. self.datas[1287] = {ID = 1287, SensitiveWord = "新闻出版总署"}
  1297. self.datas[1288] = {ID = 1288, SensitiveWord = "新闻出版署"}
  1298. self.datas[1289] = {ID = 1289, SensitiveWord = "处女"}
  1299. self.datas[1290] = {ID = 1290, SensitiveWord = "房事"}
  1300. self.datas[1291] = {ID = 1291, SensitiveWord = "押大"}
  1301. self.datas[1292] = {ID = 1292, SensitiveWord = "押小"}
  1302. self.datas[1293] = {ID = 1293, SensitiveWord = "坐台"}
  1303. self.datas[1294] = {ID = 1294, SensitiveWord = "猥亵"}
  1304. self.datas[1295] = {ID = 1295, SensitiveWord = "猥琐"}
  1305. self.datas[1296] = {ID = 1296, SensitiveWord = "肉欲"}
  1306. self.datas[1297] = {ID = 1297, SensitiveWord = "肉体"}
  1307. self.datas[1298] = {ID = 1298, SensitiveWord = "排泄"}
  1308. self.datas[1299] = {ID = 1299, SensitiveWord = "卵子"}
  1309. self.datas[1300] = {ID = 1300, SensitiveWord = "西藏314事件"}
  1310. self.datas[1301] = {ID = 1301, SensitiveWord = "新疆7.5事件"}
  1311. self.datas[1302] = {ID = 1302, SensitiveWord = "新疆国"}
  1312. self.datas[1303] = {ID = 1303, SensitiveWord = "党中央"}
  1313. self.datas[1304] = {ID = 1304, SensitiveWord = "新闻管制"}
  1314. self.datas[1305] = {ID = 1305, SensitiveWord = "一边一国"}
  1315. self.datas[1306] = {ID = 1306, SensitiveWord = "两国论"}
  1316. self.datas[1307] = {ID = 1307, SensitiveWord = "分裂中国"}
  1317. self.datas[1308] = {ID = 1308, SensitiveWord = "革命"}
  1318. self.datas[1309] = {ID = 1309, SensitiveWord = "茉莉花"}
  1319. self.datas[1310] = {ID = 1310, SensitiveWord = "突尼斯"}
  1320. self.datas[1311] = {ID = 1311, SensitiveWord = "国内动态详情"}
  1321. self.datas[1312] = {ID = 1312, SensitiveWord = "回回"}
  1322. self.datas[1313] = {ID = 1313, SensitiveWord = "六四"}
  1323. self.datas[1314] = {ID = 1314, SensitiveWord = "六四运动"}
  1324. self.datas[1315] = {ID = 1315, SensitiveWord = "美国之音"}
  1325. self.datas[1316] = {ID = 1316, SensitiveWord = "密宗"}
  1326. self.datas[1317] = {ID = 1317, SensitiveWord = "民国"}
  1327. self.datas[1318] = {ID = 1318, SensitiveWord = "民进党"}
  1328. self.datas[1319] = {ID = 1319, SensitiveWord = "民运"}
  1329. self.datas[1320] = {ID = 1320, SensitiveWord = "民主"}
  1330. self.datas[1321] = {ID = 1321, SensitiveWord = "民主潮"}
  1331. self.datas[1322] = {ID = 1322, SensitiveWord = "摩门教"}
  1332. self.datas[1323] = {ID = 1323, SensitiveWord = "纳粹"}
  1333. self.datas[1324] = {ID = 1324, SensitiveWord = "南华早报"}
  1334. self.datas[1325] = {ID = 1325, SensitiveWord = "南蛮"}
  1335. self.datas[1326] = {ID = 1326, SensitiveWord = "明慧网"}
  1336. self.datas[1327] = {ID = 1327, SensitiveWord = "起义"}
  1337. self.datas[1328] = {ID = 1328, SensitiveWord = "亲民党"}
  1338. self.datas[1329] = {ID = 1329, SensitiveWord = "瘸腿帮"}
  1339. self.datas[1330] = {ID = 1330, SensitiveWord = "人民报"}
  1340. self.datas[1331] = {ID = 1331, SensitiveWord = "法轮功"}
  1341. self.datas[1332] = {ID = 1332, SensitiveWord = "法轮大法"}
  1342. self.datas[1333] = {ID = 1333, SensitiveWord = "打倒共产党"}
  1343. self.datas[1334] = {ID = 1334, SensitiveWord = "台独万岁"}
  1344. self.datas[1335] = {ID = 1335, SensitiveWord = "圣战"}
  1345. self.datas[1336] = {ID = 1336, SensitiveWord = "示威"}
  1346. self.datas[1337] = {ID = 1337, SensitiveWord = "台独"}
  1347. self.datas[1338] = {ID = 1338, SensitiveWord = "台独分子"}
  1348. self.datas[1339] = {ID = 1339, SensitiveWord = "台联"}
  1349. self.datas[1340] = {ID = 1340, SensitiveWord = "台湾民国"}
  1350. self.datas[1341] = {ID = 1341, SensitiveWord = "台湾岛国"}
  1351. self.datas[1342] = {ID = 1342, SensitiveWord = "台湾国"}
  1352. self.datas[1343] = {ID = 1343, SensitiveWord = "台湾独立"}
  1353. self.datas[1344] = {ID = 1344, SensitiveWord = "太子党"}
  1354. self.datas[1345] = {ID = 1345, SensitiveWord = "天安门事件"}
  1355. self.datas[1346] = {ID = 1346, SensitiveWord = "屠杀"}
  1356. self.datas[1347] = {ID = 1347, SensitiveWord = "小泉"}
  1357. self.datas[1348] = {ID = 1348, SensitiveWord = "新党"}
  1358. self.datas[1349] = {ID = 1349, SensitiveWord = "新疆独立"}
  1359. self.datas[1350] = {ID = 1350, SensitiveWord = "新疆分裂"}
  1360. self.datas[1351] = {ID = 1351, SensitiveWord = "新疆国"}
  1361. self.datas[1352] = {ID = 1352, SensitiveWord = "疆独"}
  1362. self.datas[1353] = {ID = 1353, SensitiveWord = "西藏独立"}
  1363. self.datas[1354] = {ID = 1354, SensitiveWord = "西藏分裂"}
  1364. self.datas[1355] = {ID = 1355, SensitiveWord = "西藏国"}
  1365. self.datas[1356] = {ID = 1356, SensitiveWord = "藏独"}
  1366. self.datas[1357] = {ID = 1357, SensitiveWord = "藏青会"}
  1367. self.datas[1358] = {ID = 1358, SensitiveWord = "藏妇会"}
  1368. self.datas[1359] = {ID = 1359, SensitiveWord = "学潮"}
  1369. self.datas[1360] = {ID = 1360, SensitiveWord = "学运"}
  1370. self.datas[1361] = {ID = 1361, SensitiveWord = "一党专政"}
  1371. self.datas[1362] = {ID = 1362, SensitiveWord = "一中一台"}
  1372. self.datas[1363] = {ID = 1363, SensitiveWord = "两个中国"}
  1373. self.datas[1364] = {ID = 1364, SensitiveWord = "一贯道"}
  1374. self.datas[1365] = {ID = 1365, SensitiveWord = "游行"}
  1375. self.datas[1366] = {ID = 1366, SensitiveWord = "造反"}
  1376. self.datas[1367] = {ID = 1367, SensitiveWord = "真善忍"}
  1377. self.datas[1368] = {ID = 1368, SensitiveWord = "镇压"}
  1378. self.datas[1369] = {ID = 1369, SensitiveWord = "政变"}
  1379. self.datas[1370] = {ID = 1370, SensitiveWord = "政治"}
  1380. self.datas[1371] = {ID = 1371, SensitiveWord = "政治反对派"}
  1381. self.datas[1372] = {ID = 1372, SensitiveWord = "政治犯"}
  1382. self.datas[1373] = {ID = 1373, SensitiveWord = "中共"}
  1383. self.datas[1374] = {ID = 1374, SensitiveWord = "共产党"}
  1384. self.datas[1375] = {ID = 1375, SensitiveWord = "反党"}
  1385. self.datas[1376] = {ID = 1376, SensitiveWord = "反共"}
  1386. self.datas[1377] = {ID = 1377, SensitiveWord = "政府"}
  1387. self.datas[1378] = {ID = 1378, SensitiveWord = "民主党"}
  1388. self.datas[1379] = {ID = 1379, SensitiveWord = "中国之春"}
  1389. self.datas[1380] = {ID = 1380, SensitiveWord = "转法轮"}
  1390. self.datas[1381] = {ID = 1381, SensitiveWord = "自焚"}
  1391. self.datas[1382] = {ID = 1382, SensitiveWord = "共党"}
  1392. self.datas[1383] = {ID = 1383, SensitiveWord = "共匪"}
  1393. self.datas[1384] = {ID = 1384, SensitiveWord = "苏家屯"}
  1394. self.datas[1385] = {ID = 1385, SensitiveWord = "基地组织"}
  1395. self.datas[1386] = {ID = 1386, SensitiveWord = "塔利班"}
  1396. self.datas[1387] = {ID = 1387, SensitiveWord = "东亚病夫"}
  1397. self.datas[1388] = {ID = 1388, SensitiveWord = "支那"}
  1398. self.datas[1389] = {ID = 1389, SensitiveWord = "高治联"}
  1399. self.datas[1390] = {ID = 1390, SensitiveWord = "高自联"}
  1400. self.datas[1391] = {ID = 1391, SensitiveWord = "专政"}
  1401. self.datas[1392] = {ID = 1392, SensitiveWord = "专制"}
  1402. self.datas[1393] = {ID = 1393, SensitiveWord = "世界维吾尔大会"}
  1403. self.datas[1394] = {ID = 1394, SensitiveWord = "核工业基地"}
  1404. self.datas[1395] = {ID = 1395, SensitiveWord = "核武器"}
  1405. self.datas[1396] = {ID = 1396, SensitiveWord = "铀"}
  1406. self.datas[1397] = {ID = 1397, SensitiveWord = "原子弹"}
  1407. self.datas[1398] = {ID = 1398, SensitiveWord = "氢弹"}
  1408. self.datas[1399] = {ID = 1399, SensitiveWord = "导弹"}
  1409. self.datas[1400] = {ID = 1400, SensitiveWord = "核潜艇"}
  1410. self.datas[1401] = {ID = 1401, SensitiveWord = "大参考"}
  1411. self.datas[1402] = {ID = 1402, SensitiveWord = "小参考"}
  1412. self.datas[1403] = {ID = 1403, SensitiveWord = "国内动态清样"}
  1413. self.datas[1404] = {ID = 1404, SensitiveWord = "全能教"}
  1414. self.datas[1405] = {ID = 1405, SensitiveWord = "新疆恐怖"}
  1415. self.datas[1406] = {ID = 1406, SensitiveWord = "台湾政府"}
  1416. self.datas[1407] = {ID = 1407, SensitiveWord = "新疆势力"}
  1417. self.datas[1408] = {ID = 1408, SensitiveWord = "新疆恐怖势力"}
  1418. self.datas[1409] = {ID = 1409, SensitiveWord = "新疆万岁"}
  1419. self.datas[1410] = {ID = 1410, SensitiveWord = "新疆"}
  1420. self.datas[1411] = {ID = 1411, SensitiveWord = "占中"}
  1421. self.datas[1412] = {ID = 1412, SensitiveWord = "占领中环"}
  1422. self.datas[1413] = {ID = 1413, SensitiveWord = "释迦牟尼"}
  1423. self.datas[1414] = {ID = 1414, SensitiveWord = "阿弥陀佛"}
  1424. self.datas[1415] = {ID = 1415, SensitiveWord = "多维"}
  1425. self.datas[1416] = {ID = 1416, SensitiveWord = "河殇"}
  1426. self.datas[1417] = {ID = 1417, SensitiveWord = "摩门教"}
  1427. self.datas[1418] = {ID = 1418, SensitiveWord = "穆罕默德"}
  1428. self.datas[1419] = {ID = 1419, SensitiveWord = "圣战"}
  1429. self.datas[1420] = {ID = 1420, SensitiveWord = "耶和华"}
  1430. self.datas[1421] = {ID = 1421, SensitiveWord = "耶稣"}
  1431. self.datas[1422] = {ID = 1422, SensitiveWord = "伊斯兰"}
  1432. self.datas[1423] = {ID = 1423, SensitiveWord = "真主安拉"}
  1433. self.datas[1424] = {ID = 1424, SensitiveWord = "白莲教"}
  1434. self.datas[1425] = {ID = 1425, SensitiveWord = "天主教"}
  1435. self.datas[1426] = {ID = 1426, SensitiveWord = "基督教"}
  1436. self.datas[1427] = {ID = 1427, SensitiveWord = "东正教"}
  1437. self.datas[1428] = {ID = 1428, SensitiveWord = "大法"}
  1438. self.datas[1429] = {ID = 1429, SensitiveWord = "法轮"}
  1439. self.datas[1430] = {ID = 1430, SensitiveWord = "法轮功"}
  1440. self.datas[1431] = {ID = 1431, SensitiveWord = "瘸腿帮"}
  1441. self.datas[1432] = {ID = 1432, SensitiveWord = "真理教"}
  1442. self.datas[1433] = {ID = 1433, SensitiveWord = "真善忍"}
  1443. self.datas[1434] = {ID = 1434, SensitiveWord = "转法轮"}
  1444. self.datas[1435] = {ID = 1435, SensitiveWord = "自焚"}
  1445. self.datas[1436] = {ID = 1436, SensitiveWord = "走向圆满"}
  1446. self.datas[1437] = {ID = 1437, SensitiveWord = "黄大仙"}
  1447. self.datas[1438] = {ID = 1438, SensitiveWord = "跳大神"}
  1448. self.datas[1439] = {ID = 1439, SensitiveWord = "神汉"}
  1449. self.datas[1440] = {ID = 1440, SensitiveWord = "神婆"}
  1450. self.datas[1441] = {ID = 1441, SensitiveWord = "真理教"}
  1451. self.datas[1442] = {ID = 1442, SensitiveWord = "大卫教"}
  1452. self.datas[1443] = {ID = 1443, SensitiveWord = "阎王"}
  1453. self.datas[1444] = {ID = 1444, SensitiveWord = "黑白无常"}
  1454. self.datas[1445] = {ID = 1445, SensitiveWord = "牛头马面"}
  1455. self.datas[1446] = {ID = 1446, SensitiveWord = "藏独"}
  1456. self.datas[1447] = {ID = 1447, SensitiveWord = "高丽棒子"}
  1457. self.datas[1448] = {ID = 1448, SensitiveWord = "疆独"}
  1458. self.datas[1449] = {ID = 1449, SensitiveWord = "蒙古鞑子"}
  1459. self.datas[1450] = {ID = 1450, SensitiveWord = "台独"}
  1460. self.datas[1451] = {ID = 1451, SensitiveWord = "台独分子"}
  1461. self.datas[1452] = {ID = 1452, SensitiveWord = "台联"}
  1462. self.datas[1453] = {ID = 1453, SensitiveWord = "台湾民国"}
  1463. self.datas[1454] = {ID = 1454, SensitiveWord = "西藏独立"}
  1464. self.datas[1455] = {ID = 1455, SensitiveWord = "新疆独立"}
  1465. self.datas[1456] = {ID = 1456, SensitiveWord = "南蛮"}
  1466. self.datas[1457] = {ID = 1457, SensitiveWord = "老毛子"}
  1467. self.datas[1458] = {ID = 1458, SensitiveWord = "回民吃猪肉"}
  1468. self.datas[1459] = {ID = 1459, SensitiveWord = "回民都是猪"}
  1469. self.datas[1460] = {ID = 1460, SensitiveWord = "k粉"}
  1470. self.datas[1461] = {ID = 1461, SensitiveWord = "古柯碱"}
  1471. self.datas[1462] = {ID = 1462, SensitiveWord = "谋杀"}
  1472. self.datas[1463] = {ID = 1463, SensitiveWord = "杀人"}
  1473. self.datas[1464] = {ID = 1464, SensitiveWord = "吸毒"}
  1474. self.datas[1465] = {ID = 1465, SensitiveWord = "贩毒"}
  1475. self.datas[1466] = {ID = 1466, SensitiveWord = "赌博"}
  1476. self.datas[1467] = {ID = 1467, SensitiveWord = "拐卖"}
  1477. self.datas[1468] = {ID = 1468, SensitiveWord = "走私"}
  1478. self.datas[1469] = {ID = 1469, SensitiveWord = "卖淫"}
  1479. self.datas[1470] = {ID = 1470, SensitiveWord = "造反"}
  1480. self.datas[1471] = {ID = 1471, SensitiveWord = "强奸"}
  1481. self.datas[1472] = {ID = 1472, SensitiveWord = "轮奸"}
  1482. self.datas[1473] = {ID = 1473, SensitiveWord = "抢劫"}
  1483. self.datas[1474] = {ID = 1474, SensitiveWord = "先奸后杀"}
  1484. self.datas[1475] = {ID = 1475, SensitiveWord = "押大"}
  1485. self.datas[1476] = {ID = 1476, SensitiveWord = "押小"}
  1486. self.datas[1477] = {ID = 1477, SensitiveWord = "押注"}
  1487. self.datas[1478] = {ID = 1478, SensitiveWord = "下注"}
  1488. self.datas[1479] = {ID = 1479, SensitiveWord = "抽头"}
  1489. self.datas[1480] = {ID = 1480, SensitiveWord = "坐庄"}
  1490. self.datas[1481] = {ID = 1481, SensitiveWord = "赌马"}
  1491. self.datas[1482] = {ID = 1482, SensitiveWord = "赌球"}
  1492. self.datas[1483] = {ID = 1483, SensitiveWord = "筹码"}
  1493. self.datas[1484] = {ID = 1484, SensitiveWord = "老虎机"}
  1494. self.datas[1485] = {ID = 1485, SensitiveWord = "轮盘赌"}
  1495. self.datas[1486] = {ID = 1486, SensitiveWord = "安非他命"}
  1496. self.datas[1487] = {ID = 1487, SensitiveWord = "大麻"}
  1497. self.datas[1488] = {ID = 1488, SensitiveWord = "可卡因"}
  1498. self.datas[1489] = {ID = 1489, SensitiveWord = "海洛因"}
  1499. self.datas[1490] = {ID = 1490, SensitiveWord = "冰毒"}
  1500. self.datas[1491] = {ID = 1491, SensitiveWord = "摇头丸"}
  1501. self.datas[1492] = {ID = 1492, SensitiveWord = "杜冷丁"}
  1502. self.datas[1493] = {ID = 1493, SensitiveWord = "鸦片"}
  1503. self.datas[1494] = {ID = 1494, SensitiveWord = "罂粟"}
  1504. self.datas[1495] = {ID = 1495, SensitiveWord = "迷幻药"}
  1505. self.datas[1496] = {ID = 1496, SensitiveWord = "白粉"}
  1506. self.datas[1497] = {ID = 1497, SensitiveWord = "嗑药"}
  1507. self.datas[1498] = {ID = 1498, SensitiveWord = "吸毒"}
  1508. self.datas[1499] = {ID = 1499, SensitiveWord = "冰毒"}
  1509. self.datas[1500] = {ID = 1500, SensitiveWord = "冰粉"}
  1510. self.datas[1501] = {ID = 1501, SensitiveWord = "牛B"}
  1511. self.datas[1502] = {ID = 1502, SensitiveWord = "牛比"}
  1512. self.datas[1503] = {ID = 1503, SensitiveWord = "J8"}
  1513. self.datas[1504] = {ID = 1504, SensitiveWord = "小姐兼职"}
  1514. self.datas[1505] = {ID = 1505, SensitiveWord = "交媾"}
  1515. self.datas[1506] = {ID = 1506, SensitiveWord = "毛片"}
  1516. self.datas[1507] = {ID = 1507, SensitiveWord = "黄片"}
  1517. self.datas[1508] = {ID = 1508, SensitiveWord = "交配"}
  1518. self.datas[1509] = {ID = 1509, SensitiveWord = "房事"}
  1519. self.datas[1510] = {ID = 1510, SensitiveWord = "性事"}
  1520. self.datas[1511] = {ID = 1511, SensitiveWord = "偷窥"}
  1521. self.datas[1512] = {ID = 1512, SensitiveWord = "马拉戈壁"}
  1522. self.datas[1513] = {ID = 1513, SensitiveWord = "AIDS"}
  1523. self.datas[1514] = {ID = 1514, SensitiveWord = "aids"}
  1524. self.datas[1515] = {ID = 1515, SensitiveWord = "Aids"}
  1525. self.datas[1516] = {ID = 1516, SensitiveWord = "DICK"}
  1526. self.datas[1517] = {ID = 1517, SensitiveWord = "dick"}
  1527. self.datas[1518] = {ID = 1518, SensitiveWord = "Dick"}
  1528. self.datas[1519] = {ID = 1519, SensitiveWord = "penis"}
  1529. self.datas[1520] = {ID = 1520, SensitiveWord = "sex"}
  1530. self.datas[1521] = {ID = 1521, SensitiveWord = "SM"}
  1531. self.datas[1522] = {ID = 1522, SensitiveWord = "屙"}
  1532. self.datas[1523] = {ID = 1523, SensitiveWord = "爱滋"}
  1533. self.datas[1524] = {ID = 1524, SensitiveWord = "淋病"}
  1534. self.datas[1525] = {ID = 1525, SensitiveWord = "梅毒"}
  1535. self.datas[1526] = {ID = 1526, SensitiveWord = "爱液"}
  1536. self.datas[1527] = {ID = 1527, SensitiveWord = "屄"}
  1537. self.datas[1528] = {ID = 1528, SensitiveWord = "逼"}
  1538. self.datas[1529] = {ID = 1529, SensitiveWord = "臭机八"}
  1539. self.datas[1530] = {ID = 1530, SensitiveWord = "臭鸡巴"}
  1540. self.datas[1531] = {ID = 1531, SensitiveWord = "吹喇叭"}
  1541. self.datas[1532] = {ID = 1532, SensitiveWord = "吹箫"}
  1542. self.datas[1533] = {ID = 1533, SensitiveWord = "催情药"}
  1543. self.datas[1534] = {ID = 1534, SensitiveWord = "屌"}
  1544. self.datas[1535] = {ID = 1535, SensitiveWord = "肛交"}
  1545. self.datas[1536] = {ID = 1536, SensitiveWord = "肛门"}
  1546. self.datas[1537] = {ID = 1537, SensitiveWord = "龟头"}
  1547. self.datas[1538] = {ID = 1538, SensitiveWord = "黄色"}
  1548. self.datas[1539] = {ID = 1539, SensitiveWord = "机八"}
  1549. self.datas[1540] = {ID = 1540, SensitiveWord = "机巴"}
  1550. self.datas[1541] = {ID = 1541, SensitiveWord = "鸡八"}
  1551. self.datas[1542] = {ID = 1542, SensitiveWord = "鸡巴"}
  1552. self.datas[1543] = {ID = 1543, SensitiveWord = "机掰"}
  1553. self.datas[1544] = {ID = 1544, SensitiveWord = "机巴"}
  1554. self.datas[1545] = {ID = 1545, SensitiveWord = "鸡叭"}
  1555. self.datas[1546] = {ID = 1546, SensitiveWord = "鸡鸡"}
  1556. self.datas[1547] = {ID = 1547, SensitiveWord = "鸡掰"}
  1557. self.datas[1548] = {ID = 1548, SensitiveWord = "鸡奸"}
  1558. self.datas[1549] = {ID = 1549, SensitiveWord = "妓女"}
  1559. self.datas[1550] = {ID = 1550, SensitiveWord = "奸"}
  1560. self.datas[1551] = {ID = 1551, SensitiveWord = "茎"}
  1561. self.datas[1552] = {ID = 1552, SensitiveWord = "精液"}
  1562. self.datas[1553] = {ID = 1553, SensitiveWord = "精子"}
  1563. self.datas[1554] = {ID = 1554, SensitiveWord = "尻"}
  1564. self.datas[1555] = {ID = 1555, SensitiveWord = "口交"}
  1565. self.datas[1556] = {ID = 1556, SensitiveWord = "滥交"}
  1566. self.datas[1557] = {ID = 1557, SensitiveWord = "乱交"}
  1567. self.datas[1558] = {ID = 1558, SensitiveWord = "轮奸"}
  1568. self.datas[1559] = {ID = 1559, SensitiveWord = "卖淫"}
  1569. self.datas[1560] = {ID = 1560, SensitiveWord = "屁眼"}
  1570. self.datas[1561] = {ID = 1561, SensitiveWord = "嫖娼"}
  1571. self.datas[1562] = {ID = 1562, SensitiveWord = "强奸"}
  1572. self.datas[1563] = {ID = 1563, SensitiveWord = "强奸犯"}
  1573. self.datas[1564] = {ID = 1564, SensitiveWord = "情色"}
  1574. self.datas[1565] = {ID = 1565, SensitiveWord = "肉棒"}
  1575. self.datas[1566] = {ID = 1566, SensitiveWord = "乳房"}
  1576. self.datas[1567] = {ID = 1567, SensitiveWord = "乳峰"}
  1577. self.datas[1568] = {ID = 1568, SensitiveWord = "乳交"}
  1578. self.datas[1569] = {ID = 1569, SensitiveWord = "乳头"}
  1579. self.datas[1570] = {ID = 1570, SensitiveWord = "乳晕"}
  1580. self.datas[1571] = {ID = 1571, SensitiveWord = "三陪"}
  1581. self.datas[1572] = {ID = 1572, SensitiveWord = "色情"}
  1582. self.datas[1573] = {ID = 1573, SensitiveWord = "射精"}
  1583. self.datas[1574] = {ID = 1574, SensitiveWord = "手淫"}
  1584. self.datas[1575] = {ID = 1575, SensitiveWord = "威而钢"}
  1585. self.datas[1576] = {ID = 1576, SensitiveWord = "威而柔"}
  1586. self.datas[1577] = {ID = 1577, SensitiveWord = "伟哥"}
  1587. self.datas[1578] = {ID = 1578, SensitiveWord = "性高潮"}
  1588. self.datas[1579] = {ID = 1579, SensitiveWord = "性交"}
  1589. self.datas[1580] = {ID = 1580, SensitiveWord = "性虐"}
  1590. self.datas[1581] = {ID = 1581, SensitiveWord = "性欲"}
  1591. self.datas[1582] = {ID = 1582, SensitiveWord = "穴"}
  1592. self.datas[1583] = {ID = 1583, SensitiveWord = "颜射"}
  1593. self.datas[1584] = {ID = 1584, SensitiveWord = "阳物"}
  1594. self.datas[1585] = {ID = 1585, SensitiveWord = "一夜情"}
  1595. self.datas[1586] = {ID = 1586, SensitiveWord = "阴部"}
  1596. self.datas[1587] = {ID = 1587, SensitiveWord = "阴唇"}
  1597. self.datas[1588] = {ID = 1588, SensitiveWord = "阴道"}
  1598. self.datas[1589] = {ID = 1589, SensitiveWord = "阴蒂"}
  1599. self.datas[1590] = {ID = 1590, SensitiveWord = "阴核"}
  1600. self.datas[1591] = {ID = 1591, SensitiveWord = "阴户"}
  1601. self.datas[1592] = {ID = 1592, SensitiveWord = "阴茎"}
  1602. self.datas[1593] = {ID = 1593, SensitiveWord = "阴门"}
  1603. self.datas[1594] = {ID = 1594, SensitiveWord = "淫"}
  1604. self.datas[1595] = {ID = 1595, SensitiveWord = "淫秽"}
  1605. self.datas[1596] = {ID = 1596, SensitiveWord = "淫乱"}
  1606. self.datas[1597] = {ID = 1597, SensitiveWord = "淫水"}
  1607. self.datas[1598] = {ID = 1598, SensitiveWord = "淫娃"}
  1608. self.datas[1599] = {ID = 1599, SensitiveWord = "淫液"}
  1609. self.datas[1600] = {ID = 1600, SensitiveWord = "淫汁"}
  1610. self.datas[1601] = {ID = 1601, SensitiveWord = "淫穴"}
  1611. self.datas[1602] = {ID = 1602, SensitiveWord = "淫洞"}
  1612. self.datas[1603] = {ID = 1603, SensitiveWord = "援交妹"}
  1613. self.datas[1604] = {ID = 1604, SensitiveWord = "做爱"}
  1614. self.datas[1605] = {ID = 1605, SensitiveWord = "梦遗"}
  1615. self.datas[1606] = {ID = 1606, SensitiveWord = "阳痿"}
  1616. self.datas[1607] = {ID = 1607, SensitiveWord = "早泄"}
  1617. self.datas[1608] = {ID = 1608, SensitiveWord = "奸淫"}
  1618. self.datas[1609] = {ID = 1609, SensitiveWord = "性欲"}
  1619. self.datas[1610] = {ID = 1610, SensitiveWord = "性交"}
  1620. self.datas[1611] = {ID = 1611, SensitiveWord = "Bitch"}
  1621. self.datas[1612] = {ID = 1612, SensitiveWord = "bt"}
  1622. self.datas[1613] = {ID = 1613, SensitiveWord = "cao"}
  1623. self.datas[1614] = {ID = 1614, SensitiveWord = "FUCK"}
  1624. self.datas[1615] = {ID = 1615, SensitiveWord = "Fuck"}
  1625. self.datas[1616] = {ID = 1616, SensitiveWord = "fuck"}
  1626. self.datas[1617] = {ID = 1617, SensitiveWord = "kao"}
  1627. self.datas[1618] = {ID = 1618, SensitiveWord = "NMD"}
  1628. self.datas[1619] = {ID = 1619, SensitiveWord = "NND"}
  1629. self.datas[1620] = {ID = 1620, SensitiveWord = "sb"}
  1630. self.datas[1621] = {ID = 1621, SensitiveWord = "shit"}
  1631. self.datas[1622] = {ID = 1622, SensitiveWord = "SHIT"}
  1632. self.datas[1623] = {ID = 1623, SensitiveWord = "SUCK"}
  1633. self.datas[1624] = {ID = 1624, SensitiveWord = "Suck"}
  1634. self.datas[1625] = {ID = 1625, SensitiveWord = "tmd"}
  1635. self.datas[1626] = {ID = 1626, SensitiveWord = "TMD"}
  1636. self.datas[1627] = {ID = 1627, SensitiveWord = "tnnd"}
  1637. self.datas[1628] = {ID = 1628, SensitiveWord = "K他命"}
  1638. self.datas[1629] = {ID = 1629, SensitiveWord = "白痴"}
  1639. self.datas[1630] = {ID = 1630, SensitiveWord = "笨蛋"}
  1640. self.datas[1631] = {ID = 1631, SensitiveWord = "屄"}
  1641. self.datas[1632] = {ID = 1632, SensitiveWord = "变态"}
  1642. self.datas[1633] = {ID = 1633, SensitiveWord = "婊子"}
  1643. self.datas[1634] = {ID = 1634, SensitiveWord = "操她妈"}
  1644. self.datas[1635] = {ID = 1635, SensitiveWord = "操妳妈"}
  1645. self.datas[1636] = {ID = 1636, SensitiveWord = "操你"}
  1646. self.datas[1637] = {ID = 1637, SensitiveWord = "操你妈"}
  1647. self.datas[1638] = {ID = 1638, SensitiveWord = "操他妈"}
  1648. self.datas[1639] = {ID = 1639, SensitiveWord = "草你"}
  1649. self.datas[1640] = {ID = 1640, SensitiveWord = "肏"}
  1650. self.datas[1641] = {ID = 1641, SensitiveWord = "册那"}
  1651. self.datas[1642] = {ID = 1642, SensitiveWord = "侧那"}
  1652. self.datas[1643] = {ID = 1643, SensitiveWord = "测拿"}
  1653. self.datas[1644] = {ID = 1644, SensitiveWord = "插"}
  1654. self.datas[1645] = {ID = 1645, SensitiveWord = "蠢猪"}
  1655. self.datas[1646] = {ID = 1646, SensitiveWord = "荡妇"}
  1656. self.datas[1647] = {ID = 1647, SensitiveWord = "发骚"}
  1657. self.datas[1648] = {ID = 1648, SensitiveWord = "废物"}
  1658. self.datas[1649] = {ID = 1649, SensitiveWord = "干她妈"}
  1659. self.datas[1650] = {ID = 1650, SensitiveWord = "干妳"}
  1660. self.datas[1651] = {ID = 1651, SensitiveWord = "干妳娘"}
  1661. self.datas[1652] = {ID = 1652, SensitiveWord = "干你"}
  1662. self.datas[1653] = {ID = 1653, SensitiveWord = "干你妈"}
  1663. self.datas[1654] = {ID = 1654, SensitiveWord = "干你妈B"}
  1664. self.datas[1655] = {ID = 1655, SensitiveWord = "干你妈b"}
  1665. self.datas[1656] = {ID = 1656, SensitiveWord = "干你妈逼"}
  1666. self.datas[1657] = {ID = 1657, SensitiveWord = "干你娘"}
  1667. self.datas[1658] = {ID = 1658, SensitiveWord = "干他妈"}
  1668. self.datas[1659] = {ID = 1659, SensitiveWord = "狗娘养的"}
  1669. self.datas[1660] = {ID = 1660, SensitiveWord = "滚"}
  1670. self.datas[1661] = {ID = 1661, SensitiveWord = "鸡奸"}
  1671. self.datas[1662] = {ID = 1662, SensitiveWord = "贱货"}
  1672. self.datas[1663] = {ID = 1663, SensitiveWord = "贱人"}
  1673. self.datas[1664] = {ID = 1664, SensitiveWord = "烂人"}
  1674. self.datas[1665] = {ID = 1665, SensitiveWord = "老母"}
  1675. self.datas[1666] = {ID = 1666, SensitiveWord = "老土"}
  1676. self.datas[1667] = {ID = 1667, SensitiveWord = "妈比"}
  1677. self.datas[1668] = {ID = 1668, SensitiveWord = "妈的"}
  1678. self.datas[1669] = {ID = 1669, SensitiveWord = "马的"}
  1679. self.datas[1670] = {ID = 1670, SensitiveWord = "妳老母的"}
  1680. self.datas[1671] = {ID = 1671, SensitiveWord = "妳娘的"}
  1681. self.datas[1672] = {ID = 1672, SensitiveWord = "你妈逼"}
  1682. self.datas[1673] = {ID = 1673, SensitiveWord = "破鞋"}
  1683. self.datas[1674] = {ID = 1674, SensitiveWord = "仆街"}
  1684. self.datas[1675] = {ID = 1675, SensitiveWord = "去她妈"}
  1685. self.datas[1676] = {ID = 1676, SensitiveWord = "去妳的"}
  1686. self.datas[1677] = {ID = 1677, SensitiveWord = "去妳妈"}
  1687. self.datas[1678] = {ID = 1678, SensitiveWord = "去你的"}
  1688. self.datas[1679] = {ID = 1679, SensitiveWord = "去你妈"}
  1689. self.datas[1680] = {ID = 1680, SensitiveWord = "去死"}
  1690. self.datas[1681] = {ID = 1681, SensitiveWord = "去他妈"}
  1691. self.datas[1682] = {ID = 1682, SensitiveWord = "日"}
  1692. self.datas[1683] = {ID = 1683, SensitiveWord = "日你"}
  1693. self.datas[1684] = {ID = 1684, SensitiveWord = "赛她娘"}
  1694. self.datas[1685] = {ID = 1685, SensitiveWord = "赛妳娘"}
  1695. self.datas[1686] = {ID = 1686, SensitiveWord = "赛你娘"}
  1696. self.datas[1687] = {ID = 1687, SensitiveWord = "赛他娘"}
  1697. self.datas[1688] = {ID = 1688, SensitiveWord = "骚货"}
  1698. self.datas[1689] = {ID = 1689, SensitiveWord = "傻B"}
  1699. self.datas[1690] = {ID = 1690, SensitiveWord = "傻比"}
  1700. self.datas[1691] = {ID = 1691, SensitiveWord = "傻子"}
  1701. self.datas[1692] = {ID = 1692, SensitiveWord = "上妳"}
  1702. self.datas[1693] = {ID = 1693, SensitiveWord = "上你"}
  1703. self.datas[1694] = {ID = 1694, SensitiveWord = "神经病"}
  1704. self.datas[1695] = {ID = 1695, SensitiveWord = "屎"}
  1705. self.datas[1696] = {ID = 1696, SensitiveWord = "屎妳娘"}
  1706. self.datas[1697] = {ID = 1697, SensitiveWord = "屎你娘"}
  1707. self.datas[1698] = {ID = 1698, SensitiveWord = "他妈的"}
  1708. self.datas[1699] = {ID = 1699, SensitiveWord = "王八蛋"}
  1709. self.datas[1700] = {ID = 1700, SensitiveWord = "我操"}
  1710. self.datas[1701] = {ID = 1701, SensitiveWord = "我日"}
  1711. self.datas[1702] = {ID = 1702, SensitiveWord = "乡巴佬"}
  1712. self.datas[1703] = {ID = 1703, SensitiveWord = "猪猡"}
  1713. self.datas[1704] = {ID = 1704, SensitiveWord = "屙"}
  1714. self.datas[1705] = {ID = 1705, SensitiveWord = "干"}
  1715. self.datas[1706] = {ID = 1706, SensitiveWord = "尿"}
  1716. self.datas[1707] = {ID = 1707, SensitiveWord = "掯"}
  1717. self.datas[1708] = {ID = 1708, SensitiveWord = "屌"}
  1718. self.datas[1709] = {ID = 1709, SensitiveWord = "操"}
  1719. self.datas[1710] = {ID = 1710, SensitiveWord = "骑你"}
  1720. self.datas[1711] = {ID = 1711, SensitiveWord = "湿了"}
  1721. self.datas[1712] = {ID = 1712, SensitiveWord = "操你"}
  1722. self.datas[1713] = {ID = 1713, SensitiveWord = "操他"}
  1723. self.datas[1714] = {ID = 1714, SensitiveWord = "操她"}
  1724. self.datas[1715] = {ID = 1715, SensitiveWord = "骑你"}
  1725. self.datas[1716] = {ID = 1716, SensitiveWord = "骑他"}
  1726. self.datas[1717] = {ID = 1717, SensitiveWord = "骑她"}
  1727. self.datas[1718] = {ID = 1718, SensitiveWord = "欠骑"}
  1728. self.datas[1719] = {ID = 1719, SensitiveWord = "欠人骑"}
  1729. self.datas[1720] = {ID = 1720, SensitiveWord = "来爽我"}
  1730. self.datas[1721] = {ID = 1721, SensitiveWord = "来插我"}
  1731. self.datas[1722] = {ID = 1722, SensitiveWord = "干你"}
  1732. self.datas[1723] = {ID = 1723, SensitiveWord = "干他"}
  1733. self.datas[1724] = {ID = 1724, SensitiveWord = "干她"}
  1734. self.datas[1725] = {ID = 1725, SensitiveWord = "干死"}
  1735. self.datas[1726] = {ID = 1726, SensitiveWord = "干爆"}
  1736. self.datas[1727] = {ID = 1727, SensitiveWord = "干机"}
  1737. self.datas[1728] = {ID = 1728, SensitiveWord = "FUCK"}
  1738. self.datas[1729] = {ID = 1729, SensitiveWord = "机叭"}
  1739. self.datas[1730] = {ID = 1730, SensitiveWord = "臭鸡"}
  1740. self.datas[1731] = {ID = 1731, SensitiveWord = "臭机"}
  1741. self.datas[1732] = {ID = 1732, SensitiveWord = "烂鸟"}
  1742. self.datas[1733] = {ID = 1733, SensitiveWord = "览叫"}
  1743. self.datas[1734] = {ID = 1734, SensitiveWord = "阳具"}
  1744. self.datas[1735] = {ID = 1735, SensitiveWord = "肉棒"}
  1745. self.datas[1736] = {ID = 1736, SensitiveWord = "肉壶"}
  1746. self.datas[1737] = {ID = 1737, SensitiveWord = "奶子"}
  1747. self.datas[1738] = {ID = 1738, SensitiveWord = "摸咪咪"}
  1748. self.datas[1739] = {ID = 1739, SensitiveWord = "干鸡"}
  1749. self.datas[1740] = {ID = 1740, SensitiveWord = "干入"}
  1750. self.datas[1741] = {ID = 1741, SensitiveWord = "小穴"}
  1751. self.datas[1742] = {ID = 1742, SensitiveWord = "强奸"}
  1752. self.datas[1743] = {ID = 1743, SensitiveWord = "插你"}
  1753. self.datas[1744] = {ID = 1744, SensitiveWord = "插你"}
  1754. self.datas[1745] = {ID = 1745, SensitiveWord = "爽你"}
  1755. self.datas[1746] = {ID = 1746, SensitiveWord = "爽你"}
  1756. self.datas[1747] = {ID = 1747, SensitiveWord = "干干"}
  1757. self.datas[1748] = {ID = 1748, SensitiveWord = "干X"}
  1758. self.datas[1749] = {ID = 1749, SensitiveWord = "我操"}
  1759. self.datas[1750] = {ID = 1750, SensitiveWord = "他干"}
  1760. self.datas[1751] = {ID = 1751, SensitiveWord = "干它"}
  1761. self.datas[1752] = {ID = 1752, SensitiveWord = "干牠"}
  1762. self.datas[1753] = {ID = 1753, SensitiveWord = "干您"}
  1763. self.datas[1754] = {ID = 1754, SensitiveWord = "干汝"}
  1764. self.datas[1755] = {ID = 1755, SensitiveWord = "干林"}
  1765. self.datas[1756] = {ID = 1756, SensitiveWord = "操林"}
  1766. self.datas[1757] = {ID = 1757, SensitiveWord = "干尼"}
  1767. self.datas[1758] = {ID = 1758, SensitiveWord = "操尼"}
  1768. self.datas[1759] = {ID = 1759, SensitiveWord = "我咧干"}
  1769. self.datas[1760] = {ID = 1760, SensitiveWord = "干勒"}
  1770. self.datas[1761] = {ID = 1761, SensitiveWord = "干我"}
  1771. self.datas[1762] = {ID = 1762, SensitiveWord = "干到"}
  1772. self.datas[1763] = {ID = 1763, SensitiveWord = "干啦"}
  1773. self.datas[1764] = {ID = 1764, SensitiveWord = "干爽"}
  1774. self.datas[1765] = {ID = 1765, SensitiveWord = "欠干"}
  1775. self.datas[1766] = {ID = 1766, SensitiveWord = "狗干"}
  1776. self.datas[1767] = {ID = 1767, SensitiveWord = "我干"}
  1777. self.datas[1768] = {ID = 1768, SensitiveWord = "来干"}
  1778. self.datas[1769] = {ID = 1769, SensitiveWord = "轮干"}
  1779. self.datas[1770] = {ID = 1770, SensitiveWord = "轮流干"}
  1780. self.datas[1771] = {ID = 1771, SensitiveWord = "干一干"}
  1781. self.datas[1772] = {ID = 1772, SensitiveWord = "援交"}
  1782. self.datas[1773] = {ID = 1773, SensitiveWord = "骑你"}
  1783. self.datas[1774] = {ID = 1774, SensitiveWord = "我操"}
  1784. self.datas[1775] = {ID = 1775, SensitiveWord = "轮奸"}
  1785. self.datas[1776] = {ID = 1776, SensitiveWord = "鸡奸"}
  1786. self.datas[1777] = {ID = 1777, SensitiveWord = "奸暴"}
  1787. self.datas[1778] = {ID = 1778, SensitiveWord = "再奸"}
  1788. self.datas[1779] = {ID = 1779, SensitiveWord = "我奸"}
  1789. self.datas[1780] = {ID = 1780, SensitiveWord = "奸你"}
  1790. self.datas[1781] = {ID = 1781, SensitiveWord = "奸你"}
  1791. self.datas[1782] = {ID = 1782, SensitiveWord = "奸他"}
  1792. self.datas[1783] = {ID = 1783, SensitiveWord = "奸她"}
  1793. self.datas[1784] = {ID = 1784, SensitiveWord = "奸一奸"}
  1794. self.datas[1785] = {ID = 1785, SensitiveWord = "淫水"}
  1795. self.datas[1786] = {ID = 1786, SensitiveWord = "淫湿"}
  1796. self.datas[1787] = {ID = 1787, SensitiveWord = "鸡歪"}
  1797. self.datas[1788] = {ID = 1788, SensitiveWord = "仆街"}
  1798. self.datas[1789] = {ID = 1789, SensitiveWord = "臭西"}
  1799. self.datas[1790] = {ID = 1790, SensitiveWord = "尻"}
  1800. self.datas[1791] = {ID = 1791, SensitiveWord = "遗精"}
  1801. self.datas[1792] = {ID = 1792, SensitiveWord = "烂逼"}
  1802. self.datas[1793] = {ID = 1793, SensitiveWord = "大血比"}
  1803. self.datas[1794] = {ID = 1794, SensitiveWord = "叼你妈"}
  1804. self.datas[1795] = {ID = 1795, SensitiveWord = "靠你妈"}
  1805. self.datas[1796] = {ID = 1796, SensitiveWord = "草你"}
  1806. self.datas[1797] = {ID = 1797, SensitiveWord = "干你"}
  1807. self.datas[1798] = {ID = 1798, SensitiveWord = "日你"}
  1808. self.datas[1799] = {ID = 1799, SensitiveWord = "插你"}
  1809. self.datas[1800] = {ID = 1800, SensitiveWord = "奸你"}
  1810. self.datas[1801] = {ID = 1801, SensitiveWord = "戳你"}
  1811. self.datas[1802] = {ID = 1802, SensitiveWord = "逼你老母"}
  1812. self.datas[1803] = {ID = 1803, SensitiveWord = "挨球"}
  1813. self.datas[1804] = {ID = 1804, SensitiveWord = "我日你"}
  1814. self.datas[1805] = {ID = 1805, SensitiveWord = "草拟妈"}
  1815. self.datas[1806] = {ID = 1806, SensitiveWord = "卖逼"}
  1816. self.datas[1807] = {ID = 1807, SensitiveWord = "狗操卖逼"}
  1817. self.datas[1808] = {ID = 1808, SensitiveWord = "奸淫"}
  1818. self.datas[1809] = {ID = 1809, SensitiveWord = "日死"}
  1819. self.datas[1810] = {ID = 1810, SensitiveWord = "奶子"}
  1820. self.datas[1811] = {ID = 1811, SensitiveWord = "阴茎"}
  1821. self.datas[1812] = {ID = 1812, SensitiveWord = "奶娘"}
  1822. self.datas[1813] = {ID = 1813, SensitiveWord = "他娘"}
  1823. self.datas[1814] = {ID = 1814, SensitiveWord = "她娘"}
  1824. self.datas[1815] = {ID = 1815, SensitiveWord = "骚B"}
  1825. self.datas[1816] = {ID = 1816, SensitiveWord = "你妈了妹"}
  1826. self.datas[1817] = {ID = 1817, SensitiveWord = "逼毛"}
  1827. self.datas[1818] = {ID = 1818, SensitiveWord = "插你妈"}
  1828. self.datas[1819] = {ID = 1819, SensitiveWord = "叼你"}
  1829. self.datas[1820] = {ID = 1820, SensitiveWord = "渣波波"}
  1830. self.datas[1821] = {ID = 1821, SensitiveWord = "嫩b"}
  1831. self.datas[1822] = {ID = 1822, SensitiveWord = "weelaa"}
  1832. self.datas[1823] = {ID = 1823, SensitiveWord = "缔顺"}
  1833. self.datas[1824] = {ID = 1824, SensitiveWord = "帝顺"}
  1834. self.datas[1825] = {ID = 1825, SensitiveWord = "蒂顺"}
  1835. self.datas[1826] = {ID = 1826, SensitiveWord = "系统消息"}
  1836. self.datas[1827] = {ID = 1827, SensitiveWord = "午夜"}
  1837. self.datas[1828] = {ID = 1828, SensitiveWord = "看下"}
  1838. self.datas[1829] = {ID = 1829, SensitiveWord = "草泥马"}
  1839. self.datas[1830] = {ID = 1830, SensitiveWord = "法克鱿"}
  1840. self.datas[1831] = {ID = 1831, SensitiveWord = "雅蠛蝶"}
  1841. self.datas[1832] = {ID = 1832, SensitiveWord = "潜烈蟹"}
  1842. self.datas[1833] = {ID = 1833, SensitiveWord = "菊花蚕"}
  1843. self.datas[1834] = {ID = 1834, SensitiveWord = "尾申鲸"}
  1844. self.datas[1835] = {ID = 1835, SensitiveWord = "吉跋猫"}
  1845. self.datas[1836] = {ID = 1836, SensitiveWord = "搞栗棒"}
  1846. self.datas[1837] = {ID = 1837, SensitiveWord = "吟稻雁"}
  1847. self.datas[1838] = {ID = 1838, SensitiveWord = "达菲鸡"}
  1848. self.datas[1839] = {ID = 1839, SensitiveWord = "SM"}
  1849. self.datas[1840] = {ID = 1840, SensitiveWord = "ML"}
  1850. self.datas[1841] = {ID = 1841, SensitiveWord = "3P"}
  1851. self.datas[1842] = {ID = 1842, SensitiveWord = "群P"}
  1852. self.datas[1843] = {ID = 1843, SensitiveWord = "马勒戈壁"}
  1853. self.datas[1844] = {ID = 1844, SensitiveWord = "双飞"}
  1854. self.datas[1845] = {ID = 1845, SensitiveWord = "你奶奶"}
  1855. self.datas[1846] = {ID = 1846, SensitiveWord = "你祖宗"}
  1856. self.datas[1847] = {ID = 1847, SensitiveWord = "周恩來"}
  1857. self.datas[1848] = {ID = 1848, SensitiveWord = "碡 "}
  1858. self.datas[1849] = {ID = 1849, SensitiveWord = "籀"}
  1859. self.datas[1850] = {ID = 1850, SensitiveWord = "朱駿 "}
  1860. self.datas[1851] = {ID = 1851, SensitiveWord = "朱狨基"}
  1861. self.datas[1852] = {ID = 1852, SensitiveWord = "朱容基"}
  1862. self.datas[1853] = {ID = 1853, SensitiveWord = "朱溶剂"}
  1863. self.datas[1854] = {ID = 1854, SensitiveWord = "朱熔基"}
  1864. self.datas[1855] = {ID = 1855, SensitiveWord = "朱镕基"}
  1865. self.datas[1856] = {ID = 1856, SensitiveWord = "邾"}
  1866. self.datas[1857] = {ID = 1857, SensitiveWord = "猪操"}
  1867. self.datas[1858] = {ID = 1858, SensitiveWord = "猪聋畸"}
  1868. self.datas[1859] = {ID = 1859, SensitiveWord = "猪毛"}
  1869. self.datas[1860] = {ID = 1860, SensitiveWord = "猪毛1"}
  1870. self.datas[1861] = {ID = 1861, SensitiveWord = "舳"}
  1871. self.datas[1862] = {ID = 1862, SensitiveWord = "瘃"}
  1872. self.datas[1863] = {ID = 1863, SensitiveWord = "躅"}
  1873. self.datas[1864] = {ID = 1864, SensitiveWord = "翥"}
  1874. self.datas[1865] = {ID = 1865, SensitiveWord = "專政"}
  1875. self.datas[1866] = {ID = 1866, SensitiveWord = "颛"}
  1876. self.datas[1867] = {ID = 1867, SensitiveWord = "丬"}
  1877. self.datas[1868] = {ID = 1868, SensitiveWord = "隹"}
  1878. self.datas[1869] = {ID = 1869, SensitiveWord = "窀"}
  1879. self.datas[1870] = {ID = 1870, SensitiveWord = "卓伯源"}
  1880. self.datas[1871] = {ID = 1871, SensitiveWord = "倬"}
  1881. self.datas[1872] = {ID = 1872, SensitiveWord = "斫"}
  1882. self.datas[1873] = {ID = 1873, SensitiveWord = "诼"}
  1883. self.datas[1874] = {ID = 1874, SensitiveWord = "髭"}
  1884. self.datas[1875] = {ID = 1875, SensitiveWord = "鲻"}
  1885. self.datas[1876] = {ID = 1876, SensitiveWord = "子宫"}
  1886. self.datas[1877] = {ID = 1877, SensitiveWord = "秭"}
  1887. self.datas[1878] = {ID = 1878, SensitiveWord = "訾"}
  1888. self.datas[1879] = {ID = 1879, SensitiveWord = "自焚"}
  1889. self.datas[1880] = {ID = 1880, SensitiveWord = "自民党"}
  1890. self.datas[1881] = {ID = 1881, SensitiveWord = "自慰"}
  1891. self.datas[1882] = {ID = 1882, SensitiveWord = "自已的故事"}
  1892. self.datas[1883] = {ID = 1883, SensitiveWord = "自由民主论坛"}
  1893. self.datas[1884] = {ID = 1884, SensitiveWord = "总理"}
  1894. self.datas[1885] = {ID = 1885, SensitiveWord = "偬"}
  1895. self.datas[1886] = {ID = 1886, SensitiveWord = "诹"}
  1896. self.datas[1887] = {ID = 1887, SensitiveWord = "陬"}
  1897. self.datas[1888] = {ID = 1888, SensitiveWord = "鄹"}
  1898. self.datas[1889] = {ID = 1889, SensitiveWord = "鲰"}
  1899. self.datas[1890] = {ID = 1890, SensitiveWord = "躜"}
  1900. self.datas[1891] = {ID = 1891, SensitiveWord = "缵"}
  1901. self.datas[1892] = {ID = 1892, SensitiveWord = "作爱"}
  1902. self.datas[1893] = {ID = 1893, SensitiveWord = "作秀"}
  1903. self.datas[1894] = {ID = 1894, SensitiveWord = "阼"}
  1904. self.datas[1895] = {ID = 1895, SensitiveWord = "祚"}
  1905. self.datas[1896] = {ID = 1896, SensitiveWord = "做爱"}
  1906. self.datas[1897] = {ID = 1897, SensitiveWord = "阿扁萬歲"}
  1907. self.datas[1898] = {ID = 1898, SensitiveWord = "阿萊娜"}
  1908. self.datas[1899] = {ID = 1899, SensitiveWord = "啊無卵"}
  1909. self.datas[1900] = {ID = 1900, SensitiveWord = "埃裏克蘇特勤"}
  1910. self.datas[1901] = {ID = 1901, SensitiveWord = "埃斯萬"}
  1911. self.datas[1902] = {ID = 1902, SensitiveWord = "艾麗絲"}
  1912. self.datas[1903] = {ID = 1903, SensitiveWord = "愛滋"}
  1913. self.datas[1904] = {ID = 1904, SensitiveWord = "愛滋病"}
  1914. self.datas[1905] = {ID = 1905, SensitiveWord = "垵"}
  1915. self.datas[1906] = {ID = 1906, SensitiveWord = "暗黑法師"}
  1916. self.datas[1907] = {ID = 1907, SensitiveWord = "嶴"}
  1917. self.datas[1908] = {ID = 1908, SensitiveWord = "奧克拉"}
  1918. self.datas[1909] = {ID = 1909, SensitiveWord = "奧拉德"}
  1919. self.datas[1910] = {ID = 1910, SensitiveWord = "奧利弗"}
  1920. self.datas[1911] = {ID = 1911, SensitiveWord = "奧魯奇"}
  1921. self.datas[1912] = {ID = 1912, SensitiveWord = "奧倫"}
  1922. self.datas[1913] = {ID = 1913, SensitiveWord = "奧特蘭"}
  1923. self.datas[1914] = {ID = 1914, SensitiveWord = "㈧"}
  1924. self.datas[1915] = {ID = 1915, SensitiveWord = "巴倫侍從"}
  1925. self.datas[1916] = {ID = 1916, SensitiveWord = "巴倫坦"}
  1926. self.datas[1917] = {ID = 1917, SensitiveWord = "白立樸"}
  1927. self.datas[1918] = {ID = 1918, SensitiveWord = "白夢"}
  1928. self.datas[1919] = {ID = 1919, SensitiveWord = "白皮書"}
  1929. self.datas[1920] = {ID = 1920, SensitiveWord = "班禪"}
  1930. self.datas[1921] = {ID = 1921, SensitiveWord = "寶石商人"}
  1931. self.datas[1922] = {ID = 1922, SensitiveWord = "保釣"}
  1932. self.datas[1923] = {ID = 1923, SensitiveWord = "鮑戈"}
  1933. self.datas[1924] = {ID = 1924, SensitiveWord = "鮑彤"}
  1934. self.datas[1925] = {ID = 1925, SensitiveWord = "鮑伊"}
  1935. self.datas[1926] = {ID = 1926, SensitiveWord = "暴風亡靈"}
  1936. self.datas[1927] = {ID = 1927, SensitiveWord = "暴亂"}
  1937. self.datas[1928] = {ID = 1928, SensitiveWord = "暴熱的戰士"}
  1938. self.datas[1929] = {ID = 1929, SensitiveWord = "暴躁的城塔野獸"}
  1939. self.datas[1930] = {ID = 1930, SensitiveWord = "暴躁的警衛兵靈魂"}
  1940. self.datas[1931] = {ID = 1931, SensitiveWord = "暴躁的馬杜克"}
  1941. self.datas[1932] = {ID = 1932, SensitiveWord = "北大三角地論壇"}
  1942. self.datas[1933] = {ID = 1933, SensitiveWord = "北韓"}
  1943. self.datas[1934] = {ID = 1934, SensitiveWord = "北京當局"}
  1944. self.datas[1935] = {ID = 1935, SensitiveWord = "北美自由論壇"}
  1945. self.datas[1936] = {ID = 1936, SensitiveWord = "貝尤爾"}
  1946. self.datas[1937] = {ID = 1937, SensitiveWord = "韝"}
  1947. self.datas[1938] = {ID = 1938, SensitiveWord = "逼樣"}
  1948. self.datas[1939] = {ID = 1939, SensitiveWord = "比樣"}
  1949. self.datas[1940] = {ID = 1940, SensitiveWord = "蹕"}
  1950. self.datas[1941] = {ID = 1941, SensitiveWord = "颮"}
  1951. self.datas[1942] = {ID = 1942, SensitiveWord = "鑣"}
  1952. self.datas[1943] = {ID = 1943, SensitiveWord = "婊子養的 "}
  1953. self.datas[1944] = {ID = 1944, SensitiveWord = "賓周"}
  1954. self.datas[1945] = {ID = 1945, SensitiveWord = "冰後"}
  1955. self.datas[1946] = {ID = 1946, SensitiveWord = "博訊"}
  1956. self.datas[1947] = {ID = 1947, SensitiveWord = "不滅帝王"}
  1957. self.datas[1948] = {ID = 1948, SensitiveWord = "不爽不要錢"}
  1958. self.datas[1949] = {ID = 1949, SensitiveWord = "布萊爾"}
  1959. self.datas[1950] = {ID = 1950, SensitiveWord = "布雷爾"}
  1960. self.datas[1951] = {ID = 1951, SensitiveWord = "蔡崇國"}
  1961. self.datas[1952] = {ID = 1952, SensitiveWord = "蔡啓芳"}
  1962. self.datas[1953] = {ID = 1953, SensitiveWord = "黲"}
  1963. self.datas[1954] = {ID = 1954, SensitiveWord = "操鶏"}
  1964. self.datas[1955] = {ID = 1955, SensitiveWord = "操那嗎B"}
  1965. self.datas[1956] = {ID = 1956, SensitiveWord = "操那嗎逼"}
  1966. self.datas[1957] = {ID = 1957, SensitiveWord = "操那嗎比"}
  1967. self.datas[1958] = {ID = 1958, SensitiveWord = "操你媽"}
  1968. self.datas[1959] = {ID = 1959, SensitiveWord = "操你爺爺"}
  1969. self.datas[1960] = {ID = 1960, SensitiveWord = "曹長青"}
  1970. self.datas[1961] = {ID = 1961, SensitiveWord = "曹剛川"}
  1971. self.datas[1962] = {ID = 1962, SensitiveWord = "草"}
  1972. self.datas[1963] = {ID = 1963, SensitiveWord = "草你媽"}
  1973. self.datas[1964] = {ID = 1964, SensitiveWord = "草擬媽"}
  1974. self.datas[1965] = {ID = 1965, SensitiveWord = "册那娘餓比"}
  1975. self.datas[1966] = {ID = 1966, SensitiveWord = "插那嗎B"}
  1976. self.datas[1967] = {ID = 1967, SensitiveWord = "插那嗎逼"}
  1977. self.datas[1968] = {ID = 1968, SensitiveWord = "插那嗎比"}
  1978. self.datas[1969] = {ID = 1969, SensitiveWord = "插你媽"}
  1979. self.datas[1970] = {ID = 1970, SensitiveWord = "插你爺爺"}
  1980. self.datas[1971] = {ID = 1971, SensitiveWord = "覘"}
  1981. self.datas[1972] = {ID = 1972, SensitiveWord = "蕆"}
  1982. self.datas[1973] = {ID = 1973, SensitiveWord = "囅"}
  1983. self.datas[1974] = {ID = 1974, SensitiveWord = "閶"}
  1984. self.datas[1975] = {ID = 1975, SensitiveWord = "長官沙塔特"}
  1985. self.datas[1976] = {ID = 1976, SensitiveWord = "常勁"}
  1986. self.datas[1977] = {ID = 1977, SensitiveWord = "朝鮮"}
  1987. self.datas[1978] = {ID = 1978, SensitiveWord = "車侖"}
  1988. self.datas[1979] = {ID = 1979, SensitiveWord = "車侖女幹"}
  1989. self.datas[1980] = {ID = 1980, SensitiveWord = "沉睡圖騰"}
  1990. self.datas[1981] = {ID = 1981, SensitiveWord = "陳炳基"}
  1991. self.datas[1982] = {ID = 1982, SensitiveWord = "陳博志"}
  1992. self.datas[1983] = {ID = 1983, SensitiveWord = "陳定南"}
  1993. self.datas[1984] = {ID = 1984, SensitiveWord = "陳建銘"}
  1994. self.datas[1985] = {ID = 1985, SensitiveWord = "陳景俊"}
  1995. self.datas[1986] = {ID = 1986, SensitiveWord = "陳菊"}
  1996. self.datas[1987] = {ID = 1987, SensitiveWord = "陳軍"}
  1997. self.datas[1988] = {ID = 1988, SensitiveWord = "陳良宇"}
  1998. self.datas[1989] = {ID = 1989, SensitiveWord = "陳蒙"}
  1999. self.datas[1990] = {ID = 1990, SensitiveWord = "陳破空"}
  2000. self.datas[1991] = {ID = 1991, SensitiveWord = "陳水扁"}
  2001. self.datas[1992] = {ID = 1992, SensitiveWord = "陳唐山"}
  2002. self.datas[1993] = {ID = 1993, SensitiveWord = "陳希同"}
  2003. self.datas[1994] = {ID = 1994, SensitiveWord = "陳小同"}
  2004. self.datas[1995] = {ID = 1995, SensitiveWord = "陳宣良"}
  2005. self.datas[1996] = {ID = 1996, SensitiveWord = "陳學聖"}
  2006. self.datas[1997] = {ID = 1997, SensitiveWord = "陳一諮"}
  2007. self.datas[1998] = {ID = 1998, SensitiveWord = "陳總統"}
  2008. self.datas[1999] = {ID = 1999, SensitiveWord = "諶"}
  2009. self.datas[2000] = {ID = 2000, SensitiveWord = "齔"}
  2010. self.datas[2001] = {ID = 2001, SensitiveWord = "櫬"}
  2011. self.datas[2002] = {ID = 2002, SensitiveWord = "讖"}
  2012. self.datas[2003] = {ID = 2003, SensitiveWord = "程凱"}
  2013. self.datas[2004] = {ID = 2004, SensitiveWord = "程鐵軍"}
  2014. self.datas[2005] = {ID = 2005, SensitiveWord = "鴟"}
  2015. self.datas[2006] = {ID = 2006, SensitiveWord = "痴鳩"}
  2016. self.datas[2007] = {ID = 2007, SensitiveWord = "痴拈"}
  2017. self.datas[2008] = {ID = 2008, SensitiveWord = "遲鈍的圖騰"}
  2018. self.datas[2009] = {ID = 2009, SensitiveWord = "持不同政見 "}
  2019. self.datas[2010] = {ID = 2010, SensitiveWord = "赤色騎士"}
  2020. self.datas[2011] = {ID = 2011, SensitiveWord = "赤色戰士"}
  2021. self.datas[2012] = {ID = 2012, SensitiveWord = "處女膜"}
  2022. self.datas[2013] = {ID = 2013, SensitiveWord = "傳染性病"}
  2023. self.datas[2014] = {ID = 2014, SensitiveWord = "吹簫"}
  2024. self.datas[2015] = {ID = 2015, SensitiveWord = "春夏自由論壇"}
  2025. self.datas[2016] = {ID = 2016, SensitiveWord = "戳那嗎B"}
  2026. self.datas[2017] = {ID = 2017, SensitiveWord = "戳那嗎逼"}
  2027. self.datas[2018] = {ID = 2018, SensitiveWord = "戳那嗎比"}
  2028. self.datas[2019] = {ID = 2019, SensitiveWord = "輳"}
  2029. self.datas[2020] = {ID = 2020, SensitiveWord = "鹺"}
  2030. self.datas[2021] = {ID = 2021, SensitiveWord = "錯B"}
  2031. self.datas[2022] = {ID = 2022, SensitiveWord = "錯逼"}
  2032. self.datas[2023] = {ID = 2023, SensitiveWord = "錯比"}
  2033. self.datas[2024] = {ID = 2024, SensitiveWord = "錯那嗎B"}
  2034. self.datas[2025] = {ID = 2025, SensitiveWord = "錯那嗎逼"}
  2035. self.datas[2026] = {ID = 2026, SensitiveWord = "錯那嗎比"}
  2036. self.datas[2027] = {ID = 2027, SensitiveWord = "達夫警衛兵"}
  2037. self.datas[2028] = {ID = 2028, SensitiveWord = "達夫侍從"}
  2038. self.datas[2029] = {ID = 2029, SensitiveWord = "達癩"}
  2039. self.datas[2030] = {ID = 2030, SensitiveWord = "打飛機"}
  2040. self.datas[2031] = {ID = 2031, SensitiveWord = "大參考"}
  2041. self.datas[2032] = {ID = 2032, SensitiveWord = "大東亞"}
  2042. self.datas[2033] = {ID = 2033, SensitiveWord = "大東亞共榮"}
  2043. self.datas[2034] = {ID = 2034, SensitiveWord = "大鶏巴"}
  2044. self.datas[2035] = {ID = 2035, SensitiveWord = "大紀元"}
  2045. self.datas[2036] = {ID = 2036, SensitiveWord = "大紀元新聞網"}
  2046. self.datas[2037] = {ID = 2037, SensitiveWord = "大紀園"}
  2047. self.datas[2038] = {ID = 2038, SensitiveWord = "大家論壇"}
  2048. self.datas[2039] = {ID = 2039, SensitiveWord = "大奶媽"}
  2049. self.datas[2040] = {ID = 2040, SensitiveWord = "大史記"}
  2050. self.datas[2041] = {ID = 2041, SensitiveWord = "大史紀"}
  2051. self.datas[2042] = {ID = 2042, SensitiveWord = "大衛教"}
  2052. self.datas[2043] = {ID = 2043, SensitiveWord = "大中國論壇"}
  2053. self.datas[2044] = {ID = 2044, SensitiveWord = "大中華論壇"}
  2054. self.datas[2045] = {ID = 2045, SensitiveWord = "大衆真人真事"}
  2055. self.datas[2046] = {ID = 2046, SensitiveWord = "紿"}
  2056. self.datas[2047] = {ID = 2047, SensitiveWord = "戴維教"}
  2057. self.datas[2048] = {ID = 2048, SensitiveWord = "戴相龍"}
  2058. self.datas[2049] = {ID = 2049, SensitiveWord = "彈劾"}
  2059. self.datas[2050] = {ID = 2050, SensitiveWord = "氹"}
  2060. self.datas[2051] = {ID = 2051, SensitiveWord = "蕩婦"}
  2061. self.datas[2052] = {ID = 2052, SensitiveWord = "導師"}
  2062. self.datas[2053] = {ID = 2053, SensitiveWord = "盜竊犯"}
  2063. self.datas[2054] = {ID = 2054, SensitiveWord = "德維爾"}
  2064. self.datas[2055] = {ID = 2055, SensitiveWord = "登輝"}
  2065. self.datas[2056] = {ID = 2056, SensitiveWord = "鄧笑貧"}
  2066. self.datas[2057] = {ID = 2057, SensitiveWord = "糴"}
  2067. self.datas[2058] = {ID = 2058, SensitiveWord = "迪裏夏提"}
  2068. self.datas[2059] = {ID = 2059, SensitiveWord = "覿"}
  2069. self.datas[2060] = {ID = 2060, SensitiveWord = "地下教會"}
  2070. self.datas[2061] = {ID = 2061, SensitiveWord = "帝國主義"}
  2071. self.datas[2062] = {ID = 2062, SensitiveWord = "電視流氓"}
  2072. self.datas[2063] = {ID = 2063, SensitiveWord = "叼你媽"}
  2073. self.datas[2064] = {ID = 2064, SensitiveWord = "釣魚島"}
  2074. self.datas[2065] = {ID = 2065, SensitiveWord = "丁關根"}
  2075. self.datas[2066] = {ID = 2066, SensitiveWord = "東北獨立"}
  2076. self.datas[2067] = {ID = 2067, SensitiveWord = "東部地下水路"}
  2077. self.datas[2068] = {ID = 2068, SensitiveWord = "東方紅時空"}
  2078. self.datas[2069] = {ID = 2069, SensitiveWord = "東方時空"}
  2079. self.datas[2070] = {ID = 2070, SensitiveWord = "東南西北論談"}
  2080. self.datas[2071] = {ID = 2071, SensitiveWord = "東社"}
  2081. self.datas[2072] = {ID = 2072, SensitiveWord = "東升"}
  2082. self.datas[2073] = {ID = 2073, SensitiveWord = "東條"}
  2083. self.datas[2074] = {ID = 2074, SensitiveWord = "東條英機"}
  2084. self.datas[2075] = {ID = 2075, SensitiveWord = "東突暴動"}
  2085. self.datas[2076] = {ID = 2076, SensitiveWord = "東突獨立"}
  2086. self.datas[2077] = {ID = 2077, SensitiveWord = "東土耳其斯坦"}
  2087. self.datas[2078] = {ID = 2078, SensitiveWord = "東西南北論壇"}
  2088. self.datas[2079] = {ID = 2079, SensitiveWord = "東亞"}
  2089. self.datas[2080] = {ID = 2080, SensitiveWord = "東院看守"}
  2090. self.datas[2081] = {ID = 2081, SensitiveWord = "動亂"}
  2091. self.datas[2082] = {ID = 2082, SensitiveWord = "鬥士哈夫拉蘇"}
  2092. self.datas[2083] = {ID = 2083, SensitiveWord = "鬥士霍克"}
  2093. self.datas[2084] = {ID = 2084, SensitiveWord = "獨裁"}
  2094. self.datas[2085] = {ID = 2085, SensitiveWord = "獨裁政治"}
  2095. self.datas[2086] = {ID = 2086, SensitiveWord = "獨夫"}
  2096. self.datas[2087] = {ID = 2087, SensitiveWord = "獨立臺灣會"}
  2097. self.datas[2088] = {ID = 2088, SensitiveWord = "俄國 "}
  2098. self.datas[2089] = {ID = 2089, SensitiveWord = "鮞"}
  2099. self.datas[2090] = {ID = 2090, SensitiveWord = "㈡"}
  2100. self.datas[2091] = {ID = 2091, SensitiveWord = "發楞"}
  2101. self.datas[2092] = {ID = 2092, SensitiveWord = "發掄"}
  2102. self.datas[2093] = {ID = 2093, SensitiveWord = "發掄功"}
  2103. self.datas[2094] = {ID = 2094, SensitiveWord = "發倫"}
  2104. self.datas[2095] = {ID = 2095, SensitiveWord = "發倫功"}
  2105. self.datas[2096] = {ID = 2096, SensitiveWord = "發輪"}
  2106. self.datas[2097] = {ID = 2097, SensitiveWord = "發論"}
  2107. self.datas[2098] = {ID = 2098, SensitiveWord = "發論公"}
  2108. self.datas[2099] = {ID = 2099, SensitiveWord = "發論功"}
  2109. self.datas[2100] = {ID = 2100, SensitiveWord = "發騷"}
  2110. self.datas[2101] = {ID = 2101, SensitiveWord = "發正念"}
  2111. self.datas[2102] = {ID = 2102, SensitiveWord = "法~倫"}
  2112. self.datas[2103] = {ID = 2103, SensitiveWord = "法~淪"}
  2113. self.datas[2104] = {ID = 2104, SensitiveWord = "法~綸"}
  2114. self.datas[2105] = {ID = 2105, SensitiveWord = "法~輪"}
  2115. self.datas[2106] = {ID = 2106, SensitiveWord = "法~論"}
  2116. self.datas[2107] = {ID = 2107, SensitiveWord = "法爾卡"}
  2117. self.datas[2108] = {ID = 2108, SensitiveWord = "法掄"}
  2118. self.datas[2109] = {ID = 2109, SensitiveWord = "法掄功"}
  2119. self.datas[2110] = {ID = 2110, SensitiveWord = "法侖"}
  2120. self.datas[2111] = {ID = 2111, SensitiveWord = "法淪"}
  2121. self.datas[2112] = {ID = 2112, SensitiveWord = "法綸"}
  2122. self.datas[2113] = {ID = 2113, SensitiveWord = "法輪大法"}
  2123. self.datas[2114] = {ID = 2114, SensitiveWord = "法輪功"}
  2124. self.datas[2115] = {ID = 2115, SensitiveWord = "法十輪十功"}
  2125. self.datas[2116] = {ID = 2116, SensitiveWord = "法謫"}
  2126. self.datas[2117] = {ID = 2117, SensitiveWord = "法謫功"}
  2127. self.datas[2118] = {ID = 2118, SensitiveWord = "反封鎖"}
  2128. self.datas[2119] = {ID = 2119, SensitiveWord = "反封鎖技術"}
  2129. self.datas[2120] = {ID = 2120, SensitiveWord = "反腐敗論壇"}
  2130. self.datas[2121] = {ID = 2121, SensitiveWord = "反人類"}
  2131. self.datas[2122] = {ID = 2122, SensitiveWord = "反社會"}
  2132. self.datas[2123] = {ID = 2123, SensitiveWord = "方勵之"}
  2133. self.datas[2124] = {ID = 2124, SensitiveWord = "防衛指揮官"}
  2134. self.datas[2125] = {ID = 2125, SensitiveWord = "放蕩"}
  2135. self.datas[2126] = {ID = 2126, SensitiveWord = "飛揚論壇"}
  2136. self.datas[2127] = {ID = 2127, SensitiveWord = "廢墟守護者"}
  2137. self.datas[2128] = {ID = 2128, SensitiveWord = "費鴻泰"}
  2138. self.datas[2129] = {ID = 2129, SensitiveWord = "費良勇"}
  2139. self.datas[2130] = {ID = 2130, SensitiveWord = "分隊長施蒂文"}
  2140. self.datas[2131] = {ID = 2131, SensitiveWord = "粉飾太平"}
  2141. self.datas[2132] = {ID = 2132, SensitiveWord = "糞便"}
  2142. self.datas[2133] = {ID = 2133, SensitiveWord = "鱝"}
  2143. self.datas[2134] = {ID = 2134, SensitiveWord = "豐饒的果實"}
  2144. self.datas[2135] = {ID = 2135, SensitiveWord = "風雨神州"}
  2145. self.datas[2136] = {ID = 2136, SensitiveWord = "風雨神州論壇"}
  2146. self.datas[2137] = {ID = 2137, SensitiveWord = "封從德"}
  2147. self.datas[2138] = {ID = 2138, SensitiveWord = "封殺"}
  2148. self.datas[2139] = {ID = 2139, SensitiveWord = "封印的靈魂騎士"}
  2149. self.datas[2140] = {ID = 2140, SensitiveWord = "馮東海"}
  2150. self.datas[2141] = {ID = 2141, SensitiveWord = "馮素英"}
  2151. self.datas[2142] = {ID = 2142, SensitiveWord = "紱"}
  2152. self.datas[2143] = {ID = 2143, SensitiveWord = "襆"}
  2153. self.datas[2144] = {ID = 2144, SensitiveWord = "嘸 "}
  2154. self.datas[2145] = {ID = 2145, SensitiveWord = "傅作義"}
  2155. self.datas[2146] = {ID = 2146, SensitiveWord = "幹bi"}
  2156. self.datas[2147] = {ID = 2147, SensitiveWord = "幹逼"}
  2157. self.datas[2148] = {ID = 2148, SensitiveWord = "幹比"}
  2158. self.datas[2149] = {ID = 2149, SensitiveWord = "幹的你"}
  2159. self.datas[2150] = {ID = 2150, SensitiveWord = "幹幹幹"}
  2160. self.datas[2151] = {ID = 2151, SensitiveWord = "幹她"}
  2161. self.datas[2152] = {ID = 2152, SensitiveWord = "幹你"}
  2162. self.datas[2153] = {ID = 2153, SensitiveWord = "幹你老比"}
  2163. self.datas[2154] = {ID = 2154, SensitiveWord = "幹你老母"}
  2164. self.datas[2155] = {ID = 2155, SensitiveWord = "幹你娘"}
  2165. self.datas[2156] = {ID = 2156, SensitiveWord = "幹全家"}
  2166. self.datas[2157] = {ID = 2157, SensitiveWord = "幹死"}
  2167. self.datas[2158] = {ID = 2158, SensitiveWord = "幹死你"}
  2168. self.datas[2159] = {ID = 2159, SensitiveWord = "幹他"}
  2169. self.datas[2160] = {ID = 2160, SensitiveWord = "幹一家"}
  2170. self.datas[2161] = {ID = 2161, SensitiveWord = "趕你娘"}
  2171. self.datas[2162] = {ID = 2162, SensitiveWord = "岡巒"}
  2172. self.datas[2163] = {ID = 2163, SensitiveWord = "剛比"}
  2173. self.datas[2164] = {ID = 2164, SensitiveWord = "剛比樣子"}
  2174. self.datas[2165] = {ID = 2165, SensitiveWord = "崗哨士兵"}
  2175. self.datas[2166] = {ID = 2166, SensitiveWord = "肛門"}
  2176. self.datas[2167] = {ID = 2167, SensitiveWord = "高麗棒子"}
  2177. self.datas[2168] = {ID = 2168, SensitiveWord = "高文謙"}
  2178. self.datas[2169] = {ID = 2169, SensitiveWord = "高薪養廉"}
  2179. self.datas[2170] = {ID = 2170, SensitiveWord = "高自聯"}
  2180. self.datas[2171] = {ID = 2171, SensitiveWord = "膏藥旗"}
  2181. self.datas[2172] = {ID = 2172, SensitiveWord = "戈瑞爾德"}
  2182. self.datas[2173] = {ID = 2173, SensitiveWord = "戈揚"}
  2183. self.datas[2174] = {ID = 2174, SensitiveWord = "鴿派"}
  2184. self.datas[2175] = {ID = 2175, SensitiveWord = "歌功頌德"}
  2185. self.datas[2176] = {ID = 2176, SensitiveWord = "格雷(關卡排名管理者)"}
  2186. self.datas[2177] = {ID = 2177, SensitiveWord = "格魯"}
  2187. self.datas[2178] = {ID = 2178, SensitiveWord = "格魯(城鎮移動)"}
  2188. self.datas[2179] = {ID = 2179, SensitiveWord = "鯁"}
  2189. self.datas[2180] = {ID = 2180, SensitiveWord = "工自聯"}
  2190. self.datas[2181] = {ID = 2181, SensitiveWord = "弓雖"}
  2191. self.datas[2182] = {ID = 2182, SensitiveWord = "共産"}
  2192. self.datas[2183] = {ID = 2183, SensitiveWord = "共産黨"}
  2193. self.datas[2184] = {ID = 2184, SensitiveWord = "共産主義"}
  2194. self.datas[2185] = {ID = 2185, SensitiveWord = "共黨"}
  2195. self.datas[2186] = {ID = 2186, SensitiveWord = "共軍"}
  2196. self.datas[2187] = {ID = 2187, SensitiveWord = "共榮圈"}
  2197. self.datas[2188] = {ID = 2188, SensitiveWord = "緱"}
  2198. self.datas[2189] = {ID = 2189, SensitiveWord = "狗誠"}
  2199. self.datas[2190] = {ID = 2190, SensitiveWord = "狗狼養的"}
  2200. self.datas[2191] = {ID = 2191, SensitiveWord = "狗娘養的"}
  2201. self.datas[2192] = {ID = 2192, SensitiveWord = "狗養"}
  2202. self.datas[2193] = {ID = 2193, SensitiveWord = "狗雜種"}
  2203. self.datas[2194] = {ID = 2194, SensitiveWord = "覯"}
  2204. self.datas[2195] = {ID = 2195, SensitiveWord = "轂"}
  2205. self.datas[2196] = {ID = 2196, SensitiveWord = "古龍祭壇"}
  2206. self.datas[2197] = {ID = 2197, SensitiveWord = "骨獅"}
  2207. self.datas[2198] = {ID = 2198, SensitiveWord = "鯝"}
  2208. self.datas[2199] = {ID = 2199, SensitiveWord = "鴰"}
  2209. self.datas[2200] = {ID = 2200, SensitiveWord = "詿"}
  2210. self.datas[2201] = {ID = 2201, SensitiveWord = "關卓中"}
  2211. self.datas[2202] = {ID = 2202, SensitiveWord = "貫通兩極法"}
  2212. self.datas[2203] = {ID = 2203, SensitiveWord = "廣聞"}
  2213. self.datas[2204] = {ID = 2204, SensitiveWord = "嬀"}
  2214. self.datas[2205] = {ID = 2205, SensitiveWord = "龜兒子"}
  2215. self.datas[2206] = {ID = 2206, SensitiveWord = "龜公"}
  2216. self.datas[2207] = {ID = 2207, SensitiveWord = "龜孫子"}
  2217. self.datas[2208] = {ID = 2208, SensitiveWord = "龜頭"}
  2218. self.datas[2209] = {ID = 2209, SensitiveWord = "龜投"}
  2219. self.datas[2210] = {ID = 2210, SensitiveWord = "劌"}
  2220. self.datas[2211] = {ID = 2211, SensitiveWord = "緄"}
  2221. self.datas[2212] = {ID = 2212, SensitiveWord = "滾那嗎"}
  2222. self.datas[2213] = {ID = 2213, SensitiveWord = "滾那嗎B"}
  2223. self.datas[2214] = {ID = 2214, SensitiveWord = "滾那嗎錯比"}
  2224. self.datas[2215] = {ID = 2215, SensitiveWord = "滾那嗎老比"}
  2225. self.datas[2216] = {ID = 2216, SensitiveWord = "滾那嗎瘟比"}
  2226. self.datas[2217] = {ID = 2217, SensitiveWord = "鯀"}
  2227. self.datas[2218] = {ID = 2218, SensitiveWord = "咼"}
  2228. self.datas[2219] = {ID = 2219, SensitiveWord = "郭俊銘"}
  2229. self.datas[2220] = {ID = 2220, SensitiveWord = "郭羅基"}
  2230. self.datas[2221] = {ID = 2221, SensitiveWord = "郭岩華"}
  2231. self.datas[2222] = {ID = 2222, SensitiveWord = "國家安全"}
  2232. self.datas[2223] = {ID = 2223, SensitiveWord = "國家機密"}
  2233. self.datas[2224] = {ID = 2224, SensitiveWord = "國軍"}
  2234. self.datas[2225] = {ID = 2225, SensitiveWord = "國賊"}
  2235. self.datas[2226] = {ID = 2226, SensitiveWord = "哈爾羅尼"}
  2236. self.datas[2227] = {ID = 2227, SensitiveWord = "頇"}
  2237. self.datas[2228] = {ID = 2228, SensitiveWord = "韓東方"}
  2238. self.datas[2229] = {ID = 2229, SensitiveWord = "韓聯潮"}
  2239. self.datas[2230] = {ID = 2230, SensitiveWord = "韓正"}
  2240. self.datas[2231] = {ID = 2231, SensitiveWord = "漢奸"}
  2241. self.datas[2232] = {ID = 2232, SensitiveWord = "顥"}
  2242. self.datas[2233] = {ID = 2233, SensitiveWord = "灝"}
  2243. self.datas[2234] = {ID = 2234, SensitiveWord = "河殤"}
  2244. self.datas[2235] = {ID = 2235, SensitiveWord = "賀國强"}
  2245. self.datas[2236] = {ID = 2236, SensitiveWord = "賀龍"}
  2246. self.datas[2237] = {ID = 2237, SensitiveWord = "黑社會"}
  2247. self.datas[2238] = {ID = 2238, SensitiveWord = "黑手黨"}
  2248. self.datas[2239] = {ID = 2239, SensitiveWord = "紅燈區"}
  2249. self.datas[2240] = {ID = 2240, SensitiveWord = "紅色恐怖"}
  2250. self.datas[2241] = {ID = 2241, SensitiveWord = "紅炎猛獸"}
  2251. self.datas[2242] = {ID = 2242, SensitiveWord = "洪傳"}
  2252. self.datas[2243] = {ID = 2243, SensitiveWord = "洪興"}
  2253. self.datas[2244] = {ID = 2244, SensitiveWord = "洪哲勝"}
  2254. self.datas[2245] = {ID = 2245, SensitiveWord = "黌"}
  2255. self.datas[2246] = {ID = 2246, SensitiveWord = "鱟"}
  2256. self.datas[2247] = {ID = 2247, SensitiveWord = "胡緊掏"}
  2257. self.datas[2248] = {ID = 2248, SensitiveWord = "胡錦滔"}
  2258. self.datas[2249] = {ID = 2249, SensitiveWord = "胡錦淘"}
  2259. self.datas[2250] = {ID = 2250, SensitiveWord = "胡景濤"}
  2260. self.datas[2251] = {ID = 2251, SensitiveWord = "胡喬木"}
  2261. self.datas[2252] = {ID = 2252, SensitiveWord = "胡總書記"}
  2262. self.datas[2253] = {ID = 2253, SensitiveWord = "湖岸護衛兵"}
  2263. self.datas[2254] = {ID = 2254, SensitiveWord = "湖岸警衛兵"}
  2264. self.datas[2255] = {ID = 2255, SensitiveWord = "湖岸哨兵隊長"}
  2265. self.datas[2256] = {ID = 2256, SensitiveWord = "護法"}
  2266. self.datas[2257] = {ID = 2257, SensitiveWord = "鸌"}
  2267. self.datas[2258] = {ID = 2258, SensitiveWord = "華建敏"}
  2268. self.datas[2259] = {ID = 2259, SensitiveWord = "華通時事論壇"}
  2269. self.datas[2260] = {ID = 2260, SensitiveWord = "華夏文摘"}
  2270. self.datas[2261] = {ID = 2261, SensitiveWord = "華語世界論壇"}
  2271. self.datas[2262] = {ID = 2262, SensitiveWord = "華岳時事論壇"}
  2272. self.datas[2263] = {ID = 2263, SensitiveWord = "懷特"}
  2273. self.datas[2264] = {ID = 2264, SensitiveWord = "鍰"}
  2274. self.datas[2265] = {ID = 2265, SensitiveWord = "皇軍"}
  2275. self.datas[2266] = {ID = 2266, SensitiveWord = "黃伯源"}
  2276. self.datas[2267] = {ID = 2267, SensitiveWord = "黃慈萍"}
  2277. self.datas[2268] = {ID = 2268, SensitiveWord = "黃禍"}
  2278. self.datas[2269] = {ID = 2269, SensitiveWord = "黃劍輝"}
  2279. self.datas[2270] = {ID = 2270, SensitiveWord = "黃金幼龍"}
  2280. self.datas[2271] = {ID = 2271, SensitiveWord = "黃菊"}
  2281. self.datas[2272] = {ID = 2272, SensitiveWord = "黃片"}
  2282. self.datas[2273] = {ID = 2273, SensitiveWord = "黃翔"}
  2283. self.datas[2274] = {ID = 2274, SensitiveWord = "黃義交"}
  2284. self.datas[2275] = {ID = 2275, SensitiveWord = "黃仲生"}
  2285. self.datas[2276] = {ID = 2276, SensitiveWord = "回民暴動"}
  2286. self.datas[2277] = {ID = 2277, SensitiveWord = "噦"}
  2287. self.datas[2278] = {ID = 2278, SensitiveWord = "繢"}
  2288. self.datas[2279] = {ID = 2279, SensitiveWord = "毀滅步兵"}
  2289. self.datas[2280] = {ID = 2280, SensitiveWord = "毀滅騎士"}
  2290. self.datas[2281] = {ID = 2281, SensitiveWord = "毀滅射手"}
  2291. self.datas[2282] = {ID = 2282, SensitiveWord = "昏迷圖騰"}
  2292. self.datas[2283] = {ID = 2283, SensitiveWord = "混亂的圖騰"}
  2293. self.datas[2284] = {ID = 2284, SensitiveWord = "鍃"}
  2294. self.datas[2285] = {ID = 2285, SensitiveWord = "活動 "}
  2295. self.datas[2286] = {ID = 2286, SensitiveWord = "擊倒圖騰"}
  2296. self.datas[2287] = {ID = 2287, SensitiveWord = "擊傷的圖騰"}
  2297. self.datas[2288] = {ID = 2288, SensitiveWord = "鶏8"}
  2298. self.datas[2289] = {ID = 2289, SensitiveWord = "鶏八"}
  2299. self.datas[2290] = {ID = 2290, SensitiveWord = "鶏巴"}
  2300. self.datas[2291] = {ID = 2291, SensitiveWord = "鶏吧"}
  2301. self.datas[2292] = {ID = 2292, SensitiveWord = "鶏鶏"}
  2302. self.datas[2293] = {ID = 2293, SensitiveWord = "鶏奸"}
  2303. self.datas[2294] = {ID = 2294, SensitiveWord = "鶏毛信文匯"}
  2304. self.datas[2295] = {ID = 2295, SensitiveWord = "鶏女"}
  2305. self.datas[2296] = {ID = 2296, SensitiveWord = "鶏院"}
  2306. self.datas[2297] = {ID = 2297, SensitiveWord = "姬勝德"}
  2307. self.datas[2298] = {ID = 2298, SensitiveWord = "積克館"}
  2308. self.datas[2299] = {ID = 2299, SensitiveWord = "賫"}
  2309. self.datas[2300] = {ID = 2300, SensitiveWord = "鱭"}
  2310. self.datas[2301] = {ID = 2301, SensitiveWord = "賈廷安"}
  2311. self.datas[2302] = {ID = 2302, SensitiveWord = "賈育台"}
  2312. self.datas[2303] = {ID = 2303, SensitiveWord = "戔"}
  2313. self.datas[2304] = {ID = 2304, SensitiveWord = "監視塔"}
  2314. self.datas[2305] = {ID = 2305, SensitiveWord = "監視塔哨兵"}
  2315. self.datas[2306] = {ID = 2306, SensitiveWord = "監視塔哨兵隊長"}
  2316. self.datas[2307] = {ID = 2307, SensitiveWord = "鰹"}
  2317. self.datas[2308] = {ID = 2308, SensitiveWord = "韉"}
  2318. self.datas[2309] = {ID = 2309, SensitiveWord = "簡肇棟"}
  2319. self.datas[2310] = {ID = 2310, SensitiveWord = "建國黨"}
  2320. self.datas[2311] = {ID = 2311, SensitiveWord = "賤B"}
  2321. self.datas[2312] = {ID = 2312, SensitiveWord = "賤bi"}
  2322. self.datas[2313] = {ID = 2313, SensitiveWord = "賤逼"}
  2323. self.datas[2314] = {ID = 2314, SensitiveWord = "賤比"}
  2324. self.datas[2315] = {ID = 2315, SensitiveWord = "賤貨"}
  2325. self.datas[2316] = {ID = 2316, SensitiveWord = "賤人"}
  2326. self.datas[2317] = {ID = 2317, SensitiveWord = "賤種"}
  2327. self.datas[2318] = {ID = 2318, SensitiveWord = "江八點"}
  2328. self.datas[2319] = {ID = 2319, SensitiveWord = "江羅"}
  2329. self.datas[2320] = {ID = 2320, SensitiveWord = "江綿恒"}
  2330. self.datas[2321] = {ID = 2321, SensitiveWord = "江戲子"}
  2331. self.datas[2322] = {ID = 2322, SensitiveWord = "江則民"}
  2332. self.datas[2323] = {ID = 2323, SensitiveWord = "江澤慧"}
  2333. self.datas[2324] = {ID = 2324, SensitiveWord = "江賊"}
  2334. self.datas[2325] = {ID = 2325, SensitiveWord = "江賊民"}
  2335. self.datas[2326] = {ID = 2326, SensitiveWord = "薑春雲"}
  2336. self.datas[2327] = {ID = 2327, SensitiveWord = "將則民"}
  2337. self.datas[2328] = {ID = 2328, SensitiveWord = "僵賊"}
  2338. self.datas[2329] = {ID = 2329, SensitiveWord = "僵賊民"}
  2339. self.datas[2330] = {ID = 2330, SensitiveWord = "講法"}
  2340. self.datas[2331] = {ID = 2331, SensitiveWord = "蔣介石"}
  2341. self.datas[2332] = {ID = 2332, SensitiveWord = "蔣中正"}
  2342. self.datas[2333] = {ID = 2333, SensitiveWord = "降低命中的圖騰"}
  2343. self.datas[2334] = {ID = 2334, SensitiveWord = "醬猪媳"}
  2344. self.datas[2335] = {ID = 2335, SensitiveWord = "撟"}
  2345. self.datas[2336] = {ID = 2336, SensitiveWord = "狡猾的達夫"}
  2346. self.datas[2337] = {ID = 2337, SensitiveWord = "矯健的馬努爾"}
  2347. self.datas[2338] = {ID = 2338, SensitiveWord = "嶠"}
  2348. self.datas[2339] = {ID = 2339, SensitiveWord = "教養院"}
  2349. self.datas[2340] = {ID = 2340, SensitiveWord = "癤"}
  2350. self.datas[2341] = {ID = 2341, SensitiveWord = "揭批書"}
  2351. self.datas[2342] = {ID = 2342, SensitiveWord = "訐"}
  2352. self.datas[2343] = {ID = 2343, SensitiveWord = "她媽"}
  2353. self.datas[2344] = {ID = 2344, SensitiveWord = "届中央政治局委員"}
  2354. self.datas[2345] = {ID = 2345, SensitiveWord = "金槍不倒 "}
  2355. self.datas[2346] = {ID = 2346, SensitiveWord = "金堯如"}
  2356. self.datas[2347] = {ID = 2347, SensitiveWord = "金澤辰"}
  2357. self.datas[2348] = {ID = 2348, SensitiveWord = "巹"}
  2358. self.datas[2349] = {ID = 2349, SensitiveWord = "錦濤"}
  2359. self.datas[2350] = {ID = 2350, SensitiveWord = "經文"}
  2360. self.datas[2351] = {ID = 2351, SensitiveWord = "經血"}
  2361. self.datas[2352] = {ID = 2352, SensitiveWord = "莖候佳陰"}
  2362. self.datas[2353] = {ID = 2353, SensitiveWord = "荊棘護衛兵 "}
  2363. self.datas[2354] = {ID = 2354, SensitiveWord = "靖國神社"}
  2364. self.datas[2355] = {ID = 2355, SensitiveWord = "㈨"}
  2365. self.datas[2356] = {ID = 2356, SensitiveWord = "舊斗篷哨兵"}
  2366. self.datas[2357] = {ID = 2357, SensitiveWord = "齟"}
  2367. self.datas[2358] = {ID = 2358, SensitiveWord = "巨槌騎兵"}
  2368. self.datas[2359] = {ID = 2359, SensitiveWord = "巨鐵角哈克"}
  2369. self.datas[2360] = {ID = 2360, SensitiveWord = "鋸齒通道被遺弃的骷髏"}
  2370. self.datas[2361] = {ID = 2361, SensitiveWord = "鋸齒通道骷髏"}
  2371. self.datas[2362] = {ID = 2362, SensitiveWord = "屨"}
  2372. self.datas[2363] = {ID = 2363, SensitiveWord = "棬"}
  2373. self.datas[2364] = {ID = 2364, SensitiveWord = "絕望之地"}
  2374. self.datas[2365] = {ID = 2365, SensitiveWord = "譎"}
  2375. self.datas[2366] = {ID = 2366, SensitiveWord = "軍妓"}
  2376. self.datas[2367] = {ID = 2367, SensitiveWord = "開苞"}
  2377. self.datas[2368] = {ID = 2368, SensitiveWord = "開放雜志"}
  2378. self.datas[2369] = {ID = 2369, SensitiveWord = "凱奧勒尼什"}
  2379. self.datas[2370] = {ID = 2370, SensitiveWord = "凱爾本"}
  2380. self.datas[2371] = {ID = 2371, SensitiveWord = "凱爾雷斯"}
  2381. self.datas[2372] = {ID = 2372, SensitiveWord = "凱特切爾"}
  2382. self.datas[2373] = {ID = 2373, SensitiveWord = "砍翻一條街"}
  2383. self.datas[2374] = {ID = 2374, SensitiveWord = "看中國"}
  2384. self.datas[2375] = {ID = 2375, SensitiveWord = "闞"}
  2385. self.datas[2376] = {ID = 2376, SensitiveWord = "靠你媽"}
  2386. self.datas[2377] = {ID = 2377, SensitiveWord = "柯賜海"}
  2387. self.datas[2378] = {ID = 2378, SensitiveWord = "柯建銘"}
  2388. self.datas[2379] = {ID = 2379, SensitiveWord = "科萊爾"}
  2389. self.datas[2380] = {ID = 2380, SensitiveWord = "克萊恩"}
  2390. self.datas[2381] = {ID = 2381, SensitiveWord = "克萊特"}
  2391. self.datas[2382] = {ID = 2382, SensitiveWord = "克勞森"}
  2392. self.datas[2383] = {ID = 2383, SensitiveWord = "客戶服務"}
  2393. self.datas[2384] = {ID = 2384, SensitiveWord = "緙"}
  2394. self.datas[2385] = {ID = 2385, SensitiveWord = "空氣精靈"}
  2395. self.datas[2386] = {ID = 2386, SensitiveWord = "空虛的伊坤"}
  2396. self.datas[2387] = {ID = 2387, SensitiveWord = "空虛之地"}
  2397. self.datas[2388] = {ID = 2388, SensitiveWord = "恐怖主義"}
  2398. self.datas[2389] = {ID = 2389, SensitiveWord = "瞘"}
  2399. self.datas[2390] = {ID = 2390, SensitiveWord = "嚳"}
  2400. self.datas[2391] = {ID = 2391, SensitiveWord = "鄺錦文"}
  2401. self.datas[2392] = {ID = 2392, SensitiveWord = "貺"}
  2402. self.datas[2393] = {ID = 2393, SensitiveWord = "昆圖"}
  2403. self.datas[2394] = {ID = 2394, SensitiveWord = "拉姆斯菲爾德"}
  2404. self.datas[2395] = {ID = 2395, SensitiveWord = "拉皮條"}
  2405. self.datas[2396] = {ID = 2396, SensitiveWord = "萊特"}
  2406. self.datas[2397] = {ID = 2397, SensitiveWord = "賴士葆"}
  2407. self.datas[2398] = {ID = 2398, SensitiveWord = "蘭迪"}
  2408. self.datas[2399] = {ID = 2399, SensitiveWord = "爛B"}
  2409. self.datas[2400] = {ID = 2400, SensitiveWord = "爛逼"}
  2410. self.datas[2401] = {ID = 2401, SensitiveWord = "爛比"}
  2411. self.datas[2402] = {ID = 2402, SensitiveWord = "爛袋"}
  2412. self.datas[2403] = {ID = 2403, SensitiveWord = "爛貨"}
  2413. self.datas[2404] = {ID = 2404, SensitiveWord = "濫B"}
  2414. self.datas[2405] = {ID = 2405, SensitiveWord = "濫逼"}
  2415. self.datas[2406] = {ID = 2406, SensitiveWord = "濫比"}
  2416. self.datas[2407] = {ID = 2407, SensitiveWord = "濫貨"}
  2417. self.datas[2408] = {ID = 2408, SensitiveWord = "濫交"}
  2418. self.datas[2409] = {ID = 2409, SensitiveWord = "勞動教養所"}
  2419. self.datas[2410] = {ID = 2410, SensitiveWord = "勞改"}
  2420. self.datas[2411] = {ID = 2411, SensitiveWord = "勞教"}
  2421. self.datas[2412] = {ID = 2412, SensitiveWord = "鰳"}
  2422. self.datas[2413] = {ID = 2413, SensitiveWord = "雷尼亞"}
  2423. self.datas[2414] = {ID = 2414, SensitiveWord = "誄"}
  2424. self.datas[2415] = {ID = 2415, SensitiveWord = "李紅痔"}
  2425. self.datas[2416] = {ID = 2416, SensitiveWord = "李洪寬"}
  2426. self.datas[2417] = {ID = 2417, SensitiveWord = "李繼耐"}
  2427. self.datas[2418] = {ID = 2418, SensitiveWord = "李蘭菊"}
  2428. self.datas[2419] = {ID = 2419, SensitiveWord = "李老師"}
  2429. self.datas[2420] = {ID = 2420, SensitiveWord = "李錄"}
  2430. self.datas[2421] = {ID = 2421, SensitiveWord = "李祿"}
  2431. self.datas[2422] = {ID = 2422, SensitiveWord = "李慶安"}
  2432. self.datas[2423] = {ID = 2423, SensitiveWord = "李慶華"}
  2433. self.datas[2424] = {ID = 2424, SensitiveWord = "李淑嫻"}
  2434. self.datas[2425] = {ID = 2425, SensitiveWord = "李鐵映"}
  2435. self.datas[2426] = {ID = 2426, SensitiveWord = "李旺陽"}
  2436. self.datas[2427] = {ID = 2427, SensitiveWord = "李小鵬"}
  2437. self.datas[2428] = {ID = 2428, SensitiveWord = "李月月鳥"}
  2438. self.datas[2429] = {ID = 2429, SensitiveWord = "李志綏"}
  2439. self.datas[2430] = {ID = 2430, SensitiveWord = "李總理"}
  2440. self.datas[2431] = {ID = 2431, SensitiveWord = "李總統"}
  2441. self.datas[2432] = {ID = 2432, SensitiveWord = "裏菲斯"}
  2442. self.datas[2433] = {ID = 2433, SensitiveWord = "鱧"}
  2443. self.datas[2434] = {ID = 2434, SensitiveWord = "轢"}
  2444. self.datas[2435] = {ID = 2435, SensitiveWord = "躒"}
  2445. self.datas[2436] = {ID = 2436, SensitiveWord = "奩"}
  2446. self.datas[2437] = {ID = 2437, SensitiveWord = "連方瑀"}
  2447. self.datas[2438] = {ID = 2438, SensitiveWord = "連惠心"}
  2448. self.datas[2439] = {ID = 2439, SensitiveWord = "連勝德"}
  2449. self.datas[2440] = {ID = 2440, SensitiveWord = "連勝文"}
  2450. self.datas[2441] = {ID = 2441, SensitiveWord = "連戰"}
  2451. self.datas[2442] = {ID = 2442, SensitiveWord = "聯總"}
  2452. self.datas[2443] = {ID = 2443, SensitiveWord = "廉政大論壇"}
  2453. self.datas[2444] = {ID = 2444, SensitiveWord = "煉功"}
  2454. self.datas[2445] = {ID = 2445, SensitiveWord = "兩岸關係"}
  2455. self.datas[2446] = {ID = 2446, SensitiveWord = "兩岸三地論壇"}
  2456. self.datas[2447] = {ID = 2447, SensitiveWord = "兩個中國"}
  2457. self.datas[2448] = {ID = 2448, SensitiveWord = "兩會"}
  2458. self.datas[2449] = {ID = 2449, SensitiveWord = "兩會報道"}
  2459. self.datas[2450] = {ID = 2450, SensitiveWord = "兩會新聞"}
  2460. self.datas[2451] = {ID = 2451, SensitiveWord = "廖錫龍 "}
  2461. self.datas[2452] = {ID = 2452, SensitiveWord = "林保華"}
  2462. self.datas[2453] = {ID = 2453, SensitiveWord = "林長盛"}
  2463. self.datas[2454] = {ID = 2454, SensitiveWord = "林佳龍"}
  2464. self.datas[2455] = {ID = 2455, SensitiveWord = "林信義"}
  2465. self.datas[2456] = {ID = 2456, SensitiveWord = "林正勝"}
  2466. self.datas[2457] = {ID = 2457, SensitiveWord = "林重謨"}
  2467. self.datas[2458] = {ID = 2458, SensitiveWord = "躪"}
  2468. self.datas[2459] = {ID = 2459, SensitiveWord = "淩鋒"}
  2469. self.datas[2460] = {ID = 2460, SensitiveWord = "劉賓深"}
  2470. self.datas[2461] = {ID = 2461, SensitiveWord = "劉賓雁"}
  2471. self.datas[2462] = {ID = 2462, SensitiveWord = "劉剛"}
  2472. self.datas[2463] = {ID = 2463, SensitiveWord = "劉國凱"}
  2473. self.datas[2464] = {ID = 2464, SensitiveWord = "劉華清"}
  2474. self.datas[2465] = {ID = 2465, SensitiveWord = "劉俊國"}
  2475. self.datas[2466] = {ID = 2466, SensitiveWord = "劉凱中"}
  2476. self.datas[2467] = {ID = 2467, SensitiveWord = "劉千石"}
  2477. self.datas[2468] = {ID = 2468, SensitiveWord = "劉青"}
  2478. self.datas[2469] = {ID = 2469, SensitiveWord = "劉山青"}
  2479. self.datas[2470] = {ID = 2470, SensitiveWord = "劉士賢"}
  2480. self.datas[2471] = {ID = 2471, SensitiveWord = "劉文勝"}
  2481. self.datas[2472] = {ID = 2472, SensitiveWord = "劉文雄"}
  2482. self.datas[2473] = {ID = 2473, SensitiveWord = "劉曉波"}
  2483. self.datas[2474] = {ID = 2474, SensitiveWord = "劉曉竹"}
  2484. self.datas[2475] = {ID = 2475, SensitiveWord = "劉永川"}
  2485. self.datas[2476] = {ID = 2476, SensitiveWord = "㈥"}
  2486. self.datas[2477] = {ID = 2477, SensitiveWord = "鷚"}
  2487. self.datas[2478] = {ID = 2478, SensitiveWord = "龍虎豹"}
  2488. self.datas[2479] = {ID = 2479, SensitiveWord = "龍火之心"}
  2489. self.datas[2480] = {ID = 2480, SensitiveWord = "盧卡"}
  2490. self.datas[2481] = {ID = 2481, SensitiveWord = "盧西德"}
  2491. self.datas[2482] = {ID = 2482, SensitiveWord = "陸委會"}
  2492. self.datas[2483] = {ID = 2483, SensitiveWord = "輅"}
  2493. self.datas[2484] = {ID = 2484, SensitiveWord = "呂京花"}
  2494. self.datas[2485] = {ID = 2485, SensitiveWord = "呂秀蓮"}
  2495. self.datas[2486] = {ID = 2486, SensitiveWord = "亂交"}
  2496. self.datas[2487] = {ID = 2487, SensitiveWord = "亂倫"}
  2497. self.datas[2488] = {ID = 2488, SensitiveWord = "亂輪"}
  2498. self.datas[2489] = {ID = 2489, SensitiveWord = "鋝"}
  2499. self.datas[2490] = {ID = 2490, SensitiveWord = "掄功"}
  2500. self.datas[2491] = {ID = 2491, SensitiveWord = "倫功"}
  2501. self.datas[2492] = {ID = 2492, SensitiveWord = "輪大"}
  2502. self.datas[2493] = {ID = 2493, SensitiveWord = "輪功"}
  2503. self.datas[2494] = {ID = 2494, SensitiveWord = "輪奸"}
  2504. self.datas[2495] = {ID = 2495, SensitiveWord = "論壇管理員"}
  2505. self.datas[2496] = {ID = 2496, SensitiveWord = "羅福助"}
  2506. self.datas[2497] = {ID = 2497, SensitiveWord = "羅幹"}
  2507. self.datas[2498] = {ID = 2498, SensitiveWord = "羅禮詩"}
  2508. self.datas[2499] = {ID = 2499, SensitiveWord = "羅文嘉"}
  2509. self.datas[2500] = {ID = 2500, SensitiveWord = "羅志明"}
  2510. self.datas[2501] = {ID = 2501, SensitiveWord = "腡"}
  2511. self.datas[2502] = {ID = 2502, SensitiveWord = "濼"}
  2512. self.datas[2503] = {ID = 2503, SensitiveWord = "洛克菲爾特"}
  2513. self.datas[2504] = {ID = 2504, SensitiveWord = "媽B"}
  2514. self.datas[2505] = {ID = 2505, SensitiveWord = "媽比"}
  2515. self.datas[2506] = {ID = 2506, SensitiveWord = "媽的"}
  2516. self.datas[2507] = {ID = 2507, SensitiveWord = "媽批"}
  2517. self.datas[2508] = {ID = 2508, SensitiveWord = "馬大維"}
  2518. self.datas[2509] = {ID = 2509, SensitiveWord = "馬克思"}
  2519. self.datas[2510] = {ID = 2510, SensitiveWord = "馬良駿"}
  2520. self.datas[2511] = {ID = 2511, SensitiveWord = "馬三家"}
  2521. self.datas[2512] = {ID = 2512, SensitiveWord = "馬時敏"}
  2522. self.datas[2513] = {ID = 2513, SensitiveWord = "馬特斯"}
  2523. self.datas[2514] = {ID = 2514, SensitiveWord = "馬英九"}
  2524. self.datas[2515] = {ID = 2515, SensitiveWord = "馬永成"}
  2525. self.datas[2516] = {ID = 2516, SensitiveWord = "瑪麗亞"}
  2526. self.datas[2517] = {ID = 2517, SensitiveWord = "瑪雅"}
  2527. self.datas[2518] = {ID = 2518, SensitiveWord = "嗎的"}
  2528. self.datas[2519] = {ID = 2519, SensitiveWord = "嗎啡"}
  2529. self.datas[2520] = {ID = 2520, SensitiveWord = "勱"}
  2530. self.datas[2521] = {ID = 2521, SensitiveWord = "麥克斯"}
  2531. self.datas[2522] = {ID = 2522, SensitiveWord = "賣逼"}
  2532. self.datas[2523] = {ID = 2523, SensitiveWord = "賣比"}
  2533. self.datas[2524] = {ID = 2524, SensitiveWord = "賣國"}
  2534. self.datas[2525] = {ID = 2525, SensitiveWord = "賣騷"}
  2535. self.datas[2526] = {ID = 2526, SensitiveWord = "賣淫"}
  2536. self.datas[2527] = {ID = 2527, SensitiveWord = "瞞報"}
  2537. self.datas[2528] = {ID = 2528, SensitiveWord = "毛厠洞"}
  2538. self.datas[2529] = {ID = 2529, SensitiveWord = "毛賊"}
  2539. self.datas[2530] = {ID = 2530, SensitiveWord = "毛賊東"}
  2540. self.datas[2531] = {ID = 2531, SensitiveWord = "美國"}
  2541. self.datas[2532] = {ID = 2532, SensitiveWord = "美國參考"}
  2542. self.datas[2533] = {ID = 2533, SensitiveWord = "美國佬"}
  2543. self.datas[2534] = {ID = 2534, SensitiveWord = "美國之音"}
  2544. self.datas[2535] = {ID = 2535, SensitiveWord = "蒙獨"}
  2545. self.datas[2536] = {ID = 2536, SensitiveWord = "蒙古達子"}
  2546. self.datas[2537] = {ID = 2537, SensitiveWord = "蒙古獨"}
  2547. self.datas[2538] = {ID = 2538, SensitiveWord = "蒙古獨立"}
  2548. self.datas[2539] = {ID = 2539, SensitiveWord = "禰"}
  2549. self.datas[2540] = {ID = 2540, SensitiveWord = "羋"}
  2550. self.datas[2541] = {ID = 2541, SensitiveWord = "綿恒"}
  2551. self.datas[2542] = {ID = 2542, SensitiveWord = "黽"}
  2552. self.datas[2543] = {ID = 2543, SensitiveWord = "民國"}
  2553. self.datas[2544] = {ID = 2544, SensitiveWord = "民進黨"}
  2554. self.datas[2545] = {ID = 2545, SensitiveWord = "民聯"}
  2555. self.datas[2546] = {ID = 2546, SensitiveWord = "民意論壇"}
  2556. self.datas[2547] = {ID = 2547, SensitiveWord = "民陣"}
  2557. self.datas[2548] = {ID = 2548, SensitiveWord = "民主墻"}
  2558. self.datas[2549] = {ID = 2549, SensitiveWord = "緡"}
  2559. self.datas[2550] = {ID = 2550, SensitiveWord = "湣"}
  2560. self.datas[2551] = {ID = 2551, SensitiveWord = "鰵"}
  2561. self.datas[2552] = {ID = 2552, SensitiveWord = "摸你鶏巴"}
  2562. self.datas[2553] = {ID = 2553, SensitiveWord = "莫偉强"}
  2563. self.datas[2554] = {ID = 2554, SensitiveWord = "木子論壇"}
  2564. self.datas[2555] = {ID = 2555, SensitiveWord = "內褲"}
  2565. self.datas[2556] = {ID = 2556, SensitiveWord = "內衣"}
  2566. self.datas[2557] = {ID = 2557, SensitiveWord = "那嗎B"}
  2567. self.datas[2558] = {ID = 2558, SensitiveWord = "那嗎逼"}
  2568. self.datas[2559] = {ID = 2559, SensitiveWord = "那嗎錯比"}
  2569. self.datas[2560] = {ID = 2560, SensitiveWord = "那嗎老比"}
  2570. self.datas[2561] = {ID = 2561, SensitiveWord = "那嗎瘟比"}
  2571. self.datas[2562] = {ID = 2562, SensitiveWord = "那娘錯比"}
  2572. self.datas[2563] = {ID = 2563, SensitiveWord = "納粹"}
  2573. self.datas[2564] = {ID = 2564, SensitiveWord = "奶頭"}
  2574. self.datas[2565] = {ID = 2565, SensitiveWord = "南大自由論壇"}
  2575. self.datas[2566] = {ID = 2566, SensitiveWord = "南蠻子"}
  2576. self.datas[2567] = {ID = 2567, SensitiveWord = "鬧事"}
  2577. self.datas[2568] = {ID = 2568, SensitiveWord = "能樣"}
  2578. self.datas[2569] = {ID = 2569, SensitiveWord = "尼奧夫"}
  2579. self.datas[2570] = {ID = 2570, SensitiveWord = "倪育賢"}
  2580. self.datas[2571] = {ID = 2571, SensitiveWord = "鯢"}
  2581. self.datas[2572] = {ID = 2572, SensitiveWord = "你媽"}
  2582. self.datas[2573] = {ID = 2573, SensitiveWord = "你媽逼"}
  2583. self.datas[2574] = {ID = 2574, SensitiveWord = "你媽比"}
  2584. self.datas[2575] = {ID = 2575, SensitiveWord = "你媽的"}
  2585. self.datas[2576] = {ID = 2576, SensitiveWord = "你媽了妹"}
  2586. self.datas[2577] = {ID = 2577, SensitiveWord = "你說我說論壇"}
  2587. self.datas[2578] = {ID = 2578, SensitiveWord = "你爺 "}
  2588. self.datas[2579] = {ID = 2579, SensitiveWord = "娘餓比"}
  2589. self.datas[2580] = {ID = 2580, SensitiveWord = "捏你鶏巴"}
  2590. self.datas[2581] = {ID = 2581, SensitiveWord = "儂著岡巒"}
  2591. self.datas[2582] = {ID = 2582, SensitiveWord = "儂著卵拋"}
  2592. self.datas[2583] = {ID = 2583, SensitiveWord = "奴隸魔族士兵"}
  2593. self.datas[2584] = {ID = 2584, SensitiveWord = "女幹"}
  2594. self.datas[2585] = {ID = 2585, SensitiveWord = "女主人羅姬馬莉"}
  2595. self.datas[2586] = {ID = 2586, SensitiveWord = "儺"}
  2596. self.datas[2587] = {ID = 2587, SensitiveWord = "諾姆"}
  2597. self.datas[2588] = {ID = 2588, SensitiveWord = "潘國平"}
  2598. self.datas[2589] = {ID = 2589, SensitiveWord = "蹣 "}
  2599. self.datas[2590] = {ID = 2590, SensitiveWord = "龐建國"}
  2600. self.datas[2591] = {ID = 2591, SensitiveWord = "泡沫經濟"}
  2601. self.datas[2592] = {ID = 2592, SensitiveWord = "轡"}
  2602. self.datas[2593] = {ID = 2593, SensitiveWord = "噴你"}
  2603. self.datas[2594] = {ID = 2594, SensitiveWord = "皮條客"}
  2604. self.datas[2595] = {ID = 2595, SensitiveWord = "羆"}
  2605. self.datas[2596] = {ID = 2596, SensitiveWord = "諞"}
  2606. self.datas[2597] = {ID = 2597, SensitiveWord = "潑婦 "}
  2607. self.datas[2598] = {ID = 2598, SensitiveWord = "齊墨"}
  2608. self.datas[2599] = {ID = 2599, SensitiveWord = "齊諾"}
  2609. self.datas[2600] = {ID = 2600, SensitiveWord = "騎你"}
  2610. self.datas[2601] = {ID = 2601, SensitiveWord = "磧"}
  2611. self.datas[2602] = {ID = 2602, SensitiveWord = "僉"}
  2612. self.datas[2603] = {ID = 2603, SensitiveWord = "鈐"}
  2613. self.datas[2604] = {ID = 2604, SensitiveWord = "錢達"}
  2614. self.datas[2605] = {ID = 2605, SensitiveWord = "錢國梁"}
  2615. self.datas[2606] = {ID = 2606, SensitiveWord = "錢其琛"}
  2616. self.datas[2607] = {ID = 2607, SensitiveWord = "膁"}
  2617. self.datas[2608] = {ID = 2608, SensitiveWord = "槧"}
  2618. self.datas[2609] = {ID = 2609, SensitiveWord = "錆"}
  2619. self.datas[2610] = {ID = 2610, SensitiveWord = "繰"}
  2620. self.datas[2611] = {ID = 2611, SensitiveWord = "喬石"}
  2621. self.datas[2612] = {ID = 2612, SensitiveWord = "喬伊"}
  2622. self.datas[2613] = {ID = 2613, SensitiveWord = "橋侵襲兵"}
  2623. self.datas[2614] = {ID = 2614, SensitiveWord = "譙"}
  2624. self.datas[2615] = {ID = 2615, SensitiveWord = "鞽"}
  2625. self.datas[2616] = {ID = 2616, SensitiveWord = "篋"}
  2626. self.datas[2617] = {ID = 2617, SensitiveWord = "親美"}
  2627. self.datas[2618] = {ID = 2618, SensitiveWord = "親民黨"}
  2628. self.datas[2619] = {ID = 2619, SensitiveWord = "親日"}
  2629. self.datas[2620] = {ID = 2620, SensitiveWord = "欽本立"}
  2630. self.datas[2621] = {ID = 2621, SensitiveWord = "禽獸"}
  2631. self.datas[2622] = {ID = 2622, SensitiveWord = "唚"}
  2632. self.datas[2623] = {ID = 2623, SensitiveWord = "輕舟快訊"}
  2633. self.datas[2624] = {ID = 2624, SensitiveWord = "情婦"}
  2634. self.datas[2625] = {ID = 2625, SensitiveWord = "情獸"}
  2635. self.datas[2626] = {ID = 2626, SensitiveWord = "檾"}
  2636. self.datas[2627] = {ID = 2627, SensitiveWord = "慶紅"}
  2637. self.datas[2628] = {ID = 2628, SensitiveWord = "丘垂貞"}
  2638. self.datas[2629] = {ID = 2629, SensitiveWord = "詘"}
  2639. self.datas[2630] = {ID = 2630, SensitiveWord = "去你媽的"}
  2640. self.datas[2631] = {ID = 2631, SensitiveWord = "闃"}
  2641. self.datas[2632] = {ID = 2632, SensitiveWord = "全國兩會"}
  2642. self.datas[2633] = {ID = 2633, SensitiveWord = "全國人大"}
  2643. self.datas[2634] = {ID = 2634, SensitiveWord = "犬"}
  2644. self.datas[2635] = {ID = 2635, SensitiveWord = "綣"}
  2645. self.datas[2636] = {ID = 2636, SensitiveWord = "瘸腿幫"}
  2646. self.datas[2637] = {ID = 2637, SensitiveWord = "愨"}
  2647. self.datas[2638] = {ID = 2638, SensitiveWord = "讓你操"}
  2648. self.datas[2639] = {ID = 2639, SensitiveWord = "熱比婭"}
  2649. self.datas[2640] = {ID = 2640, SensitiveWord = "熱站政論網"}
  2650. self.datas[2641] = {ID = 2641, SensitiveWord = "人民報"}
  2651. self.datas[2642] = {ID = 2642, SensitiveWord = "人民大會堂"}
  2652. self.datas[2643] = {ID = 2643, SensitiveWord = "人民內情真相"}
  2653. self.datas[2644] = {ID = 2644, SensitiveWord = "人民真實"}
  2654. self.datas[2645] = {ID = 2645, SensitiveWord = "人民之聲論壇"}
  2655. self.datas[2646] = {ID = 2646, SensitiveWord = "人權"}
  2656. self.datas[2647] = {ID = 2647, SensitiveWord = "日本帝國"}
  2657. self.datas[2648] = {ID = 2648, SensitiveWord = "日軍"}
  2658. self.datas[2649] = {ID = 2649, SensitiveWord = "日內瓦金融"}
  2659. self.datas[2650] = {ID = 2650, SensitiveWord = "日你媽"}
  2660. self.datas[2651] = {ID = 2651, SensitiveWord = "日你爺爺"}
  2661. self.datas[2652] = {ID = 2652, SensitiveWord = "日朱駿"}
  2662. self.datas[2653] = {ID = 2653, SensitiveWord = "顬"}
  2663. self.datas[2654] = {ID = 2654, SensitiveWord = "乳頭"}
  2664. self.datas[2655] = {ID = 2655, SensitiveWord = "乳暈"}
  2665. self.datas[2656] = {ID = 2656, SensitiveWord = "瑞士金融大學"}
  2666. self.datas[2657] = {ID = 2657, SensitiveWord = "薩達姆"}
  2667. self.datas[2658] = {ID = 2658, SensitiveWord = "三K黨"}
  2668. self.datas[2659] = {ID = 2659, SensitiveWord = "三個代表"}
  2669. self.datas[2660] = {ID = 2660, SensitiveWord = "三級片"}
  2670. self.datas[2661] = {ID = 2661, SensitiveWord = "三去車侖工力"}
  2671. self.datas[2662] = {ID = 2662, SensitiveWord = "㈢"}
  2672. self.datas[2663] = {ID = 2663, SensitiveWord = "毿"}
  2673. self.datas[2664] = {ID = 2664, SensitiveWord = "糝"}
  2674. self.datas[2665] = {ID = 2665, SensitiveWord = "騷B"}
  2675. self.datas[2666] = {ID = 2666, SensitiveWord = "騷棒"}
  2676. self.datas[2667] = {ID = 2667, SensitiveWord = "騷包"}
  2677. self.datas[2668] = {ID = 2668, SensitiveWord = "騷逼"}
  2678. self.datas[2669] = {ID = 2669, SensitiveWord = "騷棍"}
  2679. self.datas[2670] = {ID = 2670, SensitiveWord = "騷貨"}
  2680. self.datas[2671] = {ID = 2671, SensitiveWord = "騷鶏"}
  2681. self.datas[2672] = {ID = 2672, SensitiveWord = "騷卵 "}
  2682. self.datas[2673] = {ID = 2673, SensitiveWord = "殺你全家"}
  2683. self.datas[2674] = {ID = 2674, SensitiveWord = "殺你一家"}
  2684. self.datas[2675] = {ID = 2675, SensitiveWord = "殺人犯"}
  2685. self.datas[2676] = {ID = 2676, SensitiveWord = "傻鳥"}
  2686. self.datas[2677] = {ID = 2677, SensitiveWord = "煞筆"}
  2687. self.datas[2678] = {ID = 2678, SensitiveWord = "山口組"}
  2688. self.datas[2679] = {ID = 2679, SensitiveWord = "善惡有報"}
  2689. self.datas[2680] = {ID = 2680, SensitiveWord = "上訪"}
  2690. self.datas[2681] = {ID = 2681, SensitiveWord = "上海幫"}
  2691. self.datas[2682] = {ID = 2682, SensitiveWord = "上海孤兒院"}
  2692. self.datas[2683] = {ID = 2683, SensitiveWord = "厙"}
  2693. self.datas[2684] = {ID = 2684, SensitiveWord = "社會主義"}
  2694. self.datas[2685] = {ID = 2685, SensitiveWord = "射了還說要"}
  2695. self.datas[2686] = {ID = 2686, SensitiveWord = "灄"}
  2696. self.datas[2687] = {ID = 2687, SensitiveWord = "詵"}
  2697. self.datas[2688] = {ID = 2688, SensitiveWord = "神經病"}
  2698. self.datas[2689] = {ID = 2689, SensitiveWord = "諗"}
  2699. self.datas[2690] = {ID = 2690, SensitiveWord = "生孩子沒屁眼"}
  2700. self.datas[2691] = {ID = 2691, SensitiveWord = "生命分流的圖騰"}
  2701. self.datas[2692] = {ID = 2692, SensitiveWord = "澠"}
  2702. self.datas[2693] = {ID = 2693, SensitiveWord = "聖射手"}
  2703. self.datas[2694] = {ID = 2694, SensitiveWord = "聖戰"}
  2704. self.datas[2695] = {ID = 2695, SensitiveWord = "盛華仁"}
  2705. self.datas[2696] = {ID = 2696, SensitiveWord = "濕了還說不要"}
  2706. self.datas[2697] = {ID = 2697, SensitiveWord = "濕了還說要"}
  2707. self.datas[2698] = {ID = 2698, SensitiveWord = "釃"}
  2708. self.datas[2699] = {ID = 2699, SensitiveWord = "鯴"}
  2709. self.datas[2700] = {ID = 2700, SensitiveWord = "㈩"}
  2710. self.datas[2701] = {ID = 2701, SensitiveWord = "石化圖騰"}
  2711. self.datas[2702] = {ID = 2702, SensitiveWord = "石拳戰鬥兵"}
  2712. self.datas[2703] = {ID = 2703, SensitiveWord = "時代論壇"}
  2713. self.datas[2704] = {ID = 2704, SensitiveWord = "時事論壇"}
  2714. self.datas[2705] = {ID = 2705, SensitiveWord = "鰣"}
  2715. self.datas[2706] = {ID = 2706, SensitiveWord = "史萊姆"}
  2716. self.datas[2707] = {ID = 2707, SensitiveWord = "史萊姆王"}
  2717. self.datas[2708] = {ID = 2708, SensitiveWord = "士兵管理員瓦爾臣"}
  2718. self.datas[2709] = {ID = 2709, SensitiveWord = "世界經濟導報"}
  2719. self.datas[2710] = {ID = 2710, SensitiveWord = "事實獨立"}
  2720. self.datas[2711] = {ID = 2711, SensitiveWord = "侍從貝赫爾特"}
  2721. self.datas[2712] = {ID = 2712, SensitiveWord = "侍從倫斯韋"}
  2722. self.datas[2713] = {ID = 2713, SensitiveWord = "貰"}
  2723. self.datas[2714] = {ID = 2714, SensitiveWord = "攄"}
  2724. self.datas[2715] = {ID = 2715, SensitiveWord = "數據中國"}
  2725. self.datas[2716] = {ID = 2716, SensitiveWord = "雙十節"}
  2726. self.datas[2717] = {ID = 2717, SensitiveWord = "氵去車侖工力"}
  2727. self.datas[2718] = {ID = 2718, SensitiveWord = "氵去車侖工力?"}
  2728. self.datas[2719] = {ID = 2719, SensitiveWord = "稅力"}
  2729. self.datas[2720] = {ID = 2720, SensitiveWord = "司馬晋"}
  2730. self.datas[2721] = {ID = 2721, SensitiveWord = "司馬璐"}
  2731. self.datas[2722] = {ID = 2722, SensitiveWord = "司徒華"}
  2732. self.datas[2723] = {ID = 2723, SensitiveWord = "私?服"}
  2733. self.datas[2724] = {ID = 2724, SensitiveWord = "私處"}
  2734. self.datas[2725] = {ID = 2725, SensitiveWord = "思科羅"}
  2735. self.datas[2726] = {ID = 2726, SensitiveWord = "斯諾"}
  2736. self.datas[2727] = {ID = 2727, SensitiveWord = "斯皮爾德"}
  2737. self.datas[2728] = {ID = 2728, SensitiveWord = "四川獨"}
  2738. self.datas[2729] = {ID = 2729, SensitiveWord = "四川獨立"}
  2739. self.datas[2730] = {ID = 2730, SensitiveWord = "四人幫"}
  2740. self.datas[2731] = {ID = 2731, SensitiveWord = "㈣"}
  2741. self.datas[2732] = {ID = 2732, SensitiveWord = "宋書元"}
  2742. self.datas[2733] = {ID = 2733, SensitiveWord = "藪"}
  2743. self.datas[2734] = {ID = 2734, SensitiveWord = "蘇菲爾"}
  2744. self.datas[2735] = {ID = 2735, SensitiveWord = "蘇拉"}
  2745. self.datas[2736] = {ID = 2736, SensitiveWord = "蘇南成"}
  2746. self.datas[2737] = {ID = 2737, SensitiveWord = "蘇紹智"}
  2747. self.datas[2738] = {ID = 2738, SensitiveWord = "蘇特勒守護兵"}
  2748. self.datas[2739] = {ID = 2739, SensitiveWord = "蘇特勤"}
  2749. self.datas[2740] = {ID = 2740, SensitiveWord = "蘇特勤護衛兵"}
  2750. self.datas[2741] = {ID = 2741, SensitiveWord = "蘇特勤魔法師"}
  2751. self.datas[2742] = {ID = 2742, SensitiveWord = "蘇曉康"}
  2752. self.datas[2743] = {ID = 2743, SensitiveWord = "蘇盈貴"}
  2753. self.datas[2744] = {ID = 2744, SensitiveWord = "蘇貞昌"}
  2754. self.datas[2745] = {ID = 2745, SensitiveWord = "誶"}
  2755. self.datas[2746] = {ID = 2746, SensitiveWord = "碎片製造商人馬克"}
  2756. self.datas[2747] = {ID = 2747, SensitiveWord = "碎片製造商人蘇克"}
  2757. self.datas[2748] = {ID = 2748, SensitiveWord = "孫大千"}
  2758. self.datas[2749] = {ID = 2749, SensitiveWord = "孫中山"}
  2759. self.datas[2750] = {ID = 2750, SensitiveWord = "他媽"}
  2760. self.datas[2751] = {ID = 2751, SensitiveWord = "他媽的"}
  2761. self.datas[2752] = {ID = 2752, SensitiveWord = "他嗎的"}
  2762. self.datas[2753] = {ID = 2753, SensitiveWord = "他母親"}
  2763. self.datas[2754] = {ID = 2754, SensitiveWord = "塔內"}
  2764. self.datas[2755] = {ID = 2755, SensitiveWord = "塔烏"}
  2765. self.datas[2756] = {ID = 2756, SensitiveWord = "鰨"}
  2766. self.datas[2757] = {ID = 2757, SensitiveWord = "闥"}
  2767. self.datas[2758] = {ID = 2758, SensitiveWord = "臺盟"}
  2768. self.datas[2759] = {ID = 2759, SensitiveWord = "臺灣帝國"}
  2769. self.datas[2760] = {ID = 2760, SensitiveWord = "臺灣獨立"}
  2770. self.datas[2761] = {ID = 2761, SensitiveWord = "臺灣獨"}
  2771. self.datas[2762] = {ID = 2762, SensitiveWord = "臺灣共産黨"}
  2772. self.datas[2763] = {ID = 2763, SensitiveWord = "臺灣狗"}
  2773. self.datas[2764] = {ID = 2764, SensitiveWord = "臺灣建國運動組織"}
  2774. self.datas[2765] = {ID = 2765, SensitiveWord = "臺灣民國"}
  2775. self.datas[2766] = {ID = 2766, SensitiveWord = "臺灣青年獨立聯盟"}
  2776. self.datas[2767] = {ID = 2767, SensitiveWord = "臺灣政論區"}
  2777. self.datas[2768] = {ID = 2768, SensitiveWord = "臺灣自由聯盟"}
  2778. self.datas[2769] = {ID = 2769, SensitiveWord = "鮐"}
  2779. self.datas[2770] = {ID = 2770, SensitiveWord = "太監"}
  2780. self.datas[2771] = {ID = 2771, SensitiveWord = "泰奴橋警衛兵"}
  2781. self.datas[2772] = {ID = 2772, SensitiveWord = "泰奴橋掠奪者"}
  2782. self.datas[2773] = {ID = 2773, SensitiveWord = "湯光中"}
  2783. self.datas[2774] = {ID = 2774, SensitiveWord = "唐柏橋"}
  2784. self.datas[2775] = {ID = 2775, SensitiveWord = "鞀"}
  2785. self.datas[2776] = {ID = 2776, SensitiveWord = "謄"}
  2786. self.datas[2777] = {ID = 2777, SensitiveWord = "天安門"}
  2787. self.datas[2778] = {ID = 2778, SensitiveWord = "天安門錄影帶"}
  2788. self.datas[2779] = {ID = 2779, SensitiveWord = "天安門事件"}
  2789. self.datas[2780] = {ID = 2780, SensitiveWord = "天安門屠殺"}
  2790. self.datas[2781] = {ID = 2781, SensitiveWord = "天安門一代"}
  2791. self.datas[2782] = {ID = 2782, SensitiveWord = "天閹"}
  2792. self.datas[2783] = {ID = 2783, SensitiveWord = "田紀雲"}
  2793. self.datas[2784] = {ID = 2784, SensitiveWord = "齠"}
  2794. self.datas[2785] = {ID = 2785, SensitiveWord = "鰷"}
  2795. self.datas[2786] = {ID = 2786, SensitiveWord = "銚"}
  2796. self.datas[2787] = {ID = 2787, SensitiveWord = "庭院警衛兵"}
  2797. self.datas[2788] = {ID = 2788, SensitiveWord = "統獨"}
  2798. self.datas[2789] = {ID = 2789, SensitiveWord = "統獨論壇"}
  2799. self.datas[2790] = {ID = 2790, SensitiveWord = "統戰"}
  2800. self.datas[2791] = {ID = 2791, SensitiveWord = "頭領奧馬"}
  2801. self.datas[2792] = {ID = 2792, SensitiveWord = "頭領墳墓管理員"}
  2802. self.datas[2793] = {ID = 2793, SensitiveWord = "圖書管理員卡特"}
  2803. self.datas[2794] = {ID = 2794, SensitiveWord = "屠殺"}
  2804. self.datas[2795] = {ID = 2795, SensitiveWord = "團長戈登"}
  2805. self.datas[2796] = {ID = 2796, SensitiveWord = "團員馬爾汀"}
  2806. self.datas[2797] = {ID = 2797, SensitiveWord = "摶"}
  2807. self.datas[2798] = {ID = 2798, SensitiveWord = "鼉"}
  2808. self.datas[2799] = {ID = 2799, SensitiveWord = "籜"}
  2809. self.datas[2800] = {ID = 2800, SensitiveWord = "膃"}
  2810. self.datas[2801] = {ID = 2801, SensitiveWord = "外交論壇"}
  2811. self.datas[2802] = {ID = 2802, SensitiveWord = "外交與方略"}
  2812. self.datas[2803] = {ID = 2803, SensitiveWord = "晚年周恩來"}
  2813. self.datas[2804] = {ID = 2804, SensitiveWord = "綰"}
  2814. self.datas[2805] = {ID = 2805, SensitiveWord = "萬里"}
  2815. self.datas[2806] = {ID = 2806, SensitiveWord = "萬潤南"}
  2816. self.datas[2807] = {ID = 2807, SensitiveWord = "萬維讀者論壇"}
  2817. self.datas[2808] = {ID = 2808, SensitiveWord = "萬曉東"}
  2818. self.datas[2809] = {ID = 2809, SensitiveWord = "王寶森"}
  2819. self.datas[2810] = {ID = 2810, SensitiveWord = "王超華"}
  2820. self.datas[2811] = {ID = 2811, SensitiveWord = "王輔臣"}
  2821. self.datas[2812] = {ID = 2812, SensitiveWord = "王剛"}
  2822. self.datas[2813] = {ID = 2813, SensitiveWord = "王涵萬"}
  2823. self.datas[2814] = {ID = 2814, SensitiveWord = "王滬寧"}
  2824. self.datas[2815] = {ID = 2815, SensitiveWord = "王軍濤"}
  2825. self.datas[2816] = {ID = 2816, SensitiveWord = "王樂泉"}
  2826. self.datas[2817] = {ID = 2817, SensitiveWord = "王潤生"}
  2827. self.datas[2818] = {ID = 2818, SensitiveWord = "王世堅"}
  2828. self.datas[2819] = {ID = 2819, SensitiveWord = "王世勛"}
  2829. self.datas[2820] = {ID = 2820, SensitiveWord = "王秀麗"}
  2830. self.datas[2821] = {ID = 2821, SensitiveWord = "王兆國"}
  2831. self.datas[2822] = {ID = 2822, SensitiveWord = "網禪"}
  2832. self.datas[2823] = {ID = 2823, SensitiveWord = "網特"}
  2833. self.datas[2824] = {ID = 2824, SensitiveWord = "猥褻"}
  2834. self.datas[2825] = {ID = 2825, SensitiveWord = "鮪"}
  2835. self.datas[2826] = {ID = 2826, SensitiveWord = "溫B"}
  2836. self.datas[2827] = {ID = 2827, SensitiveWord = "溫逼"}
  2837. self.datas[2828] = {ID = 2828, SensitiveWord = "溫比"}
  2838. self.datas[2829] = {ID = 2829, SensitiveWord = "溫家寶"}
  2839. self.datas[2830] = {ID = 2830, SensitiveWord = "溫元凱"}
  2840. self.datas[2831] = {ID = 2831, SensitiveWord = "閿"}
  2841. self.datas[2832] = {ID = 2832, SensitiveWord = "無界瀏覽器"}
  2842. self.datas[2833] = {ID = 2833, SensitiveWord = "吳百益"}
  2843. self.datas[2834] = {ID = 2834, SensitiveWord = "吳敦義"}
  2844. self.datas[2835] = {ID = 2835, SensitiveWord = "吳方城"}
  2845. self.datas[2836] = {ID = 2836, SensitiveWord = "吳弘達"}
  2846. self.datas[2837] = {ID = 2837, SensitiveWord = "吳宏達"}
  2847. self.datas[2838] = {ID = 2838, SensitiveWord = "吳仁華"}
  2848. self.datas[2839] = {ID = 2839, SensitiveWord = "吳淑珍"}
  2849. self.datas[2840] = {ID = 2840, SensitiveWord = "吳學燦"}
  2850. self.datas[2841] = {ID = 2841, SensitiveWord = "吳學璨"}
  2851. self.datas[2842] = {ID = 2842, SensitiveWord = "吳育升"}
  2852. self.datas[2843] = {ID = 2843, SensitiveWord = "吳志芳"}
  2853. self.datas[2844] = {ID = 2844, SensitiveWord = "西藏獨"}
  2854. self.datas[2845] = {ID = 2845, SensitiveWord = "吸收的圖騰"}
  2855. self.datas[2846] = {ID = 2846, SensitiveWord = "吸血獸"}
  2856. self.datas[2847] = {ID = 2847, SensitiveWord = "覡"}
  2857. self.datas[2848] = {ID = 2848, SensitiveWord = "洗腦"}
  2858. self.datas[2849] = {ID = 2849, SensitiveWord = "系統"}
  2859. self.datas[2850] = {ID = 2850, SensitiveWord = "系統公告"}
  2860. self.datas[2851] = {ID = 2851, SensitiveWord = "餼"}
  2861. self.datas[2852] = {ID = 2852, SensitiveWord = "郤"}
  2862. self.datas[2853] = {ID = 2853, SensitiveWord = "下賤"}
  2863. self.datas[2854] = {ID = 2854, SensitiveWord = "下體"}
  2864. self.datas[2855] = {ID = 2855, SensitiveWord = "薟"}
  2865. self.datas[2856] = {ID = 2856, SensitiveWord = "躚"}
  2866. self.datas[2857] = {ID = 2857, SensitiveWord = "鮮族"}
  2867. self.datas[2858] = {ID = 2858, SensitiveWord = "獫"}
  2868. self.datas[2859] = {ID = 2859, SensitiveWord = "蜆"}
  2869. self.datas[2860] = {ID = 2860, SensitiveWord = "峴"}
  2870. self.datas[2861] = {ID = 2861, SensitiveWord = "現金"}
  2871. self.datas[2862] = {ID = 2862, SensitiveWord = "現金交易"}
  2872. self.datas[2863] = {ID = 2863, SensitiveWord = "獻祭的圖騰"}
  2873. self.datas[2864] = {ID = 2864, SensitiveWord = "鯗"}
  2874. self.datas[2865] = {ID = 2865, SensitiveWord = "項懷誠"}
  2875. self.datas[2866] = {ID = 2866, SensitiveWord = "項小吉"}
  2876. self.datas[2867] = {ID = 2867, SensitiveWord = "嘵"}
  2877. self.datas[2868] = {ID = 2868, SensitiveWord = "小B樣"}
  2878. self.datas[2869] = {ID = 2869, SensitiveWord = "小比樣"}
  2879. self.datas[2870] = {ID = 2870, SensitiveWord = "小參考"}
  2880. self.datas[2871] = {ID = 2871, SensitiveWord = "小鶏鶏"}
  2881. self.datas[2872] = {ID = 2872, SensitiveWord = "小靈通"}
  2882. self.datas[2873] = {ID = 2873, SensitiveWord = "小泉純一郎"}
  2883. self.datas[2874] = {ID = 2874, SensitiveWord = "謝長廷"}
  2884. self.datas[2875] = {ID = 2875, SensitiveWord = "謝深山"}
  2885. self.datas[2876] = {ID = 2876, SensitiveWord = "謝選駿"}
  2886. self.datas[2877] = {ID = 2877, SensitiveWord = "謝中之"}
  2887. self.datas[2878] = {ID = 2878, SensitiveWord = "辛灝年"}
  2888. self.datas[2879] = {ID = 2879, SensitiveWord = "新觀察論壇"}
  2889. self.datas[2880] = {ID = 2880, SensitiveWord = "新華舉報"}
  2890. self.datas[2881] = {ID = 2881, SensitiveWord = "新華內情"}
  2891. self.datas[2882] = {ID = 2882, SensitiveWord = "新華通論壇"}
  2892. self.datas[2883] = {ID = 2883, SensitiveWord = "新疆獨"}
  2893. self.datas[2884] = {ID = 2884, SensitiveWord = "新生網"}
  2894. self.datas[2885] = {ID = 2885, SensitiveWord = "新手訓練營"}
  2895. self.datas[2886] = {ID = 2886, SensitiveWord = "新聞出版總署"}
  2896. self.datas[2887] = {ID = 2887, SensitiveWord = "新聞封鎖"}
  2897. self.datas[2888] = {ID = 2888, SensitiveWord = "新義安"}
  2898. self.datas[2889] = {ID = 2889, SensitiveWord = "新語絲"}
  2899. self.datas[2890] = {ID = 2890, SensitiveWord = "信用危機"}
  2900. self.datas[2891] = {ID = 2891, SensitiveWord = "邢錚"}
  2901. self.datas[2892] = {ID = 2892, SensitiveWord = "性愛"}
  2902. self.datas[2893] = {ID = 2893, SensitiveWord = "性無能"}
  2903. self.datas[2894] = {ID = 2894, SensitiveWord = "修煉"}
  2904. self.datas[2895] = {ID = 2895, SensitiveWord = "頊"}
  2905. self.datas[2896] = {ID = 2896, SensitiveWord = "虛弱圖騰"}
  2906. self.datas[2897] = {ID = 2897, SensitiveWord = "虛無的飽食者"}
  2907. self.datas[2898] = {ID = 2898, SensitiveWord = "徐國舅"}
  2908. self.datas[2899] = {ID = 2899, SensitiveWord = "許財利"}
  2909. self.datas[2900] = {ID = 2900, SensitiveWord = "許家屯"}
  2910. self.datas[2901] = {ID = 2901, SensitiveWord = "許信良"}
  2911. self.datas[2902] = {ID = 2902, SensitiveWord = "諼"}
  2912. self.datas[2903] = {ID = 2903, SensitiveWord = "薛偉"}
  2913. self.datas[2904] = {ID = 2904, SensitiveWord = "學潮"}
  2914. self.datas[2905] = {ID = 2905, SensitiveWord = "學聯"}
  2915. self.datas[2906] = {ID = 2906, SensitiveWord = "學運"}
  2916. self.datas[2907] = {ID = 2907, SensitiveWord = "學自聯"}
  2917. self.datas[2908] = {ID = 2908, SensitiveWord = "澩"}
  2918. self.datas[2909] = {ID = 2909, SensitiveWord = "閹狗"}
  2919. self.datas[2910] = {ID = 2910, SensitiveWord = "訁"}
  2920. self.datas[2911] = {ID = 2911, SensitiveWord = "嚴家其"}
  2921. self.datas[2912] = {ID = 2912, SensitiveWord = "嚴家祺"}
  2922. self.datas[2913] = {ID = 2913, SensitiveWord = "閻明複"}
  2923. self.datas[2914] = {ID = 2914, SensitiveWord = "顔清標"}
  2924. self.datas[2915] = {ID = 2915, SensitiveWord = "顔慶章"}
  2925. self.datas[2916] = {ID = 2916, SensitiveWord = "顔射"}
  2926. self.datas[2917] = {ID = 2917, SensitiveWord = "讞"}
  2927. self.datas[2918] = {ID = 2918, SensitiveWord = "央視內部晚會"}
  2928. self.datas[2919] = {ID = 2919, SensitiveWord = "陽具"}
  2929. self.datas[2920] = {ID = 2920, SensitiveWord = "陽痿"}
  2930. self.datas[2921] = {ID = 2921, SensitiveWord = "陽物"}
  2931. self.datas[2922] = {ID = 2922, SensitiveWord = "楊懷安"}
  2932. self.datas[2923] = {ID = 2923, SensitiveWord = "楊建利"}
  2933. self.datas[2924] = {ID = 2924, SensitiveWord = "楊巍"}
  2934. self.datas[2925] = {ID = 2925, SensitiveWord = "楊月清"}
  2935. self.datas[2926] = {ID = 2926, SensitiveWord = "楊周"}
  2936. self.datas[2927] = {ID = 2927, SensitiveWord = "姚羅"}
  2937. self.datas[2928] = {ID = 2928, SensitiveWord = "姚月謙"}
  2938. self.datas[2929] = {ID = 2929, SensitiveWord = "軺"}
  2939. self.datas[2930] = {ID = 2930, SensitiveWord = "搖頭丸"}
  2940. self.datas[2931] = {ID = 2931, SensitiveWord = "藥材商人蘇耐得"}
  2941. self.datas[2932] = {ID = 2932, SensitiveWord = "藥水"}
  2942. self.datas[2933] = {ID = 2933, SensitiveWord = "耶穌"}
  2943. self.datas[2934] = {ID = 2934, SensitiveWord = "野鶏"}
  2944. self.datas[2935] = {ID = 2935, SensitiveWord = "葉菊蘭"}
  2945. self.datas[2936] = {ID = 2936, SensitiveWord = "夜話紫禁城"}
  2946. self.datas[2937] = {ID = 2937, SensitiveWord = "一陀糞"}
  2947. self.datas[2938] = {ID = 2938, SensitiveWord = "㈠"}
  2948. self.datas[2939] = {ID = 2939, SensitiveWord = "伊莎貝爾"}
  2949. self.datas[2940] = {ID = 2940, SensitiveWord = "伊斯蘭"}
  2950. self.datas[2941] = {ID = 2941, SensitiveWord = "伊斯蘭亞格林尼斯"}
  2951. self.datas[2942] = {ID = 2942, SensitiveWord = "遺精"}
  2952. self.datas[2943] = {ID = 2943, SensitiveWord = "議長阿茵斯塔"}
  2953. self.datas[2944] = {ID = 2944, SensitiveWord = "議員斯格文德"}
  2954. self.datas[2945] = {ID = 2945, SensitiveWord = "异見人士"}
  2955. self.datas[2946] = {ID = 2946, SensitiveWord = "异型叛軍"}
  2956. self.datas[2947] = {ID = 2947, SensitiveWord = "异議人士"}
  2957. self.datas[2948] = {ID = 2948, SensitiveWord = "易丹軒"}
  2958. self.datas[2949] = {ID = 2949, SensitiveWord = "意志不堅的圖騰"}
  2959. self.datas[2950] = {ID = 2950, SensitiveWord = "瘞"}
  2960. self.datas[2951] = {ID = 2951, SensitiveWord = "陰部"}
  2961. self.datas[2952] = {ID = 2952, SensitiveWord = "陰唇"}
  2962. self.datas[2953] = {ID = 2953, SensitiveWord = "陰道"}
  2963. self.datas[2954] = {ID = 2954, SensitiveWord = "陰蒂"}
  2964. self.datas[2955] = {ID = 2955, SensitiveWord = "陰戶"}
  2965. self.datas[2956] = {ID = 2956, SensitiveWord = "陰莖"}
  2966. self.datas[2957] = {ID = 2957, SensitiveWord = "陰精"}
  2967. self.datas[2958] = {ID = 2958, SensitiveWord = "陰毛"}
  2968. self.datas[2959] = {ID = 2959, SensitiveWord = "陰門"}
  2969. self.datas[2960] = {ID = 2960, SensitiveWord = "陰囊"}
  2970. self.datas[2961] = {ID = 2961, SensitiveWord = "陰水"}
  2971. self.datas[2962] = {ID = 2962, SensitiveWord = "淫蕩"}
  2972. self.datas[2963] = {ID = 2963, SensitiveWord = "淫穢"}
  2973. self.datas[2964] = {ID = 2964, SensitiveWord = "淫貨"}
  2974. self.datas[2965] = {ID = 2965, SensitiveWord = "淫賤"}
  2975. self.datas[2966] = {ID = 2966, SensitiveWord = "尹慶民"}
  2976. self.datas[2967] = {ID = 2967, SensitiveWord = "引導"}
  2977. self.datas[2968] = {ID = 2968, SensitiveWord = "隱者之路"}
  2978. self.datas[2969] = {ID = 2969, SensitiveWord = "鷹眼派氏族"}
  2979. self.datas[2970] = {ID = 2970, SensitiveWord = "硬直圖騰"}
  2980. self.datas[2971] = {ID = 2971, SensitiveWord = "憂鬱的艾拉"}
  2981. self.datas[2972] = {ID = 2972, SensitiveWord = "尤比亞"}
  2982. self.datas[2973] = {ID = 2973, SensitiveWord = "由喜貴"}
  2983. self.datas[2974] = {ID = 2974, SensitiveWord = "游蕩的僵尸"}
  2984. self.datas[2975] = {ID = 2975, SensitiveWord = "游蕩的士兵"}
  2985. self.datas[2976] = {ID = 2976, SensitiveWord = "游蕩爪牙"}
  2986. self.datas[2977] = {ID = 2977, SensitiveWord = "游錫坤"}
  2987. self.datas[2978] = {ID = 2978, SensitiveWord = "游戲管理員"}
  2988. self.datas[2979] = {ID = 2979, SensitiveWord = "友好的魯德"}
  2989. self.datas[2980] = {ID = 2980, SensitiveWord = "幼齒"}
  2990. self.datas[2981] = {ID = 2981, SensitiveWord = "幼龍"}
  2991. self.datas[2982] = {ID = 2982, SensitiveWord = "于幼軍"}
  2992. self.datas[2983] = {ID = 2983, SensitiveWord = "余英時"}
  2993. self.datas[2984] = {ID = 2984, SensitiveWord = "漁夫菲斯曼"}
  2994. self.datas[2985] = {ID = 2985, SensitiveWord = "輿論"}
  2995. self.datas[2986] = {ID = 2986, SensitiveWord = "輿論反制"}
  2996. self.datas[2987] = {ID = 2987, SensitiveWord = "傴"}
  2997. self.datas[2988] = {ID = 2988, SensitiveWord = "宇明網"}
  2998. self.datas[2989] = {ID = 2989, SensitiveWord = "齬"}
  2999. self.datas[2990] = {ID = 2990, SensitiveWord = "飫"}
  3000. self.datas[2991] = {ID = 2991, SensitiveWord = "鵒"}
  3001. self.datas[2992] = {ID = 2992, SensitiveWord = "元老蘭提(沃德)"}
  3002. self.datas[2993] = {ID = 2993, SensitiveWord = "圓滿"}
  3003. self.datas[2994] = {ID = 2994, SensitiveWord = "緣圈圈"}
  3004. self.datas[2995] = {ID = 2995, SensitiveWord = "遠志明"}
  3005. self.datas[2996] = {ID = 2996, SensitiveWord = "月經"}
  3006. self.datas[2997] = {ID = 2997, SensitiveWord = "韞"}
  3007. self.datas[2998] = {ID = 2998, SensitiveWord = "雜種"}
  3008. self.datas[2999] = {ID = 2999, SensitiveWord = "鏨"}
  3009. self.datas[3000] = {ID = 3000, SensitiveWord = "造愛"}
  3010. self.datas[3001] = {ID = 3001, SensitiveWord = "則民"}
  3011. self.datas[3002] = {ID = 3002, SensitiveWord = "擇民"}
  3012. self.datas[3003] = {ID = 3003, SensitiveWord = "澤夫"}
  3013. self.datas[3004] = {ID = 3004, SensitiveWord = "澤民"}
  3014. self.datas[3005] = {ID = 3005, SensitiveWord = "賾"}
  3015. self.datas[3006] = {ID = 3006, SensitiveWord = "賊民"}
  3016. self.datas[3007] = {ID = 3007, SensitiveWord = "譖"}
  3017. self.datas[3008] = {ID = 3008, SensitiveWord = "扎卡維是英雄"}
  3018. self.datas[3009] = {ID = 3009, SensitiveWord = "驏"}
  3019. self.datas[3010] = {ID = 3010, SensitiveWord = "張伯笠"}
  3020. self.datas[3011] = {ID = 3011, SensitiveWord = "張博雅"}
  3021. self.datas[3012] = {ID = 3012, SensitiveWord = "張鋼"}
  3022. self.datas[3013] = {ID = 3013, SensitiveWord = "張健"}
  3023. self.datas[3014] = {ID = 3014, SensitiveWord = "張林"}
  3024. self.datas[3015] = {ID = 3015, SensitiveWord = "張清芳"}
  3025. self.datas[3016] = {ID = 3016, SensitiveWord = "張偉國"}
  3026. self.datas[3017] = {ID = 3017, SensitiveWord = "張溫鷹"}
  3027. self.datas[3018] = {ID = 3018, SensitiveWord = "張昭富"}
  3028. self.datas[3019] = {ID = 3019, SensitiveWord = "張志清"}
  3029. self.datas[3020] = {ID = 3020, SensitiveWord = "章孝嚴"}
  3030. self.datas[3021] = {ID = 3021, SensitiveWord = "帳號"}
  3031. self.datas[3022] = {ID = 3022, SensitiveWord = "賬號"}
  3032. self.datas[3023] = {ID = 3023, SensitiveWord = "招鶏"}
  3033. self.datas[3024] = {ID = 3024, SensitiveWord = "趙海青"}
  3034. self.datas[3025] = {ID = 3025, SensitiveWord = "趙建銘"}
  3035. self.datas[3026] = {ID = 3026, SensitiveWord = "趙南"}
  3036. self.datas[3027] = {ID = 3027, SensitiveWord = "趙品潞"}
  3037. self.datas[3028] = {ID = 3028, SensitiveWord = "趙曉微"}
  3038. self.datas[3029] = {ID = 3029, SensitiveWord = "趙紫陽"}
  3039. self.datas[3030] = {ID = 3030, SensitiveWord = "貞操"}
  3040. self.datas[3031] = {ID = 3031, SensitiveWord = "鎮壓"}
  3041. self.datas[3032] = {ID = 3032, SensitiveWord = "爭鳴論壇"}
  3042. self.datas[3033] = {ID = 3033, SensitiveWord = "正見網"}
  3043. self.datas[3034] = {ID = 3034, SensitiveWord = "正義黨論壇"}
  3044. self.datas[3035] = {ID = 3035, SensitiveWord = "㊣"}
  3045. self.datas[3036] = {ID = 3036, SensitiveWord = "鄭寶清"}
  3046. self.datas[3037] = {ID = 3037, SensitiveWord = "鄭麗文"}
  3047. self.datas[3038] = {ID = 3038, SensitiveWord = "鄭義"}
  3048. self.datas[3039] = {ID = 3039, SensitiveWord = "鄭餘鎮"}
  3049. self.datas[3040] = {ID = 3040, SensitiveWord = "鄭源"}
  3050. self.datas[3041] = {ID = 3041, SensitiveWord = "鄭運鵬"}
  3051. self.datas[3042] = {ID = 3042, SensitiveWord = "政權"}
  3052. self.datas[3043] = {ID = 3043, SensitiveWord = "政治反對派"}
  3053. self.datas[3044] = {ID = 3044, SensitiveWord = "縶"}
  3054. self.datas[3045] = {ID = 3045, SensitiveWord = "躑"}
  3055. self.datas[3046] = {ID = 3046, SensitiveWord = "指點江山論壇"}
  3056. self.datas[3047] = {ID = 3047, SensitiveWord = "騭"}
  3057. self.datas[3048] = {ID = 3048, SensitiveWord = "觶"}
  3058. self.datas[3049] = {ID = 3049, SensitiveWord = "躓"}
  3059. self.datas[3050] = {ID = 3050, SensitiveWord = "中毒的圖騰"}
  3060. self.datas[3051] = {ID = 3051, SensitiveWord = "中毒圖騰"}
  3061. self.datas[3052] = {ID = 3052, SensitiveWord = "中俄邊界"}
  3062. self.datas[3053] = {ID = 3053, SensitiveWord = "中國復興論壇"}
  3063. self.datas[3054] = {ID = 3054, SensitiveWord = "中國共産黨"}
  3064. self.datas[3055] = {ID = 3055, SensitiveWord = "中國孤兒院"}
  3065. self.datas[3056] = {ID = 3056, SensitiveWord = "中國和平"}
  3066. self.datas[3057] = {ID = 3057, SensitiveWord = "中國論壇"}
  3067. self.datas[3058] = {ID = 3058, SensitiveWord = "中國社會進步黨"}
  3068. self.datas[3059] = {ID = 3059, SensitiveWord = "中國社會論壇"}
  3069. self.datas[3060] = {ID = 3060, SensitiveWord = "中國威脅論"}
  3070. self.datas[3061] = {ID = 3061, SensitiveWord = "中國問題論壇"}
  3071. self.datas[3062] = {ID = 3062, SensitiveWord = "中國移動通信"}
  3072. self.datas[3063] = {ID = 3063, SensitiveWord = "中國真實內容"}
  3073. self.datas[3064] = {ID = 3064, SensitiveWord = "中國之春"}
  3074. self.datas[3065] = {ID = 3065, SensitiveWord = "中國猪"}
  3075. self.datas[3066] = {ID = 3066, SensitiveWord = "中華大地"}
  3076. self.datas[3067] = {ID = 3067, SensitiveWord = "中華大衆"}
  3077. self.datas[3068] = {ID = 3068, SensitiveWord = "中華講清"}
  3078. self.datas[3069] = {ID = 3069, SensitiveWord = "中華民國"}
  3079. self.datas[3070] = {ID = 3070, SensitiveWord = "中華人民實話實說"}
  3080. self.datas[3071] = {ID = 3071, SensitiveWord = "中華人民正邪"}
  3081. self.datas[3072] = {ID = 3072, SensitiveWord = "中華時事"}
  3082. self.datas[3073] = {ID = 3073, SensitiveWord = "中華養生益智功"}
  3083. self.datas[3074] = {ID = 3074, SensitiveWord = "中華真實報道"}
  3084. self.datas[3075] = {ID = 3075, SensitiveWord = "中央電視臺"}
  3085. self.datas[3076] = {ID = 3076, SensitiveWord = "鐘山風雨論壇"}
  3086. self.datas[3077] = {ID = 3077, SensitiveWord = " "}
  3087. self.datas[3078] = {ID = 3078, SensitiveWord = "周鋒鎖"}
  3088. self.datas[3079] = {ID = 3079, SensitiveWord = "周守訓 "}
  3089. self.datas[3080] = {ID = 3080, SensitiveWord = "朱鳳芝"}
  3090. self.datas[3081] = {ID = 3081, SensitiveWord = "朱立倫"}
  3091. self.datas[3082] = {ID = 3082, SensitiveWord = "朱溶劑"}
  3092. self.datas[3083] = {ID = 3083, SensitiveWord = "㈱"}
  3093. self.datas[3084] = {ID = 3084, SensitiveWord = "猪聾畸"}
  3094. self.datas[3085] = {ID = 3085, SensitiveWord = "主攻指揮官"}
  3095. self.datas[3086] = {ID = 3086, SensitiveWord = "主義"}
  3096. self.datas[3087] = {ID = 3087, SensitiveWord = "助手威爾特"}
  3097. self.datas[3088] = {ID = 3088, SensitiveWord = "專制"}
  3098. self.datas[3089] = {ID = 3089, SensitiveWord = "顓"}
  3099. self.datas[3090] = {ID = 3090, SensitiveWord = "轉化"}
  3100. self.datas[3091] = {ID = 3091, SensitiveWord = "諑"}
  3101. self.datas[3092] = {ID = 3092, SensitiveWord = "資本主義"}
  3102. self.datas[3093] = {ID = 3093, SensitiveWord = "鯔"}
  3103. self.datas[3094] = {ID = 3094, SensitiveWord = "子宮"}
  3104. self.datas[3095] = {ID = 3095, SensitiveWord = "自民黨"}
  3105. self.datas[3096] = {ID = 3096, SensitiveWord = "自由民主論壇"}
  3106. self.datas[3097] = {ID = 3097, SensitiveWord = "總理"}
  3107. self.datas[3098] = {ID = 3098, SensitiveWord = "諏"}
  3108. self.datas[3099] = {ID = 3099, SensitiveWord = "鯫 "}
  3109. self.datas[3100] = {ID = 3100, SensitiveWord = "躦"}
  3110. self.datas[3101] = {ID = 3101, SensitiveWord = "纘"}
  3111. self.datas[3102] = {ID = 3102, SensitiveWord = "作愛"}
  3112. self.datas[3103] = {ID = 3103, SensitiveWord = "做愛"}
  3113. self.datas[3104] = {ID = 3104, SensitiveWord = "胡总书记"}
  3114. self.datas[3105] = {ID = 3105, SensitiveWord = "胡景涛"}
  3115. self.datas[3106] = {ID = 3106, SensitiveWord = "大纪元"}
  3116. self.datas[3107] = {ID = 3107, SensitiveWord = "大纪元新闻网"}
  3117. self.datas[3108] = {ID = 3108, SensitiveWord = "燕玲论坛"}
  3118. self.datas[3109] = {ID = 3109, SensitiveWord = "fuck"}
  3119. self.datas[3110] = {ID = 3110, SensitiveWord = "共产党"}
  3120. self.datas[3111] = {ID = 3111, SensitiveWord = "urban"}
  3121. self.datas[3112] = {ID = 3112, SensitiveWord = "我操"}
  3122. self.datas[3113] = {ID = 3113, SensitiveWord = "cao"}
  3123. self.datas[3114] = {ID = 3114, SensitiveWord = "他妈的"}
  3124. self.datas[3115] = {ID = 3115, SensitiveWord = "TMD"}
  3125. self.datas[3116] = {ID = 3116, SensitiveWord = "鸡巴"}
  3126. self.datas[3117] = {ID = 3117, SensitiveWord = "煞笔"}
  3127. self.datas[3118] = {ID = 3118, SensitiveWord = "傻B"}
  3128. self.datas[3119] = {ID = 3119, SensitiveWord = "法轮功"}
  3129. self.datas[3120] = {ID = 3120, SensitiveWord = "江泽民"}
  3130. self.datas[3121] = {ID = 3121, SensitiveWord = "胡锦涛"}
  3131. self.datas[3122] = {ID = 3122, SensitiveWord = "温家宝"}
  3132. self.datas[3123] = {ID = 3123, SensitiveWord = "urban-rivals"}
  3133. self.datas[3124] = {ID = 3124, SensitiveWord = "rivals"}
  3134. self.datas[3125] = {ID = 3125, SensitiveWord = "我日"}
  3135. self.datas[3126] = {ID = 3126, SensitiveWord = "UR"}
  3136. self.datas[3127] = {ID = 3127, SensitiveWord = "ur"}
  3137. self.datas[3128] = {ID = 3128, SensitiveWord = "性交"}
  3138. self.datas[3129] = {ID = 3129, SensitiveWord = "口交"}
  3139. self.datas[3130] = {ID = 3130, SensitiveWord = "婊子"}
  3140. self.datas[3131] = {ID = 3131, SensitiveWord = "妓女"}
  3141. self.datas[3132] = {ID = 3132, SensitiveWord = "她妈"}
  3142. self.datas[3133] = {ID = 3133, SensitiveWord = "牛逼"}
  3143. self.datas[3134] = {ID = 3134, SensitiveWord = "牛B"}
  3144. self.datas[3135] = {ID = 3135, SensitiveWord = "牛比"}
  3145. self.datas[3136] = {ID = 3136, SensitiveWord = "煞笔"}
  3146. self.datas[3137] = {ID = 3137, SensitiveWord = "傻逼"}
  3147. self.datas[3138] = {ID = 3138, SensitiveWord = "傻B"}
  3148. self.datas[3139] = {ID = 3139, SensitiveWord = "操你妈"}
  3149. self.datas[3140] = {ID = 3140, SensitiveWord = "装逼"}
  3150. self.datas[3141] = {ID = 3141, SensitiveWord = "装B"}
  3151. self.datas[3142] = {ID = 3142, SensitiveWord = "日你妈"}
  3152. self.datas[3143] = {ID = 3143, SensitiveWord = "不玩了"}
  3153. self.datas[3144] = {ID = 3144, SensitiveWord = "删号"}
  3154. self.datas[3145] = {ID = 3145, SensitiveWord = "卖号 "}
  3155. self.datas[3146] = {ID = 3146, SensitiveWord = "删 号"}
  3156. self.datas[3147] = {ID = 3147, SensitiveWord = "妈的"}
  3157. self.datas[3148] = {ID = 3148, SensitiveWord = "妈逼"}
  3158. self.datas[3149] = {ID = 3149, SensitiveWord = "草你妈"}
  3159. self.datas[3150] = {ID = 3150, SensitiveWord = "T.M.D"}
  3160. self.datas[3151] = {ID = 3151, SensitiveWord = "JB"}
  3161. self.datas[3152] = {ID = 3152, SensitiveWord = "jb"}
  3162. self.datas[3153] = {ID = 3153, SensitiveWord = "出售账号"}
  3163. self.datas[3154] = {ID = 3154, SensitiveWord = "出售此号"}
  3164. self.datas[3155] = {ID = 3155, SensitiveWord = "卖号"}
  3165. self.datas[3156] = {ID = 3156, SensitiveWord = "U/R"}
  3166. self.datas[3157] = {ID = 3157, SensitiveWord = "U-R"}
  3167. self.datas[3158] = {ID = 3158, SensitiveWord = "j8"}
  3168. self.datas[3159] = {ID = 3159, SensitiveWord = "吗的"}
  3169. self.datas[3160] = {ID = 3160, SensitiveWord = "8仙"}
  3170. self.datas[3161] = {ID = 3161, SensitiveWord = "狗日"}
  3171. self.datas[3162] = {ID = 3162, SensitiveWord = "出售神符"}
  3172. self.datas[3163] = {ID = 3163, SensitiveWord = "色情"}
  3173. self.datas[3164] = {ID = 3164, SensitiveWord = "黄色"}
  3174. self.datas[3165] = {ID = 3165, SensitiveWord = "藏独"}
  3175. self.datas[3166] = {ID = 3166, SensitiveWord = "台独"}
  3176. self.datas[3167] = {ID = 3167, SensitiveWord = "法轮大法"}
  3177. self.datas[3168] = {ID = 3168, SensitiveWord = "鸡巴"}
  3178. self.datas[3169] = {ID = 3169, SensitiveWord = "毛泽东"}
  3179. self.datas[3170] = {ID = 3170, SensitiveWord = "NPC"}
  3180. self.datas[3171] = {ID = 3171, SensitiveWord = "*法*轮*功*"}
  3181. self.datas[3172] = {ID = 3172, SensitiveWord = "*李*洪*志*阿扁"}
  3182. self.datas[3173] = {ID = 3173, SensitiveWord = "阿扁万岁"}
  3183. self.datas[3174] = {ID = 3174, SensitiveWord = "阿拉"}
  3184. self.datas[3175] = {ID = 3175, SensitiveWord = "阿拉法特"}
  3185. self.datas[3176] = {ID = 3176, SensitiveWord = "挨球"}
  3186. self.datas[3177] = {ID = 3177, SensitiveWord = "安南"}
  3187. self.datas[3178] = {ID = 3178, SensitiveWord = "安全局"}
  3188. self.datas[3179] = {ID = 3179, SensitiveWord = "澳洲光明网"}
  3189. self.datas[3180] = {ID = 3180, SensitiveWord = "八九"}
  3190. self.datas[3181] = {ID = 3181, SensitiveWord = "八九风波"}
  3191. self.datas[3182] = {ID = 3182, SensitiveWord = "办理文凭"}
  3192. self.datas[3183] = {ID = 3183, SensitiveWord = "办理证件"}
  3193. self.datas[3184] = {ID = 3184, SensitiveWord = "包皮"}
  3194. self.datas[3185] = {ID = 3185, SensitiveWord = "保钓"}
  3195. self.datas[3186] = {ID = 3186, SensitiveWord = "保监会"}
  3196. self.datas[3187] = {ID = 3187, SensitiveWord = "保密局"}
  3197. self.datas[3188] = {ID = 3188, SensitiveWord = "鸨"}
  3198. self.datas[3189] = {ID = 3189, SensitiveWord = "鲍岳桥"}
  3199. self.datas[3190] = {ID = 3190, SensitiveWord = "暴动"}
  3200. self.datas[3191] = {ID = 3191, SensitiveWord = "暴乱"}
  3201. self.datas[3192] = {ID = 3192, SensitiveWord = "暴徒"}
  3202. self.datas[3193] = {ID = 3193, SensitiveWord = "北京之春"}
  3203. self.datas[3194] = {ID = 3194, SensitiveWord = "贝肉"}
  3204. self.datas[3195] = {ID = 3195, SensitiveWord = "本?拉登"}
  3205. self.datas[3196] = {ID = 3196, SensitiveWord = "本?拉登"}
  3206. self.datas[3197] = {ID = 3197, SensitiveWord = "苯比"}
  3207. self.datas[3198] = {ID = 3198, SensitiveWord = "笨屄"}
  3208. self.datas[3199] = {ID = 3199, SensitiveWord = "笨逼"}
  3209. self.datas[3200] = {ID = 3200, SensitiveWord = "屄"}
  3210. self.datas[3201] = {ID = 3201, SensitiveWord = "屄毛"}
  3211. self.datas[3202] = {ID = 3202, SensitiveWord = "逼毛"}
  3212. self.datas[3203] = {ID = 3203, SensitiveWord = "逼你老母"}
  3213. self.datas[3204] = {ID = 3204, SensitiveWord = "逼样"}
  3214. self.datas[3205] = {ID = 3205, SensitiveWord = "比毛"}
  3215. self.datas[3206] = {ID = 3206, SensitiveWord = "婊"}
  3216. self.datas[3207] = {ID = 3207, SensitiveWord = "婊子"}
  3217. self.datas[3208] = {ID = 3208, SensitiveWord = "宾周"}
  3218. self.datas[3209] = {ID = 3209, SensitiveWord = "冰毒"}
  3219. self.datas[3210] = {ID = 3210, SensitiveWord = "波霸"}
  3220. self.datas[3211] = {ID = 3211, SensitiveWord = "博讯"}
  3221. self.datas[3212] = {ID = 3212, SensitiveWord = "薄一波"}
  3222. self.datas[3213] = {ID = 3213, SensitiveWord = "布莱尔"}
  3223. self.datas[3214] = {ID = 3214, SensitiveWord = "布雷尔"}
  3224. self.datas[3215] = {ID = 3215, SensitiveWord = "布什"}
  3225. self.datas[3216] = {ID = 3216, SensitiveWord = "布什"}
  3226. self.datas[3217] = {ID = 3217, SensitiveWord = "财政部"}
  3227. self.datas[3218] = {ID = 3218, SensitiveWord = "参事室"}
  3228. self.datas[3219] = {ID = 3219, SensitiveWord = "藏独"}
  3229. self.datas[3220] = {ID = 3220, SensitiveWord = "藏独"}
  3230. self.datas[3221] = {ID = 3221, SensitiveWord = "藏独"}
  3231. self.datas[3222] = {ID = 3222, SensitiveWord = "操"}
  3232. self.datas[3223] = {ID = 3223, SensitiveWord = "操GM"}
  3233. self.datas[3224] = {ID = 3224, SensitiveWord = "操Gm"}
  3234. self.datas[3225] = {ID = 3225, SensitiveWord = "操gM"}
  3235. self.datas[3226] = {ID = 3226, SensitiveWord = "操gm"}
  3236. self.datas[3227] = {ID = 3227, SensitiveWord = "操XX"}
  3237. self.datas[3228] = {ID = 3228, SensitiveWord = "操逼"}
  3238. self.datas[3229] = {ID = 3229, SensitiveWord = "操比"}
  3239. self.datas[3230] = {ID = 3230, SensitiveWord = "操蛋"}
  3240. self.datas[3231] = {ID = 3231, SensitiveWord = "操你"}
  3241. self.datas[3232] = {ID = 3232, SensitiveWord = "交媾"}
  3242. self.datas[3233] = {ID = 3233, SensitiveWord = "CAO"}
  3243. self.datas[3234] = {ID = 3234, SensitiveWord = "K粉"}
  3244. self.datas[3235] = {ID = 3235, SensitiveWord = "J8"}
  3245. self.datas[3236] = {ID = 3236, SensitiveWord = "小姐兼职"}
  3246. self.datas[3237] = {ID = 3237, SensitiveWord = "交媾"}
  3247. self.datas[3238] = {ID = 3238, SensitiveWord = "西藏314事件"}
  3248. self.datas[3239] = {ID = 3239, SensitiveWord = "新疆7.5事件"}
  3249. self.datas[3240] = {ID = 3240, SensitiveWord = "乱伦"}
  3250. self.datas[3241] = {ID = 3241, SensitiveWord = "毛片"}
  3251. self.datas[3242] = {ID = 3242, SensitiveWord = "黄片"}
  3252. self.datas[3243] = {ID = 3243, SensitiveWord = "交配"}
  3253. self.datas[3244] = {ID = 3244, SensitiveWord = "群交"}
  3254. self.datas[3245] = {ID = 3245, SensitiveWord = "小姐兼职"}
  3255. self.datas[3246] = {ID = 3246, SensitiveWord = "茉莉花革命"}
  3256. self.datas[3247] = {ID = 3247, SensitiveWord = "操你八辈祖宗"}
  3257. self.datas[3248] = {ID = 3248, SensitiveWord = "操你妈"}
  3258. self.datas[3249] = {ID = 3249, SensitiveWord = "操你妈屄"}
  3259. self.datas[3250] = {ID = 3250, SensitiveWord = "操他"}
  3260. self.datas[3251] = {ID = 3251, SensitiveWord = "曹刚川"}
  3261. self.datas[3252] = {ID = 3252, SensitiveWord = "草的你妈"}
  3262. self.datas[3253] = {ID = 3253, SensitiveWord = "草妈"}
  3263. self.datas[3254] = {ID = 3254, SensitiveWord = "草你妈"}
  3264. self.datas[3255] = {ID = 3255, SensitiveWord = "草拟妈"}
  3265. self.datas[3256] = {ID = 3256, SensitiveWord = "肏"}
  3266. self.datas[3257] = {ID = 3257, SensitiveWord = "测绘局"}
  3267. self.datas[3258] = {ID = 3258, SensitiveWord = "插GM"}
  3268. self.datas[3259] = {ID = 3259, SensitiveWord = "插Gm"}
  3269. self.datas[3260] = {ID = 3260, SensitiveWord = "插gM"}
  3270. self.datas[3261] = {ID = 3261, SensitiveWord = "插gm"}
  3271. self.datas[3262] = {ID = 3262, SensitiveWord = "插妳"}
  3272. self.datas[3263] = {ID = 3263, SensitiveWord = "插你"}
  3273. self.datas[3264] = {ID = 3264, SensitiveWord = "插你妈"}
  3274. self.datas[3265] = {ID = 3265, SensitiveWord = "插深些"}
  3275. self.datas[3266] = {ID = 3266, SensitiveWord = "产权局"}
  3276. self.datas[3267] = {ID = 3267, SensitiveWord = "朝鲜"}
  3277. self.datas[3268] = {ID = 3268, SensitiveWord = "车臣"}
  3278. self.datas[3269] = {ID = 3269, SensitiveWord = "车仑"}
  3279. self.datas[3270] = {ID = 3270, SensitiveWord = "陈功"}
  3280. self.datas[3271] = {ID = 3271, SensitiveWord = "陈良宇"}
  3281. self.datas[3272] = {ID = 3272, SensitiveWord = "陈水扁"}
  3282. self.datas[3273] = {ID = 3273, SensitiveWord = "陈希同"}
  3283. self.datas[3274] = {ID = 3274, SensitiveWord = "陈晓宁"}
  3284. self.datas[3275] = {ID = 3275, SensitiveWord = "陈毅"}
  3285. self.datas[3276] = {ID = 3276, SensitiveWord = "陈至立"}
  3286. self.datas[3277] = {ID = 3277, SensitiveWord = "成人电影"}
  3287. self.datas[3278] = {ID = 3278, SensitiveWord = "成人片"}
  3288. self.datas[3279] = {ID = 3279, SensitiveWord = "吃大便"}
  3289. self.datas[3280] = {ID = 3280, SensitiveWord = "吃屎"}
  3290. self.datas[3281] = {ID = 3281, SensitiveWord = "迟浩田"}
  3291. self.datas[3282] = {ID = 3282, SensitiveWord = "赤匪"}
  3292. self.datas[3283] = {ID = 3283, SensitiveWord = "抽插"}
  3293. self.datas[3284] = {ID = 3284, SensitiveWord = "抽你丫的"}
  3294. self.datas[3285] = {ID = 3285, SensitiveWord = "臭化西"}
  3295. self.datas[3286] = {ID = 3286, SensitiveWord = "出售假币"}
  3296. self.datas[3287] = {ID = 3287, SensitiveWord = "出售枪支"}
  3297. self.datas[3288] = {ID = 3288, SensitiveWord = "出售手枪"}
  3298. self.datas[3289] = {ID = 3289, SensitiveWord = "吹喇叭"}
  3299. self.datas[3290] = {ID = 3290, SensitiveWord = "吹箫"}
  3300. self.datas[3291] = {ID = 3291, SensitiveWord = "春药"}
  3301. self.datas[3292] = {ID = 3292, SensitiveWord = "蠢猪"}
  3302. self.datas[3293] = {ID = 3293, SensitiveWord = "戳你"}
  3303. self.datas[3294] = {ID = 3294, SensitiveWord = "粗制吗啡"}
  3304. self.datas[3295] = {ID = 3295, SensitiveWord = "催情药"}
  3305. self.datas[3296] = {ID = 3296, SensitiveWord = "达赖"}
  3306. self.datas[3297] = {ID = 3297, SensitiveWord = "达赖喇嘛"}
  3307. self.datas[3298] = {ID = 3298, SensitiveWord = "打炮"}
  3308. self.datas[3299] = {ID = 3299, SensitiveWord = "大B"}
  3309. self.datas[3300] = {ID = 3300, SensitiveWord = "大逼"}
  3310. self.datas[3301] = {ID = 3301, SensitiveWord = "大便"}
  3311. self.datas[3302] = {ID = 3302, SensitiveWord = "大波波"}
  3312. self.datas[3303] = {ID = 3303, SensitiveWord = "大麻"}
  3313. self.datas[3304] = {ID = 3304, SensitiveWord = "大麻树脂"}
  3314. self.datas[3305] = {ID = 3305, SensitiveWord = "大麻油"}
  3315. self.datas[3306] = {ID = 3306, SensitiveWord = "大师"}
  3316. self.datas[3307] = {ID = 3307, SensitiveWord = "戴维教"}
  3317. self.datas[3308] = {ID = 3308, SensitiveWord = "大学骚乱"}
  3318. self.datas[3309] = {ID = 3309, SensitiveWord = "大血B"}
  3319. self.datas[3310] = {ID = 3310, SensitiveWord = "大血比"}
  3320. self.datas[3311] = {ID = 3311, SensitiveWord = "呆卵"}
  3321. self.datas[3312] = {ID = 3312, SensitiveWord = "戴海静"}
  3322. self.datas[3313] = {ID = 3313, SensitiveWord = "戴红"}
  3323. self.datas[3314] = {ID = 3314, SensitiveWord = "戴晶"}
  3324. self.datas[3315] = {ID = 3315, SensitiveWord = "戴维教"}
  3325. self.datas[3316] = {ID = 3316, SensitiveWord = "党主席"}
  3326. self.datas[3317] = {ID = 3317, SensitiveWord = "荡妇"}
  3327. self.datas[3318] = {ID = 3318, SensitiveWord = "档案局"}
  3328. self.datas[3319] = {ID = 3319, SensitiveWord = "盗窃犯"}
  3329. self.datas[3320] = {ID = 3320, SensitiveWord = "盗窃犯"}
  3330. self.datas[3321] = {ID = 3321, SensitiveWord = "道教"}
  3331. self.datas[3322] = {ID = 3322, SensitiveWord = "邓小平"}
  3332. self.datas[3323] = {ID = 3323, SensitiveWord = "帝国主义"}
  3333. self.datas[3324] = {ID = 3324, SensitiveWord = "电监会"}
  3334. self.datas[3325] = {ID = 3325, SensitiveWord = "叼你"}
  3335. self.datas[3326] = {ID = 3326, SensitiveWord = "叼你妈"}
  3336. self.datas[3327] = {ID = 3327, SensitiveWord = "屌"}
  3337. self.datas[3328] = {ID = 3328, SensitiveWord = "屌7"}
  3338. self.datas[3329] = {ID = 3329, SensitiveWord = "屌鸠"}
  3339. self.datas[3330] = {ID = 3330, SensitiveWord = "屌毛"}
  3340. self.datas[3331] = {ID = 3331, SensitiveWord = "屌妳"}
  3341. self.datas[3332] = {ID = 3332, SensitiveWord = "屌七"}
  3342. self.datas[3333] = {ID = 3333, SensitiveWord = "屌西"}
  3343. self.datas[3334] = {ID = 3334, SensitiveWord = "钓鱼台"}
  3344. self.datas[3335] = {ID = 3335, SensitiveWord = "丁关根"}
  3345. self.datas[3336] = {ID = 3336, SensitiveWord = "丁子霖"}
  3346. self.datas[3337] = {ID = 3337, SensitiveWord = "东北独立"}
  3347. self.datas[3338] = {ID = 3338, SensitiveWord = "东升"}
  3348. self.datas[3339] = {ID = 3339, SensitiveWord = "东条英机"}
  3349. self.datas[3340] = {ID = 3340, SensitiveWord = "东突"}
  3350. self.datas[3341] = {ID = 3341, SensitiveWord = "东突暴动和独立"}
  3351. self.datas[3342] = {ID = 3342, SensitiveWord = "东突组织"}
  3352. self.datas[3343] = {ID = 3343, SensitiveWord = "东亚病夫"}
  3353. self.datas[3344] = {ID = 3344, SensitiveWord = "董建华"}
  3354. self.datas[3345] = {ID = 3345, SensitiveWord = "董贱华"}
  3355. self.datas[3346] = {ID = 3346, SensitiveWord = "董文华"}
  3356. self.datas[3347] = {ID = 3347, SensitiveWord = "懂文华"}
  3357. self.datas[3348] = {ID = 3348, SensitiveWord = "独立"}
  3358. self.datas[3349] = {ID = 3349, SensitiveWord = "独立台湾会"}
  3359. self.datas[3350] = {ID = 3350, SensitiveWord = "恩格斯"}
  3360. self.datas[3351] = {ID = 3351, SensitiveWord = "二B"}
  3361. self.datas[3352] = {ID = 3352, SensitiveWord = "二屄"}
  3362. self.datas[3353] = {ID = 3353, SensitiveWord = "二逼"}
  3363. self.datas[3354] = {ID = 3354, SensitiveWord = "二乙基酰胺发抡"}
  3364. self.datas[3355] = {ID = 3355, SensitiveWord = "发抡功"}
  3365. self.datas[3356] = {ID = 3356, SensitiveWord = "发伦"}
  3366. self.datas[3357] = {ID = 3357, SensitiveWord = "发伦功"}
  3367. self.datas[3358] = {ID = 3358, SensitiveWord = "发轮"}
  3368. self.datas[3359] = {ID = 3359, SensitiveWord = "发论"}
  3369. self.datas[3360] = {ID = 3360, SensitiveWord = "发论公"}
  3370. self.datas[3361] = {ID = 3361, SensitiveWord = "发论功"}
  3371. self.datas[3362] = {ID = 3362, SensitiveWord = "发骚"}
  3372. self.datas[3363] = {ID = 3363, SensitiveWord = "法(轮)功"}
  3373. self.datas[3364] = {ID = 3364, SensitiveWord = "法*轮*功"}
  3374. self.datas[3365] = {ID = 3365, SensitiveWord = "法功"}
  3375. self.datas[3366] = {ID = 3366, SensitiveWord = "法愣"}
  3376. self.datas[3367] = {ID = 3367, SensitiveWord = "法仑"}
  3377. self.datas[3368] = {ID = 3368, SensitiveWord = "法轮"}
  3378. self.datas[3369] = {ID = 3369, SensitiveWord = "法轮大法"}
  3379. self.datas[3370] = {ID = 3370, SensitiveWord = "法轮功"}
  3380. self.datas[3371] = {ID = 3371, SensitiveWord = "法西斯"}
  3381. self.datas[3372] = {ID = 3372, SensitiveWord = "法制办"}
  3382. self.datas[3373] = {ID = 3373, SensitiveWord = "反动"}
  3383. self.datas[3374] = {ID = 3374, SensitiveWord = "反革命"}
  3384. self.datas[3375] = {ID = 3375, SensitiveWord = "发票"}
  3385. self.datas[3376] = {ID = 3376, SensitiveWord = "冰粉"}
  3386. self.datas[3377] = {ID = 3377, SensitiveWord = "性奴"}
  3387. self.datas[3378] = {ID = 3378, SensitiveWord = "反共"}
  3388. self.datas[3379] = {ID = 3379, SensitiveWord = "反华"}
  3389. self.datas[3380] = {ID = 3380, SensitiveWord = "反恐委员会"}
  3390. self.datas[3381] = {ID = 3381, SensitiveWord = "反日"}
  3391. self.datas[3382] = {ID = 3382, SensitiveWord = "反政府"}
  3392. self.datas[3383] = {ID = 3383, SensitiveWord = "分裂祖国"}
  3393. self.datas[3384] = {ID = 3384, SensitiveWord = "佛教"}
  3394. self.datas[3385] = {ID = 3385, SensitiveWord = "佛展千手法"}
  3395. self.datas[3386] = {ID = 3386, SensitiveWord = "佛祖"}
  3396. self.datas[3387] = {ID = 3387, SensitiveWord = "斧头镰刀"}
  3397. self.datas[3388] = {ID = 3388, SensitiveWord = "阝月"}
  3398. self.datas[3389] = {ID = 3389, SensitiveWord = "傅鹏"}
  3399. self.datas[3390] = {ID = 3390, SensitiveWord = "傅作义"}
  3400. self.datas[3391] = {ID = 3391, SensitiveWord = "干GM"}
  3401. self.datas[3392] = {ID = 3392, SensitiveWord = "干Gm"}
  3402. self.datas[3393] = {ID = 3393, SensitiveWord = "干gM"}
  3403. self.datas[3394] = {ID = 3394, SensitiveWord = "干gm"}
  3404. self.datas[3395] = {ID = 3395, SensitiveWord = "干拎娘"}
  3405. self.datas[3396] = {ID = 3396, SensitiveWord = "干妳"}
  3406. self.datas[3397] = {ID = 3397, SensitiveWord = "干妳老母"}
  3407. self.datas[3398] = {ID = 3398, SensitiveWord = "干妳妈"}
  3408. self.datas[3399] = {ID = 3399, SensitiveWord = "干妳娘"}
  3409. self.datas[3400] = {ID = 3400, SensitiveWord = "干你"}
  3410. self.datas[3401] = {ID = 3401, SensitiveWord = "干你妈"}
  3411. self.datas[3402] = {ID = 3402, SensitiveWord = "干你妈b"}
  3412. self.datas[3403] = {ID = 3403, SensitiveWord = "干你妈逼"}
  3413. self.datas[3404] = {ID = 3404, SensitiveWord = "干你娘"}
  3414. self.datas[3405] = {ID = 3405, SensitiveWord = "干七八"}
  3415. self.datas[3406] = {ID = 3406, SensitiveWord = "干死你"}
  3416. self.datas[3407] = {ID = 3407, SensitiveWord = "肛"}
  3417. self.datas[3408] = {ID = 3408, SensitiveWord = "肛交"}
  3418. self.datas[3409] = {ID = 3409, SensitiveWord = "肛门"}
  3419. self.datas[3410] = {ID = 3410, SensitiveWord = "港澳办"}
  3420. self.datas[3411] = {ID = 3411, SensitiveWord = "高俊"}
  3421. self.datas[3412] = {ID = 3412, SensitiveWord = "高丽棒子"}
  3422. self.datas[3413] = {ID = 3413, SensitiveWord = "高校暴乱"}
  3423. self.datas[3414] = {ID = 3414, SensitiveWord = "高校群体事件"}
  3424. self.datas[3415] = {ID = 3415, SensitiveWord = "高校骚乱"}
  3425. self.datas[3416] = {ID = 3416, SensitiveWord = "睾"}
  3426. self.datas[3417] = {ID = 3417, SensitiveWord = "睾丸"}
  3427. self.datas[3418] = {ID = 3418, SensitiveWord = "膏药旗"}
  3428. self.datas[3419] = {ID = 3419, SensitiveWord = "弓虽女干"}
  3429. self.datas[3420] = {ID = 3420, SensitiveWord = "公安"}
  3430. self.datas[3421] = {ID = 3421, SensitiveWord = "公安部"}
  3431. self.datas[3422] = {ID = 3422, SensitiveWord = "公安局"}
  3432. self.datas[3423] = {ID = 3423, SensitiveWord = "共产党"}
  3433. self.datas[3424] = {ID = 3424, SensitiveWord = "共产主义"}
  3434. self.datas[3425] = {ID = 3425, SensitiveWord = "共匪"}
  3435. self.datas[3426] = {ID = 3426, SensitiveWord = "共狗"}
  3436. self.datas[3427] = {ID = 3427, SensitiveWord = "狗b"}
  3437. self.datas[3428] = {ID = 3428, SensitiveWord = "狗操"}
  3438. self.datas[3429] = {ID = 3429, SensitiveWord = "狗卵"}
  3439. self.datas[3430] = {ID = 3430, SensitiveWord = "狗娘"}
  3440. self.datas[3431] = {ID = 3431, SensitiveWord = "狗屁"}
  3441. self.datas[3432] = {ID = 3432, SensitiveWord = "狗日"}
  3442. self.datas[3433] = {ID = 3433, SensitiveWord = "狗日的"}
  3443. self.datas[3434] = {ID = 3434, SensitiveWord = "狗屎"}
  3444. self.datas[3435] = {ID = 3435, SensitiveWord = "观世音"}
  3445. self.datas[3436] = {ID = 3436, SensitiveWord = "官逼民反"}
  3446. self.datas[3437] = {ID = 3437, SensitiveWord = "官商勾结"}
  3447. self.datas[3438] = {ID = 3438, SensitiveWord = "龟儿子"}
  3448. self.datas[3439] = {ID = 3439, SensitiveWord = "龟公"}
  3449. self.datas[3440] = {ID = 3440, SensitiveWord = "龟孙子"}
  3450. self.datas[3441] = {ID = 3441, SensitiveWord = "龟头"}
  3451. self.datas[3442] = {ID = 3442, SensitiveWord = "鬼村"}
  3452. self.datas[3443] = {ID = 3443, SensitiveWord = "滚"}
  3453. self.datas[3444] = {ID = 3444, SensitiveWord = "郭伯雄"}
  3454. self.datas[3445] = {ID = 3445, SensitiveWord = "国安局"}
  3455. self.datas[3446] = {ID = 3446, SensitiveWord = "国防部"}
  3456. self.datas[3447] = {ID = 3447, SensitiveWord = "国防科工委"}
  3457. self.datas[3448] = {ID = 3448, SensitiveWord = "国管局"}
  3458. self.datas[3449] = {ID = 3449, SensitiveWord = "国际法院"}
  3459. self.datas[3450] = {ID = 3450, SensitiveWord = "国家民委"}
  3460. self.datas[3451] = {ID = 3451, SensitiveWord = "国家主席"}
  3461. self.datas[3452] = {ID = 3452, SensitiveWord = "国家主要部委"}
  3462. self.datas[3453] = {ID = 3453, SensitiveWord = "国民党"}
  3463. self.datas[3454] = {ID = 3454, SensitiveWord = "国民党万岁"}
  3464. self.datas[3455] = {ID = 3455, SensitiveWord = "海洛因"}
  3465. self.datas[3456] = {ID = 3456, SensitiveWord = "海洋局"}
  3466. self.datas[3457] = {ID = 3457, SensitiveWord = "何候华"}
  3467. self.datas[3458] = {ID = 3458, SensitiveWord = "贺国强"}
  3468. self.datas[3459] = {ID = 3459, SensitiveWord = "贺龙"}
  3469. self.datas[3460] = {ID = 3460, SensitiveWord = "黑社会"}
  3470. self.datas[3461] = {ID = 3461, SensitiveWord = "黑手党"}
  3471. self.datas[3462] = {ID = 3462, SensitiveWord = "黑手党"}
  3472. self.datas[3463] = {ID = 3463, SensitiveWord = "黑手党"}
  3473. self.datas[3464] = {ID = 3464, SensitiveWord = "红卫兵"}
  3474. self.datas[3465] = {ID = 3465, SensitiveWord = "洪兴"}
  3475. self.datas[3466] = {ID = 3466, SensitiveWord = "洪志"}
  3476. self.datas[3467] = {ID = 3467, SensitiveWord = "后庭"}
  3477. self.datas[3468] = {ID = 3468, SensitiveWord = "胡XX"}
  3478. self.datas[3469] = {ID = 3469, SensitiveWord = "胡紧涛"}
  3479. self.datas[3470] = {ID = 3470, SensitiveWord = "胡紧掏"}
  3480. self.datas[3471] = {ID = 3471, SensitiveWord = "胡紧套"}
  3481. self.datas[3472] = {ID = 3472, SensitiveWord = "胡锦涛"}
  3482. self.datas[3473] = {ID = 3473, SensitiveWord = "胡锦淘"}
  3483. self.datas[3474] = {ID = 3474, SensitiveWord = "胡乔木"}
  3484. self.datas[3475] = {ID = 3475, SensitiveWord = "胡耀邦"}
  3485. self.datas[3476] = {ID = 3476, SensitiveWord = "胡主席"}
  3486. self.datas[3477] = {ID = 3477, SensitiveWord = "花柳"}
  3487. self.datas[3478] = {ID = 3478, SensitiveWord = "华国锋"}
  3488. self.datas[3479] = {ID = 3479, SensitiveWord = "华建敏"}
  3489. self.datas[3480] = {ID = 3480, SensitiveWord = "换妻"}
  3490. self.datas[3481] = {ID = 3481, SensitiveWord = "黄 菊"}
  3491. self.datas[3482] = {ID = 3482, SensitiveWord = "黄菊"}
  3492. self.datas[3483] = {ID = 3483, SensitiveWord = "黄色电影"}
  3493. self.datas[3484] = {ID = 3484, SensitiveWord = "黄色小电影"}
  3494. self.datas[3485] = {ID = 3485, SensitiveWord = "回教"}
  3495. self.datas[3486] = {ID = 3486, SensitiveWord = "回良玉"}
  3496. self.datas[3487] = {ID = 3487, SensitiveWord = "回民暴动"}
  3497. self.datas[3488] = {ID = 3488, SensitiveWord = "回族人吃猪肉"}
  3498. self.datas[3489] = {ID = 3489, SensitiveWord = "昏药"}
  3499. self.datas[3490] = {ID = 3490, SensitiveWord = "火棒"}
  3500. self.datas[3491] = {ID = 3491, SensitiveWord = "机八"}
  3501. self.datas[3492] = {ID = 3492, SensitiveWord = "机巴"}
  3502. self.datas[3493] = {ID = 3493, SensitiveWord = "鸡八"}
  3503. self.datas[3494] = {ID = 3494, SensitiveWord = "鸡巴"}
  3504. self.datas[3495] = {ID = 3495, SensitiveWord = "鸡叭"}
  3505. self.datas[3496] = {ID = 3496, SensitiveWord = "鸡芭"}
  3506. self.datas[3497] = {ID = 3497, SensitiveWord = "鸡掰"}
  3507. self.datas[3498] = {ID = 3498, SensitiveWord = "鸡奸"}
  3508. self.datas[3499] = {ID = 3499, SensitiveWord = "基地组织"}
  3509. self.datas[3500] = {ID = 3500, SensitiveWord = "基督"}
  3510. self.datas[3501] = {ID = 3501, SensitiveWord = "基督教"}
  3511. self.datas[3502] = {ID = 3502, SensitiveWord = "激情电影"}
  3512. self.datas[3503] = {ID = 3503, SensitiveWord = "激情小电影"}
  3513. self.datas[3504] = {ID = 3504, SensitiveWord = "鸡"}
  3514. self.datas[3505] = {ID = 3505, SensitiveWord = "计牌软件"}
  3515. self.datas[3506] = {ID = 3506, SensitiveWord = "计生委"}
  3516. self.datas[3507] = {ID = 3507, SensitiveWord = "妓"}
  3517. self.datas[3508] = {ID = 3508, SensitiveWord = "妓女"}
  3518. self.datas[3509] = {ID = 3509, SensitiveWord = "妓院"}
  3519. self.datas[3510] = {ID = 3510, SensitiveWord = "贾庆林"}
  3520. self.datas[3511] = {ID = 3511, SensitiveWord = "奸"}
  3521. self.datas[3512] = {ID = 3512, SensitiveWord = "奸夫淫妇"}
  3522. self.datas[3513] = {ID = 3513, SensitiveWord = "奸你"}
  3523. self.datas[3514] = {ID = 3514, SensitiveWord = "奸淫"}
  3524. self.datas[3515] = {ID = 3515, SensitiveWord = "贱"}
  3525. self.datas[3516] = {ID = 3516, SensitiveWord = "贱逼"}
  3526. self.datas[3517] = {ID = 3517, SensitiveWord = "贱货"}
  3527. self.datas[3518] = {ID = 3518, SensitiveWord = "贱人"}
  3528. self.datas[3519] = {ID = 3519, SensitiveWord = "江Core"}
  3529. self.datas[3520] = {ID = 3520, SensitiveWord = "江八"}
  3530. self.datas[3521] = {ID = 3521, SensitiveWord = "江八点"}
  3531. self.datas[3522] = {ID = 3522, SensitiveWord = "江独裁"}
  3532. self.datas[3523] = {ID = 3523, SensitiveWord = "江核心"}
  3533. self.datas[3524] = {ID = 3524, SensitiveWord = "江青"}
  3534. self.datas[3525] = {ID = 3525, SensitiveWord = "江戏子"}
  3535. self.datas[3526] = {ID = 3526, SensitiveWord = "江择民"}
  3536. self.datas[3527] = {ID = 3527, SensitiveWord = "江泽民"}
  3537. self.datas[3528] = {ID = 3528, SensitiveWord = "江贼民"}
  3538. self.datas[3529] = {ID = 3529, SensitiveWord = "江折民"}
  3539. self.datas[3530] = {ID = 3530, SensitiveWord = "江猪"}
  3540. self.datas[3531] = {ID = 3531, SensitiveWord = "江猪媳"}
  3541. self.datas[3532] = {ID = 3532, SensitiveWord = "江主席"}
  3542. self.datas[3533] = {ID = 3533, SensitiveWord = "僵贼民"}
  3543. self.datas[3534] = {ID = 3534, SensitiveWord = "疆独"}
  3544. self.datas[3535] = {ID = 3535, SensitiveWord = "蒋介石"}
  3545. self.datas[3536] = {ID = 3536, SensitiveWord = "蒋经国"}
  3546. self.datas[3537] = {ID = 3537, SensitiveWord = "蒋中正"}
  3547. self.datas[3538] = {ID = 3538, SensitiveWord = "酱猪媳"}
  3548. self.datas[3539] = {ID = 3539, SensitiveWord = "交通部"}
  3549. self.datas[3540] = {ID = 3540, SensitiveWord = "姣西"}
  3550. self.datas[3541] = {ID = 3541, SensitiveWord = "叫床"}
  3551. self.datas[3542] = {ID = 3542, SensitiveWord = "叫鸡"}
  3552. self.datas[3543] = {ID = 3543, SensitiveWord = "叫小姐"}
  3553. self.datas[3544] = {ID = 3544, SensitiveWord = "教育部"}
  3554. self.datas[3545] = {ID = 3545, SensitiveWord = "她妈的金日成"}
  3555. self.datas[3546] = {ID = 3546, SensitiveWord = "金正日"}
  3556. self.datas[3547] = {ID = 3547, SensitiveWord = "禁书"}
  3557. self.datas[3548] = {ID = 3548, SensitiveWord = "经济社会理事会"}
  3558. self.datas[3549] = {ID = 3549, SensitiveWord = "经社理事会"}
  3559. self.datas[3550] = {ID = 3550, SensitiveWord = "精液"}
  3560. self.datas[3551] = {ID = 3551, SensitiveWord = "精子"}
  3561. self.datas[3552] = {ID = 3552, SensitiveWord = "警匪一家"}
  3562. self.datas[3553] = {ID = 3553, SensitiveWord = "敬国神社"}
  3563. self.datas[3554] = {ID = 3554, SensitiveWord = "靖国神社"}
  3564. self.datas[3555] = {ID = 3555, SensitiveWord = "静坐"}
  3565. self.datas[3556] = {ID = 3556, SensitiveWord = "纠察员"}
  3566. self.datas[3557] = {ID = 3557, SensitiveWord = "鸠"}
  3567. self.datas[3558] = {ID = 3558, SensitiveWord = "鸠屎"}
  3568. self.datas[3559] = {ID = 3559, SensitiveWord = "军长发威"}
  3569. self.datas[3560] = {ID = 3560, SensitiveWord = "军国主义"}
  3570. self.datas[3561] = {ID = 3561, SensitiveWord = "军妓"}
  3571. self.datas[3562] = {ID = 3562, SensitiveWord = "尻"}
  3572. self.datas[3563] = {ID = 3563, SensitiveWord = "靠"}
  3573. self.datas[3564] = {ID = 3564, SensitiveWord = "靠你妈"}
  3574. self.datas[3565] = {ID = 3565, SensitiveWord = "靠腰"}
  3575. self.datas[3566] = {ID = 3566, SensitiveWord = "可待因"}
  3576. self.datas[3567] = {ID = 3567, SensitiveWord = "可卡叶"}
  3577. self.datas[3568] = {ID = 3568, SensitiveWord = "可卡因"}
  3578. self.datas[3569] = {ID = 3569, SensitiveWord = "克林顿"}
  3579. self.datas[3570] = {ID = 3570, SensitiveWord = "恐怖份子"}
  3580. self.datas[3571] = {ID = 3571, SensitiveWord = "恐怖主义"}
  3581. self.datas[3572] = {ID = 3572, SensitiveWord = "口交"}
  3582. self.datas[3573] = {ID = 3573, SensitiveWord = "寇晓伟"}
  3583. self.datas[3574] = {ID = 3574, SensitiveWord = "狂操"}
  3584. self.datas[3575] = {ID = 3575, SensitiveWord = "狂操你全家"}
  3585. self.datas[3576] = {ID = 3576, SensitiveWord = "拉登"}
  3586. self.datas[3577] = {ID = 3577, SensitiveWord = "拉姆斯菲尔德"}
  3587. self.datas[3578] = {ID = 3578, SensitiveWord = "懒教"}
  3588. self.datas[3579] = {ID = 3579, SensitiveWord = "烂B"}
  3589. self.datas[3580] = {ID = 3580, SensitiveWord = "烂屄"}
  3590. self.datas[3581] = {ID = 3581, SensitiveWord = "烂逼"}
  3591. self.datas[3582] = {ID = 3582, SensitiveWord = "烂比"}
  3592. self.datas[3583] = {ID = 3583, SensitiveWord = "烂屌"}
  3593. self.datas[3584] = {ID = 3584, SensitiveWord = "烂货"}
  3594. self.datas[3585] = {ID = 3585, SensitiveWord = "劳+教+所"}
  3595. self.datas[3586] = {ID = 3586, SensitiveWord = "劳动保障部"}
  3596. self.datas[3587] = {ID = 3587, SensitiveWord = "老逼"}
  3597. self.datas[3588] = {ID = 3588, SensitiveWord = "老毛子"}
  3598. self.datas[3589] = {ID = 3589, SensitiveWord = "老母"}
  3599. self.datas[3590] = {ID = 3590, SensitiveWord = "黎阳评"}
  3600. self.datas[3591] = {ID = 3591, SensitiveWord = "李长春"}
  3601. self.datas[3592] = {ID = 3592, SensitiveWord = "李登辉"}
  3602. self.datas[3593] = {ID = 3593, SensitiveWord = "李弘旨"}
  3603. self.datas[3594] = {ID = 3594, SensitiveWord = "李红志"}
  3604. self.datas[3595] = {ID = 3595, SensitiveWord = "李宏旨"}
  3605. self.datas[3596] = {ID = 3596, SensitiveWord = "李宏志"}
  3606. self.datas[3597] = {ID = 3597, SensitiveWord = "李洪志"}
  3607. self.datas[3598] = {ID = 3598, SensitiveWord = "李岚清"}
  3608. self.datas[3599] = {ID = 3599, SensitiveWord = "李鹏"}
  3609. self.datas[3600] = {ID = 3600, SensitiveWord = "李鹏*"}
  3610. self.datas[3601] = {ID = 3601, SensitiveWord = "李瑞环"}
  3611. self.datas[3602] = {ID = 3602, SensitiveWord = "李山"}
  3612. self.datas[3603] = {ID = 3603, SensitiveWord = "李铁映"}
  3613. self.datas[3604] = {ID = 3604, SensitiveWord = "李先念"}
  3614. self.datas[3605] = {ID = 3605, SensitiveWord = "连战"}
  3615. self.datas[3606] = {ID = 3606, SensitiveWord = "联大"}
  3616. self.datas[3607] = {ID = 3607, SensitiveWord = "联合国"}
  3617. self.datas[3608] = {ID = 3608, SensitiveWord = "联合国大会"}
  3618. self.datas[3609] = {ID = 3609, SensitiveWord = "联易"}
  3619. self.datas[3610] = {ID = 3610, SensitiveWord = "联易互动"}
  3620. self.datas[3611] = {ID = 3611, SensitiveWord = "粮食局"}
  3621. self.datas[3612] = {ID = 3612, SensitiveWord = "两腿之间"}
  3622. self.datas[3613] = {ID = 3613, SensitiveWord = "列宁"}
  3623. self.datas[3614] = {ID = 3614, SensitiveWord = "林彪"}
  3624. self.datas[3615] = {ID = 3615, SensitiveWord = "林业局"}
  3625. self.datas[3616] = {ID = 3616, SensitiveWord = "刘 淇"}
  3626. self.datas[3617] = {ID = 3617, SensitiveWord = "刘军"}
  3627. self.datas[3618] = {ID = 3618, SensitiveWord = "刘淇"}
  3628. self.datas[3619] = {ID = 3619, SensitiveWord = "刘少奇"}
  3629. self.datas[3620] = {ID = 3620, SensitiveWord = "刘云山"}
  3630. self.datas[3621] = {ID = 3621, SensitiveWord = "流氓"}
  3631. self.datas[3622] = {ID = 3622, SensitiveWord = "六.四"}
  3632. self.datas[3623] = {ID = 3623, SensitiveWord = "六。四"}
  3633. self.datas[3624] = {ID = 3624, SensitiveWord = "六?四"}
  3634. self.datas[3625] = {ID = 3625, SensitiveWord = "六合彩"}
  3635. self.datas[3626] = {ID = 3626, SensitiveWord = "六四"}
  3636. self.datas[3627] = {ID = 3627, SensitiveWord = "六-四"}
  3637. self.datas[3628] = {ID = 3628, SensitiveWord = "六四事件"}
  3638. self.datas[3629] = {ID = 3629, SensitiveWord = "六四真相"}
  3639. self.datas[3630] = {ID = 3630, SensitiveWord = "龙新民"}
  3640. self.datas[3631] = {ID = 3631, SensitiveWord = "吕秀莲"}
  3641. self.datas[3632] = {ID = 3632, SensitiveWord = "旅游局"}
  3642. self.datas[3633] = {ID = 3633, SensitiveWord = "卵"}
  3643. self.datas[3634] = {ID = 3634, SensitiveWord = "轮功"}
  3644. self.datas[3635] = {ID = 3635, SensitiveWord = "轮奸"}
  3645. self.datas[3636] = {ID = 3636, SensitiveWord = "罗 干"}
  3646. self.datas[3637] = {ID = 3637, SensitiveWord = "罗干"}
  3647. self.datas[3638] = {ID = 3638, SensitiveWord = "骡干"}
  3648. self.datas[3639] = {ID = 3639, SensitiveWord = "妈逼"}
  3649. self.datas[3640] = {ID = 3640, SensitiveWord = "妈比"}
  3650. self.datas[3641] = {ID = 3641, SensitiveWord = "妈卖妈屁"}
  3651. self.datas[3642] = {ID = 3642, SensitiveWord = "妈批"}
  3652. self.datas[3643] = {ID = 3643, SensitiveWord = "妈祖"}
  3653. self.datas[3644] = {ID = 3644, SensitiveWord = "妈B"}
  3654. self.datas[3645] = {ID = 3645, SensitiveWord = "妈的"}
  3655. self.datas[3646] = {ID = 3646, SensitiveWord = "麻醉钢枪"}
  3656. self.datas[3647] = {ID = 3647, SensitiveWord = "麻醉枪"}
  3657. self.datas[3648] = {ID = 3648, SensitiveWord = "麻醉药"}
  3658. self.datas[3649] = {ID = 3649, SensitiveWord = "麻醉乙醚"}
  3659. self.datas[3650] = {ID = 3650, SensitiveWord = "马克思"}
  3660. self.datas[3651] = {ID = 3651, SensitiveWord = "马卖马屁"}
  3661. self.datas[3652] = {ID = 3652, SensitiveWord = "马英九"}
  3662. self.datas[3653] = {ID = 3653, SensitiveWord = "吗啡"}
  3663. self.datas[3654] = {ID = 3654, SensitiveWord = "吗啡碱"}
  3664. self.datas[3655] = {ID = 3655, SensitiveWord = "吗啡片"}
  3665. self.datas[3656] = {ID = 3656, SensitiveWord = "买财富"}
  3666. self.datas[3657] = {ID = 3657, SensitiveWord = "买卖枪支"}
  3667. self.datas[3658] = {ID = 3658, SensitiveWord = "麦角酸"}
  3668. self.datas[3659] = {ID = 3659, SensitiveWord = "卖.国"}
  3669. self.datas[3660] = {ID = 3660, SensitiveWord = "卖B"}
  3670. self.datas[3661] = {ID = 3661, SensitiveWord = "卖ID"}
  3671. self.datas[3662] = {ID = 3662, SensitiveWord = "卖QQ"}
  3672. self.datas[3663] = {ID = 3663, SensitiveWord = "卖逼"}
  3673. self.datas[3664] = {ID = 3664, SensitiveWord = "卖比"}
  3674. self.datas[3665] = {ID = 3665, SensitiveWord = "卖财富"}
  3675. self.datas[3666] = {ID = 3666, SensitiveWord = "卖党求荣"}
  3676. self.datas[3667] = {ID = 3667, SensitiveWord = "卖国"}
  3677. self.datas[3668] = {ID = 3668, SensitiveWord = "卖国求荣"}
  3678. self.datas[3669] = {ID = 3669, SensitiveWord = "卖号"}
  3679. self.datas[3670] = {ID = 3670, SensitiveWord = "卖卡"}
  3680. self.datas[3671] = {ID = 3671, SensitiveWord = "卖软件"}
  3681. self.datas[3672] = {ID = 3672, SensitiveWord = "卖淫"}
  3682. self.datas[3673] = {ID = 3673, SensitiveWord = "毛XX"}
  3683. self.datas[3674] = {ID = 3674, SensitiveWord = "毛厕洞"}
  3684. self.datas[3675] = {ID = 3675, SensitiveWord = "毛一鲜"}
  3685. self.datas[3676] = {ID = 3676, SensitiveWord = "毛泽东"}
  3686. self.datas[3677] = {ID = 3677, SensitiveWord = "毛贼东"}
  3687. self.datas[3678] = {ID = 3678, SensitiveWord = "毛主席"}
  3688. self.datas[3679] = {ID = 3679, SensitiveWord = "梅花网"}
  3689. self.datas[3680] = {ID = 3680, SensitiveWord = "美国"}
  3690. self.datas[3681] = {ID = 3681, SensitiveWord = "美国佬"}
  3691. self.datas[3682] = {ID = 3682, SensitiveWord = "美国之音"}
  3692. self.datas[3683] = {ID = 3683, SensitiveWord = "美利坚"}
  3693. self.datas[3684] = {ID = 3684, SensitiveWord = "蒙尘药"}
  3694. self.datas[3685] = {ID = 3685, SensitiveWord = "蒙独"}
  3695. self.datas[3686] = {ID = 3686, SensitiveWord = "蒙古达子"}
  3696. self.datas[3687] = {ID = 3687, SensitiveWord = "蒙古独立"}
  3697. self.datas[3688] = {ID = 3688, SensitiveWord = "迷魂药"}
  3698. self.datas[3689] = {ID = 3689, SensitiveWord = "迷奸药"}
  3699. self.datas[3690] = {ID = 3690, SensitiveWord = "迷歼药"}
  3700. self.datas[3691] = {ID = 3691, SensitiveWord = "迷药"}
  3701. self.datas[3692] = {ID = 3692, SensitiveWord = "密洞"}
  3702. self.datas[3693] = {ID = 3693, SensitiveWord = "密宗"}
  3703. self.datas[3694] = {ID = 3694, SensitiveWord = "民航局"}
  3704. self.datas[3695] = {ID = 3695, SensitiveWord = "民进党"}
  3705. self.datas[3696] = {ID = 3696, SensitiveWord = "民运"}
  3706. self.datas[3697] = {ID = 3697, SensitiveWord = "民政部"}
  3707. self.datas[3698] = {ID = 3698, SensitiveWord = "明慧网"}
  3708. self.datas[3699] = {ID = 3699, SensitiveWord = "摩门教"}
  3709. self.datas[3700] = {ID = 3700, SensitiveWord = "莫索里尼"}
  3710. self.datas[3701] = {ID = 3701, SensitiveWord = "穆罕默德"}
  3711. self.datas[3702] = {ID = 3702, SensitiveWord = "穆斯林"}
  3712. self.datas[3703] = {ID = 3703, SensitiveWord = "乳头"}
  3713. self.datas[3704] = {ID = 3704, SensitiveWord = "奶子"}
  3714. self.datas[3705] = {ID = 3705, SensitiveWord = "妳老母的"}
  3715. self.datas[3706] = {ID = 3706, SensitiveWord = "妳妈的"}
  3716. self.datas[3707] = {ID = 3707, SensitiveWord = "妳马的"}
  3717. self.datas[3708] = {ID = 3708, SensitiveWord = "妳娘的"}
  3718. self.datas[3709] = {ID = 3709, SensitiveWord = "南联盟"}
  3719. self.datas[3710] = {ID = 3710, SensitiveWord = "南蛮子"}
  3720. self.datas[3711] = {ID = 3711, SensitiveWord = "南蛮子"}
  3721. self.datas[3712] = {ID = 3712, SensitiveWord = "嫩B"}
  3722. self.datas[3713] = {ID = 3713, SensitiveWord = "嫩b"}
  3723. self.datas[3714] = {ID = 3714, SensitiveWord = "伱妈"}
  3724. self.datas[3715] = {ID = 3715, SensitiveWord = "你爸"}
  3725. self.datas[3716] = {ID = 3716, SensitiveWord = "你大爷"}
  3726. self.datas[3717] = {ID = 3717, SensitiveWord = "你二大爷"}
  3727. self.datas[3718] = {ID = 3718, SensitiveWord = "你老母"}
  3728. self.datas[3719] = {ID = 3719, SensitiveWord = "你老味"}
  3729. self.datas[3720] = {ID = 3720, SensitiveWord = "你姥"}
  3730. self.datas[3721] = {ID = 3721, SensitiveWord = "你姥姥的"}
  3731. self.datas[3722] = {ID = 3722, SensitiveWord = "你妈"}
  3732. self.datas[3723] = {ID = 3723, SensitiveWord = "你妈逼"}
  3733. self.datas[3724] = {ID = 3724, SensitiveWord = "你妈的"}
  3734. self.datas[3725] = {ID = 3725, SensitiveWord = "你娘"}
  3735. self.datas[3726] = {ID = 3726, SensitiveWord = "你爷爷的"}
  3736. self.datas[3727] = {ID = 3727, SensitiveWord = "鸟GM"}
  3737. self.datas[3728] = {ID = 3728, SensitiveWord = "鸟Gm"}
  3738. self.datas[3729] = {ID = 3729, SensitiveWord = "鸟gM"}
  3739. self.datas[3730] = {ID = 3730, SensitiveWord = "鸟gm"}
  3740. self.datas[3731] = {ID = 3731, SensitiveWord = "鸟你"}
  3741. self.datas[3732] = {ID = 3732, SensitiveWord = "牛逼"}
  3742. self.datas[3733] = {ID = 3733, SensitiveWord = "牛比"}
  3743. self.datas[3734] = {ID = 3734, SensitiveWord = "农业部"}
  3744. self.datas[3735] = {ID = 3735, SensitiveWord = "虐待"}
  3745. self.datas[3736] = {ID = 3736, SensitiveWord = "拍肩神药"}
  3746. self.datas[3737] = {ID = 3737, SensitiveWord = "喷你"}
  3747. self.datas[3738] = {ID = 3738, SensitiveWord = "彭真"}
  3748. self.datas[3739] = {ID = 3739, SensitiveWord = "皮条"}
  3749. self.datas[3740] = {ID = 3740, SensitiveWord = "屁眼"}
  3750. self.datas[3741] = {ID = 3741, SensitiveWord = "嫖客"}
  3751. self.datas[3742] = {ID = 3742, SensitiveWord = "苹果日报"}
  3752. self.datas[3743] = {ID = 3743, SensitiveWord = "破坏"}
  3753. self.datas[3744] = {ID = 3744, SensitiveWord = "破鞋"}
  3754. self.datas[3745] = {ID = 3745, SensitiveWord = "仆街"}
  3755. self.datas[3746] = {ID = 3746, SensitiveWord = "普京"}
  3756. self.datas[3747] = {ID = 3747, SensitiveWord = "气象局"}
  3757. self.datas[3748] = {ID = 3748, SensitiveWord = "钱其琛"}
  3758. self.datas[3749] = {ID = 3749, SensitiveWord = "枪决女犯"}
  3759. self.datas[3750] = {ID = 3750, SensitiveWord = "枪决现场"}
  3760. self.datas[3751] = {ID = 3751, SensitiveWord = "枪支弹药"}
  3761. self.datas[3752] = {ID = 3752, SensitiveWord = "强奸"}
  3762. self.datas[3753] = {ID = 3753, SensitiveWord = "强奸犯"}
  3763. self.datas[3754] = {ID = 3754, SensitiveWord = "强卫"}
  3764. self.datas[3755] = {ID = 3755, SensitiveWord = "强效失意药"}
  3765. self.datas[3756] = {ID = 3756, SensitiveWord = "强硬发言"}
  3766. self.datas[3757] = {ID = 3757, SensitiveWord = "抢劫"}
  3767. self.datas[3758] = {ID = 3758, SensitiveWord = "乔石"}
  3768. self.datas[3759] = {ID = 3759, SensitiveWord = "侨办"}
  3769. self.datas[3760] = {ID = 3760, SensitiveWord = "切七"}
  3770. self.datas[3761] = {ID = 3761, SensitiveWord = "窃听器"}
  3771. self.datas[3762] = {ID = 3762, SensitiveWord = "窃听器材"}
  3772. self.datas[3763] = {ID = 3763, SensitiveWord = "亲民党"}
  3773. self.datas[3764] = {ID = 3764, SensitiveWord = "青天白日"}
  3774. self.datas[3765] = {ID = 3765, SensitiveWord = "情色"}
  3775. self.datas[3766] = {ID = 3766, SensitiveWord = "去你妈的"}
  3776. self.datas[3767] = {ID = 3767, SensitiveWord = "去死"}
  3777. self.datas[3768] = {ID = 3768, SensitiveWord = "全国人大"}
  3778. self.datas[3769] = {ID = 3769, SensitiveWord = "瘸腿帮"}
  3779. self.datas[3770] = {ID = 3770, SensitiveWord = "人大"}
  3780. self.datas[3771] = {ID = 3771, SensitiveWord = "人大代表"}
  3781. self.datas[3772] = {ID = 3772, SensitiveWord = "人代会"}
  3782. self.datas[3773] = {ID = 3773, SensitiveWord = "人弹"}
  3783. self.datas[3774] = {ID = 3774, SensitiveWord = "人民"}
  3784. self.datas[3775] = {ID = 3775, SensitiveWord = "人民大会堂"}
  3785. self.datas[3776] = {ID = 3776, SensitiveWord = "人民广场"}
  3786. self.datas[3777] = {ID = 3777, SensitiveWord = "人民日报"}
  3787. self.datas[3778] = {ID = 3778, SensitiveWord = "人民银行"}
  3788. self.datas[3779] = {ID = 3779, SensitiveWord = "人体炸弹"}
  3789. self.datas[3780] = {ID = 3780, SensitiveWord = "日GM"}
  3790. self.datas[3781] = {ID = 3781, SensitiveWord = "日Gm"}
  3791. self.datas[3782] = {ID = 3782, SensitiveWord = "日gM"}
  3792. self.datas[3783] = {ID = 3783, SensitiveWord = "日gm"}
  3793. self.datas[3784] = {ID = 3784, SensitiveWord = "日X妈"}
  3794. self.datas[3785] = {ID = 3785, SensitiveWord = "日本RING"}
  3795. self.datas[3786] = {ID = 3786, SensitiveWord = "日本鬼子"}
  3796. self.datas[3787] = {ID = 3787, SensitiveWord = "日你"}
  3797. self.datas[3788] = {ID = 3788, SensitiveWord = "日你妈"}
  3798. self.datas[3789] = {ID = 3789, SensitiveWord = "日你娘"}
  3799. self.datas[3790] = {ID = 3790, SensitiveWord = "日他娘"}
  3800. self.datas[3791] = {ID = 3791, SensitiveWord = "肉棒"}
  3801. self.datas[3792] = {ID = 3792, SensitiveWord = "肉壁"}
  3802. self.datas[3793] = {ID = 3793, SensitiveWord = "肉洞"}
  3803. self.datas[3794] = {ID = 3794, SensitiveWord = "肉缝"}
  3804. self.datas[3795] = {ID = 3795, SensitiveWord = "肉棍"}
  3805. self.datas[3796] = {ID = 3796, SensitiveWord = "肉棍子"}
  3806. self.datas[3797] = {ID = 3797, SensitiveWord = "肉穴"}
  3807. self.datas[3798] = {ID = 3798, SensitiveWord = "乳"}
  3808. self.datas[3799] = {ID = 3799, SensitiveWord = "乳波臀浪"}
  3809. self.datas[3800] = {ID = 3800, SensitiveWord = "乳房"}
  3810. self.datas[3801] = {ID = 3801, SensitiveWord = "乳交"}
  3811. self.datas[3802] = {ID = 3802, SensitiveWord = "乳头"}
  3812. self.datas[3803] = {ID = 3803, SensitiveWord = "撒尿"}
  3813. self.datas[3804] = {ID = 3804, SensitiveWord = "萨达姆"}
  3814. self.datas[3805] = {ID = 3805, SensitiveWord = "塞白"}
  3815. self.datas[3806] = {ID = 3806, SensitiveWord = "塞你爸"}
  3816. self.datas[3807] = {ID = 3807, SensitiveWord = "塞你公"}
  3817. self.datas[3808] = {ID = 3808, SensitiveWord = "塞你老母"}
  3818. self.datas[3809] = {ID = 3809, SensitiveWord = "塞你老师"}
  3819. self.datas[3810] = {ID = 3810, SensitiveWord = "塞你母"}
  3820. self.datas[3811] = {ID = 3811, SensitiveWord = "塞你娘"}
  3821. self.datas[3812] = {ID = 3812, SensitiveWord = "三个呆婊"}
  3822. self.datas[3813] = {ID = 3813, SensitiveWord = "三个代婊"}
  3823. self.datas[3814] = {ID = 3814, SensitiveWord = "三级片"}
  3824. self.datas[3815] = {ID = 3815, SensitiveWord = "三民主义"}
  3825. self.datas[3816] = {ID = 3816, SensitiveWord = "三陪"}
  3826. self.datas[3817] = {ID = 3817, SensitiveWord = "三陪女"}
  3827. self.datas[3818] = {ID = 3818, SensitiveWord = "三去车仑"}
  3828. self.datas[3819] = {ID = 3819, SensitiveWord = "三唑仑"}
  3829. self.datas[3820] = {ID = 3820, SensitiveWord = "骚"}
  3830. self.datas[3821] = {ID = 3821, SensitiveWord = "骚B"}
  3831. self.datas[3822] = {ID = 3822, SensitiveWord = "骚逼"}
  3832. self.datas[3823] = {ID = 3823, SensitiveWord = "骚货"}
  3833. self.datas[3824] = {ID = 3824, SensitiveWord = "骚"}
  3834. self.datas[3825] = {ID = 3825, SensitiveWord = "色情"}
  3835. self.datas[3826] = {ID = 3826, SensitiveWord = "色情电影"}
  3836. self.datas[3827] = {ID = 3827, SensitiveWord = "色情服务"}
  3837. self.datas[3828] = {ID = 3828, SensitiveWord = "色情小电影"}
  3838. self.datas[3829] = {ID = 3829, SensitiveWord = "杀人犯"}
  3839. self.datas[3830] = {ID = 3830, SensitiveWord = "傻B"}
  3840. self.datas[3831] = {ID = 3831, SensitiveWord = "傻屄"}
  3841. self.datas[3832] = {ID = 3832, SensitiveWord = "傻逼"}
  3842. self.datas[3833] = {ID = 3833, SensitiveWord = "傻比"}
  3843. self.datas[3834] = {ID = 3834, SensitiveWord = "傻吊"}
  3844. self.datas[3835] = {ID = 3835, SensitiveWord = "傻卵"}
  3845. self.datas[3836] = {ID = 3836, SensitiveWord = "傻子"}
  3846. self.datas[3837] = {ID = 3837, SensitiveWord = "煞逼"}
  3847. self.datas[3838] = {ID = 3838, SensitiveWord = "商务部"}
  3848. self.datas[3839] = {ID = 3839, SensitiveWord = "上妳"}
  3849. self.datas[3840] = {ID = 3840, SensitiveWord = "上你"}
  3850. self.datas[3841] = {ID = 3841, SensitiveWord = "社科院"}
  3851. self.datas[3842] = {ID = 3842, SensitiveWord = "射精"}
  3852. self.datas[3843] = {ID = 3843, SensitiveWord = "身份生成器"}
  3853. self.datas[3844] = {ID = 3844, SensitiveWord = "神经病"}
  3854. self.datas[3845] = {ID = 3845, SensitiveWord = "神通加持法"}
  3855. self.datas[3846] = {ID = 3846, SensitiveWord = "生鸦片"}
  3856. self.datas[3847] = {ID = 3847, SensitiveWord = "圣女峰"}
  3857. self.datas[3848] = {ID = 3848, SensitiveWord = "十八摸"}
  3858. self.datas[3849] = {ID = 3849, SensitiveWord = "十年动乱石进"}
  3859. self.datas[3850] = {ID = 3850, SensitiveWord = "食捻屎"}
  3860. self.datas[3851] = {ID = 3851, SensitiveWord = "食屎"}
  3861. self.datas[3852] = {ID = 3852, SensitiveWord = "驶你爸"}
  3862. self.datas[3853] = {ID = 3853, SensitiveWord = "驶你公"}
  3863. self.datas[3854] = {ID = 3854, SensitiveWord = "驶你老母"}
  3864. self.datas[3855] = {ID = 3855, SensitiveWord = "驶你老师"}
  3865. self.datas[3856] = {ID = 3856, SensitiveWord = "驶你母"}
  3866. self.datas[3857] = {ID = 3857, SensitiveWord = "驶你娘"}
  3867. self.datas[3858] = {ID = 3858, SensitiveWord = "是鸡"}
  3868. self.datas[3859] = {ID = 3859, SensitiveWord = "手淫"}
  3869. self.datas[3860] = {ID = 3860, SensitiveWord = "受虐狂"}
  3870. self.datas[3861] = {ID = 3861, SensitiveWord = "售ID"}
  3871. self.datas[3862] = {ID = 3862, SensitiveWord = "售号"}
  3872. self.datas[3863] = {ID = 3863, SensitiveWord = "售软件"}
  3873. self.datas[3864] = {ID = 3864, SensitiveWord = "双峰微颤"}
  3874. self.datas[3865] = {ID = 3865, SensitiveWord = "氵去"}
  3875. self.datas[3866] = {ID = 3866, SensitiveWord = "水利部"}
  3876. self.datas[3867] = {ID = 3867, SensitiveWord = "水去车仑"}
  3877. self.datas[3868] = {ID = 3868, SensitiveWord = "税务总局"}
  3878. self.datas[3869] = {ID = 3869, SensitiveWord = "司法部"}
  3879. self.datas[3870] = {ID = 3870, SensitiveWord = "私服"}
  3880. self.datas[3871] = {ID = 3871, SensitiveWord = "私/服"}
  3881. self.datas[3872] = {ID = 3872, SensitiveWord = "私\\服"}
  3882. self.datas[3873] = {ID = 3873, SensitiveWord = "私服"}
  3883. self.datas[3874] = {ID = 3874, SensitiveWord = "私-服"}
  3884. self.datas[3875] = {ID = 3875, SensitiveWord = "私—服"}
  3885. self.datas[3876] = {ID = 3876, SensitiveWord = "斯大林"}
  3886. self.datas[3877] = {ID = 3877, SensitiveWord = "死gd"}
  3887. self.datas[3878] = {ID = 3878, SensitiveWord = "死GD"}
  3888. self.datas[3879] = {ID = 3879, SensitiveWord = "死gm"}
  3889. self.datas[3880] = {ID = 3880, SensitiveWord = "死GM"}
  3890. self.datas[3881] = {ID = 3881, SensitiveWord = "死全家"}
  3891. self.datas[3882] = {ID = 3882, SensitiveWord = "四川独立"}
  3892. self.datas[3883] = {ID = 3883, SensitiveWord = "四人帮"}
  3893. self.datas[3884] = {ID = 3884, SensitiveWord = "宋楚瑜"}
  3894. self.datas[3885] = {ID = 3885, SensitiveWord = "宋祖英"}
  3895. self.datas[3886] = {ID = 3886, SensitiveWord = "孙文"}
  3896. self.datas[3887] = {ID = 3887, SensitiveWord = "孙逸仙"}
  3897. self.datas[3888] = {ID = 3888, SensitiveWord = "孙中山"}
  3898. self.datas[3889] = {ID = 3889, SensitiveWord = "他爹"}
  3899. self.datas[3890] = {ID = 3890, SensitiveWord = "他妈"}
  3900. self.datas[3891] = {ID = 3891, SensitiveWord = "他妈的"}
  3901. self.datas[3892] = {ID = 3892, SensitiveWord = "他马的"}
  3902. self.datas[3893] = {ID = 3893, SensitiveWord = "他母亲"}
  3903. self.datas[3894] = {ID = 3894, SensitiveWord = "他祖宗"}
  3904. self.datas[3895] = {ID = 3895, SensitiveWord = "台办"}
  3905. self.datas[3896] = {ID = 3896, SensitiveWord = "台独"}
  3906. self.datas[3897] = {ID = 3897, SensitiveWord = "台联"}
  3907. self.datas[3898] = {ID = 3898, SensitiveWord = "台湾党"}
  3908. self.datas[3899] = {ID = 3899, SensitiveWord = "台湾帝国"}
  3909. self.datas[3900] = {ID = 3900, SensitiveWord = "台湾独立"}
  3910. self.datas[3901] = {ID = 3901, SensitiveWord = "台湾共产党"}
  3911. self.datas[3902] = {ID = 3902, SensitiveWord = "台湾共和国"}
  3912. self.datas[3903] = {ID = 3903, SensitiveWord = "台湾狗"}
  3913. self.datas[3904] = {ID = 3904, SensitiveWord = "台湾国"}
  3914. self.datas[3905] = {ID = 3905, SensitiveWord = "台湾民国"}
  3915. self.datas[3906] = {ID = 3906, SensitiveWord = "太监"}
  3916. self.datas[3907] = {ID = 3907, SensitiveWord = "太子党"}
  3917. self.datas[3908] = {ID = 3908, SensitiveWord = "唐家璇"}
  3918. self.datas[3909] = {ID = 3909, SensitiveWord = "天皇陛下"}
  3919. self.datas[3910] = {ID = 3910, SensitiveWord = "田纪云"}
  3920. self.datas[3911] = {ID = 3911, SensitiveWord = "舔西"}
  3921. self.datas[3912] = {ID = 3912, SensitiveWord = "投毒杀人"}
  3922. self.datas[3913] = {ID = 3913, SensitiveWord = "透视软件"}
  3923. self.datas[3914] = {ID = 3914, SensitiveWord = "推油"}
  3924. self.datas[3915] = {ID = 3915, SensitiveWord = "外 挂"}
  3925. self.datas[3916] = {ID = 3916, SensitiveWord = "外挂"}
  3926. self.datas[3917] = {ID = 3917, SensitiveWord = "外/挂"}
  3927. self.datas[3918] = {ID = 3918, SensitiveWord = "外\\挂"}
  3928. self.datas[3919] = {ID = 3919, SensitiveWord = "外_挂"}
  3929. self.datas[3920] = {ID = 3920, SensitiveWord = "外挂"}
  3930. self.datas[3921] = {ID = 3921, SensitiveWord = "外-挂"}
  3931. self.datas[3922] = {ID = 3922, SensitiveWord = "外—挂"}
  3932. self.datas[3923] = {ID = 3923, SensitiveWord = "外汇局"}
  3933. self.datas[3924] = {ID = 3924, SensitiveWord = "外交部"}
  3934. self.datas[3925] = {ID = 3925, SensitiveWord = "外专局"}
  3935. self.datas[3926] = {ID = 3926, SensitiveWord = "晚年周恩来"}
  3936. self.datas[3927] = {ID = 3927, SensitiveWord = "万税"}
  3937. self.datas[3928] = {ID = 3928, SensitiveWord = "王八蛋"}
  3938. self.datas[3929] = {ID = 3929, SensitiveWord = "王宝森"}
  3939. self.datas[3930] = {ID = 3930, SensitiveWord = "王刚"}
  3940. self.datas[3931] = {ID = 3931, SensitiveWord = "王昊"}
  3941. self.datas[3932] = {ID = 3932, SensitiveWord = "王乐泉"}
  3942. self.datas[3933] = {ID = 3933, SensitiveWord = "王岐山"}
  3943. self.datas[3934] = {ID = 3934, SensitiveWord = "王太华"}
  3944. self.datas[3935] = {ID = 3935, SensitiveWord = "王兆国"}
  3945. self.datas[3936] = {ID = 3936, SensitiveWord = "王震"}
  3946. self.datas[3937] = {ID = 3937, SensitiveWord = "网管"}
  3947. self.datas[3938] = {ID = 3938, SensitiveWord = "威而钢"}
  3948. self.datas[3939] = {ID = 3939, SensitiveWord = "威而柔"}
  3949. self.datas[3940] = {ID = 3940, SensitiveWord = "卫生部"}
  3950. self.datas[3941] = {ID = 3941, SensitiveWord = "尉健行"}
  3951. self.datas[3942] = {ID = 3942, SensitiveWord = "温加宝"}
  3952. self.datas[3943] = {ID = 3943, SensitiveWord = "温家宝"}
  3953. self.datas[3944] = {ID = 3944, SensitiveWord = "温家保"}
  3954. self.datas[3945] = {ID = 3945, SensitiveWord = "温馨"}
  3955. self.datas[3946] = {ID = 3946, SensitiveWord = "温总理"}
  3956. self.datas[3947] = {ID = 3947, SensitiveWord = "文化部"}
  3957. self.datas[3948] = {ID = 3948, SensitiveWord = "文物局"}
  3958. self.datas[3949] = {ID = 3949, SensitiveWord = "倭国"}
  3959. self.datas[3950] = {ID = 3950, SensitiveWord = "倭寇"}
  3960. self.datas[3951] = {ID = 3951, SensitiveWord = "我操"}
  3961. self.datas[3952] = {ID = 3952, SensitiveWord = "我操你"}
  3962. self.datas[3953] = {ID = 3953, SensitiveWord = "我干"}
  3963. self.datas[3954] = {ID = 3954, SensitiveWord = "我妳老爸"}
  3964. self.datas[3955] = {ID = 3955, SensitiveWord = "我日"}
  3965. self.datas[3956] = {ID = 3956, SensitiveWord = "我日你"}
  3966. self.datas[3957] = {ID = 3957, SensitiveWord = "无界浏览器"}
  3967. self.datas[3958] = {ID = 3958, SensitiveWord = "吴 仪"}
  3968. self.datas[3959] = {ID = 3959, SensitiveWord = "吴邦国"}
  3969. self.datas[3960] = {ID = 3960, SensitiveWord = "吴官正"}
  3970. self.datas[3961] = {ID = 3961, SensitiveWord = "吴仪"}
  3971. self.datas[3962] = {ID = 3962, SensitiveWord = "五星红旗"}
  3972. self.datas[3963] = {ID = 3963, SensitiveWord = "西藏独立"}
  3973. self.datas[3964] = {ID = 3964, SensitiveWord = "西藏天葬"}
  3974. self.datas[3965] = {ID = 3965, SensitiveWord = "希拉克"}
  3975. self.datas[3966] = {ID = 3966, SensitiveWord = "希特勒"}
  3976. self.datas[3967] = {ID = 3967, SensitiveWord = "希望之声"}
  3977. self.datas[3968] = {ID = 3968, SensitiveWord = "洗脑班"}
  3978. self.datas[3969] = {ID = 3969, SensitiveWord = "系统"}
  3979. self.datas[3970] = {ID = 3970, SensitiveWord = "系统公告"}
  3980. self.datas[3971] = {ID = 3971, SensitiveWord = "系统讯息"}
  3981. self.datas[3972] = {ID = 3972, SensitiveWord = "鲜族"}
  3982. self.datas[3973] = {ID = 3973, SensitiveWord = "乡巴佬"}
  3983. self.datas[3974] = {ID = 3974, SensitiveWord = "想上你"}
  3984. self.datas[3975] = {ID = 3975, SensitiveWord = "小鸡鸡"}
  3985. self.datas[3976] = {ID = 3976, SensitiveWord = "小泉"}
  3986. self.datas[3977] = {ID = 3977, SensitiveWord = "小泉纯一郎"}
  3987. self.datas[3978] = {ID = 3978, SensitiveWord = "小日本"}
  3988. self.datas[3979] = {ID = 3979, SensitiveWord = "小肉粒"}
  3989. self.datas[3980] = {ID = 3980, SensitiveWord = "小乳头"}
  3990. self.datas[3981] = {ID = 3981, SensitiveWord = "小穴"}
  3991. self.datas[3982] = {ID = 3982, SensitiveWord = "邪教"}
  3992. self.datas[3983] = {ID = 3983, SensitiveWord = "新疆独立"}
  3993. self.datas[3984] = {ID = 3984, SensitiveWord = "兴奋剂"}
  3994. self.datas[3985] = {ID = 3985, SensitiveWord = "性爱"}
  3995. self.datas[3986] = {ID = 3986, SensitiveWord = "性交"}
  3996. self.datas[3987] = {ID = 3987, SensitiveWord = "性虐待"}
  3997. self.datas[3988] = {ID = 3988, SensitiveWord = "性无能"}
  3998. self.datas[3989] = {ID = 3989, SensitiveWord = "性欲"}
  3999. self.datas[3990] = {ID = 3990, SensitiveWord = "徐光春"}
  4000. self.datas[3991] = {ID = 3991, SensitiveWord = "学潮"}
  4001. self.datas[3992] = {ID = 3992, SensitiveWord = "血逼"}
  4002. self.datas[3993] = {ID = 3993, SensitiveWord = "血腥图片"}
  4003. self.datas[3994] = {ID = 3994, SensitiveWord = "鸦片"}
  4004. self.datas[3995] = {ID = 3995, SensitiveWord = "鸦片液"}
  4005. self.datas[3996] = {ID = 3996, SensitiveWord = "鸦片渣"}
  4006. self.datas[3997] = {ID = 3997, SensitiveWord = "烟草局"}
  4007. self.datas[3998] = {ID = 3998, SensitiveWord = "严方军"}
  4008. self.datas[3999] = {ID = 3999, SensitiveWord = "阳精"}
  4009. self.datas[4000] = {ID = 4000, SensitiveWord = "阳具"}
  4010. self.datas[4001] = {ID = 4001, SensitiveWord = "摇头丸"}
  4011. self.datas[4002] = {ID = 4002, SensitiveWord = "摇头玩"}
  4012. self.datas[4003] = {ID = 4003, SensitiveWord = "耶和华"}
  4013. self.datas[4004] = {ID = 4004, SensitiveWord = "耶苏"}
  4014. self.datas[4005] = {ID = 4005, SensitiveWord = "耶稣"}
  4015. self.datas[4006] = {ID = 4006, SensitiveWord = "叶剑英"}
  4016. self.datas[4007] = {ID = 4007, SensitiveWord = "夜情"}
  4017. self.datas[4008] = {ID = 4008, SensitiveWord = "一党专制"}
  4018. self.datas[4009] = {ID = 4009, SensitiveWord = "一贯道"}
  4019. self.datas[4010] = {ID = 4010, SensitiveWord = "一国两制"}
  4020. self.datas[4011] = {ID = 4011, SensitiveWord = "一夜情"}
  4021. self.datas[4012] = {ID = 4012, SensitiveWord = "一中一台"}
  4022. self.datas[4013] = {ID = 4013, SensitiveWord = "伊拉克"}
  4023. self.datas[4014] = {ID = 4014, SensitiveWord = "伊朗"}
  4024. self.datas[4015] = {ID = 4015, SensitiveWord = "伊斯兰"}
  4025. self.datas[4016] = {ID = 4016, SensitiveWord = "以茎至洞"}
  4026. self.datas[4017] = {ID = 4017, SensitiveWord = "抑制剂"}
  4027. self.datas[4018] = {ID = 4018, SensitiveWord = "阴部"}
  4028. self.datas[4019] = {ID = 4019, SensitiveWord = "阴唇"}
  4029. self.datas[4020] = {ID = 4020, SensitiveWord = "阴道"}
  4030. self.datas[4021] = {ID = 4021, SensitiveWord = "阴蒂"}
  4031. self.datas[4022] = {ID = 4022, SensitiveWord = "阴核"}
  4032. self.datas[4023] = {ID = 4023, SensitiveWord = "阴户"}
  4033. self.datas[4024] = {ID = 4024, SensitiveWord = "阴茎"}
  4034. self.datas[4025] = {ID = 4025, SensitiveWord = "阴毛"}
  4035. self.datas[4026] = {ID = 4026, SensitiveWord = "阴水"}
  4036. self.datas[4027] = {ID = 4027, SensitiveWord = "阴小撕大"}
  4037. self.datas[4028] = {ID = 4028, SensitiveWord = "淫"}
  4038. self.datas[4029] = {ID = 4029, SensitiveWord = "淫荡"}
  4039. self.datas[4030] = {ID = 4030, SensitiveWord = "淫秽"}
  4040. self.datas[4031] = {ID = 4031, SensitiveWord = "淫货"}
  4041. self.datas[4032] = {ID = 4032, SensitiveWord = "淫贱"}
  4042. self.datas[4033] = {ID = 4033, SensitiveWord = "淫叫"}
  4043. self.datas[4034] = {ID = 4034, SensitiveWord = "淫毛"}
  4044. self.datas[4035] = {ID = 4035, SensitiveWord = "淫靡"}
  4045. self.datas[4036] = {ID = 4036, SensitiveWord = "淫水"}
  4046. self.datas[4037] = {ID = 4037, SensitiveWord = "淫娃"}
  4047. self.datas[4038] = {ID = 4038, SensitiveWord = "淫语连连"}
  4048. self.datas[4039] = {ID = 4039, SensitiveWord = "淫欲"}
  4049. self.datas[4040] = {ID = 4040, SensitiveWord = "英雄纪念碑"}
  4050. self.datas[4041] = {ID = 4041, SensitiveWord = "硬挺"}
  4051. self.datas[4042] = {ID = 4042, SensitiveWord = "邮政局"}
  4052. self.datas[4043] = {ID = 4043, SensitiveWord = "游戏发奖员"}
  4053. self.datas[4044] = {ID = 4044, SensitiveWord = "游戏宫理员"}
  4054. self.datas[4045] = {ID = 4045, SensitiveWord = "游戏管理员"}
  4055. self.datas[4046] = {ID = 4046, SensitiveWord = "游行"}
  4056. self.datas[4047] = {ID = 4047, SensitiveWord = "俞正声"}
  4057. self.datas[4048] = {ID = 4048, SensitiveWord = "舆论钳制"}
  4058. self.datas[4049] = {ID = 4049, SensitiveWord = "玉杵"}
  4059. self.datas[4050] = {ID = 4050, SensitiveWord = "欲火焚身"}
  4060. self.datas[4051] = {ID = 4051, SensitiveWord = "原子能机构"}
  4061. self.datas[4052] = {ID = 4052, SensitiveWord = "援交"}
  4062. self.datas[4053] = {ID = 4053, SensitiveWord = "远程偷拍"}
  4063. self.datas[4054] = {ID = 4054, SensitiveWord = "曰GM"}
  4064. self.datas[4055] = {ID = 4055, SensitiveWord = "曰Gm"}
  4065. self.datas[4056] = {ID = 4056, SensitiveWord = "曰gM"}
  4066. self.datas[4057] = {ID = 4057, SensitiveWord = "曰gm"}
  4067. self.datas[4058] = {ID = 4058, SensitiveWord = "曰你"}
  4068. self.datas[4059] = {ID = 4059, SensitiveWord = "月经"}
  4069. self.datas[4060] = {ID = 4060, SensitiveWord = "月经不调"}
  4070. self.datas[4061] = {ID = 4061, SensitiveWord = "月经"}
  4071. self.datas[4062] = {ID = 4062, SensitiveWord = "扎卡维是英雄"}
  4072. self.datas[4063] = {ID = 4063, SensitiveWord = "杂种"}
  4073. self.datas[4064] = {ID = 4064, SensitiveWord = "造反"}
  4074. self.datas[4065] = {ID = 4065, SensitiveWord = "曾培炎"}
  4075. self.datas[4066] = {ID = 4066, SensitiveWord = "曾庆红"}
  4076. self.datas[4067] = {ID = 4067, SensitiveWord = "扎卡维"}
  4077. self.datas[4068] = {ID = 4068, SensitiveWord = "张朝阳"}
  4078. self.datas[4069] = {ID = 4069, SensitiveWord = "张潮阳"}
  4079. self.datas[4070] = {ID = 4070, SensitiveWord = "张德江"}
  4080. self.datas[4071] = {ID = 4071, SensitiveWord = "张磊"}
  4081. self.datas[4072] = {ID = 4072, SensitiveWord = "张立昌"}
  4082. self.datas[4073] = {ID = 4073, SensitiveWord = "张小平"}
  4083. self.datas[4074] = {ID = 4074, SensitiveWord = "赵紫阳"}
  4084. self.datas[4075] = {ID = 4075, SensitiveWord = "侦探设备"}
  4085. self.datas[4076] = {ID = 4076, SensitiveWord = "真理教"}
  4086. self.datas[4077] = {ID = 4077, SensitiveWord = "中国恐怖组织"}
  4087. self.datas[4078] = {ID = 4078, SensitiveWord = "中华民国"}
  4088. self.datas[4079] = {ID = 4079, SensitiveWord = "中南海"}
  4089. self.datas[4080] = {ID = 4080, SensitiveWord = "中宣部"}
  4090. self.datas[4081] = {ID = 4081, SensitiveWord = "周恩来"}
  4091. self.datas[4082] = {ID = 4082, SensitiveWord = "周永康"}
  4092. self.datas[4083] = {ID = 4083, SensitiveWord = "周总理"}
  4093. self.datas[4084] = {ID = 4084, SensitiveWord = "朱德"}
  4094. self.datas[4085] = {ID = 4085, SensitiveWord = "朱容鸡"}
  4095. self.datas[4086] = {ID = 4086, SensitiveWord = "朱容基"}
  4096. self.datas[4087] = {ID = 4087, SensitiveWord = "朱熔基"}
  4097. self.datas[4088] = {ID = 4088, SensitiveWord = "朱镕基"}
  4098. self.datas[4089] = {ID = 4089, SensitiveWord = "朱总理"}
  4099. self.datas[4090] = {ID = 4090, SensitiveWord = "猪操"}
  4100. self.datas[4091] = {ID = 4091, SensitiveWord = "猪容基"}
  4101. self.datas[4092] = {ID = 4092, SensitiveWord = "主席"}
  4102. self.datas[4093] = {ID = 4093, SensitiveWord = "转法轮"}
  4103. self.datas[4094] = {ID = 4094, SensitiveWord = "转法轮"}
  4104. self.datas[4095] = {ID = 4095, SensitiveWord = "装屄"}
  4105. self.datas[4096] = {ID = 4096, SensitiveWord = "装逼"}
  4106. self.datas[4097] = {ID = 4097, SensitiveWord = "追查国际"}
  4107. self.datas[4098] = {ID = 4098, SensitiveWord = "子女任职名单"}
  4108. self.datas[4099] = {ID = 4099, SensitiveWord = "自焚"}
  4109. self.datas[4100] = {ID = 4100, SensitiveWord = "自杀手册"}
  4110. self.datas[4101] = {ID = 4101, SensitiveWord = "自杀指南"}
  4111. self.datas[4102] = {ID = 4102, SensitiveWord = "自制手枪"}
  4112. self.datas[4103] = {ID = 4103, SensitiveWord = "自治机关"}
  4113. self.datas[4104] = {ID = 4104, SensitiveWord = "宗教"}
  4114. self.datas[4105] = {ID = 4105, SensitiveWord = "总局"}
  4115. self.datas[4106] = {ID = 4106, SensitiveWord = "总理"}
  4116. self.datas[4107] = {ID = 4107, SensitiveWord = "作爱"}
  4117. self.datas[4108] = {ID = 4108, SensitiveWord = "坐台的"}
  4118. self.datas[4109] = {ID = 4109, SensitiveWord = "做爱"}
  4119. self.datas[4110] = {ID = 4110, SensitiveWord = "共产党"}
  4120. self.datas[4111] = {ID = 4111, SensitiveWord = "江泽民"}
  4121. self.datas[4112] = {ID = 4112, SensitiveWord = "胡锦涛"}
  4122. self.datas[4113] = {ID = 4113, SensitiveWord = "温家宝"}
  4123. self.datas[4114] = {ID = 4114, SensitiveWord = "严方军"}
  4124. self.datas[4115] = {ID = 4115, SensitiveWord = "屄毛"}
  4125. self.datas[4116] = {ID = 4116, SensitiveWord = "操逼毛"}
  4126. self.datas[4117] = {ID = 4117, SensitiveWord = "东突"}
  4127. self.datas[4118] = {ID = 4118, SensitiveWord = "骚货"}
  4128. self.datas[4119] = {ID = 4119, SensitiveWord = "法轮功"}
  4129. self.datas[4120] = {ID = 4120, SensitiveWord = "江泽民"}
  4130. self.datas[4121] = {ID = 4121, SensitiveWord = "胡锦涛"}
  4131. self.datas[4122] = {ID = 4122, SensitiveWord = "温家宝"}
  4132. self.datas[4123] = {ID = 4123, SensitiveWord = "urban-rivals"}
  4133. self.datas[4124] = {ID = 4124, SensitiveWord = "rivals"}
  4134. self.datas[4125] = {ID = 4125, SensitiveWord = "u r"}
  4135. self.datas[4126] = {ID = 4126, SensitiveWord = "ur"}
  4136. self.datas[4127] = {ID = 4127, SensitiveWord = "我日"}
  4137. self.datas[4128] = {ID = 4128, SensitiveWord = "UR"}
  4138. self.datas[4129] = {ID = 4129, SensitiveWord = "ur"}
  4139. self.datas[4130] = {ID = 4130, SensitiveWord = "性交"}
  4140. self.datas[4131] = {ID = 4131, SensitiveWord = "口交"}
  4141. self.datas[4132] = {ID = 4132, SensitiveWord = "U R"}
  4142. self.datas[4133] = {ID = 4133, SensitiveWord = "taobao"}
  4143. self.datas[4134] = {ID = 4134, SensitiveWord = "webgame.com.cn"}
  4144. self.datas[4135] = {ID = 4135, SensitiveWord = "婊子"}
  4145. self.datas[4136] = {ID = 4136, SensitiveWord = "妓女"}
  4146. self.datas[4137] = {ID = 4137, SensitiveWord = "他妈"}
  4147. self.datas[4138] = {ID = 4138, SensitiveWord = "她妈"}
  4148. self.datas[4139] = {ID = 4139, SensitiveWord = "牛逼"}
  4149. self.datas[4140] = {ID = 4140, SensitiveWord = "牛比"}
  4150. self.datas[4141] = {ID = 4141, SensitiveWord = "牛B"}
  4151. self.datas[4142] = {ID = 4142, SensitiveWord = "煞笔"}
  4152. self.datas[4143] = {ID = 4143, SensitiveWord = "傻逼"}
  4153. self.datas[4144] = {ID = 4144, SensitiveWord = "傻B"}
  4154. self.datas[4145] = {ID = 4145, SensitiveWord = "你妈"}
  4155. self.datas[4146] = {ID = 4146, SensitiveWord = "操你妈"}
  4156. self.datas[4147] = {ID = 4147, SensitiveWord = "装逼"}
  4157. self.datas[4148] = {ID = 4148, SensitiveWord = "装B"}
  4158. self.datas[4149] = {ID = 4149, SensitiveWord = "日你妈"}
  4159. self.datas[4150] = {ID = 4150, SensitiveWord = "不玩了"}
  4160. self.datas[4151] = {ID = 4151, SensitiveWord = "删号"}
  4161. self.datas[4152] = {ID = 4152, SensitiveWord = "卖号"}
  4162. self.datas[4153] = {ID = 4153, SensitiveWord = "垃圾游戏"}
  4163. self.datas[4154] = {ID = 4154, SensitiveWord = "烂游戏"}
  4164. self.datas[4155] = {ID = 4155, SensitiveWord = "删 号"}
  4165. self.datas[4156] = {ID = 4156, SensitiveWord = "妈的"}
  4166. self.datas[4157] = {ID = 4157, SensitiveWord = "妈逼"}
  4167. self.datas[4158] = {ID = 4158, SensitiveWord = "草你妈"}
  4168. self.datas[4159] = {ID = 4159, SensitiveWord = "T.M.D"}
  4169. self.datas[4160] = {ID = 4160, SensitiveWord = "JB"}
  4170. self.datas[4161] = {ID = 4161, SensitiveWord = "jb"}
  4171. self.datas[4162] = {ID = 4162, SensitiveWord = "淘宝"}
  4172. self.datas[4163] = {ID = 4163, SensitiveWord = "出售账号"}
  4173. self.datas[4164] = {ID = 4164, SensitiveWord = "出售此号"}
  4174. self.datas[4165] = {ID = 4165, SensitiveWord = "卖号"}
  4175. self.datas[4166] = {ID = 4166, SensitiveWord = "U/R"}
  4176. self.datas[4167] = {ID = 4167, SensitiveWord = "U-R"}
  4177. self.datas[4168] = {ID = 4168, SensitiveWord = "c a o"}
  4178. self.datas[4169] = {ID = 4169, SensitiveWord = "j8"}
  4179. self.datas[4170] = {ID = 4170, SensitiveWord = "吗的"}
  4180. self.datas[4171] = {ID = 4171, SensitiveWord = "8仙"}
  4181. self.datas[4172] = {ID = 4172, SensitiveWord = "狗日"}
  4182. self.datas[4173] = {ID = 4173, SensitiveWord = "出售神符"}
  4183. self.datas[4174] = {ID = 4174, SensitiveWord = "色情"}
  4184. self.datas[4175] = {ID = 4175, SensitiveWord = "黄色"}
  4185. self.datas[4176] = {ID = 4176, SensitiveWord = "h站"}
  4186. self.datas[4177] = {ID = 4177, SensitiveWord = "龙虎"}
  4187. self.datas[4178] = {ID = 4178, SensitiveWord = "虎门"}
  4188. self.datas[4179] = {ID = 4179, SensitiveWord = "龙 虎 门"}
  4189. self.datas[4180] = {ID = 4180, SensitiveWord = "WEB牌戰"}
  4190. self.datas[4181] = {ID = 4181, SensitiveWord = "WEB战牌"}
  4191. self.datas[4182] = {ID = 4182, SensitiveWord = "战牌"}
  4192. self.datas[4183] = {ID = 4183, SensitiveWord = "8 仙"}
  4193. self.datas[4184] = {ID = 4184, SensitiveWord = "UR"}
  4194. self.datas[4185] = {ID = 4185, SensitiveWord = "ur"}
  4195. self.datas[4186] = {ID = 4186, SensitiveWord = "UR"}
  4196. self.datas[4187] = {ID = 4187, SensitiveWord = "街头对抗"}
  4197. self.datas[4188] = {ID = 4188, SensitiveWord = "藏独"}
  4198. self.datas[4189] = {ID = 4189, SensitiveWord = "台独"}
  4199. self.datas[4190] = {ID = 4190, SensitiveWord = "法轮大法"}
  4200. self.datas[4191] = {ID = 4191, SensitiveWord = "混 沌决"}
  4201. self.datas[4192] = {ID = 4192, SensitiveWord = "ur"}
  4202. self.datas[4193] = {ID = 4193, SensitiveWord = "UR"}
  4203. self.datas[4194] = {ID = 4194, SensitiveWord = "urban"}
  4204. self.datas[4195] = {ID = 4195, SensitiveWord = "鸡巴"}
  4205. self.datas[4196] = {ID = 4196, SensitiveWord = "坐台的"}
  4206. self.datas[4197] = {ID = 4197, SensitiveWord = "作爱"}
  4207. self.datas[4198] = {ID = 4198, SensitiveWord = "总理"}
  4208. self.datas[4199] = {ID = 4199, SensitiveWord = "宗教"}
  4209. self.datas[4200] = {ID = 4200, SensitiveWord = "自治机关"}
  4210. self.datas[4201] = {ID = 4201, SensitiveWord = "自制手枪"}
  4211. self.datas[4202] = {ID = 4202, SensitiveWord = "两会"}
  4212. self.datas[4203] = {ID = 4203, SensitiveWord = "找小姐"}
  4213. self.datas[4204] = {ID = 4204, SensitiveWord = "高清成人电视棒"}
  4214. self.datas[4205] = {ID = 4205, SensitiveWord = "卖毕业证"}
  4215. self.datas[4206] = {ID = 4206, SensitiveWord = "美女裸体视频聊天室"}
  4216. self.datas[4207] = {ID = 4207, SensitiveWord = "裸聊"}
  4217. self.datas[4208] = {ID = 4208, SensitiveWord = "AV片"}
  4218. self.datas[4209] = {ID = 4209, SensitiveWord = "王立军"}
  4219. self.datas[4210] = {ID = 4210, SensitiveWord = "兽兽门"}
  4220. self.datas[4211] = {ID = 4211, SensitiveWord = "偷窥视频"}
  4221. self.datas[4212] = {ID = 4212, SensitiveWord = "高仿真脸皮"}
  4222. self.datas[4213] = {ID = 4213, SensitiveWord = "东京热"}
  4223. self.datas[4214] = {ID = 4214, SensitiveWord = "蜜桃成熟时"}
  4224. self.datas[4215] = {ID = 4215, SensitiveWord = "金瓶梅"}
  4225. self.datas[4216] = {ID = 4216, SensitiveWord = "高清晰假钞"}
  4226. self.datas[4217] = {ID = 4217, SensitiveWord = "仿真54式"}
  4227. self.datas[4218] = {ID = 4218, SensitiveWord = "刻假章"}
  4228. self.datas[4219] = {ID = 4219, SensitiveWord = "快播A片网"}
  4229. self.datas[4220] = {ID = 4220, SensitiveWord = "舆论"}
  4230. self.datas[4221] = {ID = 4221, SensitiveWord = "中央社"}
  4231. self.datas[4222] = {ID = 4222, SensitiveWord = "大傻"}
  4232. self.datas[4223] = {ID = 4223, SensitiveWord = "下身"}
  4233. self.datas[4224] = {ID = 4224, SensitiveWord = "搞基"}
  4234. self.datas[4225] = {ID = 4225, SensitiveWord = "约炮"}
  4235. self.datas[4226] = {ID = 4226, SensitiveWord = "撸管子"}
  4236. self.datas[4227] = {ID = 4227, SensitiveWord = "asshole"}
  4237. self.datas[4228] = {ID = 4228, SensitiveWord = "强暴幼女"}
  4238. self.datas[4229] = {ID = 4229, SensitiveWord = "ISIS"}
  4239. self.datas[4230] = {ID = 4230, SensitiveWord = "占中"}
  4240. self.datas[4231] = {ID = 4231, SensitiveWord = "占领中环"}
  4241. self.datas[4232] = {ID = 4232, SensitiveWord = "商微"}
  4242. self.datas[4233] = {ID = 4233, SensitiveWord = "微信"}
  4243. self.datas[4234] = {ID = 4234, SensitiveWord = "收售"}
  4244. self.datas[4235] = {ID = 4235, SensitiveWord = "兑现"}
  4245. self.datas[4236] = {ID = 4236, SensitiveWord = "回收"}
  4246. self.datas[4237] = {ID = 4237, SensitiveWord = "加微"}
  4247. end
  4248. SensitiveWordCFG:init()