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