1
0

RLRP.sql 531 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.2.12deb2+deb8u2
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Dec 23, 2016 at 07:18 PM
  7. -- Server version: 5.5.53-0+deb8u1
  8. -- PHP Version: 5.6.29-0+deb8u1
  9. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  10. SET time_zone = "+00:00";
  11. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  12. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  13. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  14. /*!40101 SET NAMES utf8 */;
  15. --
  16. -- Database: `limitless-rp`
  17. --
  18. -- --------------------------------------------------------
  19. --
  20. -- Table structure for table `bans`
  21. --
  22. CREATE TABLE IF NOT EXISTS `bans` (
  23. `id` int(10) NOT NULL,
  24. `username` varchar(24) DEFAULT NULL,
  25. `ip` varchar(16) DEFAULT NULL,
  26. `bannedby` varchar(24) DEFAULT NULL,
  27. `date` datetime DEFAULT NULL,
  28. `reason` varchar(128) DEFAULT NULL,
  29. `permanent` tinyint(1) DEFAULT '0'
  30. ) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=latin1;
  31. --
  32. -- Dumping data for table `bans`
  33. --
  34. INSERT INTO `bans` (`id`, `username`, `ip`, `bannedby`, `date`, `reason`, `permanent`) VALUES
  35. (7, 'Jeff_Derrickson', '118.137.145.120', 'The_Watcher', '2016-12-20 14:00:34', 'Teleport pizza runs', 0),
  36. (8, 'Barney_Phife', '103.57.171.32', 'Jack_Lazlow', '2016-12-20 14:27:32', 'DDoS Threats', 0),
  37. (9, 'Diego_Slash', '86.120.202.129', 'The_Watcher', '2016-12-20 14:36:47', 'Car warping', 0),
  38. (21, 'Jacob_Fanto', '37.36.82.160', 'Secret Admin', '2016-12-20 17:13:48', 'SA', 1),
  39. (26, '', '', 'Tyler_Huntley', '2016-12-20 18:54:02', 'DDOS', 0),
  40. (27, 'Jake_Parker', '68.38.229.216', 'Tyler_Huntley', '2016-12-20 18:54:17', 'DDOS', 0),
  41. (31, 'JOga_AkbaR', '103.227.54.237', 'Tye', '2016-12-21 00:43:30', 'Server ad', 0),
  42. (32, 'Atherturo_W_Triggs', '80.246.137.93', 'Tyler_Huntley', '2016-12-21 01:04:25', 'Server Advertising', 0),
  43. (33, 'Santino_Valentino', '112.198.244.196', 'Tyler_Huntley', '2016-12-21 01:05:55', 'TP Hacks', 0),
  44. (35, 'Jimbei_Piece', '204.93.58.171', 'Tyler_Huntley', '2016-12-21 02:46:41', 'Weapon Hacking, post a Ban Appeal.', 0),
  45. (58, 'Kimberly_Banks', '5.22.134.69', 'Jordy', '2016-12-21 12:26:47', 'healthhacks', 0),
  46. (59, 'Josh_Jacobs', '130.255.135.31', 'The_Watcher', '2016-12-21 15:51:52', 'Teleport pizza runs', 0),
  47. (60, 'Jake_Shore', '176.196.154.236', 'The_Watcher', '2016-12-21 15:58:21', 'Weapon hacks (Silenced Pistol)', 0),
  48. (63, '', '', 'Tyler_Huntley', '2016-12-21 17:27:27', 'Money Farming', 0),
  49. (64, 'Rock_Lee', '41.68.48.217', 'The_Watcher', '2016-12-21 17:39:42', 'Weapon hacks (AK47)', 0),
  50. (67, 'Marco_Weathers', '204.93.58.223', 'The_Watcher', '2016-12-21 19:33:31', 'Car warping', 0),
  51. (68, 'Wu_Ming', '77.147.238.92', 'Jack_Lazlow', '2016-12-21 19:38:25', 'Ban Evading', 0),
  52. (69, 'Amilia_Black', '99.25.163.84', 'Jack_Lazlow', '2016-12-21 19:48:07', 'Ban evading (Tina Paris)', 0),
  53. (70, 'Imam_Scaletta', '203.11.65.31', 'The_Watcher', '2016-12-21 21:09:28', 'Infinite ammo', 0),
  54. (71, 'Nejin_Empire', '183.109.194.180', 'Travis_Huntley', '2016-12-21 22:12:37', 'Evading', 0),
  55. (72, 'Danick_Gucci_Sosa', '112.201.210.35', 'The_Watcher', '2016-12-21 22:33:15', 'Flying hacks', 0),
  56. (73, 'Edd_Dolis', '185.12.45.79', 'The_Watcher', '2016-12-22 00:18:08', 'Weapon hacks (Minigun)', 0),
  57. (74, 'Nejin_Shades', '118.39.249.16', 'Secret Admin', '2016-12-22 00:45:23', 'Post a ban appeal on forums. You''ll find a thread called "Appeal your ban"', 1),
  58. (76, 'justine_louis', '180.191.137.91', 'Secret Admin', '2016-12-22 02:18:18', 'Money farming, post an appeal', 1),
  59. (77, 'Jack_Deen', '112.211.37.156', 'The_Watcher', '2016-12-22 02:31:06', 'Flying hacks', 0),
  60. (80, 'Artjom_Slavnik', '217.251.15.193', 'Franklyn_Menace', '2016-12-23 13:43:36', 'Weapon hack', 0);
  61. -- --------------------------------------------------------
  62. --
  63. -- Table structure for table `businesses`
  64. --
  65. CREATE TABLE IF NOT EXISTS `businesses` (
  66. `id` int(10) NOT NULL,
  67. `ownerid` int(10) DEFAULT '0',
  68. `owner` varchar(24) DEFAULT 'Nobody',
  69. `type` tinyint(2) DEFAULT '0',
  70. `price` int(10) DEFAULT '0',
  71. `entryfee` int(10) DEFAULT '0',
  72. `locked` tinyint(1) DEFAULT '0',
  73. `timestamp` int(10) DEFAULT '0',
  74. `pos_x` float DEFAULT '0',
  75. `pos_y` float DEFAULT '0',
  76. `pos_z` float DEFAULT '0',
  77. `pos_a` float DEFAULT '0',
  78. `int_x` float DEFAULT '0',
  79. `int_y` float DEFAULT '0',
  80. `int_z` float DEFAULT '0',
  81. `int_a` float DEFAULT '0',
  82. `interior` tinyint(2) DEFAULT '0',
  83. `world` int(10) DEFAULT '0',
  84. `outsideint` tinyint(2) DEFAULT '0',
  85. `outsidevw` int(10) DEFAULT '0',
  86. `cash` int(10) DEFAULT '0',
  87. `products` int(10) DEFAULT '500'
  88. ) ENGINE=InnoDB AUTO_INCREMENT=173 DEFAULT CHARSET=latin1;
  89. --
  90. -- Dumping data for table `businesses`
  91. --
  92. INSERT INTO `businesses` (`id`, `ownerid`, `owner`, `type`, `price`, `entryfee`, `locked`, `timestamp`, `pos_x`, `pos_y`, `pos_z`, `pos_a`, `int_x`, `int_y`, `int_z`, `int_a`, `interior`, `world`, `outsideint`, `outsidevw`, `cash`, `products`) VALUES
  93. (126, 144, 'Lrizz_Devil', 0, 300000, 99, 0, 1482530335, 393.227, -2065.88, 7.836, 73.441, -27.438, -57.611, 1003.55, 0, 6, 3000126, 0, 0, 17793, 99999238),
  94. (127, 147, 'Tyler_Huntley', 1, 2000000, 150, 0, 1482352562, 1368.19, -1279.84, 13.547, 89.277, 315.74, -143.196, 999.602, 0, 7, 3000127, 0, 0, 299650, 100003683),
  95. (128, 1, 'Josh_Einstein', 2, 550000, 0, 0, 1482263484, 2244.5, -1665.27, 15.477, 163.284, 207.633, -110.767, 1005.13, 0, 15, 3000128, 0, 0, 150170, 103),
  96. (129, 157, 'Dan_Devil', 0, 300000, 150, 0, 1482526876, 1315.47, -897.684, 39.578, 357.856, -27.438, -57.611, 1003.55, 0, 6, 3000129, 0, 0, 4075, 821),
  97. (130, 0, 'Nobody', 4, 500000, 0, 0, 0, 1199.28, -918.261, 43.122, -177.725, 363.328, -74.65, 1001.51, 315, 10, 3000130, 0, 0, 0, 360),
  98. (131, 6, 'Asykon_Amphibia', 4, 500000, 150, 0, 1482350795, 2105.17, -1806.51, 13.555, 271.199, 372.302, -133.122, 1001.49, 0, 5, 3000131, 0, 0, 17100, 389),
  99. (132, 204, 'David_Amphibia', 0, 300000, 0, 0, 1482385744, 1928.58, -1776.33, 13.547, 83.568, -27.438, -57.611, 1003.55, 0, 6, 3000132, 0, 0, 23300, 628),
  100. (133, 16, 'Walter_Cash', 3, 250000, 150, 0, 1482526657, 2229.27, -1721.83, 13.567, 134.368, 773.78, -78.258, 1000.66, 0, 7, 3000133, 0, 0, 5475, 100),
  101. (134, 157, 'Dan_Devil', 6, 275000, 0, 0, 1482526520, 2309.91, -1643.58, 14.827, 130.713, 501.869, -68.005, 998.758, 179.612, 11, 3000134, 0, 0, 0, 96),
  102. (135, 219, 'Nathan_Hopskin', 6, 275000, 200, 0, 1482380185, 2421.59, -1219.74, 25.53, 174.726, 501.869, -68.005, 998.758, 179.612, 11, 3000135, 0, 0, 0, 98),
  103. (136, 256, 'Lawrence_Vincre', 6, 275000, 0, 0, 1482390399, 1835.92, -1682.42, 13.369, 87.579, 493.373, -23.995, 1000.68, 0, 17, 3000136, 0, 0, 0, 158),
  104. (137, 220, 'Aero_D_Fox', 0, 300000, 0, 0, 1482388270, 999.931, -919.901, 42.328, 94.583, -27.438, -57.611, 1003.55, 0, 6, 3000137, 0, 0, 1125, 6299),
  105. (138, 0, 'Nobody', 4, 500000, 0, 0, 0, 2420.46, -1509.04, 24, -96.234, 364.854, -11.14, 1001.85, 0, 9, 3000138, 0, 0, 150, 108),
  106. (139, 144, 'Lrizz_Devil', 0, 300000, 0, 0, 1482390198, 1286.8, -1329.26, 13.555, 80.214, -27.438, -57.611, 1003.55, 0, 6, 3000139, 0, 0, 10180, 232),
  107. (140, 2, 'Tyler_Huntley', 6, 275000, 0, 0, 1482377223, 1496.81, -666.741, 95.601, -0.635, 501.869, -68.005, 998.758, 179.612, 11, 3000140, 0, 0, 0, 100),
  108. (141, 57, 'christopher_leaf', 0, 300000, 0, 0, 1482518479, 1833.29, -1842.53, 13.578, 89.51, -27.438, -57.611, 1003.55, 0, 6, 3000141, 0, 0, 7450, 5851),
  109. (142, 141, 'James_Maple', 1, 400000, 50, 0, 1482371593, 2400.39, -1981.83, 13.547, 3.24, 316.287, -169.647, 999.601, 0, 6, 3000142, 0, 0, 100, 1289),
  110. (143, 1, 'Josh_Einstein', 1, 400000, 0, 0, 1482191229, 2204.95, -1139.16, 25.818, -23.555, 316.287, -169.647, 999.601, 0, 6, 3000143, 0, 0, 19400, 4704),
  111. (144, 0, 'Nobody', 4, 500000, 0, 0, 0, 928.346, -1352.94, 13.344, 91.143, 364.854, -11.14, 1001.85, 0, 9, 3000144, 0, 0, 700, 188),
  112. (145, 0, 'Nobody', 4, 500000, 0, 0, 0, 1038.18, -1340.17, 13.738, 0.197, 377.073, -193.057, 1000.64, 0, 17, 3000145, 0, 0, 0, 130),
  113. (146, 221, 'William_J_Thompson', 0, 300000, 0, 0, 1482380594, 2139.47, -1176.79, 23.992, -87.587, -27.438, -57.611, 1003.55, 0, 6, 3000146, 0, 0, 90020, 64),
  114. (147, 56, 'Andrea_Brianna', 2, 550000, 0, 1, 1482387204, 2112.85, -1211.95, 23.964, -178.684, 203.715, -50.22, 1001.8, 0, 1, 3000147, 0, 0, 16000, 102),
  115. (148, 0, 'Nobody', 2, 550000, 0, 0, 0, 2397.8, -1898.91, 13.547, -0.605, 364.854, -11.14, 1001.85, 0, 9, 3000148, 0, 0, 2000, 109),
  116. (149, 141, 'James_Maple', 5, 475000, 0, 0, 1482391820, 1792.47, -1721.26, 13.542, 178.811, 834.152, 7.41, 1004.19, 90, 3, 3000149, 0, 0, 850, 100),
  117. (150, 282, 'Elon_Maple', 5, 475000, 100, 0, 1482519620, 2174.94, -1742.14, 13.551, -131.607, 834.152, 7.41, 1004.19, 90, 3, 3000150, 0, 0, 200, 100),
  118. (151, 217, 'Michael_Maple', 1, 400000, 100, 0, 1482532768, 2112.92, -1742.77, 13.555, -179.948, 285.319, -41.158, 1001.52, 0, 1, 3000151, 0, 0, 3600, 130),
  119. (152, 270, 'Chase_Ainsworth', 0, 300000, 200, 0, 1482390014, 2001.82, -1761.8, 13.539, -0.091, -27.438, -57.611, 1003.55, 0, 6, 3000152, 0, 0, 32974, 115),
  120. (153, 265, 'Wu_Gotti', 5, 475000, 0, 0, 1482529752, 1411.76, -1699.64, 13.539, -125.605, 834.152, 7.41, 1004.19, 90, 3, 3000153, 0, 0, 0, 100),
  121. (154, 0, 'Nobody', 4, 500000, 0, 0, 0, 810.917, -1616.14, 13.547, -87.702, 363.328, -74.65, 1001.51, 315, 10, 3000154, 0, 0, 0, 18640),
  122. (155, 157, 'Dan_Devil', 0, 300000, 50, 0, 1482538506, 807.323, -1358.07, 13.547, 273.19, -27.438, -57.611, 1003.55, 0, 6, 3000155, 0, 0, 13752, 158),
  123. (156, 116, 'Justin_Chigga', 0, 300000, 125, 0, 1482389100, 1154.73, -1457.99, 15.797, 88.753, -27.438, -57.611, 1003.55, 0, 6, 3000156, 0, 0, 15121, 213),
  124. (157, 113, 'Michael_Render', 2, 550000, 0, 0, 1482530401, 1158.51, -1473.59, 15.797, 108.493, 204.386, -168.459, 1000.52, 0, 14, 3000157, 0, 0, 0, 382),
  125. (158, 0, 'Nobody', 4, 500000, 0, 0, 0, 1102.41, -1457.98, 15.797, -88.324, 363.135, -74.844, 1001.51, 315, 10, 3000158, 0, 0, 92, 438),
  126. (159, 144, 'Lrizz_Devil', 5, 475000, 0, 0, 1482535497, 1098.57, -1473.62, 15.797, -111.72, 834.152, 7.41, 1004.19, 90, 3, 3000159, 0, 0, 0, 100),
  127. (160, 337, 'Simon_Gucci_Sosa', 6, 275000, 1000, 0, 1482524386, 1099.51, -1507.06, 15.797, -67.414, 501.869, -68.005, 998.758, 179.612, 11, 3000160, 0, 0, 2075, 262),
  128. (161, 219, 'Nathan_Hopskin', 3, 250000, 0, 0, 1482391136, 1112.26, -1521.08, 15.797, -20.622, 773.78, -78.258, 1000.66, 0, 7, 3000161, 0, 0, 0, 100),
  129. (162, 144, 'Lrizz_Devil', 0, 300000, 0, 0, 1482390285, 1420.48, -1623.77, 13.547, -96.297, -27.438, -57.611, 1003.55, 0, 6, 3000162, 0, 0, 290, 988),
  130. (163, 210, 'Thude_Hernandez', 5, 475000, 0, 0, 1482529107, 1286.3, -1308.37, 13.545, 86.334, 834.152, 7.41, 1004.19, 90, 3, 3000163, 0, 0, 0, 100),
  131. (164, 144, 'Lrizz_Devil', 0, 300000, 0, 0, 1482392289, 1352.43, -1758.46, 13.508, -8.284, -27.438, -57.611, 1003.55, 0, 6, 3000164, 0, 0, 5, 263),
  132. (165, 32, 'Curtis_Leaf', 0, 300000, 0, 0, 1482518569, 887.33, -1336.08, 13.547, 1.099, -27.438, -57.611, 1003.55, 0, 6, 3000165, 0, 0, 5545, 21814),
  133. (166, 3, 'Travis_Huntley', 1, 400000, 0, 0, 1482534661, 374.337, -2068.54, 7.836, 88.567, 316.287, -169.647, 999.601, 0, 6, 3000166, 0, 0, 19325, 175),
  134. (167, 10, 'Franklyn_Menace', 1, 400000, 100, 0, 1482535370, 1289.04, -1272.12, 13.542, 355.153, 316.287, -169.647, 999.601, 0, 6, 3000167, 0, 0, 16000, 272),
  135. (168, 6, 'Asykon_Amphibia', 1, 550000, 150, 0, 1482372314, 1187.16, -1260.96, 15.18, 269.889, 316.287, -169.647, 999.601, 0, 6, 3000168, 0, 0, 11250, 15025),
  136. (169, 1, 'JEinstein', 0, 300000, 0, 0, 1482375971, 1475.8, -1360.76, 11.883, 276.346, -27.438, -57.611, 1003.55, 0, 6, 3000169, 0, 0, 5555, 91),
  137. (170, 11, 'Lance_Lanvins', 1, 400000, 0, 0, 1482524779, 2101.14, -1359.52, 23.984, 180.153, 315.74, -143.196, 999.602, 0, 7, 3000170, 0, 0, 0, 498),
  138. (172, 9, 'Tori_Chester', 0, 1, 69, 0, 1482534803, 1032.6, -1115.27, 23.894, -176.811, -27.438, -57.611, 1003.55, 0, 6, 3000172, 0, 0, 0, 500);
  139. -- --------------------------------------------------------
  140. --
  141. -- Table structure for table `changes`
  142. --
  143. CREATE TABLE IF NOT EXISTS `changes` (
  144. `slot` tinyint(2) DEFAULT NULL,
  145. `text` varchar(64) DEFAULT NULL
  146. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  147. --
  148. -- Dumping data for table `changes`
  149. --
  150. INSERT INTO `changes` (`slot`, `text`) VALUES
  151. (1, 'Added Cookable Meth'),
  152. (2, 'Gangs foundation implemented'),
  153. (3, 'Factions foundations implemented'),
  154. (4, 'Phonebooks added,'),
  155. (5, '/help Revamped'),
  156. (6, 'Furniture system added.'),
  157. (7, 'Garage system has been added.'),
  158. (8, 'Clothing system added.'),
  159. (9, 'Drugs and Jobs Implemented'),
  160. (10, 'Car dealership system added!');
  161. -- --------------------------------------------------------
  162. --
  163. -- Table structure for table `charges`
  164. --
  165. CREATE TABLE IF NOT EXISTS `charges` (
  166. `id` int(10) NOT NULL,
  167. `uid` int(10) DEFAULT NULL,
  168. `chargedby` varchar(24) DEFAULT NULL,
  169. `date` datetime DEFAULT NULL,
  170. `reason` varchar(128) DEFAULT NULL
  171. ) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;
  172. --
  173. -- Dumping data for table `charges`
  174. --
  175. INSERT INTO `charges` (`id`, `uid`, `chargedby`, `date`, `reason`) VALUES
  176. (3, 43, 'Tom_Wrzosek', '2016-12-20 17:38:19', 'Failure to comply'),
  177. (4, 43, 'Tom_Wrzosek', '2016-12-20 17:38:28', 'Attempted murder on a LEO x1'),
  178. (5, 43, 'Tom_Wrzosek', '2016-12-20 17:39:39', 'Reckless driving'),
  179. (9, 39, 'Tom_Wrzosek', '2016-12-21 05:36:35', 'Attempted murder on a LEO'),
  180. (10, 39, 'Tom_Wrzosek', '2016-12-21 05:36:43', 'Reckless driving'),
  181. (11, 39, 'Tom_Wrzosek', '2016-12-21 05:37:50', 'illegal posseisson of a firearm'),
  182. (12, 11, 'Jayden_Trapz', '2016-12-21 12:25:15', 'Murder'),
  183. (13, 11, 'Jayden_Trapz', '2016-12-21 12:26:44', 'Evasion of arrest'),
  184. (14, 11, 'Jayden_Trapz', '2016-12-21 12:26:55', 'Failure to comply'),
  185. (16, 116, 'Tom_Wrzosek', '2016-12-21 17:22:11', 'Attempted murder on a Leo x2'),
  186. (17, 116, 'Tom_Wrzosek', '2016-12-21 17:22:18', 'Reckless driving'),
  187. (18, 116, 'Tom_Wrzosek', '2016-12-21 17:22:30', 'Failure to comply'),
  188. (20, 129, 'Don_Ryders', '2016-12-23 17:15:19', 'Failure to comply'),
  189. (21, 129, 'Don_Ryders', '2016-12-23 17:15:30', 'Attempt to Murder');
  190. -- --------------------------------------------------------
  191. --
  192. -- Table structure for table `clothing`
  193. --
  194. CREATE TABLE IF NOT EXISTS `clothing` (
  195. `id` int(10) NOT NULL,
  196. `uid` int(10) DEFAULT NULL,
  197. `name` varchar(32) DEFAULT NULL,
  198. `modelid` smallint(5) DEFAULT NULL,
  199. `boneid` tinyint(2) DEFAULT NULL,
  200. `attached` tinyint(1) DEFAULT NULL,
  201. `pos_x` float DEFAULT NULL,
  202. `pos_y` float DEFAULT NULL,
  203. `pos_z` float DEFAULT NULL,
  204. `rot_x` float DEFAULT NULL,
  205. `rot_y` float DEFAULT NULL,
  206. `rot_z` float DEFAULT NULL,
  207. `scale_x` float DEFAULT NULL,
  208. `scale_y` float DEFAULT NULL,
  209. `scale_z` float DEFAULT NULL
  210. ) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=latin1;
  211. --
  212. -- Dumping data for table `clothing`
  213. --
  214. INSERT INTO `clothing` (`id`, `uid`, `name`, `modelid`, `boneid`, `attached`, `pos_x`, `pos_y`, `pos_z`, `rot_x`, `rot_y`, `rot_z`, `scale_x`, `scale_y`, `scale_z`) VALUES
  215. (2, 22, 'Black bandana mask', 18912, 2, 0, 0.084, 0.008, 0.002, 91.7, -175.3, 82.4, 1.038, 1, 1.031),
  216. (3, 59, 'Black bandana mask', 18912, 2, 1, 0.102, 0.026, -0.002, -96.9, 12.8, -90.8, 1.166, 1, 1),
  217. (4, 79, 'Black tinted shades', 19012, 2, 1, 0.076, 0.029, 0.001, 85.4, 75.5, 0, 1, 1, 1),
  218. (5, 78, 'Skully cap', 18964, 2, 1, 0.1, 0.017, 0.004, 13.1, 84.9, 74.5, 1.185, 1.163, 1.215),
  219. (6, 104, 'Balaclava', 19801, 2, 0, 0.03, 0.043, 0, -3, 84, -173.5, 0.861, 0.843, 0.794),
  220. (7, 106, 'Dark blue bandana', 18891, 2, 0, 0.134, 0.013, 0.015, 102.1, -0.8, -83.3, 1, 1, 1),
  221. (8, 64, 'Black tinted shades', 19012, 2, 0, 0.076, 0.044, -0.004, 44.8, 92.9, 45.9, 1, 1.09, 1.495),
  222. (9, 154, 'Sports bag', 11745, 1, 1, 0.021, -0.057, -0.009, -90.3, 1, -92.4, 0.865, 1.032, 0.988),
  223. (10, 179, 'Checkered shades', 19014, 2, 0, 0.093, 0.056, 0, 87.3, 90.8, 0, 0.841, 1.018, 1.624),
  224. (11, 179, 'Plain pink cap', 18934, 2, 1, 0.123, 0.015, -0.008, -0.4, -1, 3.9, 1.226, 1.226, 1.162),
  225. (12, 179, 'Skull bandana mask', 18911, 2, 0, 0.064, 0.019, 0, -89.1, 4, -92.4, 1.044, 1, 1.063),
  226. (13, 220, 'Cigarette', 19625, 2, 1, 0.006, 0.109, -0.008, 0, 0, 169.5, 1, 1, 1),
  227. (14, 12, 'Don''t shoot me hat', 19114, 2, 1, 0.163, 0, 0, 0, 0, 0, 1, 1.026, 1.062),
  228. (15, 283, 'Green cap', 18929, 2, 1, 0.144, -0.004, 0, 0, -5.9, 0, 1.241, 1.086, 1.061),
  229. (17, 208, 'Black knit cap', 18953, 2, 1, 0.098, 0.037, 0.00000001607, 0, 0, 0, 1.697, 1.073, 1.305),
  230. (18, 208, 'Cigarette', 19625, 2, 1, 0.004, 0.108, 0, -179.8, 0, 0, 1, 1, 1),
  231. (21, 307, 'Blue sunglasses', 19023, 2, 1, 0.103, 0.049, 0.000000001281, 5.3, 88.4, 85.3, 1, 1.021, 1),
  232. (22, 307, 'Cigarette', 19625, 2, 1, 0.017, 0.12, 0.018, -164.5, 0, 0, 0.419, 0.519, 0.496),
  233. (23, 305, 'White hockey mask', 19036, 2, 1, 0.068, 0.06, 0.001, -2.5, 88.1, 92.7, 0.919, 1.039, 0.963),
  234. (24, 307, 'Striped boater hat', 18946, 2, 1, 0.138, -0.009, 0.002, 0, 0, -13.8, 1.253, 1.106, 1.145),
  235. (25, 280, 'Red bowler hat', 18950, 2, 1, 0.124, 0.014, 0.006, 0, 0, 0, 1.217, 1.169, 1.138),
  236. (26, 301, 'Don''t shoot me hat', 19114, 2, 1, 0.166, -0.02, -0.005, 0.3, 0.9, -13.4, 1, 1.034, 1.114),
  237. (27, 57, 'Red hockey mask', 19037, 2, 1, 0.093, 0.031, -0.002, -1.9, 88.5, 92, 1, 1.064, 1),
  238. (28, 57, 'Flashlight', 18641, 2, 1, 0.076, 0.075, -0.036, 87.8, 0, 0, 1, 1, 0.825),
  239. (29, 57, 'Flashlight', 18641, 2, 1, 0.072, 0.068, 0.034, 95.1, 0, -2, 1, 1, 0.874),
  240. (30, 57, 'Black bowler hat', 18947, 2, 1, 0.151, 0.004, 0.006, 0, 0, 0, 1, 1.031, 1.057),
  241. (32, 57, 'Hiker backpack', 19559, 1, 1, 0.178, -0.025, 0.006, 3.6, -92.3, 2, 1, 1, 1),
  242. (33, 353, 'Gas mask', 19472, 2, 1, 0.009, 0.138, 0.007, 29.2, 90.6, 72.2, 1, 1, 1),
  243. (34, 353, 'Afro', 18640, 2, 1, 0.079, 0, 0, 0, 0, 0, 1, 1, 1),
  244. (35, 353, 'Construction vest', 19904, 1, 1, 0.114, 0.056, -0.001, -179.7, 91.8, 3, 1, 1.192, 1),
  245. (36, 353, 'X-Ray glasses', 19016, 2, 1, 0.107, 0.049, 0.004, 3.1, 89, 84.9, 1, 1.118, 1),
  246. (38, 353, 'Holster', 19773, 8, 1, 0, -0.159, 0.032, -0.000000149, -88.6, -89.8, 1, 1, 1),
  247. (40, 363, 'Brown cowboy hat', 19098, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1),
  248. (41, 363, 'Don''t shoot me hat', 19114, 2, 0, 0.131, 0, 0, 0, 0, -8.1, 1.108, 1.07, 1),
  249. (42, 363, 'Construction vest', 19904, 1, 0, 0, 0.064, 0.000000001164, 0.1, 87.7, -177.5, 1.039, 1.054, 1),
  250. (43, 363, 'Bodybag', 19944, 1, 1, -0.235, -0.135, 0, -92.5, 1.5, -92.4, 1.008, 1, 1.821),
  251. (45, 372, 'Blue bandana mask', 18917, 2, 1, 0.067, 0.036, 0.005, -85, 0, -94.8, 1.022, 1, 1.028),
  252. (46, 372, 'Holster', 19773, 8, 1, 0.347, 0, 0.068, 11, -91.5, -134.2, 1, 1, 1),
  253. (47, 389, 'Red tinted shades', 19006, 2, 1, 0.111, 0.046, 0.004, -0.1, 84.4, 92.6, 1, 1, 1),
  254. (48, 79, 'Black bandana mask', 18912, 2, 1, 0.074, 0.017, 0.003, -87.6, 3.9, -97.6, 0.977, 1, 1.065),
  255. (49, 79, 'Cigarette', 19625, 2, 1, 0.008, 0.124, 0.017, 175.2, 29.5, 1.9, 1, 1, 1),
  256. (50, 79, 'Black bowler hat', 18947, 2, 1, 0.136, 0, 0.002, 0, 0, 0, 1, 1, 1),
  257. (51, 403, 'Plain black shades', 19033, 2, 1, 0.086, 0.051, -0.004, 87.3, 77.2, 3.7, 1, 1, 1),
  258. (52, 408, 'Red clown hair', 19274, 2, 0, 0, 0, 0, -1.1, 2.2, 0, 1, 1, 1),
  259. (54, 11, 'Cigarette', 19625, 2, 1, 0.028, 0.108, 0.018, -170.1, 4.9, -25.2, 1, 1, 1),
  260. (55, 11, 'Plain black shades', 19033, 2, 1, 0.096, 0.05, 0, 93, 88.6, -1.3, 1, 1, 1),
  261. (57, 283, 'Black headphones', 19422, 2, 1, 0.017, -0.009, 0, -170.4, 96, -11, 1, 1, 1.145),
  262. (58, 283, 'Bag of money', 1550, 1, 1, 0.034, -0.17, 0, 5.1, 90.6, 154.2, 1, 1, 1),
  263. (59, 283, 'Construction vest', 19904, 1, 1, 0.192, 0.054, -0.002, -173.2, 93.3, -6.1, 0.909, 0.98, 0.699),
  264. (60, 454, 'Black tinted shades', 19012, 2, 1, 0.092, 0.026, 0.0000000002328, -95.6, 98.1, -176.8, 1, 1, 1),
  265. (61, 479, 'Black knit cap', 18953, 2, 1, 0.112, 0.021, 0, 0, 0, 0, 1.249, 1.103, 1.168),
  266. (62, 479, 'Red sunglasses', 19026, 2, 1, 0.096, 0.035, -0.001, 90.1, 81, 0, 1, 1, 1),
  267. (63, 479, 'Sports bag', 11745, 1, 0, 0.143, -0.134, 0, -3, 42.8, -87.5, 0.428, 1.464, 0.699),
  268. (64, 479, 'Black bandana mask', 18912, 2, 0, 0.083, 0.031, 0, -91.4, -2, -90.3, 1, 1, 1),
  269. (65, 500, 'Plain black shades', 19033, 2, 1, 0.078, 0.032, -0.001, 92.9, 78.3, 0, 1, 1, 1),
  270. (66, 492, 'Black tinted shades', 19012, 2, 0, 0.109, 0.027, -0.001, 0.3, 89.3, 89.6, 1, 1.092, 1.612),
  271. (67, 492, 'Top hat', 19352, 2, 0, 0.107, 0.01, -0.002, 0.1, 88.9, 96.9, 1.251, 1.093, 0.94),
  272. (68, 492, 'Black hair', 19077, 2, 0, 0.017, 0.036, 0.003, 176.9, 2.6, -174.7, 1, 0.839, 0.977),
  273. (69, 532, 'Plain black shades', 19033, 2, 1, 0.095, 0.07, -0.0000000002328, 0, 86.7, 93.8, 0.861, 1.142, 1.345),
  274. (70, 528, 'Black tinted shades', 19012, 2, 0, 0.107, 0.062, 0, 100.1, 90.3, -6.7, 1, 1.066, 1),
  275. (71, 528, 'Plain black shades', 19033, 2, 1, 0.1, 0.063, -0.001, 67.1, 86.8, 26.1, 1, 1.047, 1.216),
  276. (72, 549, 'Briefcase', 19624, 6, 1, 0.081, 0.032, 0.016, 0, -99.7, 0, 0.707, 0.576, 0.71),
  277. (74, 578, 'Red bandana', 18892, 2, 0, -0.02, 0.061, 0.001, 0, 0, 82.4, 1, 1, 1);
  278. -- --------------------------------------------------------
  279. --
  280. -- Table structure for table `divisions`
  281. --
  282. CREATE TABLE IF NOT EXISTS `divisions` (
  283. `id` tinyint(2) DEFAULT NULL,
  284. `divisionid` tinyint(2) DEFAULT NULL,
  285. `name` varchar(32) DEFAULT NULL
  286. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  287. --
  288. -- Dumping data for table `divisions`
  289. --
  290. INSERT INTO `divisions` (`id`, `divisionid`, `name`) VALUES
  291. (1, 2, 'High Command'),
  292. (2, 0, 'Internal Affairs'),
  293. (2, 1, 'Organised Crime Investigation'),
  294. (2, 2, 'Criminal Investigation Departme'),
  295. (0, 0, 'Human Resources'),
  296. (0, 1, 'Internal Affairs'),
  297. (2, 3, 'Training and Recruitment'),
  298. (1, 3, 'FD'),
  299. (1, 4, 'EMS'),
  300. (1, 0, 'E.M.T'),
  301. (1, 1, 'H&R'),
  302. (3, 0, 'Executive Branch'),
  303. (3, 1, 'Secret Services'),
  304. (3, 2, 'Human Resources'),
  305. (3, 3, 'Test');
  306. -- --------------------------------------------------------
  307. --
  308. -- Table structure for table `entrances`
  309. --
  310. CREATE TABLE IF NOT EXISTS `entrances` (
  311. `id` int(10) NOT NULL,
  312. `ownerid` int(10) DEFAULT '0',
  313. `owner` varchar(24) DEFAULT NULL,
  314. `name` varchar(40) DEFAULT NULL,
  315. `iconid` smallint(5) DEFAULT '1239',
  316. `locked` tinyint(1) DEFAULT '0',
  317. `radius` float DEFAULT '3',
  318. `pos_x` float DEFAULT '0',
  319. `pos_y` float DEFAULT '0',
  320. `pos_z` float DEFAULT '0',
  321. `pos_a` float DEFAULT '0',
  322. `int_x` float DEFAULT '0',
  323. `int_y` float DEFAULT '0',
  324. `int_z` float DEFAULT '0',
  325. `int_a` float DEFAULT '0',
  326. `interior` tinyint(2) DEFAULT '0',
  327. `world` int(10) DEFAULT '0',
  328. `outsideint` tinyint(2) DEFAULT '0',
  329. `outsidevw` int(10) DEFAULT '0',
  330. `adminlevel` tinyint(2) DEFAULT '0',
  331. `factiontype` tinyint(2) DEFAULT '0',
  332. `vip` tinyint(2) DEFAULT '0',
  333. `vehicles` tinyint(1) DEFAULT '0',
  334. `freeze` tinyint(1) DEFAULT '0',
  335. `password` varchar(64) DEFAULT 'None',
  336. `label` tinyint(1) DEFAULT '1'
  337. ) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=latin1;
  338. --
  339. -- Dumping data for table `entrances`
  340. --
  341. INSERT INTO `entrances` (`id`, `ownerid`, `owner`, `name`, `iconid`, `locked`, `radius`, `pos_x`, `pos_y`, `pos_z`, `pos_a`, `int_x`, `int_y`, `int_z`, `int_a`, `interior`, `world`, `outsideint`, `outsidevw`, `adminlevel`, `factiontype`, `vip`, `vehicles`, `freeze`, `password`, `label`) VALUES
  342. (9, 0, 'Nobody', 'San Andreas Fire & Medical Dept', 1240, 0, 3, 1510.2, -2183.1, 13.547, 180.993, 316.146, 1720.13, 2042.71, 93.909, 1, 4000009, 0, 0, 0, -1, 0, 0, 1, 'None', 1),
  343. (10, 0, NULL, 'Exit', 19902, 0, 3, 248.91, 301.5, 999.148, 210.372, 1275.19, -1663.49, 19.734, 353.581, 0, 0, 1, 0, 0, -1, 0, 0, 0, 'None', 1),
  344. (12, 0, NULL, 'County', 19902, 0, 3, 249.383, 306.37, 999.148, 136.593, 2031.36, -1408.81, 16.999, 51.394, 0, 0, 1, 0, 0, -1, 0, 0, 0, 'None', 1),
  345. (13, 0, NULL, 'Idlewood', 19902, 0, 3, 244.205, 306.238, 999.156, -138.516, 1940.98, -1984.87, 13.547, 276.513, 0, 0, 1, 0, 0, -1, 0, 0, 0, 'None', 1),
  346. (15, 0, NULL, 'Star Tower', 19902, 0, 3, 1570.5, -1337.48, 16.484, -44.244, 1548.79, -1364.26, 326.218, 180.341, 0, 4000015, 0, 0, 0, -1, 0, 0, 0, 'None', 1),
  347. (16, 0, 'Nobody', 'Grove Street Families HQ', 1239, 0, 3, 2495.42, -1691.12, 14.766, -4.036, 2495.86, -1692.34, 1014.74, 175.451, 3, 4000016, 0, 0, 0, 0, 0, 0, 0, 'none', 1),
  348. (20, 0, NULL, 'Drug Factory', 1239, 0, 3, 1765.43, -2048.98, 14.016, 91.341, 2204.72, 1551.76, 1008.6, 272.33, 1, 4000020, 0, 0, 0, 0, 0, 0, 0, 'None', 1),
  349. (22, 0, NULL, 'San Andreas News', 1239, 0, 3, 649.282, -1360.72, 13.586, 88.987, 248.544, 1783.97, 701.086, 176.916, 1, 4000022, 0, 0, 0, 0, 0, 0, 1, 'None', 1),
  350. (23, 0, NULL, 'LSPD Garage', 1239, 0, 3, 1231.76, -1349.59, 796.786, 91.8, 1568.59, -1690.39, 5.891, 177.144, 0, 0, 2, 5, 0, 0, 0, 0, 0, 'None', 1),
  351. (26, 0, NULL, 'All Saints Roof Entrance', 1239, 0, 3, 1161.45, -1330.16, 31.494, -1.02, -54.832, 149.142, 999.064, 1.253, 1, 4000026, 0, 0, 0, 0, 0, 0, 0, 'None', 1),
  352. (27, 0, NULL, 'All Saints Roof Access', 1239, 0, 3, -55.036, 149.138, 999.064, 1.253, 1161.33, -1330.16, 31.494, 3.856, 0, 4000027, 1, 2, 0, 0, 0, 0, 0, 'None', 1),
  353. (28, 0, NULL, 'HMA Shack', 19300, 0, 3, 1567.06, 18.826, 24.164, 107.5, 965.375, 2107.78, 1011.03, 86.17, 1, 4000028, 0, 0, 0, 5, 0, 0, 0, 'None', 0),
  354. (29, 0, NULL, 'Rodeo Bank', 1239, 0, 3, 595.378, -1250.34, 18.279, 23.647, 1667.35, -995.37, 683.691, 0, 5, 4000029, 0, 0, 0, 0, 0, 0, 1, 'None', 1),
  355. (30, 0, NULL, 'Amphibia Corporation HQ', 1314, 0, 3, 1765.04, -1342.05, 15.759, -3.325, 389.878, 173.733, 1008.38, 90, 3, 4000030, 0, 0, 0, 0, 0, 0, 0, 'None', 1),
  356. (31, 0, NULL, 'Jefferson Motel', 1239, 0, 3, 2233.07, -1159.88, 25.891, 93.025, 2215.04, -1150.47, 1025.8, 270.66, 15, 4000031, 0, 0, 0, 0, 0, 0, 0, 'None', 1),
  357. (32, 0, NULL, 'Los Santos Rifa HQ', 1313, 0, 3, 1895.26, -2019.65, 13.547, 82.934, 2548.91, -1294.73, 1060.98, 270.033, 2, 4000032, 0, 0, 0, 0, 0, 0, 0, 'None', 1),
  358. (33, 0, NULL, 'Los Santos Church of God', 1239, 0, 3, 2253.94, -1333.17, 23.982, -86.208, 0, 0, 0, 0, 0, 4000033, 0, 0, 0, 0, 0, 0, 0, 'None', 1),
  359. (34, 0, NULL, 'Big Ammu Roof Access', 1318, 0, 3, 305.721, -141.956, 1004.05, 273.205, 1382.85, -1258.32, 33.553, 175.329, 0, 0, 7, 3000127, 0, 0, 0, 0, 0, 'None', 1),
  360. (35, 0, NULL, 'Admin Lounge', 1276, 0, 3, 2211.12, -1722.37, 25.848, 14.901, 315.769, 972.829, 1961.69, 358.173, 9, 4000035, 0, 0, 0, 0, 0, 0, 0, 'emmet4lyfe', 1),
  361. (39, 0, NULL, 'Black Diciples HQ', 1313, 0, 3, 2000.09, -1114.29, 27.125, 181.421, 2468.13, -1698.3, 1013.51, 85.79, 2, 4000039, 0, 0, 0, 0, 0, 0, 0, 'None', 1);
  362. -- --------------------------------------------------------
  363. --
  364. -- Table structure for table `factionpay`
  365. --
  366. CREATE TABLE IF NOT EXISTS `factionpay` (
  367. `id` tinyint(2) DEFAULT NULL,
  368. `rank` tinyint(2) DEFAULT NULL,
  369. `amount` int(10) DEFAULT NULL
  370. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  371. --
  372. -- Dumping data for table `factionpay`
  373. --
  374. INSERT INTO `factionpay` (`id`, `rank`, `amount`) VALUES
  375. (3, 0, 45000),
  376. (3, 1, 50000),
  377. (3, 2, 65000),
  378. (3, 3, 65000),
  379. (3, 4, 70000),
  380. (3, 5, 80000),
  381. (3, 6, 90000),
  382. (3, 7, 100000),
  383. (0, 0, 45000),
  384. (0, 1, 50000),
  385. (0, 2, 57000),
  386. (0, 3, 60000),
  387. (0, 4, 67000),
  388. (0, 5, 70000),
  389. (0, 6, 100000),
  390. (2, 0, 50000),
  391. (2, 1, 60000),
  392. (2, 2, 75000),
  393. (2, 3, 85000),
  394. (2, 4, 90000),
  395. (2, 5, 99000),
  396. (2, 6, 100000),
  397. (1, 0, 50000),
  398. (1, 1, 60000),
  399. (1, 2, 75000),
  400. (1, 3, 85000),
  401. (1, 4, 95000),
  402. (1, 5, 99000),
  403. (1, 6, 100000);
  404. -- --------------------------------------------------------
  405. --
  406. -- Table structure for table `factionranks`
  407. --
  408. CREATE TABLE IF NOT EXISTS `factionranks` (
  409. `id` tinyint(2) DEFAULT NULL,
  410. `rank` tinyint(2) DEFAULT NULL,
  411. `name` varchar(32) DEFAULT NULL
  412. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  413. --
  414. -- Dumping data for table `factionranks`
  415. --
  416. INSERT INTO `factionranks` (`id`, `rank`, `name`) VALUES
  417. (0, 0, 'Cadet'),
  418. (0, 1, 'Officer'),
  419. (0, 2, 'Officer II'),
  420. (0, 3, 'Sergeant'),
  421. (0, 4, 'Lieutenant'),
  422. (0, 5, 'Deputy Chief'),
  423. (0, 6, 'Chief of Police'),
  424. (1, 0, 'Trainee Paramedic'),
  425. (1, 1, 'Paramedic'),
  426. (1, 2, 'Sr. Paramedic'),
  427. (1, 3, 'Lead Paramedic'),
  428. (1, 4, 'Lieutenant'),
  429. (1, 5, 'Assistant Chief'),
  430. (1, 6, 'Comissioner'),
  431. (2, 0, 'Intern'),
  432. (2, 1, 'Agent'),
  433. (2, 2, 'Special Agent'),
  434. (2, 3, 'Senior Agent'),
  435. (2, 4, 'Supervisory Agent'),
  436. (2, 5, 'Deputy Director'),
  437. (2, 6, 'Director'),
  438. (3, 7, 'Governor'),
  439. (4, 0, 'Apprentice'),
  440. (4, 1, 'Freelancer'),
  441. (4, 4, 'Vice Director'),
  442. (4, 3, 'Veteran Hitman'),
  443. (4, 2, 'Killer'),
  444. (3, 6, 'Lieutenant Governor'),
  445. (4, 5, 'Director'),
  446. (3, 5, 'Secretary'),
  447. (3, 4, 'Senator'),
  448. (3, 3, 'Head of Staff/Security'),
  449. (3, 2, 'Senior Staff/Security'),
  450. (3, 1, 'Staff'),
  451. (3, 0, 'Security');
  452. -- --------------------------------------------------------
  453. --
  454. -- Table structure for table `factions`
  455. --
  456. CREATE TABLE IF NOT EXISTS `factions` (
  457. `id` tinyint(2) DEFAULT NULL,
  458. `name` varchar(48) DEFAULT NULL,
  459. `leader` varchar(24) DEFAULT 'No-one',
  460. `type` tinyint(2) DEFAULT '0',
  461. `color` int(10) DEFAULT '-1',
  462. `rankcount` tinyint(2) DEFAULT '6',
  463. `lockerx` float DEFAULT '0',
  464. `lockery` float DEFAULT '0',
  465. `lockerz` float DEFAULT '0',
  466. `lockerinterior` tinyint(2) DEFAULT '0',
  467. `lockerworld` int(10) DEFAULT '0'
  468. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  469. --
  470. -- Dumping data for table `factions`
  471. --
  472. INSERT INTO `factions` (`id`, `name`, `leader`, `type`, `color`, `rankcount`, `lockerx`, `lockery`, `lockerz`, `lockerinterior`, `lockerworld`) VALUES
  473. (0, 'Los Santos Police Department', 'Jordan Grande', 1, 201391872, 7, 1235.65, -1359.53, 800.388, 2, 5),
  474. (1, 'San Andreas Fire & Medical Department', 'Aviana Starr', 2, -8532480, 7, 281.329, 1711.72, 2046.21, 1, 4000009),
  475. (2, 'Federal Bureau of Investigation', 'Dann Lazlow', 6, 1933048832, 7, -514.833, 315.831, 2004.58, 1, 4000021),
  476. (3, 'San Andreas Government', 'Clarence Breyer', 4, 640034304, 8, 375.593, 180.661, 1014.19, 3, 4),
  477. (4, 'The Hitman Agency', 'Secret', 5, 1280068608, 6, 934.452, 2110.5, 1011.02, 1, 4000028),
  478. (5, 'San Andreas News', 'CLOSED', 3, 144559616, 6, 256.007, 1778.37, 701.086, 1, 4000022);
  479. -- --------------------------------------------------------
  480. --
  481. -- Table structure for table `factionskins`
  482. --
  483. CREATE TABLE IF NOT EXISTS `factionskins` (
  484. `id` tinyint(2) DEFAULT NULL,
  485. `slot` tinyint(2) DEFAULT NULL,
  486. `skinid` smallint(3) DEFAULT NULL
  487. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  488. --
  489. -- Dumping data for table `factionskins`
  490. --
  491. INSERT INTO `factionskins` (`id`, `slot`, `skinid`) VALUES
  492. (1, 0, 274),
  493. (1, 1, 275),
  494. (1, 2, 276),
  495. (1, 3, 277),
  496. (1, 4, 278),
  497. (1, 5, 279),
  498. (0, 0, 280),
  499. (0, 1, 281),
  500. (0, 2, 282),
  501. (0, 3, 283),
  502. (0, 4, 188),
  503. (0, 5, 186),
  504. (0, 6, 299),
  505. (0, 7, 265),
  506. (0, 8, 266),
  507. (0, 9, 267),
  508. (1, 6, 308),
  509. (3, 0, 147),
  510. (3, 1, 163),
  511. (3, 2, 164),
  512. (3, 3, 165),
  513. (3, 4, 166),
  514. (3, 5, 295),
  515. (3, 6, 12),
  516. (3, 7, 76),
  517. (3, 8, 141),
  518. (3, 9, 150);
  519. -- --------------------------------------------------------
  520. --
  521. -- Table structure for table `flags`
  522. --
  523. CREATE TABLE IF NOT EXISTS `flags` (
  524. `id` int(10) NOT NULL,
  525. `uid` int(10) DEFAULT NULL,
  526. `flaggedby` varchar(24) DEFAULT NULL,
  527. `date` datetime DEFAULT NULL,
  528. `description` varchar(128) DEFAULT NULL
  529. ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=latin1;
  530. --
  531. -- Dumping data for table `flags`
  532. --
  533. INSERT INTO `flags` (`id`, `uid`, `flaggedby`, `date`, `description`) VALUES
  534. (1, 71, 'Tye', '2016-12-20 12:45:55', 'Baiting DM'),
  535. (15, 303, 'Travis_Huntley', '2016-12-21 05:16:58', 'possible helper.'),
  536. (18, 277, 'Jordy', '2016-12-21 09:56:24', 'Requires Faction Moderator/ Management assistance'),
  537. (19, 17, 'Kalgon_Grande', '2016-12-21 13:18:10', '1 Cookie (Implemented Web Suggestion)'),
  538. (28, 141, 'Lance_Lanvins', '2016-12-21 20:24:35', '[TIBER] - New SAFMD Chief ( Check him out )'),
  539. (30, 306, 'Travis_Huntley', '2016-12-22 02:36:31', 'Possible Helper '),
  540. (32, 1, 'Ronald_McDonald', '2016-12-23 13:28:16', 'test'),
  541. (34, 373, 'Jordy', '2016-12-23 14:03:56', 'Potential S0beit user'),
  542. (37, 361, 'Dick_Cardenas', '2016-12-23 16:03:00', 'Needs a refund for lost spas & deagle.'),
  543. (38, 563, 'Dick_Cardenas', '2016-12-23 16:09:01', 'Needs VIP, Level up, & Wep Restriction removed.'),
  544. (39, 565, 'Dick_Cardenas', '2016-12-23 16:12:43', 'Needs his VIP. '),
  545. (40, 566, 'Lance', '2016-12-23 16:27:23', 'needs VIP 3 days +1level'),
  546. (41, 81, 'Jordy', '2016-12-23 18:03:05', 'Knife + Deagle + Shotgun Refund.');
  547. -- --------------------------------------------------------
  548. --
  549. -- Table structure for table `furniture`
  550. --
  551. CREATE TABLE IF NOT EXISTS `furniture` (
  552. `id` int(10) NOT NULL,
  553. `houseid` int(10) DEFAULT NULL,
  554. `modelid` smallint(5) DEFAULT NULL,
  555. `name` varchar(32) DEFAULT NULL,
  556. `price` int(10) DEFAULT NULL,
  557. `pos_x` float DEFAULT NULL,
  558. `pos_y` float DEFAULT NULL,
  559. `pos_z` float DEFAULT NULL,
  560. `rot_x` float DEFAULT NULL,
  561. `rot_y` float DEFAULT NULL,
  562. `rot_z` float DEFAULT NULL,
  563. `interior` tinyint(2) DEFAULT NULL,
  564. `world` int(10) DEFAULT NULL,
  565. `door_opened` tinyint(1) DEFAULT '0',
  566. `door_locked` tinyint(1) DEFAULT '0'
  567. ) ENGINE=InnoDB AUTO_INCREMENT=246 DEFAULT CHARSET=latin1;
  568. --
  569. -- Dumping data for table `furniture`
  570. --
  571. INSERT INTO `furniture` (`id`, `houseid`, `modelid`, `name`, `price`, `pos_x`, `pos_y`, `pos_z`, `rot_x`, `rot_y`, `rot_z`, `interior`, `world`, `door_opened`, `door_locked`) VALUES
  572. (1, 65, 2357, 'Wide dining table', 500, 247.666, 303.715, 998.724, 82.2, 0, -90.155, 1, 1000065, 0, 0),
  573. (2, 65, 2514, 'Toilet', 250, 243.945, 306.225, 998.098, 0, 0, 5.715, 1, 1000065, 0, 0),
  574. (7, 95, 2090, 'White striped bed', 500, 1361.34, -2132.47, 1049.61, 2.3, -0.1, 178.917, 3, 1000095, 0, 0),
  575. (9, 95, 1506, 'White door', 100, 1364.9, -2136.11, 1049.6, 0.6, 0.3, 0.803, 3, 1000095, 0, 1),
  576. (10, 95, 2090, 'White striped bed', 500, 1363.84, -2132.54, 1049.55, 1.2, -0.7, 179.744, 3, 1000095, 0, 0),
  577. (12, 95, 2296, 'Cabinet with TV', 500, 1360.66, -2130.51, 1049.64, -2, 0.6, -0.237, 3, 1000095, 0, 0),
  578. (15, 95, 1506, 'White door', 100, 1361.94, -2138.92, 1049.67, 0, 0, 88.964, 3, 1000095, 0, 0),
  579. (17, 76, 2229, 'Brown bed', 500, 835.158, -1007.28, 798.942, -0.6, 0.5, -88.325, 3, 1000076, 0, 0),
  580. (18, 95, 2514, 'Toilet', 250, 1356.68, -2136.58, 1049.75, -1.5, -2.4, 86.528, 3, 1000095, 0, 0),
  581. (20, 95, 2527, 'Shower with curtains', 500, 1357.62, -2136.81, 1049.72, -1.2, -0.4, 88.661, 3, 1000095, 0, 0),
  582. (21, 95, 2524, 'Sink with extra soap', 250, 1356.44, -2140.36, 1049.65, 0, 0, 89.754, 3, 1000095, 0, 0),
  583. (22, 76, 2229, 'Brown bed', 500, 835.325, -1010.2, 798.962, -0.4, 0, -86.06, 3, 1000076, 0, 0),
  584. (23, 95, 2524, 'Sink with extra soap', 250, 1356.45, -2139.84, 1049.67, 0, 0, 87.037, 3, 1000095, 0, 0),
  585. (24, 95, 1506, 'White door', 100, 1365.58, -2143.42, 1049.56, 0, 0, -2.665, 3, 1000095, 1, 0),
  586. (25, 95, 1506, 'White door', 100, 1367.74, -2137.41, 1049.58, 0, 0, -88.765, 3, 1000095, 0, 0),
  587. (27, 95, 1506, 'White door', 100, 1361.8, -2143.31, 1049.6, 0, 0, 85.612, 3, 1000095, 0, 0),
  588. (28, 76, 2313, 'Table with VCR', 500, 834.598, -1007.77, 799.064, 0, 0, -87.213, 3, 1000076, 0, 0),
  589. (32, 95, 1723, 'Long black sofa', 750, 1367.17, -2130.63, 1049.57, 2.4, 0.3, -90.191, 3, 1000095, 0, 0),
  590. (34, 95, 1824, 'Betting table', 2000, 1369.65, -2143.44, 1050.33, 0.1, -0.3, 178.721, 3, 1000095, 0, 0),
  591. (38, 95, 2356, 'Blue swivel chair', 250, 1369.48, -2144.91, 1049.87, 0.5, 0, 1.781, 3, 1000095, 0, 0),
  592. (41, 76, 1792, 'Flat screen TV', 400, 834.876, -1008.3, 799.564, 0, 0, -86.007, 3, 1000076, 0, 0),
  593. (42, 95, 2356, 'Blue swivel chair', 250, 1369.55, -2142, 1049.86, 0, 0, 178.38, 3, 1000095, 0, 0),
  594. (45, 101, 1506, 'White door', 100, 1186.11, -425.759, 1233.73, 0.4, 0.1, -88.573, 9, 1000101, 0, 0),
  595. (46, 101, 2519, 'Bathtub', 500, 1189.74, -426.52, 1233.69, -2.3, 1, -90.093, 9, 1000101, 0, 0),
  596. (47, 101, 2525, 'Toilet with rolls', 500, 1187.86, -428.663, 1233.68, 0, 0, -177.033, 9, 1000101, 0, 0),
  597. (48, 101, 2739, 'Plain sink', 250, 1187, -425.982, 1233.72, 0, 0, 358.985, 9, 1000101, 0, 0),
  598. (49, 101, 1506, 'White door', 100, 1177, -421.087, 1233.74, -0.5, -0.5, -88.583, 9, 1000101, 0, 0),
  599. (50, 101, 11720, 'Red double bed', 500, 1172.29, -422.942, 1233.89, 1, 0, 88.899, 9, 1000101, 0, 0),
  600. (51, 95, 14384, 'CJ''s kitchen', 3000, 1371.07, -2134.62, 1051.05, 0.4, -0.3, -1.343, 3, 1000095, 0, 0),
  601. (52, 101, 2296, 'Cabinet with TV', 500, 1171.36, -419.357, 1233.85, -1.7, 0, 0.941, 9, 1000101, 0, 0),
  602. (53, 101, 3383, 'Lab table', 2000, 1182.51, -423.44, 1233.76, 0, 0, 271.11, 9, 1000101, 0, 0),
  603. (54, 101, 1364, 'Bush plant and bench', 500, 1185.1, -422.97, 1234.43, -0.0000009835, 0, -88.058, 9, 1000101, 0, 0),
  604. (55, 101, 2370, 'Square coffee table', 500, 1174.27, -427.251, 1233.67, 0, 0, 90.213, 9, 1000101, 0, 0),
  605. (56, 101, 1711, 'Old timer''s lounge chair', 500, 1171.9, -426.955, 1233.81, 2.5, 0, 85.235, 9, 1000101, 0, 0),
  606. (57, 95, 19369, 'wall017', 100, 1369.13, -2140.45, 1052.81, 0, 0, -89.762, 3, 1000095, 0, 0),
  607. (58, 101, 1711, 'Old timer''s lounge chair', 500, 1173.66, -424.667, 1233.86, 0, 0, 4.479, 9, 1000101, 0, 0),
  608. (59, 101, 1711, 'Old timer''s lounge chair', 500, 1173.97, -428.877, 1233.68, 0, -1.9, -179.747, 9, 1000101, 0, 0),
  609. (60, 95, 19369, 'wall017', 100, 1369.36, -2140.46, 1049.51, -179.6, -1.6, 272.652, 3, 1000095, 0, 0),
  610. (61, 101, 2693, 'Base 5 cutout #1', 50, 1170.77, -427.142, 1235.56, 7.3, 0.2, 85.426, 9, 1000101, 0, 0),
  611. (62, 101, 2736, 'Zip poster', 50, 1174.61, -430.155, 1235.41, 0, 0, -179.853, 9, 1000101, 0, 0),
  612. (63, 101, 19172, 'Los Santos frame', 100, 1182.75, -428.48, 1235.6, 0, 0, 179.02, 9, 1000101, 0, 0),
  613. (64, 101, 11730, 'Open gym locker', 250, 1174.98, -423.719, 1233.65, 0, 0, 179.933, 9, 1000101, 0, 0),
  614. (65, 101, 19328, 'Monkey juice poster', 50, 1174.19, -424.134, 1235.7, 0, 0, 2.799, 9, 1000101, 0, 0),
  615. (66, 101, 644, 'Palm plant #10', 100, 1171.3, -429.76, 1233.96, 0, 0, 116.323, 9, 1000101, 0, 0),
  616. (67, 101, 644, 'Palm plant #10', 100, 1171.33, -424.586, 1233.94, 0, 0, 40.495, 9, 1000101, 0, 0),
  617. (68, 101, 2241, 'Potted plant #8', 150, 1176.64, -429.806, 1234.13, 0, 0, 241.007, 9, 1000101, 0, 0),
  618. (69, 101, 2241, 'Potted plant #8', 150, 1176.69, -424.271, 1234.11, 0, 0, 328.741, 9, 1000101, 0, 0),
  619. (70, 101, 1506, 'White door', 100, 1177.19, -425.381, 1233.7, 0, 0, -94.892, 9, 1000101, 1, 0),
  620. (71, 81, 2046, 'Gun rack', 250, 1311.57, -170.287, 1087.75, 0, 0, 90, 5, 1000081, 0, 0),
  621. (73, 94, 2514, 'Toilet', 250, 2008.01, -1704.91, 1164.69, 0, 0, 179.004, 8, 1000094, 0, 0),
  622. (74, 94, 19873, 'Toilet paper', 50, 2007.9, -1705.36, 1165.69, 0, 0, 101.656, 8, 1000094, 0, 0),
  623. (75, 94, 2523, 'Sink with rug', 250, 2009.34, -1704.89, 1164.76, 0, -1.4, 178.296, 8, 1000094, 0, 0),
  624. (76, 94, 2526, 'Wood sided bathtub', 500, 2006.67, -1703.73, 1164.68, 0, 0, -89.788, 8, 1000094, 0, 0),
  625. (77, 94, 11737, 'Rockstar carpet', 250, 2009.47, -1698.84, 1164.74, 0, 0, -90.615, 8, 1000094, 0, 0),
  626. (78, 94, 1567, 'Wardrobe door', 100, 2006.12, -1694.56, 1164.68, 0, 0, 91.223, 8, 1000094, 0, 0),
  627. (79, 94, 2136, 'Wood kitchen sink', 500, 2004.3, -1705.31, 1164.6, 0, 0, -177.53, 8, 1000094, 0, 0),
  628. (80, 94, 2303, 'Wood kitchen washer', 500, 2005.39, -1705.21, 1164.7, 1.8, 0, -179.486, 8, 1000094, 0, 0),
  629. (81, 94, 2135, 'Wood kitchen stove', 500, 2005.55, -1701.48, 1164.58, 0, 0, -88.161, 8, 1000094, 0, 0),
  630. (82, 94, 2138, 'Wood kitchen unit', 500, 2005.57, -1702.45, 1164.58, 0, 0, -88.548, 8, 1000094, 0, 0),
  631. (83, 94, 2313, 'Table with VCR', 500, 2003.25, -1698.44, 1164.7, 0, 0, 89.728, 8, 1000094, 0, 0),
  632. (84, 94, 2313, 'Table with VCR', 500, 2003.22, -1698.36, 1164.7, 0, 0, 89.693, 8, 1000094, 0, 0),
  633. (85, 94, 19787, 'Small LCD television', 750, 2002.78, -1697.63, 1165.62, 0, 0, 88.901, 8, 1000094, 0, 0),
  634. (86, 94, 2232, 'Black subwoofer', 250, 2003.19, -1699.32, 1165.28, 0, 0, 91.481, 8, 1000094, 0, 0),
  635. (87, 94, 2232, 'Black subwoofer', 250, 2003.18, -1696.04, 1165.29, 0, 0, 89.605, 8, 1000094, 0, 0),
  636. (88, 94, 2028, 'Playstation console', 500, 2003.32, -1698.44, 1165.29, 0, 0, 113.697, 8, 1000094, 0, 0),
  637. (89, 94, 1718, 'Retro gaming console', 500, 2003.32, -1696.94, 1165.25, 0, 0, 46.225, 8, 1000094, 0, 0),
  638. (90, 94, 1710, 'Very wide beige couch', 1500, 2005.57, -1695.88, 1164.6, 0, 0, -91.057, 8, 1000094, 0, 0),
  639. (91, 94, 2842, 'Patterned carpet', 250, 2004.72, -1698.24, 1164.68, 0, 0, 89.565, 8, 1000094, 0, 0),
  640. (92, 94, 2300, 'Bed with cabinet', 500, 2006.37, -1692.26, 1164.84, 0, 0, 359.128, 8, 1000094, 0, 0),
  641. (93, 94, 2558, 'Blue curtains', 50, 2005.18, -1690.68, 1165.78, 0, 0, 90.424, 8, 1000094, 0, 0),
  642. (94, 94, 2558, 'Blue curtains', 50, 2005.18, -1692.59, 1165.78, 0, 0, 90.581, 8, 1000094, 0, 0),
  643. (95, 94, 2181, 'Office desk with computer', 1000, 2010.5, -1692.35, 1164.66, 0, 0, -91.053, 8, 1000094, 0, 0),
  644. (96, 94, 2356, 'Blue swivel chair', 250, 2009.53, -1692.84, 1164.65, 0, 0, 273.863, 8, 1000094, 0, 0),
  645. (98, 94, 2817, 'Green circled carpet', 250, 2008.33, -1690.97, 1164.69, 0, 0, 179.363, 8, 1000094, 0, 0),
  646. (99, 93, 2514, 'Toilet', 250, 2657.32, -1038.23, 928.906, 0, 0, -88.839, 5, 1000093, 0, 0),
  647. (106, 96, 19786, 'Large LCD television', 1000, 2183.19, -1133.29, 1129.51, 0, 0, 89.991, 11, 1000096, 0, 0),
  648. (107, 96, 2842, 'Patterned carpet', 250, 2184.29, -1130.84, 1127.76, 0, 0, 90.664, 11, 1000096, 0, 0),
  649. (108, 96, 1702, 'Beige sofa', 750, 2189.75, -1132.91, 1127.75, 0, 0, -90.222, 11, 1000096, 0, 0),
  650. (109, 96, 1702, 'Beige sofa', 750, 2185.77, -1131.74, 1127.78, 0, 0, -0.008, 11, 1000096, 0, 0),
  651. (110, 96, 1737, 'Brown dining table', 500, 2187.25, -1133.77, 1127.62, 0, 0, 179.678, 11, 1000096, 0, 0),
  652. (111, 96, 14720, 'Whole kitchen', 3000, 2195.13, -1134.49, 1127.66, 0, 0, 89.505, 11, 1000096, 0, 0),
  653. (112, 96, 2131, 'White kitchen fridge', 500, 2192.2, -1134.4, 1127.75, 0, 0, 179.915, 11, 1000096, 0, 0),
  654. (113, 96, 1665, 'Ashtray with cigar', 50, 2186.77, -1133.79, 1128.45, 0, 0, 96.384, 11, 1000096, 0, 0),
  655. (114, 96, 11721, 'Radiator', 50, 2187.75, -1128.48, 1128.32, 0, 0, -0.124, 11, 1000096, 0, 0),
  656. (115, 96, 1491, 'Wooden push door #1', 100, 2191.8, -1128.2, 1127.78, 0, 0, 0.049, 11, 1000096, 0, 0),
  657. (118, 96, 1491, 'Wooden push door #1', 100, 2193.2, -1125.3, 1127.75, 0, 0, -0.376, 11, 1000096, 0, 0),
  658. (119, 96, 2195, 'Potted plant #5', 150, 2183.75, -1128.91, 1128.37, 0, 0, 269.805, 11, 1000096, 0, 0),
  659. (120, 96, 2149, 'Microwave', 100, 2196.22, -1134.58, 1128.81, 0, 0, -136.275, 11, 1000096, 0, 0),
  660. (121, 96, 11738, 'Medic kit', 50, 2194.17, -1134.28, 1128.7, 0, 0, 6.718, 11, 1000096, 0, 0),
  661. (122, 96, 11706, 'Wastebin', 50, 2196.04, -1129.48, 1127.79, 0, 0, 88.223, 11, 1000096, 0, 0),
  662. (123, 96, 19617, 'Gold record', 100, 2185.64, -1128.44, 1129.31, 0, 0, 1.277, 11, 1000096, 0, 0),
  663. (124, 96, 2099, 'Speaker & stereo system', 500, 2184.67, -1135.45, 1127.76, 0, 0, -180, 11, 1000096, 0, 0),
  664. (125, 96, 2514, 'Toilet', 250, 2195.53, -1121.93, 1127.76, 0, 0, 0.828, 11, 1000096, 0, 0),
  665. (126, 96, 2518, 'Wall sink', 250, 2193.32, -1121.99, 1127.68, 0, 0, -0.769, 11, 1000096, 0, 0),
  666. (127, 96, 2527, 'Shower with curtains', 500, 2195.46, -1123.58, 1127.79, 0, 0, 179.217, 11, 1000096, 0, 0),
  667. (128, 96, 14446, 'Zebra print bed', 500, 2201.61, -1128.76, 1128.2, 0, 0, 179.619, 11, 1000096, 0, 0),
  668. (129, 96, 2048, 'Confederate flag', 50, 2200.41, -1130.53, 1129.77, 0, 0, 179.183, 11, 1000096, 0, 0),
  669. (130, 96, 19172, 'Los Santos frame', 100, 2200.49, -1123.46, 1129.77, 0, 0, -0.017, 11, 1000096, 0, 0),
  670. (131, 96, 2819, 'Clothes pile #1', 50, 2199.26, -1127.53, 1127.73, 0, 0, 146.022, 11, 1000096, 0, 0),
  671. (132, 96, 2843, 'Clothes pile #2', 50, 2199.79, -1128.24, 1127.77, 0, 0, 163.255, 11, 1000096, 0, 0),
  672. (133, 96, 2891, 'Cocaine packet', 50, 2198.25, -1125.06, 1127.74, 0, 0, 148.528, 11, 1000096, 0, 0),
  673. (134, 96, 1279, 'Drug bundle', 50, 2198.17, -1124.48, 1127.82, 0, 0, 3.068, 11, 1000096, 0, 0),
  674. (135, 96, 3409, 'Marijuana plant', 50, 2203.03, -1122.63, 1126.87, 0, 1.8, 1.968, 11, 1000096, 0, 0),
  675. (136, 96, 19619, 'Safe door', 50, 2197.35, -1124.97, 1129.06, 0, 0, 89.11, 11, 1000096, 0, 0),
  676. (137, 96, 1550, 'Bag of money', 50, 2197.59, -1123.8, 1128.14, 0, 0, 93.262, 11, 1000096, 0, 0),
  677. (138, 96, 1550, 'Bag of money', 50, 2198.1, -1123.82, 1128.13, 0, 0, 322.914, 11, 1000096, 0, 0),
  678. (139, 96, 2852, 'Scattered magazines', 50, 2201.09, -1129.16, 1128.32, 0, 0, 155.351, 11, 1000096, 0, 0),
  679. (140, 96, 19914, 'Wooden bat', 50, 2201.49, -1126.16, 1127.8, 0, 0, 64.484, 11, 1000096, 0, 0),
  680. (141, 96, 2192, 'Desk fan', 50, 2202.67, -1125.11, 1127.79, 0, 0, -30.911, 11, 1000096, 0, 0),
  681. (142, 96, 1840, 'Subwoofer', 250, 2197.74, -1130.29, 1127.76, 0, 0, -133.673, 11, 1000096, 0, 0),
  682. (143, 96, 1886, 'Surveillance camera', 50, 2203.1, -1130.11, 1130.89, 0, 0, -130.998, 11, 1000096, 0, 0),
  683. (144, 96, 2008, 'Computer desk', 1000, 2190.1, -1127.25, 1127.75, 0, 0, 89.244, 11, 1000096, 0, 0),
  684. (145, 96, 2356, 'Blue swivel chair', 250, 2191.28, -1126.26, 1127.78, 0, 0, 97.584, 11, 1000096, 0, 0),
  685. (146, 76, 1794, 'Double plaid bed', 500, 832.54, -1010.61, 799.041, -1.4, 0.2, 89.57, 3, 1000076, 0, 0),
  686. (147, 76, 1794, 'Double plaid bed', 500, 832.562, -1006.42, 798.944, 0, 1.2, 90.341, 3, 1000076, 0, 0),
  687. (148, 76, 1814, 'Low coffee table', 500, 829.918, -1008.46, 798.954, 0, 0.5, 91.973, 3, 1000076, 0, 0),
  688. (149, 76, 11705, 'Black telephone', 50, 829.392, -1008.36, 799.424, 0, 0, 86.823, 3, 1000076, 0, 0),
  689. (150, 76, 2105, 'Lamp', 50, 829.307, -1007.75, 799.914, 0, 0, 143.817, 3, 1000076, 0, 0),
  690. (151, 76, 1492, 'Green push door', 100, 837.169, -1023.21, 799.114, 0, 0, -179.972, 3, 1000076, 0, 0),
  691. (152, 76, 11691, 'Rectangular green table', 500, 839.295, -1019.38, 799.124, 0, 0, -178.852, 3, 1000076, 0, 0),
  692. (153, 76, 1739, 'Tall brown dining chair', 250, 838.944, -1020.33, 799.864, 0, 0, -89.076, 3, 1000076, 0, 0),
  693. (154, 76, 1739, 'Tall brown dining chair', 250, 838.655, -1018.48, 799.934, 0, 0, 92.984, 3, 1000076, 0, 0),
  694. (155, 76, 1739, 'Tall brown dining chair', 250, 839.855, -1018.48, 799.925, 0, 0, 93.664, 3, 1000076, 0, 0),
  695. (156, 76, 1739, 'Tall brown dining chair', 250, 839.882, -1020.32, 799.864, 0, 0, -89.076, 3, 1000076, 0, 0),
  696. (157, 76, 1739, 'Tall brown dining chair', 250, 840.843, -1019.46, 799.894, 0, 0, -0.462, 3, 1000076, 0, 0),
  697. (158, 76, 1739, 'Tall brown dining chair', 250, 837.892, -1019.39, 799.834, 0, 0, 178.742, 3, 1000076, 0, 0),
  698. (162, 101, 2691, 'Base 5 poster', 50, 1182.18, -419.439, 1235.69, 0, 0, -0.232, 9, 1000101, 0, 0),
  699. (163, 101, 19632, 'Fireplace logs', 50, 1176.68, -419.004, 1233.41, 0, 0, 352.672, 9, 1000101, 0, 0),
  700. (164, 76, 14720, 'Whole kitchen', 3000, 834.822, -1027.99, 799.21, 0, 0.4, 1.752, 3, 1000076, 0, 0),
  701. (165, 76, 11743, 'Coffee machine', 500, 838.919, -1029.14, 800.184, 0, 0, -178.35, 3, 1000076, 0, 0),
  702. (166, 76, 2533, 'Small sprunk fridge', 50, 835.085, -1024.47, 799.144, 0, 0, 89.221, 3, 1000076, 0, 0),
  703. (167, 95, 2115, 'Plain wooden table', 500, 1370.55, -2136.16, 1049.46, 1.9, 0, -0.53, 3, 1000095, 0, 0),
  704. (168, 95, 2124, 'Tall wooden dining chair', 250, 1369.57, -2136.19, 1050.39, 0, 0, 179.888, 3, 1000095, 0, 0),
  705. (169, 95, 2124, 'Tall wooden dining chair', 250, 1372.62, -2136.12, 1050.4, 0, 0, -0.695, 3, 1000095, 0, 0),
  706. (170, 105, 1491, 'Wooden push door #1', 100, 1300.55, -783.457, 1083.01, 0, 0, 1.068, 5, 1000105, 0, 0),
  707. (171, 105, 1491, 'Wooden push door #1', 100, 1303.59, -783.479, 1083.02, 0, 0, 178.598, 5, 1000105, 0, 0),
  708. (177, 100, 19388, 'wall036', 100, 1315.03, -169.711, 1088.81, 0, 0, 90.076, 5, 1000100, 0, 0),
  709. (178, 100, 19358, 'wall006', 100, 1318.13, -169.716, 1088.81, 0, 0, 89.78, 5, 1000100, 0, 0),
  710. (179, 100, 19358, 'wall006', 100, 1311.85, -169.746, 1088.81, 0, 0, 91, 5, 1000100, 0, 0),
  711. (180, 100, 19358, 'wall006', 100, 1310.92, -171.444, 1088.82, 0.2, 0, -179.799, 5, 1000100, 0, 0),
  712. (181, 100, 19358, 'wall006', 100, 1310.95, -174.646, 1088.83, 0.3, 0, -179.119, 5, 1000100, 0, 0),
  713. (182, 100, 19358, 'wall006', 100, 1310.98, -177.469, 1088.83, 0, 0, -179.546, 5, 1000100, 0, 0),
  714. (183, 100, 19358, 'wall006', 100, 1319.1, -171.023, 1088.81, 0.0000000298, 0, 0.203, 5, 1000100, 0, 0),
  715. (184, 100, 19358, 'wall006', 100, 1319.06, -174.188, 1088.82, -0.2, 0, 0.009, 5, 1000100, 0, 0),
  716. (185, 100, 19358, 'wall006', 100, 1319.04, -177.385, 1088.83, 0, 0.7, 179.936, 5, 1000100, 0, 0),
  717. (186, 100, 19404, 'wall052', 100, 1315.86, -171.205, 1088.77, -0.1, -0.1, 0.903, 5, 1000100, 0, 0),
  718. (188, 100, 1649, 'Breakable window', 75, 1315.86, -171.228, 1088.69, 0.2, -90.2, -88.575, 5, 1000100, 0, 0),
  719. (190, 103, 1792, 'Flat screen TV', 400, 1311.76, -170.483, 1088.32, 0, 0, 93.948, 5, 1000103, 0, 0),
  720. (191, 100, 2558, 'Blue curtains', 50, 1315.42, -170.765, 1088.24, 0, 0, -88.411, 5, 1000100, 0, 0),
  721. (192, 100, 2008, 'Computer desk', 1000, 1316.43, -171.31, 1087.07, 0, 0, 90.459, 5, 1000100, 0, 0),
  722. (193, 100, 2776, 'Round black chair', 250, 1317.61, -170.396, 1087.56, 0, 0, -89.685, 5, 1000100, 0, 0),
  723. (194, 100, 11717, 'Red couch', 750, 1318.63, -171.658, 1087.14, 0, -0.4, -91.615, 5, 1000100, 0, 0),
  724. (195, 100, 2255, 'Erotic frame', 100, 1318.52, -171.642, 1089.07, 0, -0.2, -90.47, 5, 1000100, 0, 0),
  725. (196, 100, 630, 'Palm plant #5', 100, 1318.53, -170.258, 1088.07, 0, 0, 202.136, 5, 1000100, 0, 0),
  726. (197, 100, 1665, 'Ashtray with cigar', 50, 1316.61, -170.906, 1087.92, 0, 0, 190.471, 5, 1000100, 0, 0),
  727. (198, 100, 2854, 'Scattered books', 50, 1316.26, -171.385, 1087.88, 0, 0, 88.424, 5, 1000100, 0, 0),
  728. (199, 100, 11706, 'Wastebin', 50, 1316.31, -172.294, 1087.06, 0, 1.7, 89.721, 5, 1000100, 0, 0),
  729. (201, 100, 19388, 'wall036', 100, 1317.4, -172.841, 1088.77, 0, 0, 88.989, 5, 1000100, 0, 0),
  730. (202, 100, 1569, 'Office door #2', 100, 1316.63, -172.836, 1087.07, -0.3, 0, -0.953, 5, 1000100, 0, 1),
  731. (203, 100, 1723, 'Long black sofa', 750, 1318.47, -174.233, 1087.04, -0.1, -0.2, -89.775, 5, 1000100, 0, 0),
  732. (204, 100, 631, 'Palm plant #6', 100, 1318.34, -173.433, 1087.94, 0, 0, 265.085, 5, 1000100, 0, 0),
  733. (205, 100, 1775, 'Sprunk machine', 1000, 1318.49, -177.376, 1088.17, 0, 0, -91.889, 5, 1000100, 0, 0),
  734. (206, 100, 1557, 'Office door #4', 100, 1314.25, -169.631, 1087.06, 0, 0, -88.331, 5, 1000100, 1, 0),
  735. (208, 100, 19388, 'wall036', 100, 1315.04, -179.053, 1088.81, -0.1, 0.1, -89.969, 5, 1000100, 0, 0),
  736. (209, 95, 946, 'Basketball court', 50, 1357.29, -2143.78, 1051.03, 0, 0, -92.516, 3, 1000095, 0, 0),
  737. (210, 95, 2114, 'Basketball', 50, 1360.47, -2143.45, 1049.85, 0, 0, 101.971, 3, 1000095, 0, 0),
  738. (211, 100, 19404, 'wall052', 100, 1317.73, -179.047, 1088.8, 0.4, 0, 90.349, 5, 1000100, 0, 0),
  739. (212, 95, 2114, 'Basketball', 50, 1359.62, -2143.56, 1051.05, 0, 0, 110.319, 3, 1000095, 0, 0),
  740. (213, 95, 2114, 'Basketball', 50, 1358.67, -2143.72, 1051.87, 0, 0, 176.746, 3, 1000095, 0, 0),
  741. (214, 95, 2114, 'Basketball', 50, 1357.84, -2143.86, 1051.96, 0, 0, 240.112, 3, 1000095, 0, 0),
  742. (215, 100, 1557, 'Office door #4', 100, 1315.82, -179.074, 1087.07, 0, 0, -179.995, 5, 1000100, 0, 0),
  743. (216, 100, 1649, 'Breakable window', 75, 1318.83, -179.067, 1089.08, 0.7, 0, -179.869, 5, 1000100, 0, 0),
  744. (217, 95, 2519, 'Bathtub', 500, 1359.04, -2136.76, 1049.97, 0, 0, 1.077, 3, 1000095, 0, 0),
  745. (218, 100, 2558, 'Blue curtains', 50, 1318.27, -178.614, 1088.31, 0, 0, -179.362, 5, 1000100, 0, 0),
  746. (219, 100, 19450, 'wall090', 100, 1319.03, -183.949, 1088.79, 0, 0, 0.006, 5, 1000100, 0, 0),
  747. (220, 79, 2514, 'Toilet', 250, 1357.22, -2139.58, 1049.78, 0, 0, 145.984, 3, 1000079, 0, 0),
  748. (221, 79, 2301, 'Pink & blue striped bed', 500, 1365.33, -2132.64, 1049.55, 0, 0, 15.764, 3, 1000079, 0, 0),
  749. (223, 100, 19450, 'wall090', 100, 1310.91, -184.452, 1088.81, 0, 0, -179.856, 5, 1000100, 0, 0),
  750. (225, 100, 19462, 'wall102', 100, 1314.16, -185.891, 1087.05, 0, -90.3, -89.934, 5, 1000100, 0, 0),
  751. (226, 100, 19462, 'wall102', 100, 1314.14, -182.441, 1087.04, 0.0000005364, 89.9, -89.899, 5, 1000100, 0, 0),
  752. (227, 100, 19462, 'wall102', 100, 1315.55, -180.79, 1087.04, 0.0000007153, 89.9, -92.674, 5, 1000100, 0, 0),
  753. (228, 100, 19358, 'wall006', 100, 1317.33, -187.706, 1088.8, 0, 0, -89.269, 5, 1000100, 0, 0),
  754. (229, 100, 19358, 'wall006', 100, 1314.14, -187.742, 1088.79, 0, 0, -90.022, 5, 1000100, 0, 0),
  755. (230, 100, 19358, 'wall006', 100, 1312.41, -187.748, 1088.79, 0.9, -0.3, 89.184, 5, 1000100, 0, 0),
  756. (231, 100, 19358, 'wall006', 100, 1312.6, -179.56, 1088.81, 0, 0, 90.073, 5, 1000100, 0, 0),
  757. (233, 100, 19358, 'wall006', 100, 1312.69, -178.847, 1088.83, 0, 0, -90.269, 5, 1000100, 0, 0),
  758. (234, 100, 19805, 'Writing board', 50, 1318.89, -183.691, 1089.13, 0, 0, 89.986, 5, 1000100, 0, 0),
  759. (235, 100, 2185, 'Plain wooden office desk', 1000, 1317.09, -187.182, 1087.14, 0, 0, 0.557, 5, 1000100, 0, 0),
  760. (236, 77, 14720, 'Whole kitchen', 3000, 834.907, -1028.07, 799.01, 0.5, 0, 2.614, 3, 1000077, 0, 0),
  761. (237, 77, 2135, 'Wood kitchen stove', 500, 839.974, -1028.94, 798.994, 0, 0, 181.298, 3, 1000077, 0, 0),
  762. (238, 100, 1723, 'Long black sofa', 750, 1311.48, -182.131, 1087.09, 0, 0, 89.776, 5, 1000100, 0, 0),
  763. (239, 77, 2131, 'White kitchen fridge', 500, 835.005, -1026.04, 798.981, 0, 0.5, 90.511, 3, 1000077, 0, 0),
  764. (240, 100, 1723, 'Long black sofa', 750, 1311.52, -187.224, 1087.06, 0, 0, 90.635, 5, 1000100, 0, 0),
  765. (241, 96, 2949, 'Security door', 100, 2197.27, -1125.86, 1127.79, 0, 0, -90.332, 11, 1000096, 1, 0),
  766. (242, 110, 1569, 'Office door #2', 100, 1225.03, -814.047, 1083, 1.2, 0, -0.375, 5, 1000110, 0, 0),
  767. (243, 110, 1569, 'Office door #2', 100, 1228.02, -814.072, 1083, -1.4, 0, 179.151, 5, 1000110, 0, 0),
  768. (244, 110, 1569, 'Office door #2', 100, 1240.35, -812.277, 1083, 0, 0, 269.493, 5, 1000110, 0, 0),
  769. (245, 110, 1569, 'Office door #2', 100, 1240.34, -812.279, 1083.02, 0, 0, 90.831, 5, 1000110, 0, 0);
  770. -- --------------------------------------------------------
  771. --
  772. -- Table structure for table `gangranks`
  773. --
  774. CREATE TABLE IF NOT EXISTS `gangranks` (
  775. `id` tinyint(2) DEFAULT NULL,
  776. `rank` tinyint(2) DEFAULT NULL,
  777. `name` varchar(32) DEFAULT NULL
  778. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  779. --
  780. -- Dumping data for table `gangranks`
  781. --
  782. INSERT INTO `gangranks` (`id`, `rank`, `name`) VALUES
  783. (0, 0, 'Recruit'),
  784. (0, 1, 'Employee'),
  785. (0, 6, 'General'),
  786. (0, 5, 'L.T General'),
  787. (0, 4, 'Mayor'),
  788. (0, 3, 'Captain'),
  789. (2, 6, 'King'),
  790. (2, 5, 'Shotcalla'),
  791. (2, 4, 'Original Gangster'),
  792. (2, 3, 'Gangster'),
  793. (2, 0, 'Outsider'),
  794. (2, 1, 'New Blood'),
  795. (2, 2, 'Soldier'),
  796. (1, 6, 'El Jefe'),
  797. (1, 5, 'El Commandanté'),
  798. (1, 3, 'Soldado'),
  799. (1, 4, 'Vato El Carnal'),
  800. (1, 1, 'Bandito'),
  801. (1, 2, 'Obrero'),
  802. (1, 0, 'Pinche puto'),
  803. (3, 6, 'Big Gucci'),
  804. (3, 1, 'Outsider'),
  805. (3, 5, 'Gucci'),
  806. (3, 2, 'Lil'' Homie'),
  807. (3, 3, 'Triggerman'),
  808. (3, 4, 'Original Gangsta'''),
  809. (3, 0, 'Busta');
  810. -- --------------------------------------------------------
  811. --
  812. -- Table structure for table `gangs`
  813. --
  814. CREATE TABLE IF NOT EXISTS `gangs` (
  815. `id` tinyint(2) DEFAULT NULL,
  816. `name` varchar(32) DEFAULT 'None',
  817. `motd` varchar(128) DEFAULT 'None',
  818. `leader` varchar(24) DEFAULT 'No-one',
  819. `color` int(10) DEFAULT '-256',
  820. `strikes` tinyint(1) DEFAULT '0',
  821. `level` tinyint(2) DEFAULT '1',
  822. `points` int(10) DEFAULT '0',
  823. `turftokens` int(10) DEFAULT '0',
  824. `stash_x` float DEFAULT '0',
  825. `stash_y` float DEFAULT '0',
  826. `stash_z` float DEFAULT '0',
  827. `stashinterior` tinyint(2) DEFAULT '0',
  828. `stashworld` int(10) DEFAULT '0',
  829. `cash` int(10) DEFAULT '0',
  830. `materials` int(10) DEFAULT '0',
  831. `weed` int(10) DEFAULT '0',
  832. `cocaine` int(10) DEFAULT '0',
  833. `meth` int(10) DEFAULT '0',
  834. `painkillers` int(10) DEFAULT '0',
  835. `pistolammo` int(10) DEFAULT '0',
  836. `shotgunammo` int(10) DEFAULT '0',
  837. `smgammo` int(10) DEFAULT '0',
  838. `arammo` int(10) DEFAULT '0',
  839. `rifleammo` int(10) DEFAULT '0',
  840. `hpammo` int(10) DEFAULT '0',
  841. `poisonammo` int(10) DEFAULT '0',
  842. `fmjammo` int(10) DEFAULT '0',
  843. `weapon_9mm` int(10) DEFAULT '0',
  844. `weapon_sdpistol` int(10) DEFAULT '0',
  845. `weapon_deagle` int(10) DEFAULT '0',
  846. `weapon_shotgun` int(10) DEFAULT '0',
  847. `weapon_spas12` int(10) DEFAULT '0',
  848. `weapon_sawnoff` int(10) DEFAULT '0',
  849. `weapon_tec9` int(10) DEFAULT '0',
  850. `weapon_uzi` int(10) DEFAULT '0',
  851. `weapon_mp5` int(10) DEFAULT '0',
  852. `weapon_ak47` int(10) DEFAULT '0',
  853. `weapon_m4` int(10) DEFAULT '0',
  854. `weapon_rifle` int(10) DEFAULT '0',
  855. `weapon_sniper` int(10) DEFAULT '0',
  856. `weapon_molotov` int(10) DEFAULT '0',
  857. `armsdealer` tinyint(1) DEFAULT '0',
  858. `drugdealer` tinyint(1) DEFAULT '0',
  859. `arms_x` float DEFAULT '0',
  860. `arms_y` float DEFAULT '0',
  861. `arms_z` float DEFAULT '0',
  862. `arms_a` float DEFAULT '0',
  863. `drug_x` float DEFAULT '0',
  864. `drug_y` float DEFAULT '0',
  865. `drug_z` float DEFAULT '0',
  866. `drug_a` float DEFAULT '0',
  867. `armsworld` int(10) DEFAULT '0',
  868. `drugworld` int(10) DEFAULT '0',
  869. `drugweed` int(10) DEFAULT '0',
  870. `drugcocaine` int(10) DEFAULT '0',
  871. `drugmeth` int(10) DEFAULT '0',
  872. `armsmaterials` int(10) DEFAULT '0',
  873. `armsprice_1` int(10) DEFAULT '0',
  874. `armsprice_2` int(10) DEFAULT '0',
  875. `armsprice_3` int(10) DEFAULT '0',
  876. `armsprice_4` int(10) DEFAULT '0',
  877. `armsprice_5` int(10) DEFAULT '0',
  878. `armsprice_6` int(10) DEFAULT '0',
  879. `armsprice_7` int(10) DEFAULT '0',
  880. `armsprice_8` int(10) DEFAULT '0',
  881. `weed_price` int(10) DEFAULT '0',
  882. `cocaine_price` int(10) DEFAULT '0',
  883. `meth_price` int(10) DEFAULT '0'
  884. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  885. --
  886. -- Dumping data for table `gangs`
  887. --
  888. INSERT INTO `gangs` (`id`, `name`, `motd`, `leader`, `color`, `strikes`, `level`, `points`, `turftokens`, `stash_x`, `stash_y`, `stash_z`, `stashinterior`, `stashworld`, `cash`, `materials`, `weed`, `cocaine`, `meth`, `painkillers`, `pistolammo`, `shotgunammo`, `smgammo`, `arammo`, `rifleammo`, `hpammo`, `poisonammo`, `fmjammo`, `weapon_9mm`, `weapon_sdpistol`, `weapon_deagle`, `weapon_shotgun`, `weapon_spas12`, `weapon_sawnoff`, `weapon_tec9`, `weapon_uzi`, `weapon_mp5`, `weapon_ak47`, `weapon_m4`, `weapon_rifle`, `weapon_sniper`, `weapon_molotov`, `armsdealer`, `drugdealer`, `arms_x`, `arms_y`, `arms_z`, `arms_a`, `drug_x`, `drug_y`, `drug_z`, `drug_a`, `armsworld`, `drugworld`, `drugweed`, `drugcocaine`, `drugmeth`, `armsmaterials`, `armsprice_1`, `armsprice_2`, `armsprice_3`, `armsprice_4`, `armsprice_5`, `armsprice_6`, `armsprice_7`, `armsprice_8`, `weed_price`, `cocaine_price`, `meth_price`) VALUES
  889. (0, 'Amphibia Corporation', 'None', 'Asykon_Amphibia', -872415232, 0, 1, 607, 3, 1761.99, -1342.24, 15.758, 0, 0, 297613, 350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 0, 1, 0, 7, -38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  890. (1, 'Los Santos Rifa', 'Dont spend turf tokens unless spoken 2 max!', 'Max_Mabbitt', 872414976, 0, 1, 233, 2, 2552.47, -1295.87, 1060.98, 2, 4000032, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 10, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  891. (2, 'Grove Street Families', 'None', 'Lazlow_VRock', 862322688, 0, 1, 272, 3, 2495.73, -1710.13, 1014.74, 3, 4000016, 27650, 155, 100, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, -63, 0, 2, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  892. (3, 'Black Disciples', 'None', 'Derek Gucci Sosa', -1724645632, 0, 1, 193, 3, 2453.64, -1706.64, 1013.51, 2, 4000039, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
  893. -- --------------------------------------------------------
  894. --
  895. -- Table structure for table `gangskins`
  896. --
  897. CREATE TABLE IF NOT EXISTS `gangskins` (
  898. `id` tinyint(2) DEFAULT NULL,
  899. `slot` tinyint(2) DEFAULT NULL,
  900. `skinid` smallint(3) DEFAULT NULL
  901. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  902. --
  903. -- Dumping data for table `gangskins`
  904. --
  905. INSERT INTO `gangskins` (`id`, `slot`, `skinid`) VALUES
  906. (0, 0, 294),
  907. (0, 1, 171),
  908. (0, 2, 240),
  909. (0, 3, 120),
  910. (0, 4, 186),
  911. (0, 5, 17),
  912. (0, 6, 172),
  913. (0, 7, 211),
  914. (1, 0, 114),
  915. (1, 1, 115),
  916. (1, 2, 116),
  917. (1, 3, 173),
  918. (1, 4, 174),
  919. (1, 5, 175),
  920. (2, 0, 270),
  921. (2, 1, 271),
  922. (2, 2, 269),
  923. (2, 3, 105),
  924. (2, 4, 106),
  925. (2, 5, 107),
  926. (2, 6, 195),
  927. (3, 0, 102),
  928. (3, 1, 103),
  929. (3, 2, 104),
  930. (3, 3, 296),
  931. (3, 4, 13);
  932. -- --------------------------------------------------------
  933. --
  934. -- Table structure for table `garages`
  935. --
  936. CREATE TABLE IF NOT EXISTS `garages` (
  937. `id` int(10) NOT NULL,
  938. `ownerid` int(10) DEFAULT '0',
  939. `owner` varchar(24) DEFAULT NULL,
  940. `type` tinyint(1) DEFAULT '0',
  941. `price` int(10) DEFAULT '0',
  942. `locked` tinyint(1) DEFAULT '0',
  943. `timestamp` int(10) DEFAULT '0',
  944. `pos_x` float DEFAULT '0',
  945. `pos_y` float DEFAULT '0',
  946. `pos_z` float DEFAULT '0',
  947. `pos_a` float DEFAULT '0',
  948. `exit_x` float DEFAULT '0',
  949. `exit_y` float DEFAULT '0',
  950. `exit_z` float DEFAULT '0',
  951. `exit_a` float DEFAULT '0',
  952. `world` int(10) DEFAULT '0'
  953. ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
  954. --
  955. -- Dumping data for table `garages`
  956. --
  957. INSERT INTO `garages` (`id`, `ownerid`, `owner`, `type`, `price`, `locked`, `timestamp`, `pos_x`, `pos_y`, `pos_z`, `pos_a`, `exit_x`, `exit_y`, `exit_z`, `exit_a`, `world`) VALUES
  958. (17, 2, 'Tyler_Huntley', 2, 200000, 0, 1482283718, 1519.6, -694.546, 94.75, 267.534, 1516.6, -694.417, 94.75, 87.534, 2000017),
  959. (18, 2, 'Tyler_Huntley', 2, 200000, 0, 1482377278, 1519.73, -688.797, 94.75, 266.076, 1516.74, -688.592, 94.75, 86.076, 2000018);
  960. -- --------------------------------------------------------
  961. --
  962. -- Table structure for table `houses`
  963. --
  964. CREATE TABLE IF NOT EXISTS `houses` (
  965. `id` int(10) NOT NULL,
  966. `ownerid` int(10) DEFAULT '0',
  967. `owner` varchar(24) DEFAULT 'Nobody',
  968. `type` tinyint(2) DEFAULT '0',
  969. `price` int(10) DEFAULT '0',
  970. `rentprice` int(10) DEFAULT '0',
  971. `level` tinyint(2) DEFAULT '0',
  972. `locked` tinyint(1) DEFAULT '0',
  973. `timestamp` int(10) DEFAULT '0',
  974. `pos_x` float DEFAULT '0',
  975. `pos_y` float DEFAULT '0',
  976. `pos_z` float DEFAULT '0',
  977. `pos_a` float DEFAULT '0',
  978. `int_x` float DEFAULT '0',
  979. `int_y` float DEFAULT '0',
  980. `int_z` float DEFAULT '0',
  981. `int_a` float DEFAULT '0',
  982. `interior` tinyint(2) DEFAULT '0',
  983. `world` int(10) DEFAULT '0',
  984. `outsideint` int(10) DEFAULT '0',
  985. `outsidevw` int(10) DEFAULT '0',
  986. `cash` int(10) DEFAULT '0',
  987. `materials` int(10) DEFAULT '0',
  988. `weed` int(10) DEFAULT '0',
  989. `cocaine` int(10) DEFAULT '0',
  990. `meth` int(10) DEFAULT '0',
  991. `painkillers` int(10) DEFAULT '0',
  992. `weapon_1` tinyint(2) DEFAULT '0',
  993. `weapon_2` tinyint(2) DEFAULT '0',
  994. `weapon_3` tinyint(2) DEFAULT '0',
  995. `weapon_4` tinyint(2) DEFAULT '0',
  996. `weapon_5` tinyint(2) DEFAULT '0',
  997. `weapon_6` tinyint(2) DEFAULT '0',
  998. `weapon_7` tinyint(2) DEFAULT '0',
  999. `weapon_8` tinyint(2) DEFAULT '0',
  1000. `weapon_9` tinyint(2) DEFAULT '0',
  1001. `weapon_10` tinyint(2) DEFAULT '0',
  1002. `ammo_1` smallint(5) DEFAULT '0',
  1003. `ammo_2` smallint(5) DEFAULT '0',
  1004. `ammo_3` smallint(5) DEFAULT '0',
  1005. `ammo_4` smallint(5) DEFAULT '0',
  1006. `ammo_5` smallint(5) DEFAULT '0',
  1007. `ammo_6` tinyint(2) DEFAULT '0',
  1008. `ammo_7` tinyint(2) DEFAULT '0',
  1009. `ammo_8` tinyint(2) DEFAULT '0',
  1010. `ammo_9` tinyint(2) DEFAULT '0',
  1011. `ammo_10` tinyint(2) DEFAULT '0',
  1012. `pistolammo` smallint(5) DEFAULT '0',
  1013. `shotgunammo` smallint(5) DEFAULT '0',
  1014. `smgammo` smallint(5) DEFAULT '0',
  1015. `arammo` smallint(5) DEFAULT '0',
  1016. `rifleammo` smallint(5) DEFAULT '0',
  1017. `hpammo` smallint(5) DEFAULT '0',
  1018. `poisonammo` smallint(5) DEFAULT '0',
  1019. `fmjammo` smallint(5) DEFAULT '0'
  1020. ) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=latin1;
  1021. --
  1022. -- Dumping data for table `houses`
  1023. --
  1024. INSERT INTO `houses` (`id`, `ownerid`, `owner`, `type`, `price`, `rentprice`, `level`, `locked`, `timestamp`, `pos_x`, `pos_y`, `pos_z`, `pos_a`, `int_x`, `int_y`, `int_z`, `int_a`, `interior`, `world`, `outsideint`, `outsidevw`, `cash`, `materials`, `weed`, `cocaine`, `meth`, `painkillers`, `weapon_1`, `weapon_2`, `weapon_3`, `weapon_4`, `weapon_5`, `weapon_6`, `weapon_7`, `weapon_8`, `weapon_9`, `weapon_10`, `ammo_1`, `ammo_2`, `ammo_3`, `ammo_4`, `ammo_5`, `ammo_6`, `ammo_7`, `ammo_8`, `ammo_9`, `ammo_10`, `pistolammo`, `shotgunammo`, `smgammo`, `arammo`, `rifleammo`, `hpammo`, `poisonammo`, `fmjammo`) VALUES
  1025. (63, 8, 'Dann_Lazlow', 18, 1000000, 0, 5, 0, 1482355696, 1298.56, -798.331, 84.141, 358.621, 1298.87, -796.205, 1084.01, 0, 5, 1000063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1026. (64, 2, 'Tyler_Huntley', 18, 1000000, 0, 0, 0, 1482377191, 1497.08, -688.641, 95.329, 179.362, 1298.87, -796.205, 1084.01, 0, 5, 1000064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1027. (65, 12, 'Lui_Mendez', 0, 25000, 0, 0, 0, 1482374979, 2015.35, -1732.53, 14.234, 86.428, 244.2, 305.068, 999.148, 270.219, 1, 1000065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1028. (66, 48, 'Pastor_Lee', 1, 40000, 0, 0, 0, 1482290008, 2016.2, -1716.94, 14.125, 93.948, 1434.08, -1832.79, 1313.56, 270, 2, 1000066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1029. (67, 48, 'Pastor_Lee', 2, 50000, 0, 0, 0, 1482297925, 2018.24, -1703.21, 14.234, 89.875, 2259.76, -1135.88, 1050.63, 270, 10, 1000067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1030. (68, 311, 'Lenzel_Vincre', 9, 150000, 500, 0, 0, 1482378764, 1980.38, -1718.92, 17.03, -79.617, 1363.76, -2145.7, 1050.59, 0, 3, 1000068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1031. (69, 111, 'manqobas_pearl', 4, 75000, 0, 0, 0, 1482380305, 1973.37, -1705.14, 15.969, -177.088, 2233.65, -1114.78, 1050.88, 0, 5, 1000069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1032. (70, 267, 'Wiz_Khalifa', 6, 100000, 0, 0, 1, 1482378117, 1969.33, -1705.14, 15.969, -177.088, 1178.34, -419.083, 1234.7, 180, 9, 1000070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1033. (71, 16, 'Walter_Cash', 12, 200000, 250, 0, 0, 1482374553, 1980.99, -1682.95, 17.054, -90.92, 2269.91, -1210.5, 1047.56, 90, 10, 1000071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1034. (72, 9, 'Tori_Chester', 14, 69, 500, 0, 0, 1482356351, 1331.97, -632.952, 109.135, 23.029, 2324.39, -1148.88, 1050.71, 0, 12, 1000072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1035. (73, 48, 'Pastor_Lee', 2, 50000, 20, 0, 0, 1482289768, 2498.4, -1642.25, 14.113, 171.153, 2259.76, -1135.88, 1050.63, 270, 10, 1000073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1036. (74, 48, 'Pastor_Lee', 4, 75000, 50, 0, 0, 1482289514, 2486.64, -1644.57, 14.077, -176, 2233.65, -1114.78, 1050.88, 0, 5, 1000074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1037. (75, 48, 'Pastor_lee', 11, 175000, 75, 0, 0, 1482368981, 2459.61, -1691.66, 13.543, -3.375, 2184.1, -1130.39, 1128.77, 270, 11, 1000075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1038. (76, 249, 'Edward_Vincre', 7, 100000, 100, 0, 0, 1482390895, 2067.82, -1731.7, 13.876, 82.272, 828.632, -1014, 799.966, 270, 3, 1000076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1039. (77, 64, 'Bench_Freeman', 7, 100000, 0, 0, 0, 1482392387, 1906.03, -1112.79, 26.664, 182.64, 828.632, -1014, 799.966, 270, 3, 1000077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1040. (79, 56, 'Andrea_Brianna', 9, 150000, 0, 0, 1, 1482388408, 1939.12, -1114.59, 27.452, 173.18, 1363.76, -2145.7, 1050.59, 0, 3, 1000079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1041. (80, 293, 'Asyton_Vincre', 4, 75000, 0, 0, 1, 1482320282, 1886.12, -1113.74, 26.276, 88.248, 2233.65, -1114.78, 1050.88, 0, 5, 1000080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1042. (81, 300, 'Olivia_Beckett', 8, 125000, 1000, 0, 1, 1482330075, 2022.87, -1120.32, 26.421, 0.61, 1320.11, -167.617, 1088.07, 90, 5, 1000081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1043. (82, 63, 'Ray_Bronx', 9, 150000, 0, 0, 0, 1482524612, 2092.14, -1166.5, 26.586, 83.126, 1363.76, -2145.7, 1050.59, 0, 3, 1000082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1044. (83, 176, 'Olly_Bronx', 9, 150000, 0, 0, 0, 1482524613, 2095.11, -1145.27, 26.593, -88.473, 1363.76, -2145.7, 1050.59, 0, 3, 1000083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1045. (84, 111, 'Manqobas_Pearl', 6, 100000, 50, 0, 0, 1482365815, 2514.25, -1691.54, 14.046, -133.815, 1178.34, -419.083, 1234.7, 180, 9, 1000084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1046. (85, 23, 'Jason_Gucci_Sosa', 12, 200000, 0, 0, 0, 1482375841, 2524.6, -1658.64, 15.824, 82.657, 2269.91, -1210.5, 1047.56, 90, 10, 1000085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1047. (86, 111, 'Manqobas_Pearl', 7, 100000, 50, 0, 0, 1482365308, 2513.6, -1650.42, 14.356, -46.221, 828.632, -1014, 799.966, 270, 3, 1000086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1048. (87, 32, 'Curtis_Leaf', 12, 200000, 100, 0, 0, 1482516555, 2065.21, -1703.55, 14.148, 96.447, 2269.91, -1210.5, 1047.56, 90, 10, 1000087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1049. (88, 253, 'Xavi_Hawk', 8, 125000, 0, 0, 1, 1482383782, 2066.35, -1717.15, 14.136, 87.215, 1320.11, -167.617, 1088.07, 90, 5, 1000088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1050. (89, 216, 'Frank_Temple', 6, 100000, 0, 0, 1, 1482377790, 1851.82, -2070.35, 15.481, 176.561, 1178.34, -419.083, 1234.7, 180, 9, 1000089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1051. (90, 0, 'Nobody', 14, 250000, 0, 0, 0, 0, 1895.53, -2068.81, 15.669, 175.698, 2324.39, -1148.88, 1050.71, 0, 12, 1000090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1052. (91, 295, 'Jang_Ozbourne', 9, 150000, 0, 0, 0, 1482387333, 1873.56, -2070.5, 15.497, 176.644, 1363.76, -2145.7, 1050.59, 0, 3, 1000091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1053. (92, 324, 'Johnny_Bravo', 4, 75000, 0, 0, 1, 1482525532, 767.976, -1655.78, 5.609, -96.64, 2233.65, -1114.78, 1050.88, 0, 5, 1000092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1054. (93, 57, 'christopher_leaf', 10, 175000, 50, 0, 0, 1482350561, 766.817, -1605.78, 13.804, -89.341, 2654.45, -1023.78, 929.927, 180, 5, 1000093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1055. (94, 73, 'Cynthia_Tucker', 3, 50000, 100, 0, 1, 1482524638, 692.995, -1602.67, 15.047, 176.916, 2008.83, -1698.85, 1165.7, 90, 8, 1000094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1056. (95, 254, 'Diego_Honda', 9, 150000, 9999, 1, 1, 1482390975, 653.492, -1714.01, 14.765, -90.893, 1363.76, -2145.7, 1050.59, 0, 3, 1000095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1057. (96, 113, 'Michael_Render', 11, 25000, 100, 1, 0, 1482533094, 657.125, -1652.66, 15.406, -90.794, 2184.1, -1130.39, 1128.77, 270, 11, 1000096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1058. (97, 32, 'Curtis_Leaf', 3, 50000, 50, 0, 0, 1482355269, 655.856, -1635.95, 15.862, -33.617, 2008.83, -1698.85, 1165.7, 90, 8, 1000097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1059. (98, 258, 'Pavlos_Honda', 7, 100000, 0, 0, 1, 1482333274, 2067.67, -1643.73, 14.136, 87.507, 828.632, -1014, 799.966, 270, 3, 1000098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1060. (99, 329, 'Batchi_Honda', 7, 100000, 0, 0, 1, 1482368426, 2066.84, -1656.61, 14.133, 86.683, 828.632, -1014, 799.966, 270, 3, 1000099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1061. (100, 301, 'John_Ozbourne', 8, 125000, 10000, 1, 1, 1482390242, 2067.8, -1628.93, 14.207, 96.353, 1320.11, -167.617, 1088.07, 90, 5, 1000100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1062. (101, 269, 'Amado_Honda', 6, 100000, 3000, 0, 1, 1482388218, 2013.47, -1656.27, 14.136, -90.843, 1178.34, -419.083, 1234.7, 180, 9, 1000101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1063. (102, 289, 'David_S_Schneider', 5, 75000, 1000, 0, 0, 1482373993, 2017.95, -1629.88, 14.043, -91.441, 2217.98, -1076.25, 1050.48, 90, 1, 1000102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1064. (103, 199, 'Mike_Wrzosek', 8, 125000, 0, 0, 0, 1482381242, 2016.04, -1641.67, 13.782, -83.747, 1320.11, -167.617, 1088.07, 90, 5, 1000103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1065. (104, 141, 'James_Maple', 12, 200000, 0, 0, 0, 1482321881, 1653.94, -1655.2, 22.516, -179.82, 2269.91, -1210.5, 1047.56, 90, 10, 1000104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1066. (105, 15, 'Tay_Forbes', 18, 1000000, 0, 5, 0, 1482526151, 1310.13, -1366.8, 13.506, 176.583, 1298.87, -796.205, 1084.01, 0, 5, 1000105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1067. (106, 144, 'Lrizz_Devil', 18, 500000, 0, 0, 0, 1482369410, 315.862, -1769.43, 4.622, 359.044, 1260.94, -785.656, 1091.91, 264.095, 5, 1000106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1068. (108, 33, 'Jonathan_Fabbrie', 18, 1000000, 0, 5, 0, 1482535469, 1286.8, -1349.86, 13.57, 92.828, 1298.87, -796.205, 1084.01, 0, 5, 1000108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1069. (109, 10, 'Franklyn_Menace', 12, 75000, 0, 5, 0, 1482380151, 1142.12, -1092.97, 28.188, 87.589, 2269.91, -1210.5, 1047.56, 90, 10, 1000109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  1070. (110, 81, 'Tommy_Gates', 17, 2000000, 0, 5, 0, 1482532915, 2190.47, -1487.74, 26.105, 268.02, 925.01, -496.81, 843.895, 90, 7, 1000110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
  1071. -- --------------------------------------------------------
  1072. --
  1073. -- Table structure for table `kills`
  1074. --
  1075. CREATE TABLE IF NOT EXISTS `kills` (
  1076. `id` int(10) NOT NULL,
  1077. `killer_uid` int(10) DEFAULT NULL,
  1078. `target_uid` int(10) DEFAULT NULL,
  1079. `killer` varchar(24) DEFAULT NULL,
  1080. `target` varchar(24) DEFAULT NULL,
  1081. `reason` varchar(24) DEFAULT NULL,
  1082. `date` datetime DEFAULT NULL
  1083. ) ENGINE=InnoDB AUTO_INCREMENT=782 DEFAULT CHARSET=latin1;
  1084. --
  1085. -- Dumping data for table `kills`
  1086. --
  1087. INSERT INTO `kills` (`id`, `killer_uid`, `target_uid`, `killer`, `target`, `reason`, `date`) VALUES
  1088. (1, 4, 1, 'Jamal_Burrows', 'Josh_Einstein', 'Rifle', '2016-12-20 11:47:04'),
  1089. (2, 4, 1, 'Jamal_Burrows', 'Josh_Einstein', 'Sniper Rifle', '2016-12-20 11:49:38'),
  1090. (3, 4, 13, 'Jamal_Burrows', 'Talos', 'Fists', '2016-12-20 11:56:08'),
  1091. (4, 20, 71, 'Dion_Gucci_Sosa', 'Jeyo_Wazowski', 'Shotgun', '2016-12-20 12:30:54'),
  1092. (5, 43, 71, 'Denzel_Freeman', 'Jeyo_Wazowski', 'Fists', '2016-12-20 12:32:04'),
  1093. (6, 20, 67, 'Dion_Gucci_Sosa', 'Muhammed_Zee', 'Shotgun', '2016-12-20 12:34:15'),
  1094. (7, 17, 71, 'Derek_Gucci_Sosa', 'Jeyo_Wazowski', 'Fists', '2016-12-20 12:41:11'),
  1095. (8, 20, 77, 'Dion_Gucci_Sosa', 'Joga_Hernandez', 'Shotgun', '2016-12-20 12:44:03'),
  1096. (9, 71, 20, 'Jeyo_Wazowski', 'Dion_Gucci_Sosa', 'Fists', '2016-12-20 12:46:18'),
  1097. (10, 38, 20, 'Mikey_Mongool', 'Dion_Gucci_Sosa', 'Fists', '2016-12-20 12:46:37'),
  1098. (11, 71, 82, 'Jeyo_Wazowski', 'Ibrahim_Mason', 'Fists', '2016-12-20 12:48:43'),
  1099. (12, 41, 84, 'Mystogan_Moons', 'Pablo_Ericson', 'Fists', '2016-12-20 12:49:32'),
  1100. (13, 83, 90, 'Rodrigo_Dusmetov', 'Jeff_Brooks', 'Desert Eagle', '2016-12-20 12:49:47'),
  1101. (14, 26, 48, 'Tyler_X_Cage', '', 'Fists', '2016-12-20 12:51:39'),
  1102. (15, 77, 48, 'Joga_Hernandez', '', 'Fists', '2016-12-20 12:51:43'),
  1103. (16, 15, 32, 'Tay_Forbes', '', 'Fists', '2016-12-20 13:03:02'),
  1104. (17, 39, 19, 'Gre_Hunter', 'Blake_Amphibia', 'Desert Eagle', '2016-12-20 13:36:45'),
  1105. (18, 39, 19, 'Gre_Hunter', 'Blake_Amphibia', 'Desert Eagle', '2016-12-20 13:36:58'),
  1106. (19, 39, 19, 'Gre_Hunter', 'Blake_Amphibia', 'Desert Eagle', '2016-12-20 13:42:55'),
  1107. (20, 39, 19, 'Gre_Hunter', 'Blake_Amphibia', 'Desert Eagle', '2016-12-20 13:43:06'),
  1108. (21, 28, 82, 'Richard_Krauser', 'Ibrahim_Mason', 'Shotgun', '2016-12-20 13:49:14'),
  1109. (22, 39, 58, 'Gre_Hunter', 'David_Ross', 'Desert Eagle', '2016-12-20 14:03:34'),
  1110. (23, 78, 108, 'Julia_Covenant', '', 'Shotgun', '2016-12-20 14:15:00'),
  1111. (24, 34, 26, 'Ed_Slash', 'Tyler_X_Cage', 'MP5', '2016-12-20 14:39:17'),
  1112. (25, 26, 58, 'Tyler_X_Cage', 'David_Ross', 'MP5', '2016-12-20 14:41:59'),
  1113. (26, 58, 26, 'David_Ross', 'Tyler_X_Cage', 'Shotgun', '2016-12-20 14:41:59'),
  1114. (27, 10, 137, 'Franklyn', 'Shawn_Menace', 'Desert Eagle', '2016-12-20 14:47:26'),
  1115. (28, 132, 145, 'Jordan_Trapz', 'Ignacio_M_Einstein', 'Fists', '2016-12-20 15:07:35'),
  1116. (29, 24, 74, 'Tony_Freeman', 'Tom_Wrzosek', 'Shotgun', '2016-12-20 15:15:32'),
  1117. (30, 7, 10, 'Max_Mabbitt', 'Franklyn_Menace', 'Shotgun', '2016-12-20 15:17:23'),
  1118. (31, 39, 10, 'Gre_Hunter', 'Franklyn_Menace', 'Desert Eagle', '2016-12-20 15:18:00'),
  1119. (32, 10, 34, 'Franklyn_Menace', 'Ed_Slash', 'Shotgun', '2016-12-20 15:24:15'),
  1120. (33, 16, 10, 'Walter_Cash', 'Franklyn_Menace', 'MP5', '2016-12-20 15:24:15'),
  1121. (34, 39, 104, 'Gre_Hunter', 'Don_Nox', 'Desert Eagle', '2016-12-20 15:26:16'),
  1122. (35, 39, 104, 'Gre_Hunter', 'Don_Nox', 'Desert Eagle', '2016-12-20 15:26:34'),
  1123. (36, 116, 49, 'Camron_Johnson', 'Domi_Walker', 'Shotgun', '2016-12-20 15:28:39'),
  1124. (37, 116, 49, 'Camron_Johnson', 'Domi_Walker', 'Shotgun', '2016-12-20 15:28:54'),
  1125. (38, 153, 88, 'Kalgon_Grande', 'Jordan_Capone', 'Combat Shotgun', '2016-12-20 15:35:06'),
  1126. (39, 34, 48, 'Ed_Slash', 'pastor_lee', 'Sniper Rifle', '2016-12-20 15:39:20'),
  1127. (40, 34, 48, 'Ed_Slash', 'pastor_lee', 'Desert Eagle', '2016-12-20 15:39:40'),
  1128. (41, 116, 56, 'Camron_Johnson', 'Andrea_Brianna', 'Desert Eagle', '2016-12-20 15:42:23'),
  1129. (42, 116, 56, 'Camron_Johnson', 'Andrea_Brianna', 'Desert Eagle', '2016-12-20 15:42:31'),
  1130. (43, 24, 145, 'Tony_Freeman', 'Ignacio_M_Einstein', 'Desert Eagle', '2016-12-20 15:48:03'),
  1131. (44, 88, 136, 'Jordan_Capone', 'Dori_Bale', 'M4', '2016-12-20 15:48:27'),
  1132. (45, 116, 24, 'Camron_Johnson', 'Tony_Freeman', 'Desert Eagle', '2016-12-20 15:49:33'),
  1133. (46, 34, 24, 'Ed_Slash', 'Tony_Freeman', 'Desert Eagle', '2016-12-20 15:50:03'),
  1134. (47, 34, 49, 'Ed_Slash', 'Domi_Walker', 'Desert Eagle', '2016-12-20 15:50:08'),
  1135. (48, 34, 49, 'Ed_Slash', 'Domi_Walker', 'Desert Eagle', '2016-12-20 15:50:21'),
  1136. (49, 34, 58, 'Ed_Slash', 'David_Ross', 'Combat Shotgun', '2016-12-20 15:51:14'),
  1137. (50, 88, 136, 'Jordan_Capone', 'Dori_Bale', 'Combat Shotgun', '2016-12-20 15:51:53'),
  1138. (51, 116, 7, 'Camron_Johnson', 'Max_Mabbitt', 'Sniper Rifle', '2016-12-20 15:53:18'),
  1139. (52, 39, 34, 'Gre_Hunter', 'Ed_Slash', 'Desert Eagle', '2016-12-20 15:53:20'),
  1140. (53, 116, 39, 'Camron_Johnson', 'Gre_Hunter', 'Desert Eagle', '2016-12-20 15:53:21'),
  1141. (54, 116, 7, 'Camron_Johnson', 'Max_Mabbitt', 'Desert Eagle', '2016-12-20 15:53:31'),
  1142. (55, 153, 143, 'Kalgon_Grande', 'Jake_Parker', 'Combat Shotgun', '2016-12-20 15:53:31'),
  1143. (56, 88, 136, 'Jordan_Capone', 'Dori_Bale', 'Combat Shotgun', '2016-12-20 15:53:45'),
  1144. (57, 88, 136, 'Jordan_Capone', 'Dori_Bale', 'Combat Shotgun', '2016-12-20 15:55:13'),
  1145. (58, 41, 136, 'Mystogan_Moons', 'Dori_Bale', 'Shotgun', '2016-12-20 15:55:22'),
  1146. (59, 51, 123, 'Kenny_Phixion', 'Justin_Wrzosek', 'Shotgun', '2016-12-20 16:04:48'),
  1147. (60, 51, 39, 'Kenny_Phixion', 'Gre_Hunter', 'Shotgun', '2016-12-20 16:05:09'),
  1148. (61, 91, 51, 'Zac_Wrzosek', 'Kenny_Phixion', 'Desert Eagle', '2016-12-20 16:05:11'),
  1149. (62, 7, 91, 'Max_Mabbitt', 'Zac_Wrzosek', 'Shotgun', '2016-12-20 16:05:16'),
  1150. (63, 94, 77, 'Andergdon_Lanvins', 'Joga_Hernandez', 'Shotgun', '2016-12-20 16:05:27'),
  1151. (64, 5, 7, 'Lazlow_VRocks', 'Max_Mabbitt', 'Desert Eagle', '2016-12-20 16:05:39'),
  1152. (65, 5, 94, 'Lazlow_VRocks', 'Andergdon_Lanvins', 'Desert Eagle', '2016-12-20 16:05:47'),
  1153. (66, 6, 123, 'Asykon_Amphibia', 'Justin_Wrzosek', 'Desert Eagle', '2016-12-20 16:09:25'),
  1154. (67, 6, 5, 'Asykon_Amphibia', 'Lazlow_VRocks', 'Desert Eagle', '2016-12-20 16:09:39'),
  1155. (68, 19, 5, 'Blake_Amphibia', 'Lazlow_VRocks', 'Shotgun', '2016-12-20 16:10:15'),
  1156. (69, 34, 143, 'Ed_Slash', 'Jake_Parker', 'Desert Eagle', '2016-12-20 16:11:09'),
  1157. (70, 34, 143, 'Ed_Slash', 'Jake_Parker', 'Desert Eagle', '2016-12-20 16:11:10'),
  1158. (71, 94, 73, 'Andergdon_Lanvins', '', 'Shotgun', '2016-12-20 16:11:48'),
  1159. (72, 6, 7, 'Asykon_Amphibia', 'Max_Mabbitt', 'Desert Eagle', '2016-12-20 16:11:59'),
  1160. (73, 6, 94, 'Asykon_Amphibia', 'Andergdon_Lanvins', 'Desert Eagle', '2016-12-20 16:12:08'),
  1161. (74, 19, 51, 'Blake_Amphibia', 'Kenny_Phixion', 'Shotgun', '2016-12-20 16:12:17'),
  1162. (75, 32, 94, 'Curtis_Leaf', 'Andergdon_Lanvins', 'Shotgun', '2016-12-20 16:12:23'),
  1163. (76, 34, 49, 'Ed_Slash', 'Domi_Walker', 'Sniper Rifle', '2016-12-20 16:12:29'),
  1164. (77, 132, 145, 'Jordy', 'Ignacio_M_Einstein', 'Desert Eagle', '2016-12-20 16:13:54'),
  1165. (78, 132, 145, 'Jordy', 'Ignacio_M_Einstein', 'Combat Shotgun', '2016-12-20 16:15:01'),
  1166. (79, 132, 145, 'Jordy', 'Ignacio_M_Einstein', 'Combat Shotgun', '2016-12-20 16:15:23'),
  1167. (80, 91, 73, 'Zac_Wrzosek', 'Cynthia_Tucker', 'Desert Eagle', '2016-12-20 16:16:31'),
  1168. (81, 5, 32, 'Lazlow_VRocks', 'Curtis_Leaf', 'Desert Eagle', '2016-12-20 16:16:36'),
  1169. (82, 5, 32, 'Lazlow_VRocks', 'Curtis_Leaf', 'Desert Eagle', '2016-12-20 16:16:38'),
  1170. (83, 77, 57, 'Joga_Hernandez', 'christopher_leaf', 'Desert Eagle', '2016-12-20 16:16:45'),
  1171. (84, 91, 19, 'Zac_Wrzosek', 'Blake_Amphibia', 'Desert Eagle', '2016-12-20 16:16:55'),
  1172. (85, 77, 57, 'Joga_Hernandez', 'christopher_leaf', 'Desert Eagle', '2016-12-20 16:18:03'),
  1173. (86, 10, 34, 'Franklyn_Menace', 'Ed_Slash', 'Shotgun', '2016-12-20 16:18:34'),
  1174. (87, 34, 10, 'Ed_Slash', 'Franklyn_Menace', 'Sniper Rifle', '2016-12-20 16:18:52'),
  1175. (88, 34, 137, 'Ed_Slash', 'Shawn_Menace', 'Sniper Rifle', '2016-12-20 16:18:53'),
  1176. (89, 10, 143, 'Franklyn_Menace', 'Jake_Parker', 'Shotgun', '2016-12-20 16:32:11'),
  1177. (90, 34, 143, 'Ed_Slash', 'Jake_Parker', 'Desert Eagle', '2016-12-20 16:32:29'),
  1178. (91, 157, 141, 'Dan_Devil', 'James_Maple', 'Desert Eagle', '2016-12-20 16:36:39'),
  1179. (92, 7, 91, 'Max_Mabbitt', 'Zac_Wrzosek', 'Desert Eagle', '2016-12-20 16:37:06'),
  1180. (93, 7, 91, 'Max_Mabbitt', 'Zac_Wrzosek', 'Desert Eagle', '2016-12-20 16:37:08'),
  1181. (94, 155, 6, 'Joe_Myers', 'Asykon_Amphibia', 'Desert Eagle', '2016-12-20 16:37:18'),
  1182. (95, 155, 6, 'Joe_Myers', 'Asykon_Amphibia', 'Desert Eagle', '2016-12-20 16:37:21'),
  1183. (96, 157, 49, 'Dan_Devil', 'Domi_Walker', 'Desert Eagle', '2016-12-20 16:37:23'),
  1184. (97, 157, 49, 'Dan_Devil', 'Domi_Walker', 'Desert Eagle', '2016-12-20 16:37:25'),
  1185. (98, 39, 73, 'Gre_Hunter', 'Cynthia_Tucker', 'Desert Eagle', '2016-12-20 16:38:02'),
  1186. (99, 82, 91, 'Ibrahim_Mason', 'Zac_Wrzosek', 'Desert Eagle', '2016-12-20 16:38:15'),
  1187. (100, 155, 97, 'Joe_Myers', '', 'Desert Eagle', '2016-12-20 16:38:37'),
  1188. (101, 70, 34, 'Jack_Lazlow', 'Ed_Slash', 'Desert Eagle', '2016-12-20 16:42:15'),
  1189. (102, 39, 155, 'Gre_Hunter', '', 'Desert Eagle', '2016-12-20 16:42:21'),
  1190. (103, 39, 155, 'Gre_Hunter', '', 'Desert Eagle', '2016-12-20 16:42:23'),
  1191. (104, 15, 155, 'Tay_Forbes', '', 'Desert Eagle', '2016-12-20 16:42:28'),
  1192. (105, 15, 155, 'Tay_Forbes', '', 'Shotgun', '2016-12-20 16:42:39'),
  1193. (106, 91, 158, 'Zac_Wrzosek', 'Steph_Ramcharan', 'Desert Eagle', '2016-12-20 16:52:27'),
  1194. (107, 113, 158, 'Michael_Render', 'Steph_Ramcharan', 'Shotgun', '2016-12-20 16:52:37'),
  1195. (108, 126, 94, 'Drake_Wrzosek', 'Andergdon_Lanvins', 'Desert Eagle', '2016-12-20 17:09:20'),
  1196. (109, 126, 82, 'Drake_Wrzosek', 'Ibrahim_Mason', 'Desert Eagle', '2016-12-20 17:09:21'),
  1197. (110, 126, 140, 'Drake_Wrzosek', 'Ryan_Sindrit', 'Shotgun', '2016-12-20 17:10:22'),
  1198. (111, 7, 5, 'Max_Mabbitt', 'Lazlow_VRocks', 'Shotgun', '2016-12-20 17:10:32'),
  1199. (112, 78, 174, 'Julia_Covenant', 'Jacob_Fanto', 'Shotgun', '2016-12-20 17:10:46'),
  1200. (113, 126, 7, 'Drake_Wrzosek', 'Max_Mabbitt', 'Shotgun', '2016-12-20 17:10:52'),
  1201. (114, 77, 7, 'Joga_Hernandez', 'Max_Mabbitt', 'Desert Eagle', '2016-12-20 17:11:14'),
  1202. (115, 94, 170, 'Andergdon_Lanvins', 'Kenna_Wrzosek', 'Shotgun', '2016-12-20 17:11:37'),
  1203. (116, 126, 94, 'Drake_Wrzosek', 'Andergdon_Lanvins', 'Shotgun', '2016-12-20 17:11:47'),
  1204. (117, 77, 94, 'Joga_Hernandez', 'Andergdon_Lanvins', 'Shotgun', '2016-12-20 17:12:00'),
  1205. (118, 41, 174, 'Mystogan_Moons', 'Jacob_Fanto', 'Silenced Pistol', '2016-12-20 17:12:47'),
  1206. (119, 77, 169, 'Joga_Hernandez', 'terry_scaletta', 'Desert Eagle', '2016-12-20 17:15:53'),
  1207. (120, 77, 169, 'Joga_Hernandez', 'terry_scaletta', 'Desert Eagle', '2016-12-20 17:16:06'),
  1208. (121, 132, 168, 'Jordy', 'Babatunde_Koke', 'Desert Eagle', '2016-12-20 17:16:56'),
  1209. (122, 74, 43, 'Tom_Wrzosek', 'Denzel_Freeman', 'M4', '2016-12-20 17:37:01'),
  1210. (123, 153, 24, 'Kalgon_Grande', 'Tony_Freeman', 'Combat Shotgun', '2016-12-20 17:46:38'),
  1211. (124, 153, 24, 'Kalgon_Grande', 'Tony_Freeman', 'Sniper Rifle', '2016-12-20 17:46:57'),
  1212. (125, 153, 88, 'Kalgon_Grande', 'Jordan_Grande', 'Sniper Rifle', '2016-12-20 17:47:57'),
  1213. (126, 128, 34, 'Richie_Legend', 'Ed_Slash', 'Combat Shotgun', '2016-12-20 18:09:28'),
  1214. (127, 77, 181, 'Joga_Hernandez', 'Jayden_Trapz', 'Fists', '2016-12-20 18:17:23'),
  1215. (128, 74, 137, 'Tom_Wrzosek', 'Shawn_Menace', 'Sniper Rifle', '2016-12-20 18:39:49'),
  1216. (129, 153, 137, 'Kalgon_Grande', 'Shawn_Menace', 'Desert Eagle', '2016-12-20 18:40:39'),
  1217. (130, 77, 15, 'Joga_Hernandez', 'Tay_Forbes', 'Desert Eagle', '2016-12-20 18:44:24'),
  1218. (131, 132, 181, 'Jordy', 'Jayden_Trapz', 'Minigun', '2016-12-20 18:44:46'),
  1219. (132, 153, 137, 'Kalgon_Grande', 'Shawn_Menace', 'M4', '2016-12-20 18:47:20'),
  1220. (133, 153, 137, 'Kalgon_Grande', 'Shawn_Menace', 'Combat Shotgun', '2016-12-20 18:48:02'),
  1221. (134, 143, 184, 'Jake_Parker', 'Jaz_Shock', 'Combat Shotgun', '2016-12-20 18:49:56'),
  1222. (135, 143, 157, 'Jake_Parker', 'Dan_Devil', 'Combat Shotgun', '2016-12-20 18:52:18'),
  1223. (136, 153, 132, 'Kalgon_Grande', 'Jordan_Trapz', 'Sniper Rifle', '2016-12-20 19:05:13'),
  1224. (137, 88, 153, 'Jordan_Grande', 'Kalgon_Grande', 'Sniper Rifle', '2016-12-20 19:06:32'),
  1225. (138, 8, 153, 'Dann_Lazlow', 'Kalgon_Grande', 'Combat Shotgun', '2016-12-20 19:07:09'),
  1226. (139, 8, 88, 'Dann_Lazlow', 'Jordan_Grande', 'Combat Shotgun', '2016-12-20 19:07:13'),
  1227. (140, 8, 132, 'Dann_Lazlow', 'Jordan_Trapz', 'Desert Eagle', '2016-12-20 19:07:19'),
  1228. (141, 153, 132, 'Kalgon_Grande', 'Jordan_Trapz', 'Desert Eagle', '2016-12-20 19:07:40'),
  1229. (142, 153, 132, 'Kalgon_Grande', 'Jordan_Trapz', 'Combat Shotgun', '2016-12-20 19:07:52'),
  1230. (143, 153, 132, 'Kalgon_Grande', 'Jordan_Trapz', 'Desert Eagle', '2016-12-20 19:07:59'),
  1231. (144, 153, 88, 'Kalgon_Grande', 'Jordan_Grande', 'Sniper Rifle', '2016-12-20 19:08:08'),
  1232. (145, 8, 88, 'Dann_Lazlow', 'Jordan_Grande', 'Combat Shotgun', '2016-12-20 19:09:01'),
  1233. (146, 153, 88, 'Kalgon_Grande', 'Jordan_Grande', 'Desert Eagle', '2016-12-20 19:15:27'),
  1234. (147, 153, 88, 'Kalgon_Grande', 'Jordan_Grande', 'Combat Shotgun', '2016-12-20 19:16:58'),
  1235. (148, 77, 59, 'Joga_Hernandez', 'Tyrone_Street', 'Shotgun', '2016-12-20 19:17:13'),
  1236. (149, 77, 59, 'Joga_Hernandez', 'Tyrone_Street', 'Desert Eagle', '2016-12-20 19:17:22'),
  1237. (150, 132, 181, 'Jordy', 'Jayden_Trapz', 'Knife', '2016-12-20 19:21:50'),
  1238. (151, 15, 113, 'Tay_Forbes', 'Michael_Render', 'Sniper Rifle', '2016-12-20 19:25:52'),
  1239. (152, 77, 113, 'Joga_Hernandez', 'Michael_Render', 'Desert Eagle', '2016-12-20 19:25:59'),
  1240. (153, 15, 77, 'Tay_Forbes', 'Joga_Hernandez', 'Combat Shotgun', '2016-12-20 19:29:30'),
  1241. (154, 113, 77, 'Michael_Render', 'Joga_Hernandez', 'Fists', '2016-12-20 19:29:57'),
  1242. (155, 15, 113, 'Tay_Forbes', 'Michael_Render', 'Desert Eagle', '2016-12-20 19:29:59'),
  1243. (156, 132, 137, 'Jordy', 'Shawn_Menace', 'Shotgun', '2016-12-20 19:38:19'),
  1244. (157, 153, 74, 'Kalgon_Grande', 'Tom_Wrzosek', 'Desert Eagle', '2016-12-20 19:57:28'),
  1245. (158, 153, 123, 'Kalgon_Grande', 'Justin_Wrzosek', 'Sniper Rifle', '2016-12-20 20:01:47'),
  1246. (159, 153, 123, 'Kalgon_Grande', 'Justin_Wrzosek', 'Sniper Rifle', '2016-12-20 20:02:36'),
  1247. (160, 137, 74, 'Shawn', 'Tom_Wrzosek', 'Shotgun', '2016-12-20 20:14:48'),
  1248. (161, 137, 74, 'Shawn', 'Tom_Wrzosek', 'Shotgun', '2016-12-20 20:16:08'),
  1249. (162, 137, 74, 'Shawn', 'Tom_Wrzosek', 'Shotgun', '2016-12-20 20:17:45'),
  1250. (163, 153, 185, 'Kalgon_Grande', 'Dick_Black', 'Combat Shotgun', '2016-12-20 20:20:50'),
  1251. (164, 77, 81, 'Joga_Hernandez', 'Tommy_Gates', 'MP5', '2016-12-20 20:30:55'),
  1252. (165, 194, 184, 'Devon_Bronx', 'Jaz_Shock', 'Desert Eagle', '2016-12-20 20:35:40'),
  1253. (166, 153, 81, 'Kalgon_Grande', 'Tommy_Gates', 'Sniper Rifle', '2016-12-20 20:37:18'),
  1254. (167, 184, 6, 'Jaz_Shock', 'Asykon_Amphibia', 'Combat Shotgun', '2016-12-20 21:13:42'),
  1255. (168, 184, 6, 'Jaz_Shock', 'Asykon_Amphibia', 'Rifle', '2016-12-20 21:14:32'),
  1256. (169, 157, 5, 'Dan_Devil', 'Lazlow_VRocks', 'Shotgun', '2016-12-20 21:20:29'),
  1257. (170, 157, 194, 'Dan_Devil', 'Devon_Bronx', 'Shotgun', '2016-12-20 21:20:33'),
  1258. (171, 184, 6, 'Jaz_Shock', 'Asykon_Amphibia', 'Desert Eagle', '2016-12-20 21:20:42'),
  1259. (172, 144, 184, 'Lrizz_Devil', 'Jaz_Shock', 'Shotgun', '2016-12-20 21:20:43'),
  1260. (173, 144, 194, 'Lrizz_Devil', 'Devon_Bronx', 'Shotgun', '2016-12-20 21:21:29'),
  1261. (174, 157, 5, 'Dan_Devil', 'Lazlow_VRocks', 'Shotgun', '2016-12-20 21:27:43'),
  1262. (175, 19, 184, 'Blake_Amphibia', 'Jaz_Shock', 'Shotgun', '2016-12-20 21:27:50'),
  1263. (176, 157, 5, 'Dan_Devil', 'Lazlow_VRocks', 'Shotgun', '2016-12-20 21:27:57'),
  1264. (177, 157, 184, 'Dan_Devil', 'Jaz_Shock', 'Shotgun', '2016-12-20 21:27:59'),
  1265. (178, 157, 144, 'Dan_Devil', 'Lrizz_Devil', 'Shotgun', '2016-12-20 21:31:40'),
  1266. (179, 19, 184, 'Blake_Amphibia', 'Jaz_Shock', 'Shotgun', '2016-12-20 21:37:04'),
  1267. (180, 184, 19, 'Jaz_Shock', 'Blake_Amphibia', 'Shotgun', '2016-12-20 21:37:04'),
  1268. (181, 6, 184, 'Asykon_Amphibia', 'Jaz_Shock', 'Shotgun', '2016-12-20 21:37:13'),
  1269. (182, 157, 2, 'Dan_Devil', 'Tyler_Huntley', 'Knife', '2016-12-20 21:39:35'),
  1270. (183, 2, 157, 'Tyler_Huntley', 'Dan_Devil', 'Knife', '2016-12-20 21:39:51'),
  1271. (184, 2, 144, 'Tyler_Huntley', 'Lrizz_Devil', 'Knife', '2016-12-20 23:42:32'),
  1272. (185, 157, 24, 'Dan_Devil', 'Tony_Freeman', 'Knife', '2016-12-21 00:31:58'),
  1273. (186, 10, 223, 'Franklyn_Menace', 'Santino_Valentino', 'M4', '2016-12-21 00:39:29'),
  1274. (187, 144, 10, 'Razor_V_Rameriz', 'Franklyn_Menace', 'Knife', '2016-12-21 00:42:01'),
  1275. (188, 223, 232, 'Santino_Valentino', 'Brian_Ozbourne', 'Fists', '2016-12-21 00:43:13'),
  1276. (189, 157, 137, 'James_Williams', 'Shawn_Menace', 'Combat Shotgun', '2016-12-21 00:43:14'),
  1277. (190, 157, 137, 'James_Williams', 'Shawn_Menace', 'Combat Shotgun', '2016-12-21 00:43:21'),
  1278. (191, 223, 232, 'Santino_Valentino', 'Brian_Ozbourne', 'Fists', '2016-12-21 00:43:36'),
  1279. (192, 77, 195, 'Joga_Hernandez', 'Razim_Dota', 'Shotgun', '2016-12-21 00:51:26'),
  1280. (193, 122, 195, 'oscar_G_Ramirez', 'Razim_Dota', 'Shotgun', '2016-12-21 00:51:40'),
  1281. (194, 122, 195, 'oscar_G_Ramirez', 'Razim_Dota', 'Shotgun', '2016-12-21 00:51:42'),
  1282. (195, 122, 195, 'oscar_G_Ramirez', 'Razim_Dota', 'Shotgun', '2016-12-21 00:51:44'),
  1283. (196, 10, 195, 'Franklyn_Menace', 'Razim_Dota', 'Shotgun', '2016-12-21 00:55:02'),
  1284. (197, 10, 195, 'Franklyn_Menace', 'Razim_Dota', 'Shotgun', '2016-12-21 00:56:09'),
  1285. (198, 116, 244, 'Camron_Johnson', 'Dane_Cool', 'Sniper Rifle', '2016-12-21 01:02:05'),
  1286. (199, 116, 244, 'Camron_Johnson', 'Dane_Cool', 'Desert Eagle', '2016-12-21 01:02:14'),
  1287. (200, 122, 74, 'oscar_G_Ramirez', 'Tom_Wrzosek', 'Shotgun', '2016-12-21 01:17:36'),
  1288. (201, 122, 10, 'oscar_G_Ramirez', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 01:40:37'),
  1289. (202, 137, 122, 'Shawn_Menace', 'oscar_G_Ramirez', 'Desert Eagle', '2016-12-21 01:40:49'),
  1290. (203, 144, 16, 'Lrizz_Devil', 'Walter_Cash', 'Knife', '2016-12-21 01:47:56'),
  1291. (204, 157, 16, 'Dan_Devil', 'Walter_Cash', 'Combat Shotgun', '2016-12-21 01:48:09'),
  1292. (205, 10, 74, 'Franklyn_Menace', 'Tom_Wrzosek', 'Shotgun', '2016-12-21 01:53:56'),
  1293. (206, 137, 74, 'Shawn_Menace', 'Tom_Wrzosek', 'Colt 45', '2016-12-21 01:56:05'),
  1294. (207, 34, 12, 'Ed_Slash', 'Lui_Mendez', 'Desert Eagle', '2016-12-21 02:12:31'),
  1295. (208, 260, 74, 'atherturo_g_ramirez', 'Tom_Wrzosek', 'Fists', '2016-12-21 02:16:42'),
  1296. (209, 240, 249, 'Don_Ryders', 'Edward_Vincre', 'Desert Eagle', '2016-12-21 03:05:47'),
  1297. (210, 240, 249, 'Don_Ryders', 'Edward_Vincre', 'Shotgun', '2016-12-21 03:05:59'),
  1298. (211, 25, 34, 'Umer_Menace', 'Ed_Slash', 'Desert Eagle', '2016-12-21 03:28:35'),
  1299. (212, 74, 157, 'Tom_Wrzosek', 'Dan_Devil', 'Sniper Rifle', '2016-12-21 03:33:57'),
  1300. (213, 34, 25, 'Ed_Slash', 'Umer_Menace', 'Sniper Rifle', '2016-12-21 03:44:42'),
  1301. (214, 221, 144, 'William_J_Thompson', 'Lrizz_Devil', 'Fists', '2016-12-21 03:51:11'),
  1302. (215, 6, 74, 'Asykon_Amphibia', 'Tom_Wrzosek', 'Shotgun', '2016-12-21 04:20:49'),
  1303. (216, 34, 272, 'Ed_Slash', 'mohamed_yonkou', 'Sniper Rifle', '2016-12-21 04:21:37'),
  1304. (217, 34, 272, 'Ed_Slash', 'mohamed_yonkou', 'Desert Eagle', '2016-12-21 04:23:31'),
  1305. (218, 34, 32, 'Ed_Slash', 'Curtis_Leaf', 'Desert Eagle', '2016-12-21 04:26:14'),
  1306. (219, 34, 32, 'Ed_Slash', 'Curtis_Leaf', 'Combat Shotgun', '2016-12-21 04:26:24'),
  1307. (220, 6, 179, 'Asykon_Amphibia', 'Katiysa_Vargas', 'Shotgun', '2016-12-21 04:29:48'),
  1308. (221, 6, 287, 'Asykon_Amphibia', 'AyeRon_Nox_Abdi', 'Shotgun', '2016-12-21 04:29:50'),
  1309. (222, 69, 287, 'Raven_Street', 'AyeRon_Nox_Abdi', 'Shotgun', '2016-12-21 04:30:13'),
  1310. (223, 34, 74, 'Ed_Slash', 'Tom_Wrzosek', 'Desert Eagle', '2016-12-21 04:32:28'),
  1311. (224, 17, 74, 'Derek_Gucci_sosa', 'Tom_Wrzosek', 'Shotgun', '2016-12-21 04:38:36'),
  1312. (225, 137, 25, 'Shawn', 'Umer_Menace', 'Desert Eagle', '2016-12-21 04:40:38'),
  1313. (226, 74, 287, 'Tom_Wrzosek', 'AyeRon_Nox_Abdi', 'Combat Shotgun', '2016-12-21 05:00:38'),
  1314. (227, 74, 287, 'Tom_Wrzosek', 'AyeRon_Nox_Abdi', 'Combat Shotgun', '2016-12-21 05:00:48'),
  1315. (228, 17, 110, 'Derek_Gucci_sosa', 'Cletus_Amphibia', 'Combat Shotgun', '2016-12-21 05:07:29'),
  1316. (229, 69, 17, 'Raven_Street', 'Derek_Gucci_sosa', 'Shotgun', '2016-12-21 05:07:44'),
  1317. (230, 25, 277, 'Umer_Menace', 'Clarence_Breyer', 'Shotgun', '2016-12-21 05:07:58'),
  1318. (231, 208, 144, 'Jay_King', 'Lrizz_Devil', 'Fists', '2016-12-21 05:10:15'),
  1319. (232, 100, 287, 'Orlando_Amphibia', 'AyeRon_Nox_Abdi', 'Fists', '2016-12-21 05:10:21'),
  1320. (233, 287, 144, 'AyeRon_Nox_Abdi', 'Lrizz_Devil', 'Fists', '2016-12-21 05:11:07'),
  1321. (234, 287, 144, 'AyeRon_Nox_Abdi', 'Lrizz_Devil', 'Fists', '2016-12-21 05:11:09'),
  1322. (235, 34, 94, 'Ed_Slash', 'Andergdon_Lanvins', 'Desert Eagle', '2016-12-21 05:17:20'),
  1323. (236, 34, 94, 'Ed_Slash', 'Andergdon_Lanvins', 'Desert Eagle', '2016-12-21 05:17:26'),
  1324. (237, 17, 163, 'Derek_Gucci_sosa', 'Vincent_Valentino', 'Desert Eagle', '2016-12-21 05:17:55'),
  1325. (238, 17, 163, 'Derek_Gucci_sosa', 'Vincent_Valentino', 'Desert Eagle', '2016-12-21 05:18:05'),
  1326. (239, 39, 110, 'Gre_Hunter', 'Cletus_Amphibia', 'Colt 45', '2016-12-21 05:19:45'),
  1327. (240, 39, 110, 'Gre_Hunter', 'Cletus_Amphibia', 'Colt 45', '2016-12-21 05:19:55'),
  1328. (241, 283, 294, 'Keima_Adkins', '', 'Fists', '2016-12-21 05:28:17'),
  1329. (242, 74, 43, 'Tom_Wrzosek', 'Denzel_Freeman', 'Desert Eagle', '2016-12-21 05:31:12'),
  1330. (243, 74, 39, 'Tom_Wrzosek', 'Gre_Hunter', 'Desert Eagle', '2016-12-21 05:31:25'),
  1331. (244, 132, 287, 'Jordy', 'AyeRon_Nox_Abdi', 'Shotgun', '2016-12-21 05:33:57'),
  1332. (245, 287, 303, 'AyeRon_Nox_Abdi', 'Aviana_Starr', 'Fists', '2016-12-21 05:54:07'),
  1333. (246, 34, 17, 'Ed_Slash', 'Derek_Gucci_sosa', 'Desert Eagle', '2016-12-21 05:58:48'),
  1334. (247, 240, 22, 'Don_Ryders', 'Tony_Street', 'Desert Eagle', '2016-12-21 06:06:53'),
  1335. (248, 240, 22, 'Don_Ryders', 'Tony_Street', 'Desert Eagle', '2016-12-21 06:07:06'),
  1336. (249, 132, 319, 'Jordy', 'Jamie_G_Shock', 'Knife', '2016-12-21 06:07:21'),
  1337. (250, 157, 42, 'El_Chapo', 'Luigi_Mendez', 'Knife', '2016-12-21 06:27:10'),
  1338. (251, 157, 42, 'El_Chapo', 'Luigi_Mendez', 'Knife', '2016-12-21 06:27:42'),
  1339. (252, 122, 208, 'oscar_g_ramirez', 'Jay_King', 'Desert Eagle', '2016-12-21 06:28:57'),
  1340. (253, 122, 208, 'oscar_g_ramirez', 'Jay_King', 'Desert Eagle', '2016-12-21 06:29:12'),
  1341. (254, 132, 36, 'Jordy', 'Wiz_Gucci_Sosa', 'Desert Eagle', '2016-12-21 06:39:46'),
  1342. (255, 11, 144, 'Lance', 'Lrizz_Devil', 'Shotgun', '2016-12-21 06:42:07'),
  1343. (256, 34, 57, 'Ed_Slash', 'christopher_leaf', 'Desert Eagle', '2016-12-21 07:00:12'),
  1344. (257, 34, 57, 'Ed_Slash', 'christopher_leaf', 'Desert Eagle', '2016-12-21 07:00:31'),
  1345. (258, 17, 293, 'Derek_Gucci_sosa', 'Asyton_Vincre', 'Desert Eagle', '2016-12-21 07:05:44'),
  1346. (259, 163, 110, 'Vincent_Valentino', 'Cletus_Amphibia', 'Shotgun', '2016-12-21 07:12:41'),
  1347. (260, 144, 163, 'Lrizz_Devil', 'Vincent_Valentino', 'Shotgun', '2016-12-21 07:14:48'),
  1348. (261, 219, 69, 'Nathan_Hopskin', 'Raven_Street', 'Shotgun', '2016-12-21 07:14:57'),
  1349. (262, 210, 7, 'Thude_Hernandez', 'Max_Mabbitt', 'Shotgun', '2016-12-21 07:14:59'),
  1350. (263, 319, 219, 'Jamie_G_Shock', 'Nathan_Hopskin', 'Desert Eagle', '2016-12-21 07:15:16'),
  1351. (264, 319, 210, 'Jamie_G_Shock', 'Thude_Hernandez', 'Desert Eagle', '2016-12-21 07:15:48'),
  1352. (265, 319, 210, 'Jamie_G_Shock', 'Thude_Hernandez', 'Desert Eagle', '2016-12-21 07:16:04'),
  1353. (266, 319, 110, 'Jamie_G_Shock', 'Cletus_Amphibia', 'Desert Eagle', '2016-12-21 07:17:05'),
  1354. (267, 319, 144, 'Jamie_G_Shock', 'Lrizz_Devil', 'Desert Eagle', '2016-12-21 07:17:10'),
  1355. (268, 319, 110, 'Jamie_G_Shock', 'Cletus_Amphibia', 'Desert Eagle', '2016-12-21 07:17:21'),
  1356. (269, 319, 144, 'Jamie_G_Shock', 'Lrizz_Devil', 'Desert Eagle', '2016-12-21 07:17:26'),
  1357. (270, 319, 219, 'Jamie_G_Shock', 'Nathan_Hopskin', 'Desert Eagle', '2016-12-21 07:19:20'),
  1358. (271, 319, 100, 'Jamie_G_Shock', 'Orlando_Amphibia', 'Desert Eagle', '2016-12-21 07:19:41'),
  1359. (272, 17, 293, 'Derek_Gucci_sosa', 'Asyton_Vincre', 'Desert Eagle', '2016-12-21 07:20:08'),
  1360. (273, 17, 293, 'Derek_Gucci_sosa', 'Asyton_Vincre', 'Desert Eagle', '2016-12-21 07:20:17'),
  1361. (274, 163, 100, 'Vincent_Valentino', 'Orlando_Amphibia', 'Shotgun', '2016-12-21 07:20:23'),
  1362. (275, 69, 140, 'Raven_Street', 'Ryan_Sindrit', 'Shotgun', '2016-12-21 07:20:56'),
  1363. (276, 6, 319, 'Asykon_Amphibia', 'Jamie_G_Shock', 'Shotgun', '2016-12-21 07:22:23'),
  1364. (277, 69, 319, 'Raven_Street', 'Jamie_G_Shock', 'Shotgun', '2016-12-21 07:22:41'),
  1365. (278, 6, 163, 'Asykon_Amphibia', 'Vincent_Valentino', 'Shotgun', '2016-12-21 07:22:49'),
  1366. (279, 312, 150, 'Marco_Ki', 'Rio_Flocka', 'Desert Eagle', '2016-12-21 07:25:56'),
  1367. (280, 293, 331, 'Asyton_Vincre', 'Andrei_Dillinger', 'Fists', '2016-12-21 07:49:12'),
  1368. (281, 16, 48, 'Walter_Cash', 'Pastor_lee', 'Shotgun', '2016-12-21 08:59:05'),
  1369. (282, 16, 32, 'Walter_Cash', 'Curtis_Leaf', 'Shotgun', '2016-12-21 08:59:37'),
  1370. (283, 142, 48, 'Niko_Santo', 'Pastor_lee', 'Desert Eagle', '2016-12-21 09:00:13'),
  1371. (284, 11, 34, 'Lance', 'Ed_Slash', 'Shotgun', '2016-12-21 09:00:23'),
  1372. (285, 17, 64, 'Derek_Gucci_Sosa', 'Bench_Freeman', 'Combat Shotgun', '2016-12-21 09:01:00'),
  1373. (286, 17, 64, 'Derek_Gucci_Sosa', 'Bench_Freeman', 'Combat Shotgun', '2016-12-21 09:01:08'),
  1374. (287, 17, 270, 'Derek_Gucci_Sosa', 'Chase_Ainsworth', 'Combat Shotgun', '2016-12-21 09:20:10'),
  1375. (288, 337, 270, 'Simon_Gucci_Sosa', 'Chase_Ainsworth', 'Fists', '2016-12-21 09:20:24'),
  1376. (289, 34, 221, 'Ed_Slash', 'William_J_Thompson', 'Desert Eagle', '2016-12-21 09:25:18'),
  1377. (290, 34, 221, 'Ed_Slash', 'William_J_Thompson', 'Desert Eagle', '2016-12-21 09:25:34'),
  1378. (291, 132, 78, 'Jordy', 'Julia_Covenant', 'Desert Eagle', '2016-12-21 09:42:08'),
  1379. (292, 34, 59, 'Ed_Slash', 'Tyrone_Street', 'Combat Shotgun', '2016-12-21 09:48:30'),
  1380. (293, 17, 59, 'Derek_Gucci_Sosa', 'Tyrone_Street', 'Combat Shotgun', '2016-12-21 09:48:37'),
  1381. (294, 132, 272, 'Jordan_Trapz', 'mohamed_yonkou', 'Desert Eagle', '2016-12-21 09:58:00'),
  1382. (295, 132, 272, 'Jordan_Trapz', 'mohamed_yonkou', 'Combat Shotgun', '2016-12-21 09:58:20'),
  1383. (296, 34, 352, 'Ed_Slash', 'Kenneth_Silverman', 'Desert Eagle', '2016-12-21 10:08:41'),
  1384. (297, 349, 352, 'Zhao_Yhang', 'Kenneth_Silverman', 'Fists', '2016-12-21 10:10:54'),
  1385. (298, 340, 26, 'Nejin_Cash', 'Tyler_X_Cage', 'Shotgun', '2016-12-21 10:19:08'),
  1386. (299, 331, 352, 'Andrei_Dillinger', 'Kenneth_Silverman', 'Combat Shotgun', '2016-12-21 10:33:06'),
  1387. (300, 331, 351, 'Andrei_Dillinger', 'Darell_Erick', 'Combat Shotgun', '2016-12-21 10:41:08'),
  1388. (301, 221, 239, 'William_J_Thompson', 'Leonardo_Fox', 'Desert Eagle', '2016-12-21 10:43:27'),
  1389. (302, 221, 181, 'William_J_Thompson', 'Jayden_Trapz', 'Desert Eagle', '2016-12-21 10:43:35'),
  1390. (303, 221, 181, 'William_J_Thompson', 'Jayden_Trapz', 'Desert Eagle', '2016-12-21 10:43:46'),
  1391. (304, 221, 239, 'William_J_Thompson', 'Leonardo_Fox', 'Desert Eagle', '2016-12-21 10:44:00'),
  1392. (305, 142, 351, 'Niko_Santo', 'Darell_Erick', 'Colt 45', '2016-12-21 10:46:04'),
  1393. (306, 16, 142, 'Walter_Cash', 'Niko_Santo', 'Shotgun', '2016-12-21 10:52:32'),
  1394. (307, 34, 58, 'Ed_Slash', 'David_Ross', 'Combat Shotgun', '2016-12-21 10:57:04'),
  1395. (308, 34, 58, 'Ed_Slash', 'David_Ross', 'Combat Shotgun', '2016-12-21 10:57:15'),
  1396. (309, 337, 351, 'Simon_Gucci_Sosa', 'Darell_Erick', 'Desert Eagle', '2016-12-21 10:57:44'),
  1397. (310, 337, 351, 'Simon_Gucci_Sosa', 'Darell_Erick', 'Desert Eagle', '2016-12-21 10:57:55'),
  1398. (311, 17, 351, 'Derek_Gucci_Sosa', 'Darell_Erick', 'Sniper Rifle', '2016-12-21 11:01:55'),
  1399. (312, 17, 351, 'Derek_Gucci_Sosa', 'Darell_Erick', 'Combat Shotgun', '2016-12-21 11:02:03'),
  1400. (313, 337, 351, 'Simon_Gucci_Sosa', 'Darell_Erick', 'Desert Eagle', '2016-12-21 11:04:51'),
  1401. (314, 331, 351, 'Andrei_Dillinger', 'Darell_Erick', 'Colt 45', '2016-12-21 11:05:05'),
  1402. (315, 132, 351, 'Jordan_Trapz', 'Darell_Erick', 'Combat Shotgun', '2016-12-21 11:05:46'),
  1403. (316, 132, 351, 'Jordan_Trapz', 'Darell_Erick', 'Desert Eagle', '2016-12-21 11:05:53'),
  1404. (317, 26, 257, 'Tyler_X_Cage', 'Kimbo_Slice', 'Shotgun', '2016-12-21 11:24:54'),
  1405. (318, 26, 257, 'Tyler_X_Cage', 'Kimbo_Slice', 'Shotgun', '2016-12-21 11:25:48'),
  1406. (319, 26, 257, 'Tyler_X_Cage', 'Kimbo_Slice', 'Shotgun', '2016-12-21 11:26:02'),
  1407. (320, 132, 257, 'Jordy', 'Kimbo_Slice', 'Minigun', '2016-12-21 11:28:18'),
  1408. (321, 26, 363, 'Tyler_X_Cage', 'Dominic_Frost', 'Shotgun', '2016-12-21 11:35:02'),
  1409. (322, 24, 363, 'Tony_Freeman', 'Dominic_Frost', 'Desert Eagle', '2016-12-21 11:35:15'),
  1410. (323, 257, 297, 'Kimbo_Slice', 'Joey_Mercer', 'Sniper Rifle', '2016-12-21 11:38:24'),
  1411. (324, 361, 325, 'Liam_Maxwell', 'Devin_Weston', 'Sniper Rifle', '2016-12-21 11:39:00'),
  1412. (325, 361, 325, 'Liam_Maxwell', 'Devin_Weston', 'Sniper Rifle', '2016-12-21 11:39:03'),
  1413. (326, 361, 325, 'Liam_Maxwell', 'Devin_Weston', 'Sniper Rifle', '2016-12-21 11:39:09'),
  1414. (327, 361, 325, 'Liam_Maxwell', 'Devin_Weston', 'Sniper Rifle', '2016-12-21 11:39:12'),
  1415. (328, 42, 6, 'Luigi_Mendez', 'Asykon_Amphibia', 'Combat Shotgun', '2016-12-21 11:39:23'),
  1416. (329, 42, 6, 'Luigi_Mendez', 'Asykon_Amphibia', 'Desert Eagle', '2016-12-21 11:39:25'),
  1417. (330, 277, 325, 'Clarence_Breyer', 'Devin_Weston', 'Sniper Rifle', '2016-12-21 11:39:34'),
  1418. (331, 42, 36, 'Luigi_Mendez', 'Wiz_Gucci_Sosa', 'Sniper Rifle', '2016-12-21 11:39:35'),
  1419. (332, 277, 325, 'Clarence_Breyer', 'Devin_Weston', 'Sniper Rifle', '2016-12-21 11:39:36'),
  1420. (333, 34, 358, 'Ed_Slash', 'Steven_Robinson', 'Desert Eagle', '2016-12-21 11:39:50'),
  1421. (334, 23, 325, 'Jason_Gucci_Sosa', 'Devin_Weston', 'Sniper Rifle', '2016-12-21 11:40:03'),
  1422. (335, 23, 325, 'Jason_Gucci_Sosa', 'Devin_Weston', 'Sniper Rifle', '2016-12-21 11:40:04'),
  1423. (336, 23, 6, 'Jason_Gucci_Sosa', 'Asykon_Amphibia', 'Sniper Rifle', '2016-12-21 11:40:25'),
  1424. (337, 23, 6, 'Jason_Gucci_Sosa', 'Asykon_Amphibia', 'Sniper Rifle', '2016-12-21 11:40:29'),
  1425. (338, 23, 6, 'Jason_Gucci_Sosa', 'Asykon_Amphibia', 'Sniper Rifle', '2016-12-21 11:40:32'),
  1426. (339, 23, 6, 'Jason_Gucci_Sosa', 'Asykon_Amphibia', 'Sniper Rifle', '2016-12-21 11:40:35'),
  1427. (340, 24, 257, 'Tony_Freeman', 'Kimbo_Slice', 'Combat Shotgun', '2016-12-21 11:48:20'),
  1428. (341, 58, 257, 'David_Ross', 'Kimbo_Slice', 'Combat Shotgun', '2016-12-21 11:48:33'),
  1429. (342, 26, 257, 'Tyler_X_Cage', 'Kimbo_Slice', 'Sniper Rifle', '2016-12-21 11:58:54'),
  1430. (343, 24, 257, 'Tony_Freeman', 'Kimbo_Slice', 'Combat Shotgun', '2016-12-21 11:59:02'),
  1431. (344, 17, 361, 'Derek_Gucci_Sosa', 'Liam_Maxwell', 'Desert Eagle', '2016-12-21 12:01:04'),
  1432. (345, 26, 257, 'Tyler_X_Cage', 'Kimbo_Slice', 'Combat Shotgun', '2016-12-21 12:01:45'),
  1433. (346, 26, 257, 'Tyler_X_Cage', 'Kimbo_Slice', 'Combat Shotgun', '2016-12-21 12:01:53'),
  1434. (347, 368, 363, 'Kimberly_Banks', 'Dominic_Frost', 'Fists', '2016-12-21 12:14:27'),
  1435. (348, 368, 181, 'Kimberly_Banks', 'Jayden_Trapz', 'Rifle', '2016-12-21 12:20:31'),
  1436. (349, 132, 321, 'Jordy', 'Theo_J_King', 'Knife', '2016-12-21 12:23:51'),
  1437. (350, 11, 321, 'Lance_Lanvins', 'Theo_J_King', 'Shotgun', '2016-12-21 12:24:13'),
  1438. (351, 181, 11, 'Jayden_Trapz', 'Lance_Lanvins', 'Sniper Rifle', '2016-12-21 12:24:53'),
  1439. (352, 26, 361, 'Tyler_X_Cage', 'Liam_Maxwell', 'Desert Eagle', '2016-12-21 12:25:57'),
  1440. (353, 116, 368, 'Lucenzo_Johnson', '', 'Desert Eagle', '2016-12-21 12:26:47'),
  1441. (354, 2, 363, 'Tyler_Huntley', 'Dominic_Frost', 'Desert Eagle', '2016-12-21 12:38:22'),
  1442. (355, 331, 377, 'Andrei_Dillinger', 'atherturo_ramirez', 'Combat Shotgun', '2016-12-21 12:50:19'),
  1443. (356, 331, 377, 'Andrei_Dillinger', 'atherturo_ramirez', 'Colt 45', '2016-12-21 12:50:32'),
  1444. (357, 34, 24, 'Ed_Slash', 'Tony_Freeman', 'Sniper Rifle', '2016-12-21 12:58:11'),
  1445. (358, 34, 24, 'Ed_Slash', 'Tony_Freeman', 'Combat Shotgun', '2016-12-21 12:58:32'),
  1446. (359, 34, 24, 'Ed_Slash', 'Tony_Freeman', 'Combat Shotgun', '2016-12-21 12:58:33'),
  1447. (360, 34, 297, 'Ed_Slash', 'Joey_Mercer', 'Sniper Rifle', '2016-12-21 12:58:40'),
  1448. (361, 34, 297, 'Ed_Slash', 'Joey_Mercer', 'Combat Shotgun', '2016-12-21 12:58:56'),
  1449. (362, 34, 297, 'Ed_Slash', 'Joey_Mercer', 'Combat Shotgun', '2016-12-21 12:58:59'),
  1450. (363, 17, 365, 'Derek_Gucci_Sosa', 'Absar_Khan', 'M4', '2016-12-21 13:02:37'),
  1451. (364, 36, 365, 'Wiz_Gucci_Sosa', 'Absar_Khan', 'Shotgun', '2016-12-21 13:02:45'),
  1452. (365, 17, 181, 'Derek_Gucci_Sosa', 'Jayden_Trapz', 'Combat Shotgun', '2016-12-21 13:03:17'),
  1453. (366, 370, 181, 'Sigre_Gucci_Sosa', 'Jayden_Trapz', 'Fists', '2016-12-21 13:03:25'),
  1454. (367, 23, 32, 'Jason_Gucci_Sosa', 'Curtis_Leaf', 'Shotgun', '2016-12-21 13:06:51'),
  1455. (368, 36, 79, 'Wiz_Gucci_Sosa', 'Eddie_Siera', 'Shotgun', '2016-12-21 13:06:54'),
  1456. (369, 210, 17, 'Thude_Hernandez', 'Derek_Gucci_Sosa', 'Shotgun', '2016-12-21 13:07:09'),
  1457. (370, 370, 44, 'Sigre_Gucci_Sosa', 'Salah_Amphibia', 'Shotgun', '2016-12-21 13:07:14'),
  1458. (371, 50, 381, 'Troy_Gucci_Sosa', 'Morgan_Temple', 'MP5', '2016-12-21 13:07:16'),
  1459. (372, 73, 50, 'Cynthia_Tucker', 'Troy_Gucci_Sosa', 'Shotgun', '2016-12-21 13:07:18'),
  1460. (373, 19, 50, 'Blake_Amphibia', 'Troy_Gucci_Sosa', 'Shotgun', '2016-12-21 13:07:20'),
  1461. (374, 19, 23, 'Blake_Amphibia', 'Jason_Gucci_Sosa', 'Shotgun', '2016-12-21 13:07:26'),
  1462. (375, 19, 360, 'Blake_Amphibia', 'Eazy_Gucci_Sosa', 'Shotgun', '2016-12-21 13:07:28'),
  1463. (376, 210, 36, 'Thude_Hernandez', 'Wiz_Gucci_Sosa', 'Shotgun', '2016-12-21 13:07:41'),
  1464. (377, 362, 73, 'Pedro_Deagle', 'Cynthia_Tucker', 'MP5', '2016-12-21 13:07:50'),
  1465. (378, 157, 362, 'Dan_Devil', 'Pedro_Deagle', 'Combat Shotgun', '2016-12-21 13:07:52'),
  1466. (379, 157, 362, 'Dan_Devil', 'Pedro_Deagle', 'Combat Shotgun', '2016-12-21 13:08:00'),
  1467. (380, 6, 73, 'Asykon_Amphibia', 'Cynthia_Tucker', 'Shotgun', '2016-12-21 13:08:18'),
  1468. (381, 64, 370, 'Bench_Freeman', 'Sigre_Gucci_Sosa', 'Desert Eagle', '2016-12-21 13:08:29'),
  1469. (382, 24, 38, 'Tony_Freeman', 'Mikey_Mongool', 'Combat Shotgun', '2016-12-21 13:12:21'),
  1470. (383, 26, 181, 'Tyler_X_Cage', 'Jayden_Trapz', 'Combat Shotgun', '2016-12-21 13:12:24'),
  1471. (384, 240, 24, 'Don_Ryders', 'Tony_Freeman', 'Shotgun', '2016-12-21 13:12:29'),
  1472. (385, 26, 181, 'Tyler_X_Cage', 'Jayden_Trapz', 'Sniper Rifle', '2016-12-21 13:12:47'),
  1473. (386, 46, 321, 'Simon_Walker', 'Theo_J_King', 'Shotgun', '2016-12-21 13:12:49'),
  1474. (387, 315, 376, 'Danny_Street', 'Miguel_Ramirez', 'Shotgun', '2016-12-21 13:12:59'),
  1475. (388, 46, 321, 'Simon_Walker', 'Theo_J_King', 'Shotgun', '2016-12-21 13:13:11'),
  1476. (389, 315, 376, 'Danny_Street', 'Miguel_Ramirez', 'Shotgun', '2016-12-21 13:13:14'),
  1477. (390, 221, 374, 'William_J_Thompson', 'Rehan_Carter', 'Sniper Rifle', '2016-12-21 13:13:29'),
  1478. (391, 26, 38, 'Tyler_X_Cage', 'Mikey_Mongool', 'Desert Eagle', '2016-12-21 13:14:01'),
  1479. (392, 46, 321, 'Simon_Walker', 'Theo_J_King', 'Shotgun', '2016-12-21 13:17:23'),
  1480. (393, 128, 327, 'Richie_Legend', 'Ben_Warren', 'Sniper Rifle', '2016-12-21 13:19:00'),
  1481. (394, 128, 327, 'Richie_Legend', 'Ben_Warren', 'Desert Eagle', '2016-12-21 13:19:21'),
  1482. (395, 240, 36, 'Don_Ryders', 'Wiz_Gucci_Sosa', 'Desert Eagle', '2016-12-21 13:20:13'),
  1483. (396, 240, 36, 'Don_Ryders', 'Wiz_Gucci_Sosa', 'Desert Eagle', '2016-12-21 13:20:29'),
  1484. (397, 26, 157, 'Tyler_X_Cage', 'Devin_Hawk', 'Combat Shotgun', '2016-12-21 13:21:52'),
  1485. (398, 51, 257, 'Kenny_Phixion', 'Kimbo_Slice', 'Sniper Rifle', '2016-12-21 13:21:52'),
  1486. (399, 51, 257, 'Kenny_Phixion', 'Kimbo_Slice', 'Combat Shotgun', '2016-12-21 13:22:10'),
  1487. (400, 51, 257, 'Kenny_Phixion', 'Kimbo_Slice', 'M4', '2016-12-21 13:24:56'),
  1488. (401, 14, 257, 'pete_swift', 'Kimbo_Slice', 'Shotgun', '2016-12-21 13:25:15'),
  1489. (402, 128, 257, 'Richie_Legend', 'Kimbo_Slice', 'M4', '2016-12-21 13:30:24'),
  1490. (403, 51, 257, 'Kenny_Phixion', 'Kimbo_Slice', 'M4', '2016-12-21 13:31:34'),
  1491. (404, 132, 117, 'Jordy', 'Erick_Johnson', 'Knife', '2016-12-21 13:35:20'),
  1492. (405, 132, 78, 'Jordy', 'Julia_Covenant', 'Combat Shotgun', '2016-12-21 13:37:21'),
  1493. (406, 24, 297, 'Tony_Freeman', 'Joey_Mercer', 'Combat Shotgun', '2016-12-21 13:38:04'),
  1494. (407, 24, 297, 'Tony_Freeman', 'Joey_Mercer', 'Desert Eagle', '2016-12-21 13:38:22'),
  1495. (408, 26, 24, 'Tyler_X_Cage', 'Tony_Freeman', 'Desert Eagle', '2016-12-21 13:42:07'),
  1496. (409, 51, 350, 'Kenny_Phixion', 'Lutixori_Amphibia', 'M4', '2016-12-21 13:44:04'),
  1497. (410, 24, 157, 'Tony_Freeman', 'John_Cock', 'Combat Shotgun', '2016-12-21 14:11:56'),
  1498. (411, 122, 24, 'oscar_g_ramirez', 'Tony_Freeman', 'Desert Eagle', '2016-12-21 14:12:28'),
  1499. (412, 122, 24, 'oscar_g_ramirez', 'Tony_Freeman', 'Desert Eagle', '2016-12-21 14:12:30'),
  1500. (413, 122, 24, 'oscar_g_ramirez', '', 'Desert Eagle', '2016-12-21 14:12:35'),
  1501. (414, 122, 145, 'oscar_g_ramirez', '', 'Shotgun', '2016-12-21 14:12:47'),
  1502. (415, 122, 113, 'oscar_g_ramirez', '', 'Shotgun', '2016-12-21 14:12:47'),
  1503. (416, 122, 69, 'oscar_g_ramirez', '', 'Desert Eagle', '2016-12-21 14:12:47'),
  1504. (417, 58, 24, 'David_Ross', 'Tony_Freeman', 'Shotgun', '2016-12-21 15:22:04'),
  1505. (418, 58, 24, 'David_Ross', 'Tony_Freeman', 'Desert Eagle', '2016-12-21 15:22:15'),
  1506. (419, 361, 58, 'Liam_Maxwell', 'David_Ross', 'Combat Shotgun', '2016-12-21 15:22:19'),
  1507. (420, 361, 58, 'Liam_Maxwell', 'David_Ross', 'Combat Shotgun', '2016-12-21 15:22:21'),
  1508. (421, 33, 15, 'Jonathan_Fabbrie', 'Tay_Forbes', 'Desert Eagle', '2016-12-21 15:22:34'),
  1509. (422, 61, 263, 'Cocoras_Manzoni', 'Danny_Delino', 'Fists', '2016-12-21 15:22:53'),
  1510. (423, 137, 113, 'Shawn_Menace', 'Michael_Render', 'Desert Eagle', '2016-12-21 15:23:54'),
  1511. (424, 61, 263, 'Cocoras_Manzoni', 'Danny_Delino', 'Fists', '2016-12-21 15:24:35'),
  1512. (425, 33, 137, 'Jonathan_Fabbrie', 'Shawn_Menace', 'Desert Eagle', '2016-12-21 15:25:15'),
  1513. (426, 33, 370, 'Jonathan_Fabbrie', 'Sigre_Gucci_Sosa', 'Shotgun', '2016-12-21 15:25:46'),
  1514. (427, 24, 97, 'Tony_Freeman', 'Lucas_Henning', 'Combat Shotgun', '2016-12-21 15:29:40'),
  1515. (428, 24, 97, 'Tony_Freeman', 'Lucas_Henning', 'Combat Shotgun', '2016-12-21 15:29:50'),
  1516. (429, 361, 97, 'Liam_Maxwell', 'Lucas_Henning', 'M4', '2016-12-21 15:29:52'),
  1517. (430, 361, 97, 'Liam_Maxwell', 'Lucas_Henning', 'M4', '2016-12-21 15:30:03'),
  1518. (431, 361, 97, 'Liam_Maxwell', 'Lucas_Henning', 'M4', '2016-12-21 15:30:05'),
  1519. (432, 8, 370, 'Dann', 'Sigre_Gucci_Sosa', 'Combat Shotgun', '2016-12-21 15:35:50'),
  1520. (433, 24, 192, 'Tony_Freeman', 'Adam_Menace', 'Sniper Rifle', '2016-12-21 15:39:24'),
  1521. (434, 24, 192, 'Tony_Freeman', 'Adam_Menace', 'Sniper Rifle', '2016-12-21 15:39:26'),
  1522. (435, 24, 280, 'Tony_Freeman', 'Devanshul_Sharma', 'Combat Shotgun', '2016-12-21 15:41:53'),
  1523. (436, 361, 280, 'Liam_Maxwell', 'Devanshul_Sharma', 'Combat Shotgun', '2016-12-21 15:41:55'),
  1524. (437, 361, 280, 'Liam_Maxwell', 'Devanshul_Sharma', 'Sniper Rifle', '2016-12-21 15:41:59'),
  1525. (438, 58, 280, 'David_Ross', 'Devanshul_Sharma', 'Combat Shotgun', '2016-12-21 15:42:06'),
  1526. (439, 24, 280, 'Tony_Freeman', 'Devanshul_Sharma', 'M4', '2016-12-21 15:42:08'),
  1527. (440, 24, 280, 'Tony_Freeman', 'Devanshul_Sharma', 'M4', '2016-12-21 15:42:10'),
  1528. (441, 116, 39, 'Lucenzo_Johnson', 'Gre_Hunter', 'Desert Eagle', '2016-12-21 15:42:36'),
  1529. (442, 116, 39, 'Lucenzo_Johnson', 'Gre_Hunter', 'Desert Eagle', '2016-12-21 15:42:44'),
  1530. (443, 24, 403, 'Tony_Freeman', 'WiZ_KaZaMa', 'Sniper Rifle', '2016-12-21 15:43:04'),
  1531. (444, 24, 403, 'Tony_Freeman', 'WiZ_KaZaMa', 'Combat Shotgun', '2016-12-21 15:43:15'),
  1532. (445, 361, 403, 'Liam_Maxwell', '', 'Combat Shotgun', '2016-12-21 15:43:54'),
  1533. (446, 24, 390, 'Tony_Freeman', 'Steve_Santo', 'Combat Shotgun', '2016-12-21 15:44:49'),
  1534. (447, 77, 410, 'Joga_Hernandez', 'Rondo_Nine', 'Combat Shotgun', '2016-12-21 15:45:07'),
  1535. (448, 116, 410, 'Lucenzo_Johnson', 'Rondo_Nine', 'Combat Shotgun', '2016-12-21 15:55:02'),
  1536. (449, 81, 78, 'Tommy_Gates', 'Julia_Covenant', 'Knife', '2016-12-21 15:57:36'),
  1537. (450, 81, 78, 'Tommy_Gates', 'Julia_Covenant', 'Knife', '2016-12-21 15:57:38'),
  1538. (451, 81, 78, 'Tommy_Gates', 'Julia_Covenant', 'Knife', '2016-12-21 15:58:21'),
  1539. (452, 81, 78, 'Tommy_Gates', 'Julia_Covenant', 'Knife', '2016-12-21 15:58:23'),
  1540. (453, 192, 417, 'Adam_Menace', 'RahuI_Ramsay', 'Fists', '2016-12-21 16:07:22'),
  1541. (454, 360, 33, 'Eazy_Gucci_Sosa', 'Jonathan_Fabbrie', 'Shotgun', '2016-12-21 16:16:53'),
  1542. (455, 132, 417, 'Jordy', 'RahuI_Ramsay', 'Combat Shotgun', '2016-12-21 16:23:15'),
  1543. (456, 132, 417, 'Jordy', 'RahuI_Ramsay', 'Combat Shotgun', '2016-12-21 16:24:41'),
  1544. (457, 132, 417, 'Jordy', 'RahuI_Ramsay', 'Combat Shotgun', '2016-12-21 16:29:07'),
  1545. (458, 132, 78, 'Jordy', 'Julia_Covenant', 'Combat Shotgun', '2016-12-21 16:47:06'),
  1546. (459, 11, 181, 'Lance_Lanvins', 'Jayden_Trapz', 'Desert Eagle', '2016-12-21 16:47:14'),
  1547. (460, 11, 181, 'Lance_Lanvins', 'Jayden_Trapz', 'Desert Eagle', '2016-12-21 16:47:25'),
  1548. (461, 50, 192, 'Troy_Gucci_Sosa', 'Adam_Menace', 'Desert Eagle', '2016-12-21 16:47:32'),
  1549. (462, 50, 192, 'Troy_Gucci_Sosa', 'Adam_Menace', 'Desert Eagle', '2016-12-21 16:47:44'),
  1550. (463, 8, 9, 'Dann_Lazlow', 'Tori_Chester', 'Desert Eagle', '2016-12-21 17:03:05'),
  1551. (464, 77, 365, 'Joga_Hernandez', 'Absar_Khan', 'Combat Shotgun', '2016-12-21 17:08:22'),
  1552. (465, 77, 365, 'Joga_Hernandez', 'Absar_Khan', 'Fists', '2016-12-21 17:09:53'),
  1553. (466, 77, 365, 'Joga_Hernandez', 'Absar_Khan', 'Fists', '2016-12-21 17:09:57'),
  1554. (467, 13, 8, 'Tiber', 'Dann_Lazlow', 'Minigun', '2016-12-21 17:19:53'),
  1555. (468, 116, 74, 'Lucenzo_Johnson', 'Tom_Wrzosek', 'Sniper Rifle', '2016-12-21 17:24:58'),
  1556. (469, 116, 74, 'Lucenzo_Johnson', 'Tom_Wrzosek', 'Desert Eagle', '2016-12-21 17:25:09'),
  1557. (470, 11, 63, 'Lance_Lanvins', 'Ray_Bronx', 'Chainsaw', '2016-12-21 17:41:06'),
  1558. (471, 51, 257, 'Kenny_Phixion', 'Kimbo_Slice', 'Combat Shotgun', '2016-12-21 17:45:52'),
  1559. (472, 51, 257, 'Kenny_Phixion', 'Kimbo_Slice', 'Desert Eagle', '2016-12-21 17:46:02'),
  1560. (473, 63, 11, 'Ray_Bronx', 'Lance_Lanvins', 'Shotgun', '2016-12-21 17:47:56'),
  1561. (474, 58, 257, 'David_Ross', 'Kimbo_Slice', 'Combat Shotgun', '2016-12-21 17:50:14'),
  1562. (475, 51, 257, 'Kenny_Phixion', 'Kimbo_Slice', 'Combat Shotgun', '2016-12-21 17:50:22'),
  1563. (476, 63, 11, 'Ray_Bronx', 'Lance_Lanvins', 'Shotgun', '2016-12-21 17:52:20'),
  1564. (477, 132, 159, 'Jordy', 'Alom_Trapz', 'Combat Shotgun', '2016-12-21 17:52:57'),
  1565. (478, 19, 404, 'Blake_Amphibia', 'Dolla_Street', 'Shotgun', '2016-12-21 18:18:06'),
  1566. (479, 63, 19, 'Ray_Bronx', 'Blake_Amphibia', 'Shotgun', '2016-12-21 18:18:16'),
  1567. (480, 63, 19, 'Ray_Bronx', 'Blake_Amphibia', 'Shotgun', '2016-12-21 18:18:26'),
  1568. (481, 88, 137, 'Jordan_Grande', 'Shawn_Menace', 'Desert Eagle', '2016-12-21 18:27:48'),
  1569. (482, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 18:29:01'),
  1570. (483, 113, 137, 'Michael_Render', 'Shawn_Menace', 'Shotgun', '2016-12-21 18:29:10'),
  1571. (484, 88, 137, 'Jordan_Grande', 'Shawn_Menace', 'Sniper Rifle', '2016-12-21 18:40:25'),
  1572. (485, 169, 135, 'terry_scaletta', 'Hamza_Scaletta', 'Sniper Rifle', '2016-12-21 18:40:35'),
  1573. (486, 113, 137, 'Michael_Render', 'Shawn_Menace', 'Sniper Rifle', '2016-12-21 18:41:35'),
  1574. (487, 433, 434, 'Lamel_Fokden', 'Hooligan_Maddox', 'Fists', '2016-12-21 18:42:59'),
  1575. (488, 137, 192, 'Shawn_Menace', 'Adam_Menace', 'Desert Eagle', '2016-12-21 18:43:46'),
  1576. (489, 77, 404, 'Joga_Hernandez', 'Dolla_Street', 'Combat Shotgun', '2016-12-21 18:52:36'),
  1577. (490, 77, 404, 'Joga_Hernandez', 'Dolla_Street', 'Combat Shotgun', '2016-12-21 18:52:44'),
  1578. (491, 63, 77, 'Ray_Bronx', 'Joga_Hernandez', 'Shotgun', '2016-12-21 18:52:53'),
  1579. (492, 63, 77, 'Ray_Bronx', 'Joga_Hernandez', 'Shotgun', '2016-12-21 18:53:02'),
  1580. (493, 6, 19, 'Asykon_Amphibia', 'Blake_Amphibia', 'Shotgun', '2016-12-21 18:54:25'),
  1581. (494, 88, 10, 'Jordan_Grande', 'Franklyn_Menace', 'Sniper Rifle', '2016-12-21 18:56:05'),
  1582. (495, 169, 441, 'terry_scaletta', 'Micjan_G_Calindog', 'Sniper Rifle', '2016-12-21 18:59:44'),
  1583. (496, 169, 441, 'terry_scaletta', 'Micjan_G_Calindog', 'Desert Eagle', '2016-12-21 19:00:03'),
  1584. (497, 10, 440, 'Franklyn_Menace', 'Jake_Gomez', 'Sniper Rifle', '2016-12-21 19:04:03'),
  1585. (498, 137, 440, 'Shawn_Menace', 'Jake_Gomez', 'Desert Eagle', '2016-12-21 19:04:16'),
  1586. (499, 137, 317, 'Shawn_Menace', 'Dez_Marshall', 'Desert Eagle', '2016-12-21 19:09:07'),
  1587. (500, 132, 137, 'Jordy', 'Shawn_Menace', 'Combat Shotgun', '2016-12-21 19:14:04'),
  1588. (501, 11, 85, 'Lance', 'Tyrone_Coleman', 'Colt 45', '2016-12-21 19:18:56'),
  1589. (502, 436, 443, 'Omar_Lakewood', 'chez_G_Galaxy', 'Shotgun', '2016-12-21 19:18:59'),
  1590. (503, 74, 137, 'Tom_Wrzosek', 'Shawn_Menace', 'Desert Eagle', '2016-12-21 19:29:29'),
  1591. (504, 176, 63, 'Olly_Bronx', 'Ray_Bronx', 'Combat Shotgun', '2016-12-21 19:33:05'),
  1592. (505, 74, 192, 'Tom_Wrzosek', 'Adam_Menace', 'Desert Eagle', '2016-12-21 19:34:19'),
  1593. (506, 74, 137, 'Tom_Wrzosek', 'Shawn_Menace', 'Desert Eagle', '2016-12-21 19:34:58'),
  1594. (507, 132, 77, 'Jordy', 'Joga_Hernandez', 'Combat Shotgun', '2016-12-21 19:42:00'),
  1595. (508, 176, 279, 'Olly_Bronx', 'Dan_Dandruff', 'Desert Eagle', '2016-12-21 20:00:26'),
  1596. (509, 176, 279, 'Olly_Bronx', 'Dan_Dandruff', 'Sniper Rifle', '2016-12-21 20:00:53'),
  1597. (510, 176, 256, 'Olly_Bronx', 'Lawrence_Vincre', 'Sniper Rifle', '2016-12-21 20:10:02'),
  1598. (511, 176, 256, 'Olly_Bronx', 'Lawrence_Vincre', 'Sniper Rifle', '2016-12-21 20:10:14'),
  1599. (512, 77, 10, 'Joga_Hernandez', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 20:13:26'),
  1600. (513, 77, 10, 'Joga_Hernandez', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 20:13:28'),
  1601. (514, 77, 10, 'Joga_Hernandez', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 20:13:30'),
  1602. (515, 77, 10, 'Joga_Hernandez', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 20:13:33'),
  1603. (516, 77, 10, 'Joga_Hernandez', 'Franklyn_Menace', 'Shotgun', '2016-12-21 20:13:36'),
  1604. (517, 77, 10, 'Joga_Hernandez', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 20:13:37'),
  1605. (518, 77, 10, 'Joga_Hernandez', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 20:13:39'),
  1606. (519, 77, 10, 'Joga_Hernandez', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 20:13:41'),
  1607. (520, 77, 10, 'Joga_Hernandez', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 20:13:44'),
  1608. (521, 77, 10, 'Joga_Hernandez', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 20:13:46'),
  1609. (522, 77, 10, 'Joga_Hernandez', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 20:13:55'),
  1610. (523, 77, 418, 'Joga_Hernandez', 'Palvoskia_Vladisk', 'Desert Eagle', '2016-12-21 20:14:30'),
  1611. (524, 77, 418, 'Joga_Hernandez', 'Palvoskia_Vladisk', 'Desert Eagle', '2016-12-21 20:14:40'),
  1612. (525, 77, 74, 'Joga_Hernandez', 'Tom_Wrzosek', 'Shotgun', '2016-12-21 20:16:22'),
  1613. (526, 77, 74, 'Joga_Hernandez', 'Tom_Wrzosek', 'Desert Eagle', '2016-12-21 20:16:30'),
  1614. (527, 116, 247, 'Justin_Chigga', 'Claude_West', 'Minigun', '2016-12-21 20:24:41'),
  1615. (528, 289, 247, 'David_S_Schneider', 'Claude_West', 'Minigun', '2016-12-21 20:24:44'),
  1616. (529, 116, 247, 'Justin_Chigga', 'Claude_West', 'Minigun', '2016-12-21 20:24:57'),
  1617. (530, 256, 247, 'Lawrence_Vincre', 'Claude_West', 'Minigun', '2016-12-21 20:24:59'),
  1618. (531, 202, 201, 'Kiiong_Lu', 'Fredo_Woodz', 'Shotgun', '2016-12-21 20:29:20'),
  1619. (532, 419, 16, 'Imam_Scaletta', 'Walter_Cash', 'Desert Eagle', '2016-12-21 20:33:50'),
  1620. (533, 419, 16, 'Imam_Scaletta', 'Walter_Cash', 'Desert Eagle', '2016-12-21 20:34:16'),
  1621. (534, 123, 10, 'Justin_Wrzosek', 'Franklyn_Menace', 'Shotgun', '2016-12-21 20:46:09'),
  1622. (535, 123, 10, 'Justin_Wrzosek', 'Franklyn_Menace', 'Shotgun', '2016-12-21 20:46:11'),
  1623. (536, 123, 10, 'Justin_Wrzosek', 'Franklyn_Menace', 'Shotgun', '2016-12-21 20:46:13'),
  1624. (537, 123, 10, 'Justin_Wrzosek', 'Franklyn_Menace', 'Shotgun', '2016-12-21 20:46:16'),
  1625. (538, 247, 222, 'Claude_West', 'Shankz_Street', 'Shotgun', '2016-12-21 20:47:58'),
  1626. (539, 169, 157, 'Terry_Chigga', 'Dan_Devil', 'Desert Eagle', '2016-12-21 21:00:23'),
  1627. (540, 144, 169, 'Lrizz_Devil', 'Terry_Chigga', 'Combat Shotgun', '2016-12-21 21:00:31'),
  1628. (541, 144, 169, 'Lrizz_Devil', 'Terry_Chigga', 'Combat Shotgun', '2016-12-21 21:00:59'),
  1629. (542, 11, 247, 'Lance_Lanvins', 'Claude_West', 'Shotgun', '2016-12-21 21:02:09'),
  1630. (543, 11, 247, 'Lance_Lanvins', 'Claude_West', 'Desert Eagle', '2016-12-21 21:02:20'),
  1631. (544, 144, 221, 'Enzo_Ozbourne', 'William_J_Thompson', 'Knife', '2016-12-21 21:03:55'),
  1632. (545, 144, 221, 'Enzo_Ozbourne', 'William_J_Thompson', 'Desert Eagle', '2016-12-21 21:04:07'),
  1633. (546, 34, 423, 'Ed_Slash', 'Aizander_Sage', 'Sniper Rifle', '2016-12-21 21:06:24'),
  1634. (547, 34, 423, 'Ed_Slash', 'Aizander_Sage', 'Combat Shotgun', '2016-12-21 21:06:35'),
  1635. (548, 34, 423, 'Ed_Slash', 'Aizander_Sage', 'Sniper Rifle', '2016-12-21 21:14:19'),
  1636. (549, 74, 34, 'Tom_Wrzosek', 'Ed_Slash', 'Sniper Rifle', '2016-12-21 21:14:32'),
  1637. (550, 169, 74, 'Terry_Chigga', 'Tom_Wrzosek', 'Sniper Rifle', '2016-12-21 21:16:47'),
  1638. (551, 169, 74, 'Terry_Chigga', 'Tom_Wrzosek', 'Desert Eagle', '2016-12-21 21:16:55'),
  1639. (552, 144, 331, 'Karim_Abas', 'Andrei_Dillinger', 'Knife', '2016-12-21 21:20:24'),
  1640. (553, 169, 34, 'Terry_Chigga', 'Ed_Slash', 'Sniper Rifle', '2016-12-21 21:22:09'),
  1641. (554, 221, 331, 'William_J_Thompson', 'Andrei_Dillinger', 'Desert Eagle', '2016-12-21 21:23:01'),
  1642. (555, 81, 16, 'Tommy_Gates', 'Walter_Cash', 'Knife', '2016-12-21 21:29:15'),
  1643. (556, 81, 16, 'Tommy_Gates', 'Walter_Cash', 'Knife', '2016-12-21 21:29:17'),
  1644. (557, 169, 74, 'Terry_Chigga', 'Tom_Wrzosek', 'Sniper Rifle', '2016-12-21 21:36:36'),
  1645. (558, 221, 169, 'William_J_Thompson', 'Terry_Chigga', 'Desert Eagle', '2016-12-21 21:36:37'),
  1646. (559, 221, 169, 'William_J_Thompson', 'Terry_Chigga', 'Desert Eagle', '2016-12-21 21:36:40'),
  1647. (560, 469, 208, 'Mikey_D_Veterano', 'Jay_King', 'Fists', '2016-12-21 21:39:39'),
  1648. (561, 256, 469, 'Lawrence_Vincre', 'Mikey_D_Veterano', 'Fists', '2016-12-21 21:39:46'),
  1649. (562, 270, 324, 'Chase_Ainsworth', '', 'Desert Eagle', '2016-12-21 21:51:29'),
  1650. (563, 270, 324, 'Chase_Ainsworth', 'Johnny_Bravo', 'Desert Eagle', '2016-12-21 21:53:23'),
  1651. (564, 221, 270, 'William_J_Thompson', 'Chase_Ainsworth', 'Desert Eagle', '2016-12-21 21:53:27'),
  1652. (565, 34, 221, 'Ed_Slash', 'William_J_Thompson', 'Combat Shotgun', '2016-12-21 21:54:05'),
  1653. (566, 34, 221, 'Ed_Slash', 'William_J_Thompson', 'Combat Shotgun', '2016-12-21 21:54:17'),
  1654. (567, 34, 324, 'Ed_Slash', 'Johnny_Bravo', 'Sniper Rifle', '2016-12-21 21:57:30'),
  1655. (568, 423, 270, 'Aizander_Sage', 'Chase_Ainsworth', 'Fists', '2016-12-21 21:59:23'),
  1656. (569, 221, 357, 'William_J_Thompson', 'Emilio_Putik', 'Desert Eagle', '2016-12-21 22:08:43'),
  1657. (570, 331, 312, 'Andrei_Dillinger', 'Marco_Ki', 'Combat Shotgun', '2016-12-21 22:08:54'),
  1658. (571, 423, 249, 'Aizander_Sage', 'Edward_Vincre', 'Combat Shotgun', '2016-12-21 22:09:01'),
  1659. (572, 176, 453, 'Olly_Bronx', 'tane_honda', 'Sniper Rifle', '2016-12-21 22:09:25'),
  1660. (573, 176, 453, 'Olly_Bronx', 'tane_honda', 'Sniper Rifle', '2016-12-21 22:09:26'),
  1661. (574, 331, 312, 'Andrei_Dillinger', 'Marco_Ki', 'Combat Shotgun', '2016-12-21 22:09:27'),
  1662. (575, 34, 357, 'Ed_Slash', 'Emilio_Putik', 'Combat Shotgun', '2016-12-21 22:14:08'),
  1663. (576, 331, 221, 'Andrei_Dillinger', 'William_J_Thompson', 'Combat Shotgun', '2016-12-21 22:15:01'),
  1664. (577, 2, 357, 'Tyler_Huntley', 'Emilio_Putik', 'Knife', '2016-12-21 22:15:22'),
  1665. (578, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:02'),
  1666. (579, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:03'),
  1667. (580, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:06'),
  1668. (581, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:09'),
  1669. (582, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:11'),
  1670. (583, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:18'),
  1671. (584, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:19'),
  1672. (585, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:21'),
  1673. (586, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:26'),
  1674. (587, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:28'),
  1675. (588, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:32'),
  1676. (589, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:36'),
  1677. (590, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:39'),
  1678. (591, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:20:40'),
  1679. (592, 74, 137, 'Tom_Wrzosek', 'Shawn_Menace', 'Silenced Pistol', '2016-12-21 22:22:27'),
  1680. (593, 137, 74, 'Shawn_Menace', 'Tom_Wrzosek', 'Desert Eagle', '2016-12-21 22:22:49'),
  1681. (594, 74, 137, 'Tom_Wrzosek', 'Shawn_Menace', 'M4', '2016-12-21 22:23:09'),
  1682. (595, 74, 12, 'Tom_Wrzosek', 'Lui_Mendez', 'Desert Eagle', '2016-12-21 22:23:27'),
  1683. (596, 74, 137, 'Tom_Wrzosek', 'Shawn_Menace', 'Desert Eagle', '2016-12-21 22:23:41'),
  1684. (597, 137, 74, 'Shawn_Menace', 'Tom_Wrzosek', 'Desert Eagle', '2016-12-21 22:23:53'),
  1685. (598, 137, 74, 'Shawn_Menace', 'Tom_Wrzosek', 'Desert Eagle', '2016-12-21 22:24:28'),
  1686. (599, 74, 137, 'Tom_Wrzosek', 'Shawn_Menace', 'Sniper Rifle', '2016-12-21 22:29:54');
  1687. INSERT INTO `kills` (`id`, `killer_uid`, `target_uid`, `killer`, `target`, `reason`, `date`) VALUES
  1688. (600, 137, 74, 'Shawn_Menace', 'Tom_Wrzosek', 'Desert Eagle', '2016-12-21 22:30:07'),
  1689. (601, 8, 363, 'Dann', 'Jack_Justice', 'Combat Shotgun', '2016-12-21 22:30:18'),
  1690. (602, 74, 137, 'Tom_Wrzosek', 'Shawn_Menace', 'Desert Eagle', '2016-12-21 22:30:33'),
  1691. (603, 137, 74, 'Shawn_Menace', 'Tom_Wrzosek', 'Desert Eagle', '2016-12-21 22:30:47'),
  1692. (604, 74, 137, 'Tom_Wrzosek', 'Shawn_Menace', 'Desert Eagle', '2016-12-21 22:30:51'),
  1693. (605, 137, 74, 'Shawn_Menace', 'Tom_Wrzosek', 'Desert Eagle', '2016-12-21 22:32:18'),
  1694. (606, 10, 74, 'Franklyn_Menace', 'Tom_Wrzosek', 'Combat Shotgun', '2016-12-21 22:33:52'),
  1695. (607, 363, 357, 'Jack_Justice', 'Emilio_Putik', 'Shotgun', '2016-12-21 22:34:43'),
  1696. (608, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:35:23'),
  1697. (609, 137, 10, 'Shawn_Menace', 'Franklyn_Menace', 'Desert Eagle', '2016-12-21 22:35:25'),
  1698. (610, 423, 363, 'Aizander_Sage', 'Jack_Justice', 'Fists', '2016-12-21 22:35:45'),
  1699. (611, 265, 312, 'Wu_Gotti', 'Marco_Ki', 'Shotgun', '2016-12-21 22:39:57'),
  1700. (612, 265, 312, 'Wu_Gotti', 'Marco_Ki', 'Shotgun', '2016-12-21 22:40:13'),
  1701. (613, 144, 357, 'Lrizz_Devil', 'Emilio_Putik', 'Sniper Rifle', '2016-12-21 22:45:39'),
  1702. (614, 144, 357, 'Lrizz_Devil', 'Emilio_Putik', 'Desert Eagle', '2016-12-21 22:45:48'),
  1703. (615, 283, 270, 'Keima_Adkins', 'Chase_Ainsworth', 'Shotgun', '2016-12-21 22:48:17'),
  1704. (616, 199, 324, 'Mike_Wrzosek', 'Johnny_Bravo', 'Sniper Rifle', '2016-12-21 23:14:41'),
  1705. (617, 437, 199, 'Dei_Kremlin', 'Mike_Wrzosek', 'Desert Eagle', '2016-12-21 23:15:52'),
  1706. (618, 437, 199, 'Dei_Kremlin', 'Mike_Wrzosek', 'Desert Eagle', '2016-12-21 23:16:04'),
  1707. (619, 137, 263, 'Shawn_Menace', 'Danny_Delino', 'Desert Eagle', '2016-12-21 23:29:26'),
  1708. (620, 176, 248, 'Olly_Bronx', 'Shane_Malakas', 'Combat Shotgun', '2016-12-21 23:29:48'),
  1709. (621, 176, 248, 'Olly_Bronx', 'Shane_Malakas', 'Combat Shotgun', '2016-12-21 23:29:57'),
  1710. (622, 208, 201, 'Jay_King', 'Fredo_Woodz', 'Shotgun', '2016-12-21 23:36:39'),
  1711. (623, 208, 201, 'Jay_King', 'Fredo_Woodz', 'Shotgun', '2016-12-21 23:36:53'),
  1712. (624, 144, 331, 'Sam_Ozbourne', 'Andrei_Dillinger', 'Desert Eagle', '2016-12-21 23:44:12'),
  1713. (625, 137, 10, 'Shawn', 'Franklyn_Menace', 'Desert Eagle', '2016-12-22 00:07:54'),
  1714. (626, 485, 357, 'Khatani_Warjam', 'Emilio_Putik', 'Shotgun', '2016-12-22 00:08:49'),
  1715. (627, 485, 357, 'Khatani_Warjam', 'Emilio_Putik', 'Shotgun', '2016-12-22 00:08:50'),
  1716. (628, 12, 10, 'Lui', 'Franklyn_Menace', 'MP5', '2016-12-22 00:14:45'),
  1717. (629, 268, 331, 'Fox_Creed', 'Andrei_Dillinger', 'Desert Eagle', '2016-12-22 00:24:35'),
  1718. (630, 137, 198, 'Shawn', 'Jay_Trapz', 'Desert Eagle', '2016-12-22 00:27:03'),
  1719. (631, 357, 363, 'Emilio_Putik', 'Dominic_Frost', 'Fists', '2016-12-22 00:31:51'),
  1720. (632, 34, 278, 'Ed_Slash', 'Skusta_Honda', 'Combat Shotgun', '2016-12-22 00:38:20'),
  1721. (633, 34, 269, 'Ed_Slash', 'Amado_Honda', 'Desert Eagle', '2016-12-22 00:38:30'),
  1722. (634, 34, 269, 'Ed_Slash', 'Amado_Honda', 'Desert Eagle', '2016-12-22 00:38:47'),
  1723. (635, 281, 34, 'Jovs_Honda', 'Ed_Slash', 'Shotgun', '2016-12-22 00:38:53'),
  1724. (636, 34, 281, 'Ed_Slash', 'Jovs_Honda', 'Desert Eagle', '2016-12-22 00:38:53'),
  1725. (637, 34, 281, 'Ed_Slash', 'Jovs_Honda', 'Combat Shotgun', '2016-12-22 00:43:56'),
  1726. (638, 10, 34, 'Franklyn_Menace', 'Ed_Slash', 'Desert Eagle', '2016-12-22 00:50:21'),
  1727. (639, 34, 10, 'Ed_Slash', 'Franklyn_Menace', 'Sniper Rifle', '2016-12-22 00:55:47'),
  1728. (640, 77, 256, 'Joga_Hernandez', 'Lawrence_Vincre', 'Shotgun', '2016-12-22 01:01:21'),
  1729. (641, 12, 34, 'Lui', 'Ed_Slash', 'Fists', '2016-12-22 01:06:04'),
  1730. (642, 34, 12, 'Ed_Slash', 'Lui_Mendez', 'Sniper Rifle', '2016-12-22 01:09:00'),
  1731. (643, 12, 34, 'Lui_Mendez', 'Ed_Slash', 'MP5', '2016-12-22 01:10:22'),
  1732. (644, 34, 12, 'Ed_Slash', 'Lui_Mendez', 'Sniper Rifle', '2016-12-22 01:11:17'),
  1733. (645, 137, 34, 'Shawn_Menace', 'Ed_Slash', 'Combat Shotgun', '2016-12-22 01:13:36'),
  1734. (646, 12, 137, 'Lui_Mendez', 'Shawn_Menace', 'MP5', '2016-12-22 01:14:59'),
  1735. (647, 505, 116, 'Jeyo_Chigga', 'Justin_Chigga', 'Fists', '2016-12-22 01:17:28'),
  1736. (648, 34, 36, 'Ed_Slash', 'Wiz_Gucci_Sosa', 'Fists', '2016-12-22 01:22:54'),
  1737. (649, 11, 144, 'Lance', 'Lrizz_Devil', 'Desert Eagle', '2016-12-22 01:23:47'),
  1738. (650, 137, 77, 'Shawn', 'Joga_Hernandez', 'Combat Shotgun', '2016-12-22 01:32:59'),
  1739. (651, 34, 254, 'Ed_Slash', 'Diego_Honda', 'Desert Eagle', '2016-12-22 01:33:54'),
  1740. (652, 34, 254, 'Ed_Slash', 'Diego_Honda', 'Desert Eagle', '2016-12-22 01:34:04'),
  1741. (653, 137, 12, 'Shawn', 'Lui_Mendez', 'Combat Shotgun', '2016-12-22 01:34:13'),
  1742. (654, 137, 12, 'Shawn', 'Lui_Mendez', 'Combat Shotgun', '2016-12-22 01:34:19'),
  1743. (655, 137, 12, 'Shawn', 'Lui_Mendez', 'Combat Shotgun', '2016-12-22 01:36:30'),
  1744. (656, 11, 92, 'Lance_Lanvins', 'Rahul_Ramsay', 'Desert Eagle', '2016-12-22 01:37:19'),
  1745. (657, 11, 92, 'Lance_Lanvins', 'Rahul_Ramsay', 'Desert Eagle', '2016-12-22 01:37:34'),
  1746. (658, 11, 92, 'Lance_Lanvins', 'Rahul_Ramsay', 'Desert Eagle', '2016-12-22 01:37:43'),
  1747. (659, 12, 34, 'Lui_Mendez', 'Ed_Slash', 'MP5', '2016-12-22 01:38:31'),
  1748. (660, 34, 265, 'Ed_Slash', 'Wu_Gotti', 'Desert Eagle', '2016-12-22 01:49:23'),
  1749. (661, 74, 265, 'Tom_Wrzosek', 'Wu_Gotti', 'Combat Shotgun', '2016-12-22 02:01:38'),
  1750. (662, 300, 508, 'Olivia_Beckett', 'Heist_Devil', 'Shotgun', '2016-12-22 02:21:42'),
  1751. (663, 137, 74, 'Shawn', 'Tom_Wrzosek', 'Combat Shotgun', '2016-12-22 02:26:58'),
  1752. (664, 137, 74, 'Shawn', 'Tom_Wrzosek', 'Combat Shotgun', '2016-12-22 02:28:21'),
  1753. (665, 265, 141, 'Wu_Gotti', 'James_Maple', 'Shotgun', '2016-12-22 02:30:27'),
  1754. (666, 77, 265, 'Joga_Hernandez', 'Wu_Gotti', 'Shotgun', '2016-12-22 02:30:45'),
  1755. (667, 157, 141, 'Dan_Devil', 'James_Maple', 'Shotgun', '2016-12-22 02:30:46'),
  1756. (668, 144, 265, 'Lrizz_Devil', 'Wu_Gotti', 'Desert Eagle', '2016-12-22 02:35:45'),
  1757. (669, 137, 92, 'Shawn', 'Rahul_Ramsay', 'Desert Eagle', '2016-12-22 02:41:31'),
  1758. (670, 24, 28, 'Tony_Freeman', 'Richard_Krauser', 'Combat Shotgun', '2016-12-23 13:25:39'),
  1759. (671, 24, 28, 'Tony_Freeman', 'Richard_Krauser', 'Combat Shotgun', '2016-12-23 13:25:51'),
  1760. (672, 318, 113, 'Kai_G_Ramirez', 'Michael_Render', 'Shotgun', '2016-12-23 13:35:02'),
  1761. (673, 327, 318, 'Ben_Warren', 'Kai_G_Ramirez', 'Desert Eagle', '2016-12-23 13:35:09'),
  1762. (674, 34, 337, 'Ed_Slash', 'Simon_Gucci_Sosa', 'Desert Eagle', '2016-12-23 13:36:00'),
  1763. (675, 337, 34, 'Simon_Gucci_Sosa', 'Ed_Slash', 'Chainsaw', '2016-12-23 13:36:01'),
  1764. (676, 26, 361, 'Tyler_X_Cage', 'Liam_Maxwell', 'Combat Shotgun', '2016-12-23 13:40:59'),
  1765. (677, 26, 11, 'Tyler_X_Cage', 'Lance_Lanvins', 'Sniper Rifle', '2016-12-23 13:48:48'),
  1766. (678, 132, 373, 'Jordan_Trapz', 'Angelo_Hayes', 'Desert Eagle', '2016-12-23 13:52:03'),
  1767. (679, 132, 373, 'Jordan_Trapz', 'Angelo_Hayes', 'Combat Shotgun', '2016-12-23 13:52:15'),
  1768. (680, 34, 113, 'Ed_Slash', 'Michael_Render', 'Desert Eagle', '2016-12-23 13:54:25'),
  1769. (681, 13, 522, 'Tiber', 'Paris_Breyer', 'Minigun', '2016-12-23 14:08:29'),
  1770. (682, 13, 100, 'Tiber', 'Orlando_Amphibia', 'Explosion', '2016-12-23 14:08:39'),
  1771. (683, 24, 529, 'Tony_Freeman', 'Kevin_Amphibia', 'Sniper Rifle', '2016-12-23 14:08:40'),
  1772. (684, 28, 136, 'Richard_Krauser', 'Dori_Bale', 'Shotgun', '2016-12-23 14:10:41'),
  1773. (685, 24, 361, 'Tony_Freeman', 'Liam_Maxwell', 'Sniper Rifle', '2016-12-23 14:11:02'),
  1774. (686, 26, 361, 'Tyler_X_Cage', 'Liam_Maxwell', 'Vehicle', '2016-12-23 14:11:49'),
  1775. (687, 524, 28, 'Vallon_West', 'Richard_Krauser', 'Desert Eagle', '2016-12-23 14:12:06'),
  1776. (688, 13, 132, 'Tiber', 'Jordy', 'Minigun', '2016-12-23 14:14:49'),
  1777. (689, 26, 24, 'Tyler_X_Cage', 'Tony_Freeman', 'Combat Shotgun', '2016-12-23 14:15:33'),
  1778. (690, 132, 26, 'Jordy', 'Tyler_X_Cage', 'Combat Shotgun', '2016-12-23 14:15:55'),
  1779. (691, 26, 524, 'Tyler_X_Cage', 'Vallon_West', 'Combat Shotgun', '2016-12-23 14:16:52'),
  1780. (692, 26, 524, 'Tyler_X_Cage', 'Vallon_West', 'Desert Eagle', '2016-12-23 14:17:01'),
  1781. (693, 132, 11, 'Jordy', 'Lance', 'Combat Shotgun', '2016-12-23 14:23:18'),
  1782. (694, 26, 282, 'Tyler_X_Cage', 'Elon_Maple', 'Sniper Rifle', '2016-12-23 14:25:48'),
  1783. (695, 26, 217, 'Tyler_X_Cage', 'Michael_Maple', 'Sniper Rifle', '2016-12-23 14:25:54'),
  1784. (696, 26, 282, 'Tyler_X_Cage', 'Elon_Maple', 'Combat Shotgun', '2016-12-23 14:26:19'),
  1785. (697, 26, 217, 'Tyler_X_Cage', 'Michael_Maple', 'Desert Eagle', '2016-12-23 14:26:24'),
  1786. (698, 24, 28, 'Tony_Freeman', 'Richard_Krauser', 'Combat Shotgun', '2016-12-23 14:30:55'),
  1787. (699, 26, 28, 'Tyler_X_Cage', 'Richard_Krauser', 'Desert Eagle', '2016-12-23 14:31:49'),
  1788. (700, 132, 49, 'Jordy', 'Domi_Walker', 'Combat Shotgun', '2016-12-23 14:33:44'),
  1789. (701, 26, 355, 'Tyler_X_Cage', 'Ben_Barrage', 'Desert Eagle', '2016-12-23 14:35:41'),
  1790. (702, 26, 355, 'Tyler_X_Cage', 'Ben_Barrage', 'Combat Shotgun', '2016-12-23 14:35:46'),
  1791. (703, 132, 337, 'Jordy', 'Simon_Gucci_Sosa', 'Desert Eagle', '2016-12-23 14:39:35'),
  1792. (704, 132, 556, 'Jordy', 'Julian_Trapz', 'Combat Shotgun', '2016-12-23 15:04:59'),
  1793. (705, 132, 266, 'Jordy', 'razor_W_ramirez', 'Combat Shotgun', '2016-12-23 15:05:24'),
  1794. (706, 266, 132, 'razor_W_ramirez', 'Jordy', 'Shotgun', '2016-12-23 15:05:47'),
  1795. (707, 132, 266, 'Jordy', 'razor_W_ramirez', 'Desert Eagle', '2016-12-23 15:06:33'),
  1796. (708, 132, 266, 'Jordy', 'razor_W_ramirez', 'Combat Shotgun', '2016-12-23 15:08:04'),
  1797. (709, 132, 176, 'Jordy', 'Olly_Bronx', 'Combat Shotgun', '2016-12-23 15:10:10'),
  1798. (710, 24, 34, 'Tony_Freeman', 'Ed_Slash', 'Combat Shotgun', '2016-12-23 15:13:33'),
  1799. (711, 24, 34, 'Tony_Freeman', 'Ed_Slash', 'Fists', '2016-12-23 15:13:44'),
  1800. (712, 122, 34, 'oscar_g_ramirez', 'Ed_Slash', 'Desert Eagle', '2016-12-23 15:24:24'),
  1801. (713, 122, 34, 'oscar_g_ramirez', 'Ed_Slash', 'Desert Eagle', '2016-12-23 15:24:31'),
  1802. (714, 33, 129, 'Jonathan_Fabbrie', 'Nyu_Gucci_Sosa', 'Shotgun', '2016-12-23 15:43:31'),
  1803. (715, 33, 129, 'Jonathan_Fabbrie', 'Nyu_Gucci_Sosa', 'Shotgun', '2016-12-23 15:43:45'),
  1804. (716, 483, 34, 'Troy_Gold_Forbes', 'Ed_Slash', 'Shotgun', '2016-12-23 15:44:44'),
  1805. (717, 483, 34, 'Troy_Gold_Forbes', 'Ed_Slash', 'Shotgun', '2016-12-23 15:45:11'),
  1806. (718, 483, 34, 'Troy_Gold_Forbes', 'Ed_Slash', 'Shotgun', '2016-12-23 15:45:18'),
  1807. (719, 483, 34, 'Troy_Gold_Forbes', 'Ed_Slash', 'Shotgun', '2016-12-23 15:46:42'),
  1808. (720, 16, 100, 'Walter_Cash', 'Orlando_Amphibia', 'Vehicle', '2016-12-23 16:10:45'),
  1809. (721, 17, 19, 'Derek_Gucci_Sosa', 'Blake_Amphibia', 'Combat Shotgun', '2016-12-23 16:12:23'),
  1810. (722, 73, 129, 'Cynthia_Tucker', 'Nyu_Gucci_Sosa', 'Shotgun', '2016-12-23 16:12:34'),
  1811. (723, 73, 483, 'Cynthia_Tucker', 'Troy_Gold_Forbes', 'Shotgun', '2016-12-23 16:12:50'),
  1812. (724, 240, 277, 'Don_Ryders', 'Clarence_Breyer', 'Combat Shotgun', '2016-12-23 16:12:57'),
  1813. (725, 280, 17, 'Alex_Johnson', 'Derek_Gucci_Sosa', 'Combat Shotgun', '2016-12-23 16:13:01'),
  1814. (726, 157, 34, 'Dan_Devil', 'Ed_Slash', 'Shotgun', '2016-12-23 16:13:04'),
  1815. (727, 556, 266, 'Julian_Trapz', 'razor_W_ramirez', 'Shotgun', '2016-12-23 16:13:06'),
  1816. (728, 181, 73, 'Jayden_Trapz', 'Cynthia_Tucker', 'Combat Shotgun', '2016-12-23 16:13:14'),
  1817. (729, 157, 181, 'Dan_Devil', 'Jayden_Trapz', 'Desert Eagle', '2016-12-23 16:13:19'),
  1818. (730, 370, 157, 'Sigre_Gucci_Sosa', 'Dan_Devil', 'MP5', '2016-12-23 16:13:19'),
  1819. (731, 280, 370, 'Alex_Johnson', 'Sigre_Gucci_Sosa', 'Combat Shotgun', '2016-12-23 16:13:23'),
  1820. (732, 122, 181, 'oscar_g_ramirez', 'Jayden_Trapz', 'Desert Eagle', '2016-12-23 16:13:32'),
  1821. (733, 122, 370, 'oscar_g_ramirez', 'Sigre_Gucci_Sosa', 'Desert Eagle', '2016-12-23 16:13:36'),
  1822. (734, 144, 78, 'Lrizz_Devil', 'Julia_Covenant', 'Combat Shotgun', '2016-12-23 16:14:06'),
  1823. (735, 556, 78, 'Julian_Trapz', 'Julia_Covenant', 'Shotgun', '2016-12-23 16:14:16'),
  1824. (736, 263, 529, 'Danny_Delino', 'Kevin_Amphibia', 'Shotgun', '2016-12-23 16:21:02'),
  1825. (737, 181, 280, 'Jayden_Trapz', 'Alex_Johnson', 'Shotgun', '2016-12-23 16:21:23'),
  1826. (738, 181, 280, 'Jayden_Trapz', 'Alex_Johnson', 'Shotgun', '2016-12-23 16:21:38'),
  1827. (739, 26, 77, 'Tyler_X_Cage', 'Joga_Hernandez', 'Desert Eagle', '2016-12-23 16:37:22'),
  1828. (740, 550, 122, 'Kai_Flame', 'oscar_g_ramirez', 'Shotgun', '2016-12-23 16:57:18'),
  1829. (741, 550, 122, 'Kai_Flame', 'oscar_g_ramirez', 'Shotgun', '2016-12-23 16:57:50'),
  1830. (742, 240, 129, 'Don_Ryders', 'Nyu_Gucci_Sosa', 'Desert Eagle', '2016-12-23 17:14:33'),
  1831. (743, 26, 532, 'Tyler_X_Cage', 'Wade_Dawson', 'Desert Eagle', '2016-12-23 17:16:36'),
  1832. (744, 26, 528, 'Tyler_X_Cage', 'Joseph_Meldish', 'Desert Eagle', '2016-12-23 17:16:53'),
  1833. (745, 26, 532, 'Tyler_X_Cage', 'Wade_Dawson', 'Desert Eagle', '2016-12-23 17:16:58'),
  1834. (746, 26, 528, 'Tyler_X_Cage', 'Joseph_Meldish', 'Desert Eagle', '2016-12-23 17:17:16'),
  1835. (747, 240, 129, 'Don_Ryders', 'Nyu_Gucci_Sosa', 'Desert Eagle', '2016-12-23 17:20:09'),
  1836. (748, 240, 129, 'Don_Ryders', 'Nyu_Gucci_Sosa', 'Sniper Rifle', '2016-12-23 17:24:00'),
  1837. (749, 240, 26, 'Don_Ryders', 'Tyler_X_Cage', 'Combat Shotgun', '2016-12-23 17:29:03'),
  1838. (750, 129, 240, 'Nyu_Gucci_Sosa', 'Don_Ryders', 'Shotgun', '2016-12-23 17:29:24'),
  1839. (751, 129, 240, 'Nyu_Gucci_Sosa', 'Don_Ryders', 'Shotgun', '2016-12-23 17:29:30'),
  1840. (752, 240, 129, 'Don_Ryders', 'Nyu_Gucci_Sosa', 'Silenced Pistol', '2016-12-23 17:30:53'),
  1841. (753, 240, 26, 'Don_Ryders', 'Tyler_X_Cage', 'Sniper Rifle', '2016-12-23 17:34:17'),
  1842. (754, 361, 181, 'Liam_Maxwell', 'Jayden_Trapz', 'Fists', '2016-12-23 17:35:37'),
  1843. (755, 560, 532, 'Finn_Bloom', 'Wade_Dawson', 'Shotgun', '2016-12-23 17:37:11'),
  1844. (756, 560, 532, 'Finn_Bloom', 'Wade_Dawson', 'Shotgun', '2016-12-23 17:37:19'),
  1845. (757, 560, 39, 'Finn_Bloom', 'Gre_Hunter', 'Shotgun', '2016-12-23 17:45:17'),
  1846. (758, 560, 39, 'Finn_Bloom', 'Gre_Hunter', 'Fists', '2016-12-23 17:45:30'),
  1847. (759, 39, 560, 'Gre_Hunter', 'Finn_Bloom', 'Shotgun', '2016-12-23 17:47:18'),
  1848. (760, 263, 39, 'Danny_Delino', 'Gre_Hunter', 'Vehicle', '2016-12-23 17:48:29'),
  1849. (761, 33, 16, 'Jonathan_Fabbrie', 'Walter_Cash', 'Shotgun', '2016-12-23 17:53:23'),
  1850. (762, 39, 560, 'Gre_Hunter', 'Finn_Bloom', 'Shotgun', '2016-12-23 17:53:46'),
  1851. (763, 34, 33, 'Ed_Slash', 'Jonathan_Fabbrie', 'Desert Eagle', '2016-12-23 17:53:54'),
  1852. (764, 39, 560, 'Gre_Hunter', 'Finn_Bloom', 'Shotgun', '2016-12-23 17:53:54'),
  1853. (765, 113, 34, 'Michael_Render', 'Ed_Slash', 'Combat Shotgun', '2016-12-23 17:53:59'),
  1854. (766, 113, 34, 'Michael_Render', 'Ed_Slash', 'Combat Shotgun', '2016-12-23 17:54:07'),
  1855. (767, 39, 81, 'Gre_Hunter', 'Tommy_Gates', 'Shotgun', '2016-12-23 17:54:09'),
  1856. (768, 34, 363, 'Ed_Slash', 'Dominic_Frost', 'Desert Eagle', '2016-12-23 18:01:13'),
  1857. (769, 576, 81, 'Julio_Wolves', 'Tommy_Gates', 'Fists', '2016-12-23 18:01:13'),
  1858. (770, 16, 363, 'Walter_Cash', 'Dominic_Frost', 'Fists', '2016-12-23 18:01:20'),
  1859. (771, 576, 81, 'Julio_Wolves', 'Tommy_Gates', 'Fists', '2016-12-23 18:01:36'),
  1860. (772, 576, 39, 'Julio_Wolves', 'Gre_Hunter', 'Fists', '2016-12-23 18:02:06'),
  1861. (773, 132, 77, 'Jordy', 'Joga_Hernandez', 'Desert Eagle', '2016-12-23 18:06:43'),
  1862. (774, 132, 361, 'Jordy', 'Liam_Maxwell', 'Combat Shotgun', '2016-12-23 18:07:35'),
  1863. (775, 337, 580, 'Simon_Gucci_Sosa', 'Maheet_Carpini', 'Shotgun', '2016-12-23 18:09:31'),
  1864. (776, 132, 181, 'Jordy', 'Jayden_Trapz', 'Combat Shotgun', '2016-12-23 18:11:30'),
  1865. (777, 132, 303, 'Jordy', 'Aviana_Starr', 'Combat Shotgun', '2016-12-23 18:11:55'),
  1866. (778, 132, 181, 'Jordy', 'Jayden_Trapz', 'Combat Shotgun', '2016-12-23 18:12:04'),
  1867. (779, 303, 181, 'Aviana_Starr', 'Jayden_Trapz', 'Fire Extinguisher', '2016-12-23 18:12:20'),
  1868. (780, 132, 585, 'Jordy', 'Shaze_Fonger', 'Combat Shotgun', '2016-12-23 18:16:05'),
  1869. (781, 530, 11, 'Wallace_Lanvins', 'Lance', 'Desert Eagle', '2016-12-23 18:16:40');
  1870. -- --------------------------------------------------------
  1871. --
  1872. -- Table structure for table `landobjects`
  1873. --
  1874. CREATE TABLE IF NOT EXISTS `landobjects` (
  1875. `id` int(10) NOT NULL,
  1876. `landid` int(10) DEFAULT NULL,
  1877. `modelid` smallint(5) DEFAULT NULL,
  1878. `name` varchar(32) DEFAULT NULL,
  1879. `price` int(10) DEFAULT NULL,
  1880. `pos_x` float DEFAULT NULL,
  1881. `pos_y` float DEFAULT NULL,
  1882. `pos_z` float DEFAULT NULL,
  1883. `rot_x` float DEFAULT NULL,
  1884. `rot_y` float DEFAULT NULL,
  1885. `rot_z` float DEFAULT NULL,
  1886. `door_opened` tinyint(1) DEFAULT '0',
  1887. `door_locked` tinyint(1) DEFAULT '0',
  1888. `move_x` float DEFAULT '0',
  1889. `move_y` float DEFAULT '0',
  1890. `move_z` float DEFAULT '0',
  1891. `move_rx` float DEFAULT '0',
  1892. `move_ry` float DEFAULT '0',
  1893. `move_rz` float DEFAULT '0'
  1894. ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=latin1;
  1895. --
  1896. -- Dumping data for table `landobjects`
  1897. --
  1898. INSERT INTO `landobjects` (`id`, `landid`, `modelid`, `name`, `price`, `pos_x`, `pos_y`, `pos_z`, `rot_x`, `rot_y`, `rot_z`, `door_opened`, `door_locked`, `move_x`, `move_y`, `move_z`, `move_rx`, `move_ry`, `move_rz`) VALUES
  1899. (5, 4, 19353, 'wall001', 100, 2071.56, -1882.81, 14.267, 0, 0, -179.967, 0, 0, 2071.56, -1882.81, 4.267, -1000, -1000, -1000),
  1900. (6, 4, 19353, 'wall001', 100, 2071.56, -1879.6, 14.267, 0, 0, -179.967, 0, 0, 2071.56, -1882.81, 4.267, -1000, -1000, -1000),
  1901. (8, 4, 19353, 'wall001', 100, 2071.55, -1868.05, 14.267, 0, 0, -179.967, 0, 0, 2071.55, -1864.83, 4.267, -1000, -1000, -1000),
  1902. (9, 4, 19353, 'wall001', 100, 2071.55, -1871.24, 14.267, 0, 0, -179.967, 0, 0, 2071.55, -1868.04, 4.267, -1000, -1000, -1000),
  1903. (10, 4, 19383, 'wall031', 100, 2071.56, -1875.35, 14.267, 0, 0, -0.025, 0, 0, 2071.56, -1875.35, 4.267, -1000, -1000, -1000),
  1904. (11, 4, 19353, 'wall001', 100, 2071.55, -1872.96, 14.267, 0, 0, -179.967, 0, 0, 2071.55, -1871.24, 4.267, -1000, -1000, -1000),
  1905. (12, 4, 19353, 'wall001', 100, 2071.55, -1877.7, 14.267, 0, 0, -179.967, 0, 0, 2071.55, -1872.96, 4.267, -1000, -1000, -1000),
  1906. (13, 4, 19353, 'wall001', 100, 2071.56, -1882.81, 14.267, 0, 0, -179.967, 0, 0, 2071.56, -1882.81, 4.267, -1000, -1000, -1000),
  1907. (14, 4, 19353, 'wall001', 100, 2057.16, -1882.82, 14.267, 0, 0, -179.967, 0, 0, 2071.56, -1882.81, 4.267, -1000, -1000, -1000),
  1908. (15, 4, 19353, 'wall001', 100, 2057.16, -1879.61, 14.267, 0, 0, -179.967, 0, 0, 2057.16, -1882.82, 4.267, -1000, -1000, -1000),
  1909. (16, 4, 19353, 'wall001', 100, 2057.16, -1876.41, 14.267, 0, 0, -179.967, 0, 0, 2057.16, -1879.61, 4.267, -1000, -1000, -1000),
  1910. (17, 4, 19353, 'wall001', 100, 2057.16, -1873.19, 14.267, 0, 0, -179.967, 0, 0, 2057.16, -1876.41, 4.267, -1000, -1000, -1000),
  1911. (18, 4, 19353, 'wall001', 100, 2057.16, -1869.99, 14.267, 0, 0, -179.967, 0, 0, 2057.16, -1873.19, 4.267, -1000, -1000, -1000),
  1912. (19, 4, 19353, 'wall001', 100, 2057.16, -1866.79, 14.267, 0, 0, -179.967, 0, 0, 2057.16, -1869.99, 4.267, -1000, -1000, -1000),
  1913. (21, 4, 19353, 'wall001', 100, 2071.55, -1866.94, 14.267, 0, 0, -179.967, 0, 0, 2071.55, -1864.83, 4.267, -1000, -1000, -1000),
  1914. (24, 4, 19353, 'wall001', 100, 2069.99, -1865.27, 14.267, 0, 0, -90.067, 0, 0, 2071.55, -1864.83, 4.267, -1000, -1000, -1000),
  1915. (25, 4, 19353, 'wall001', 100, 2066.79, -1865.27, 14.267, 0, 0, -90.067, 0, 0, 2069.99, -1865.27, 4.267, -1000, -1000, -1000),
  1916. (26, 4, 19353, 'wall001', 100, 2063.59, -1865.27, 14.267, 0, 0, -90.067, 0, 0, 2066.79, -1865.27, 4.267, -1000, -1000, -1000),
  1917. (27, 4, 19353, 'wall001', 100, 2060.39, -1865.27, 14.267, 0, 0, -90.067, 0, 0, 2063.59, -1865.27, 4.267, -1000, -1000, -1000),
  1918. (28, 4, 19353, 'wall001', 100, 2058.85, -1865.27, 14.267, 0, 0, -90.067, 0, 0, 2060.39, -1865.27, 4.267, -1000, -1000, -1000),
  1919. (29, 4, 19375, 'wall023', 100, 2066.37, -1879.64, 12.467, 0.0000000298, 90, -0.555, 0, 0, 2066.37, -1879.64, 2.467, -1000, -1000, -1000),
  1920. (30, 4, 19375, 'wall023', 100, 2066.46, -1870.02, 12.467, 0.0000000298, 90, -0.555, 0, 0, 2066.37, -1879.64, 2.467, -1000, -1000, -1000),
  1921. (31, 4, 19375, 'wall023', 100, 2062.42, -1879.6, 12.472, 0.0000000298, 90.1, -0.555, 0, 0, 2066.37, -1879.64, 2.467, -1000, -1000, -1000),
  1922. (32, 4, 19375, 'wall023', 100, 2062.52, -1869.98, 12.477, 0.0000000298, 90, -0.555, 0, 0, 2066.46, -1870.02, 2.467, -1000, -1000, -1000);
  1923. -- --------------------------------------------------------
  1924. --
  1925. -- Table structure for table `lands`
  1926. --
  1927. CREATE TABLE IF NOT EXISTS `lands` (
  1928. `id` int(10) NOT NULL,
  1929. `ownerid` int(10) DEFAULT '0',
  1930. `owner` varchar(24) DEFAULT 'Nobody',
  1931. `price` int(10) DEFAULT '0',
  1932. `min_x` float DEFAULT '0',
  1933. `min_y` float DEFAULT '0',
  1934. `max_x` float DEFAULT '0',
  1935. `max_y` float DEFAULT '0',
  1936. `height` float DEFAULT '0'
  1937. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
  1938. --
  1939. -- Dumping data for table `lands`
  1940. --
  1941. INSERT INTO `lands` (`id`, `ownerid`, `owner`, `price`, `min_x`, `min_y`, `max_x`, `max_y`, `height`) VALUES
  1942. (4, 1, 'JEinstein', 1, 2043.92, -1883.11, 2071.72, -1864.18, 13.547);
  1943. -- --------------------------------------------------------
  1944. --
  1945. -- Table structure for table `log_admin`
  1946. --
  1947. CREATE TABLE IF NOT EXISTS `log_admin` (
  1948. `id` int(10) NOT NULL,
  1949. `date` datetime DEFAULT NULL,
  1950. `description` varchar(255) DEFAULT NULL
  1951. ) ENGINE=InnoDB AUTO_INCREMENT=626 DEFAULT CHARSET=latin1;
  1952. --
  1953. -- Dumping data for table `log_admin`
  1954. --
  1955. INSERT INTO `log_admin` (`id`, `date`, `description`) VALUES
  1956. (1, '2016-12-20 00:53:23', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 0'),
  1957. (2, '2016-12-20 00:53:50', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) hours to 2'),
  1958. (3, '2016-12-20 00:53:53', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1959. (4, '2016-12-20 00:54:10', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1960. (5, '2016-12-20 00:54:19', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1961. (6, '2016-12-20 00:54:34', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1962. (7, '2016-12-20 00:55:12', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 0'),
  1963. (8, '2016-12-20 00:55:18', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1964. (9, '2016-12-20 00:55:50', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1965. (10, '2016-12-20 00:57:34', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1966. (11, '2016-12-20 01:02:20', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1967. (12, '2016-12-20 01:05:23', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1968. (13, '2016-12-20 01:05:35', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1969. (14, '2016-12-20 01:05:53', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1970. (15, '2016-12-20 01:17:10', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) phone to 69'),
  1971. (16, '2016-12-20 01:18:40', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) level to 6'),
  1972. (17, '2016-12-20 01:19:27', 'Josh_Einstein (uid: 1) fined Josh_Einstein (uid: 1) for $206288051, reason: Get rid of that spawned money'),
  1973. (18, '2016-12-20 01:21:36', 'Test_McTest (uid: 4) gives a Desert Eagle to Test_McTest (uid: 4)'),
  1974. (19, '2016-12-20 01:26:14', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) painkillers to 10'),
  1975. (20, '2016-12-20 01:33:20', 'Test_McTest (uid: 4) gives a MP5 to Test_McTest (uid: 4)'),
  1976. (21, '2016-12-20 01:33:24', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) fmjammo to 50'),
  1977. (22, '2016-12-20 01:33:55', 'Josh_Einstein (uid: 1) set Josh_Einstein''s (uid: 1) fmjammo to 99'),
  1978. (23, '2016-12-20 01:36:32', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) fmjammo to 50'),
  1979. (24, '2016-12-20 01:36:46', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1980. (25, '2016-12-20 01:37:21', 'Test_McTest (uid: 4) set Josh_Einstein''s (uid: 1) admin level to 1'),
  1981. (26, '2016-12-20 01:43:45', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) helper level to 4'),
  1982. (27, '2016-12-20 03:38:08', 'Lazlow_VRocks (uid: 5) set Lazlow_VRocks''s (uid: 5) cash to 100000000'),
  1983. (28, '2016-12-20 03:49:40', 'Lazlow_VRocks (uid: 5) set Lazlow_VRocks''s (uid: 5) cocaine to 100'),
  1984. (29, '2016-12-20 03:49:43', 'Lazlow_VRocks (uid: 5) set Lazlow_VRocks''s (uid: 5) weed to 100'),
  1985. (30, '2016-12-20 03:49:45', 'Lazlow_VRocks (uid: 5) set Lazlow_VRocks''s (uid: 5) meth to 100'),
  1986. (31, '2016-12-20 04:00:03', 'Lazlow_VRocks (uid: 5) set Lazlow_VRocks''s (uid: 5) materials to 50000'),
  1987. (32, '2016-12-20 04:01:17', 'Lazlow_VRocks (uid: 5) set Lazlow_VRocks''s (uid: 5) hours to 100'),
  1988. (33, '2016-12-20 04:21:02', 'Lazlow_VRocks (uid: 5) set Lazlow_VRocks''s (uid: 5) materials to 50000'),
  1989. (34, '2016-12-20 04:39:46', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) admin level to 1'),
  1990. (35, '2016-12-20 04:55:19', 'Test_McTest (uid: 4) gives a MP5 to Test_McTest (uid: 4)'),
  1991. (36, '2016-12-20 05:14:16', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) cash to -1'),
  1992. (37, '2016-12-20 05:14:27', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) cash to 5000'),
  1993. (38, '2016-12-20 05:41:55', 'Lazlow_VRocks (uid: 5) gives a Desert Eagle to Lazlow_VRocks (uid: 5)'),
  1994. (39, '2016-12-20 07:03:43', 'Test_McTest (uid: 4) set Dann_Lazlow''s (uid: 8) admin level to 2'),
  1995. (40, '2016-12-20 07:15:02', 'Test_McTest (uid: 4) set Dann_Lazlow''s (uid: 8) phone to 1'),
  1996. (41, '2016-12-20 07:15:10', 'Test_McTest (uid: 4) set Tori_Chester''s (uid: 9) phone to 69'),
  1997. (42, '2016-12-20 07:55:35', 'Lazlow_VRocks (uid: 5) gives a Desert Eagle to Lazlow_VRocks (uid: 5)'),
  1998. (43, '2016-12-20 09:50:07', 'Test_McTest (uid: 4) set Test_McTest''s (uid: 4) level to 3'),
  1999. (44, '2016-12-20 09:57:51', 'Tyler_Huntley (uid: 2) set Franklyn_Menace''s (uid: 10) admin level to 3'),
  2000. (45, '2016-12-20 09:57:52', 'Tyler_Huntley (uid: 2) set Franklyn_Menace''s (uid: 10) admin level to 4'),
  2001. (46, '2016-12-20 10:07:51', 'Tyler_Huntley (uid: 2) set Lance_Lanvins''s (uid: 11) admin level to 3'),
  2002. (47, '2016-12-20 10:09:09', 'Tyler_Huntley (uid: 2) set Lance_Lanvins''s (uid: 11) hours to 2'),
  2003. (48, '2016-12-20 10:15:50', 'Tyler_Huntley (uid: 2) set Lui_Mendez''s (uid: 12) admin level to 5'),
  2004. (49, '2016-12-20 10:16:59', 'Lui (uid: 12) set Lui''s (uid: 12) phone to 12'),
  2005. (50, '2016-12-20 10:21:26', 'Tyler_Huntley (uid: 2) set Lui_Mendez''s (uid: 12) helper level to 4'),
  2006. (51, '2016-12-20 10:30:18', 'Lui (uid: 12) set Lui''s (uid: 12) phone to 5'),
  2007. (52, '2016-12-20 10:44:36', 'Josh_Einstein (uid: 1) set Tiber_Septim''s (uid: 13) admin level to 4'),
  2008. (53, '2016-12-20 10:45:09', 'Josh_Einstein (uid: 1) has made Tiber_Septim (uid: 13) a faction moderator.'),
  2009. (54, '2016-12-20 10:48:17', 'Test_McTest (uid: 4) set Lui_Mendez''s (uid: 12) hours to 2'),
  2010. (55, '2016-12-20 10:48:56', 'Lazlow (uid: 5) set Lazlow''s (uid: 5) job to 4'),
  2011. (56, '2016-12-20 10:49:33', 'Test_McTest (uid: 4) gives a Combat Shotgun to Test_McTest (uid: 4)'),
  2012. (57, '2016-12-20 10:51:15', 'Tyler_Huntley (uid: 2) gives a Desert Eagle to Lazlow_VRocks (uid: 5)'),
  2013. (58, '2016-12-20 10:51:16', 'Test_McTest (uid: 4) gives a Colt 45 to Lazlow_VRocks (uid: 5)'),
  2014. (59, '2016-12-20 10:51:18', 'Tyler_Huntley (uid: 2) gives a Colt 45 to Lazlow_VRocks (uid: 5)'),
  2015. (60, '2016-12-20 10:51:20', 'Tiber_Septim (uid: 13) gives a Colt 45 to Lazlow_VRocks (uid: 5)'),
  2016. (61, '2016-12-20 10:51:22', 'Tyler_Huntley (uid: 2) gives a Desert Eagle to Lazlow_VRocks (uid: 5)'),
  2017. (62, '2016-12-20 10:51:34', 'Tyler_Huntley (uid: 2) gives a Combat Shotgun to Lazlow_VRocks (uid: 5)'),
  2018. (63, '2016-12-20 10:51:37', 'Tyler_Huntley (uid: 2) gives a Shotgun to Lazlow_VRocks (uid: 5)'),
  2019. (64, '2016-12-20 11:14:01', 'Tyler_Huntley (uid: 2) set Franklyn_Menace''s (uid: 10) admin level to 5'),
  2020. (65, '2016-12-20 11:17:59', 'Test_McTest (uid: 4) changed Test_McTest''s (uid: 4) name to Jamal_Burrows.'),
  2021. (66, '2016-12-20 11:18:06', 'Jamal_Burrows (uid: 4) set Jamal_Burrows''s (uid: 4) level to 2'),
  2022. (67, '2016-12-20 11:19:50', 'Tyler_Huntley (uid: 2) has given Tyler_Huntley (uid: 2) their own Sultan.'),
  2023. (68, '2016-12-20 11:19:55', 'Tyler_Huntley (uid: 2) has given Tyler_Huntley (uid: 2) their own Elegy.'),
  2024. (69, '2016-12-20 11:20:01', 'Tyler_Huntley (uid: 2) has given Tyler_Huntley (uid: 2) their own NRG-500.'),
  2025. (70, '2016-12-20 11:20:05', 'Tyler_Huntley (uid: 2) has given Tyler_Huntley (uid: 2) their own Stretch.'),
  2026. (71, '2016-12-20 11:20:10', 'Tyler_Huntley (uid: 2) has given Tyler_Huntley (uid: 2) their own Monster.'),
  2027. (72, '2016-12-20 11:20:59', 'Jamal_Burrows (uid: 4) gives a Sniper Rifle to Jamal_Burrows (uid: 4)'),
  2028. (73, '2016-12-20 11:22:07', 'Lui (uid: 12) gives a Desert Eagle to Lui (uid: 12)'),
  2029. (74, '2016-12-20 11:23:00', 'Jamal_Burrows (uid: 4) gives a Desert Eagle to Jamal_Burrows (uid: 4)'),
  2030. (75, '2016-12-20 11:23:14', 'Lui (uid: 12) gives a Desert Eagle to Franklyn (uid: 10)'),
  2031. (76, '2016-12-20 11:25:37', 'JEinstein (uid: 1) set JEinstein''s (uid: 1) cash to 500'),
  2032. (77, '2016-12-20 11:29:03', 'Lui (uid: 12) gives a Desert Eagle to Lui (uid: 12)'),
  2033. (78, '2016-12-20 11:30:26', 'Jamal_Burrows (uid: 4) gives a M4 to Jamal_Burrows (uid: 4)'),
  2034. (79, '2016-12-20 11:31:41', 'Tyler_Huntley (uid: 2) fined Lazlow_VRocks (uid: 5) for $1000000, reason: .'),
  2035. (80, '2016-12-20 11:31:54', 'Tyler_Huntley (uid: 2) set Lazlow_VRocks''s (uid: 5) cash to 100000'),
  2036. (81, '2016-12-20 11:34:28', 'Jamal_Burrows (uid: 4) set Lazlow_VRocks''s (uid: 5) materials to 100000'),
  2037. (82, '2016-12-20 11:34:30', 'Tyler_Huntley (uid: 2) set Lazlow_VRocks''s (uid: 5) materials to 100000'),
  2038. (83, '2016-12-20 11:34:43', 'Tyler_Huntley (uid: 2) set Lazlow_VRocks''s (uid: 5) cash to 250000'),
  2039. (84, '2016-12-20 11:35:50', 'Tyler_Huntley (uid: 2) has made Tiber_Septim (uid: 13) a faction moderator.'),
  2040. (85, '2016-12-20 11:39:50', 'Josh_Einstein (uid: 1) set Franklyn_Menace''s (uid: 10) admin level to 4'),
  2041. (86, '2016-12-20 11:43:12', 'Jamal_Burrows (uid: 4) set Jamal_Burrows''s (uid: 4) fmjammo to 20'),
  2042. (87, '2016-12-20 11:43:24', 'Jamal_Burrows (uid: 4) gives a Desert Eagle to Jamal_Burrows (uid: 4)'),
  2043. (88, '2016-12-20 11:46:54', 'Jamal_Burrows (uid: 4) gives a Rifle to Jamal_Burrows (uid: 4)'),
  2044. (89, '2016-12-20 11:49:14', 'Jamal_Burrows (uid: 4) gives a Sniper Rifle to Jamal_Burrows (uid: 4)'),
  2045. (90, '2016-12-20 11:52:30', 'Josh_Einstein (uid: 1) set Lazlow_VRocks''s (uid: 5) admin level to 0'),
  2046. (91, '2016-12-20 11:53:03', 'Josh_Einstein (uid: 1) set Lazlow_VRocks''s (uid: 5) admin level to 4'),
  2047. (92, '2016-12-20 11:53:05', 'Josh_Einstein (uid: 1) set Lazlow_VRocks''s (uid: 5) admin level to 5'),
  2048. (93, '2016-12-20 12:01:12', 'Lui (uid: 12) gives a Desert Eagle to Lui (uid: 12)'),
  2049. (94, '2016-12-20 12:09:43', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 0'),
  2050. (95, '2016-12-20 12:09:58', 'Tyler_Huntley (uid: 2) set Tay_Forbes''s (uid: 15) Phone to 2'),
  2051. (96, '2016-12-20 12:13:13', 'Lui (uid: 12) accepted Dirty_pastor''s (uid: 48) free namechange to Pastor_lee.'),
  2052. (97, '2016-12-20 12:15:17', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2053. (98, '2016-12-20 12:18:25', 'Tyler_Huntley (uid: 2) set Jack_Lazlow''s (uid: 70) admin level to 1'),
  2054. (99, '2016-12-20 12:18:25', 'JEinstein (uid: 1) set Jack_Lazlow''s (uid: 70) admin level to 2'),
  2055. (100, '2016-12-20 12:18:27', 'Tyler_Huntley (uid: 2) set Jack_Lazlow''s (uid: 70) admin level to 2'),
  2056. (101, '2016-12-20 12:21:15', 'JEinstein (uid: 1) set Jack_Lazlow''s (uid: 70) admin level to 3'),
  2057. (102, '2016-12-20 12:21:53', 'Franklyn (uid: 10) gives a Desert Eagle to Franklyn (uid: 10)'),
  2058. (103, '2016-12-20 12:22:27', 'Tyler_Huntley (uid: 2) set Walter_Cash''s (uid: 16) helper level to 1'),
  2059. (104, '2016-12-20 12:22:31', 'Tyler_Huntley (uid: 2) set Tay_Forbes''s (uid: 15) helper level to 1'),
  2060. (105, '2016-12-20 12:27:29', 'Travis (uid: 3) has made Jack_Lazlow (uid: 70) a faction moderator.'),
  2061. (106, '2016-12-20 12:27:39', 'Lance_Lanvins (uid: 11) accepted Al_Pheco''s (uid: 74) free namechange to Tom_Wrzosek.'),
  2062. (107, '2016-12-20 12:27:58', 'Tyler_Huntley (uid: 2) changed Levi_Slash''s (uid: 71) name to Jeyo_Wazowski.'),
  2063. (108, '2016-12-20 12:31:50', 'JEinstein (uid: 1) set Johnny_Krauser''s (uid: 29) helper level to 1'),
  2064. (109, '2016-12-20 12:45:39', 'Lazlow (uid: 5) gives a Desert Eagle to Lazlow (uid: 5)'),
  2065. (110, '2016-12-20 12:46:18', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) hours to 50'),
  2066. (111, '2016-12-20 12:46:18', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) respect to 50'),
  2067. (112, '2016-12-20 12:46:18', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) cash to 50000'),
  2068. (113, '2016-12-20 12:46:18', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) hpammo to 100'),
  2069. (114, '2016-12-20 12:46:18', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) poisonammo to 100'),
  2070. (115, '2016-12-20 12:46:18', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) fmjammo to 100'),
  2071. (116, '2016-12-20 12:46:18', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) hours to 50'),
  2072. (117, '2016-12-20 12:47:15', 'Lazlow (uid: 5) fined Barry_Gucci_Sosa (uid: 86) for $50000, reason: mistake'),
  2073. (118, '2016-12-20 12:47:58', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) hours to 1'),
  2074. (119, '2016-12-20 12:48:02', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) respect to 1'),
  2075. (120, '2016-12-20 12:48:17', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) fmjammo to 0'),
  2076. (121, '2016-12-20 12:48:38', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) poisonammo to 0'),
  2077. (122, '2016-12-20 12:48:52', 'Lazlow (uid: 5) set Barry_Gucci_Sosa''s (uid: 86) hpammo to 0'),
  2078. (123, '2016-12-20 12:49:02', 'Lazlow (uid: 5) set Lazlow''s (uid: 5) fmjammo to 1000'),
  2079. (124, '2016-12-20 12:49:31', 'Lazlow (uid: 5) set Rodrigo_Dusmetov''s (uid: 83) hours to 2'),
  2080. (125, '2016-12-20 12:49:40', 'Lazlow (uid: 5) gives a Desert Eagle to Rodrigo_Dusmetov (uid: 83)'),
  2081. (126, '2016-12-20 12:49:55', 'Lazlow (uid: 5) set Rodrigo_Dusmetov''s (uid: 83) fmjammo to 100'),
  2082. (127, '2016-12-20 13:07:34', 'Lazlow (uid: 5) changed Zav_Ix''s (uid: 95) name to Zav_Shitlord.'),
  2083. (128, '2016-12-20 13:07:42', 'Tyler_Huntley (uid: 2) set Cynthia_Tucker''s (uid: 73) cash to 5011'),
  2084. (129, '2016-12-20 13:09:48', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 0'),
  2085. (130, '2016-12-20 13:10:09', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2086. (131, '2016-12-20 13:27:32', 'Lazlow (uid: 5) set Zac_Wrzosek''s (uid: 91) hours to 4'),
  2087. (132, '2016-12-20 13:29:00', 'Lance (uid: 11) accepted Mr_Shaikh''s (uid: 107) free namechange to Taha_Shaikh.'),
  2088. (133, '2016-12-20 13:29:30', 'Tyler_Huntley (uid: 2) accepted Taha_Shaikh''s (uid: 107) free namechange to Andrew_Stevenson.'),
  2089. (134, '2016-12-20 13:31:37', 'Tyler_Huntley (uid: 2) changed pete_swift''s (uid: 14) name to Pete_Swifty.'),
  2090. (135, '2016-12-20 13:31:38', 'Tyler_Huntley (uid: 2) changed Pete_Swifty''s (uid: 14) name to Pete_Swift.'),
  2091. (136, '2016-12-20 13:32:47', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2092. (137, '2016-12-20 13:33:54', 'Tyler_Huntley (uid: 2) changed christopher_leaf''s (uid: 57) name to Christopher_Leafs.'),
  2093. (138, '2016-12-20 13:33:55', 'Tyler_Huntley (uid: 2) changed Christopher_Leafs''s (uid: 57) name to Christopher_Leaf.'),
  2094. (139, '2016-12-20 13:38:34', 'Travis (uid: 3) has offline set Tommy_Gates''s admin level to 1.'),
  2095. (140, '2016-12-20 13:44:03', 'Travis (uid: 3) set Tommy_Gates''s (uid: 81) admin level to 1'),
  2096. (141, '2016-12-20 13:44:59', 'Tyler_Huntley (uid: 2) set Walter_Cash''s (uid: 16) hours to 10'),
  2097. (142, '2016-12-20 13:46:11', 'Lazlow (uid: 5) set Asykon_Amphibia''s (uid: 6) materials to 25000'),
  2098. (143, '2016-12-20 13:51:57', 'Lance_Lanvins (uid: 11) accepted Joe_Sheen''s (uid: 94) free namechange to Andergdon_Lanvins.'),
  2099. (144, '2016-12-20 13:53:16', 'Tyler_Huntley (uid: 2) set Tyler_Huntley''s (uid: 2) cash to 100000'),
  2100. (145, '2016-12-20 14:01:11', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2101. (146, '2016-12-20 14:03:50', 'Tyler_Huntley (uid: 2) gives a MP5 to Walter_Cash (uid: 16)'),
  2102. (147, '2016-12-20 14:03:51', 'Tyler_Huntley (uid: 2) gives a Baseball Bat to Walter_Cash (uid: 16)'),
  2103. (148, '2016-12-20 14:04:01', 'Tyler_Huntley (uid: 2) gives a MP5 to Ed_Slash (uid: 34)'),
  2104. (149, '2016-12-20 14:04:02', 'Tyler_Huntley (uid: 2) gives a Baseball Bat to Ed_Slash (uid: 34)'),
  2105. (150, '2016-12-20 14:04:07', 'Tyler_Huntley (uid: 2) gives a MP5 to Richard_Krauser (uid: 28)'),
  2106. (151, '2016-12-20 14:04:08', 'Tyler_Huntley (uid: 2) gives a Baseball Bat to Richard_Krauser (uid: 28)'),
  2107. (152, '2016-12-20 14:04:11', 'Tyler_Huntley (uid: 2) gives a MP5 to Tyler_X_Cage (uid: 26)'),
  2108. (153, '2016-12-20 14:04:12', 'Tyler_Huntley (uid: 2) gives a Baseball Bat to Tyler_X_Cage (uid: 26)'),
  2109. (154, '2016-12-20 14:23:03', 'Jack_Lazlow (uid: 70) accepted Ho_Lee_Phuck''s (uid: 115) free namechange to Jaim_Kappa.'),
  2110. (155, '2016-12-20 14:39:52', 'Travis (uid: 3) set Shawn_Menace''s (uid: 137) admin level to 3'),
  2111. (156, '2016-12-20 14:39:57', 'Travis (uid: 3) set Shawn_Menace''s (uid: 137) admin level to 6'),
  2112. (157, '2016-12-20 14:39:59', 'Travis (uid: 3) set Shawn_Menace''s (uid: 137) admin level to 3'),
  2113. (158, '2016-12-20 14:47:23', 'Franklyn (uid: 10) gives a Desert Eagle to Franklyn (uid: 10)'),
  2114. (159, '2016-12-20 15:06:02', 'Travis (uid: 3) set jaim_kappa''s (uid: 115) phone to 1'),
  2115. (160, '2016-12-20 15:15:05', 'Travis (uid: 3) set Jordan_Capone''s (uid: 88) admin level to 1'),
  2116. (161, '2016-12-20 15:17:56', 'JEinstein (uid: 1) set Jordan_Capone''s (uid: 88) admin level to 5'),
  2117. (162, '2016-12-20 15:18:20', 'Lazlow (uid: 5) set Max_Mabbitt''s (uid: 7) materials to 22000'),
  2118. (163, '2016-12-20 15:20:03', 'Travis (uid: 3) set Kalgon_Grande''s (uid: 153) admin level to 1'),
  2119. (164, '2016-12-20 15:24:29', 'Travis (uid: 3) set Travis''s (uid: 3) level to 2'),
  2120. (165, '2016-12-20 15:24:39', 'Travis (uid: 3) set Lrizz_Devil''s (uid: 144) level to 2'),
  2121. (166, '2016-12-20 15:25:55', 'Tyler_Huntley (uid: 2) set Tyler_Huntley''s (uid: 2) MP3Player to 1'),
  2122. (167, '2016-12-20 15:31:16', 'Tyler_Huntley (uid: 2) changed jaim_kappa''s (uid: 115) name to Jaim_Kappas.'),
  2123. (168, '2016-12-20 15:31:17', 'Tyler_Huntley (uid: 2) changed Jaim_Kappas''s (uid: 115) name to Jaim_Kappa.'),
  2124. (169, '2016-12-20 15:42:28', 'Travis (uid: 3) set Jordan_Trapz''s (uid: 132) admin level to 0'),
  2125. (170, '2016-12-20 15:42:32', 'Travis (uid: 3) set Jordan_Trapz''s (uid: 132) admin level to 4'),
  2126. (171, '2016-12-20 15:42:33', 'Travis (uid: 3) set Jordan_Trapz''s (uid: 132) admin level to 5'),
  2127. (172, '2016-12-20 15:42:48', 'Travis (uid: 3) set Jordan_Capone''s (uid: 88) admin level to 0'),
  2128. (173, '2016-12-20 15:43:17', 'JEinstein (uid: 1) set Jaim_Kappa''s (uid: 115) phone to 3'),
  2129. (174, '2016-12-20 15:46:08', 'Travis (uid: 3) set Jordan_Capone''s (uid: 88) admin level to 1'),
  2130. (175, '2016-12-20 15:46:26', 'Jordan_Trapz (uid: 132) changed Jordan_Trapz''s (uid: 132) name to Jordan.'),
  2131. (176, '2016-12-20 15:47:09', 'Jordan (uid: 132) changed Jordan''s (uid: 132) name to Jordan_Trapz.'),
  2132. (177, '2016-12-20 15:48:10', 'Jordy (uid: 132) set Jordy''s (uid: 132) hours to 15'),
  2133. (178, '2016-12-20 15:48:31', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2134. (179, '2016-12-20 15:56:09', 'Jordy (uid: 132) gives a Desert Eagle to Camron_Johnson (uid: 116)'),
  2135. (180, '2016-12-20 15:56:11', 'Jordy (uid: 132) gives a Combat Shotgun to Camron_Johnson (uid: 116)'),
  2136. (181, '2016-12-20 15:56:12', 'Jordy (uid: 132) gives a Sniper Rifle to Camron_Johnson (uid: 116)'),
  2137. (182, '2016-12-20 16:03:57', 'Tyler_Huntley (uid: 2) changed Tyler_Huntley''s (uid: 2) name to Jeff_Lazlers.'),
  2138. (183, '2016-12-20 16:10:17', 'Jeff_Lazlers (uid: 2) changed Jeff_Lazlers''s (uid: 2) name to Tyler_Huntley.'),
  2139. (184, '2016-12-20 16:11:46', 'James_Watson (uid: 160) set James_Watson''s (uid: 160) admin level to 0'),
  2140. (185, '2016-12-20 16:12:45', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2141. (186, '2016-12-20 16:14:31', 'James_Watson (uid: 160) set James_Watson''s (uid: 160) admin level to 0'),
  2142. (187, '2016-12-20 16:14:58', 'Jordy (uid: 132) gives a Combat Shotgun to Jordy (uid: 132)'),
  2143. (188, '2016-12-20 16:18:35', 'Tyler_Huntley (uid: 2) has given Michael_Render (uid: 113) their own NRG-500.'),
  2144. (189, '2016-12-20 16:26:20', 'Tyler_Huntley (uid: 2) set Tyler_Huntley''s (uid: 2) admin level to 6'),
  2145. (190, '2016-12-20 16:29:53', 'James_Watson (uid: 160) set James_Watson''s (uid: 160) admin level to 0'),
  2146. (191, '2016-12-20 16:39:48', 'Tyler_Huntley (uid: 2) gives a Desert Eagle to Asykon_Amphibia (uid: 6)'),
  2147. (192, '2016-12-20 16:41:12', 'Jordy (uid: 132) gives a Desert Eagle to Zac_Wrzosek (uid: 91)'),
  2148. (193, '2016-12-20 16:42:30', 'James_Watson (uid: 160) set James_Watson''s (uid: 160) admin level to 0'),
  2149. (194, '2016-12-20 16:42:39', 'Tyler_Huntley (uid: 2) gives a Flamethrower to Tyler_Huntley (uid: 2)'),
  2150. (195, '2016-12-20 16:47:25', 'Travis_Huntley (uid: 3) set Lrizz_Devil''s (uid: 144) boombox to 1'),
  2151. (196, '2016-12-20 16:47:44', 'Jordy (uid: 132) gives a Combat Shotgun to Jordy (uid: 132)'),
  2152. (197, '2016-12-20 17:03:33', 'Travis_Huntley (uid: 3) reversed Jordan_Capone''s (uid: 88) DM punishment.'),
  2153. (198, '2016-12-20 17:03:34', 'Travis_Huntley (uid: 3) reversed Jordan_Capone''s (uid: 88) DM punishment.'),
  2154. (199, '2016-12-20 17:03:34', 'Travis_Huntley (uid: 3) reversed Jordan_Capone''s (uid: 88) DM punishment.'),
  2155. (200, '2016-12-20 17:03:35', 'Travis_Huntley (uid: 3) reversed Jordan_Capone''s (uid: 88) DM punishment.'),
  2156. (201, '2016-12-20 17:03:35', 'Travis_Huntley (uid: 3) reversed Jordan_Capone''s (uid: 88) DM punishment.'),
  2157. (202, '2016-12-20 17:03:58', 'Travis_Huntley (uid: 3) reversed Kalgon_Grande''s (uid: 153) DM punishment.'),
  2158. (203, '2016-12-20 17:03:59', 'Travis_Huntley (uid: 3) reversed Kalgon_Grande''s (uid: 153) DM punishment.'),
  2159. (204, '2016-12-20 17:03:59', 'Travis_Huntley (uid: 3) reversed Kalgon_Grande''s (uid: 153) DM punishment.'),
  2160. (205, '2016-12-20 17:03:59', 'Travis_Huntley (uid: 3) reversed Kalgon_Grande''s (uid: 153) DM punishment.'),
  2161. (206, '2016-12-20 17:03:59', 'Travis_Huntley (uid: 3) reversed Kalgon_Grande''s (uid: 153) DM punishment.'),
  2162. (207, '2016-12-20 17:04:00', 'Travis_Huntley (uid: 3) reversed Kalgon_Grande''s (uid: 153) DM punishment.'),
  2163. (208, '2016-12-20 17:04:16', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2164. (209, '2016-12-20 17:07:17', 'Travis_Huntley (uid: 3) set Kalgon_Grande''s (uid: 153) admin level to 0'),
  2165. (210, '2016-12-20 17:08:32', 'Travis_Huntley (uid: 3) set Kalgon_Grande''s (uid: 153) admin level to 1'),
  2166. (211, '2016-12-20 17:13:44', 'JEinstein (uid: 1) set Tay_Forbes''s (uid: 15) boombox to 1'),
  2167. (212, '2016-12-20 17:15:47', 'Lazlow (uid: 5) set Kenna_Wrzosek''s (uid: 170) hours to 2'),
  2168. (213, '2016-12-20 17:16:19', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2169. (214, '2016-12-20 17:17:44', 'Tyler_Huntley (uid: 2) set Tyler_Huntley''s (uid: 2) Meth to 100'),
  2170. (215, '2016-12-20 17:21:11', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2171. (216, '2016-12-20 17:22:25', 'Jordy (uid: 132) accepted Jordan_Capone''s (uid: 88) free namechange to Jordan_Grande.'),
  2172. (217, '2016-12-20 17:23:19', 'Tyler_Huntley (uid: 2) set Tyler_Huntley''s (uid: 2) cash to 15000'),
  2173. (218, '2016-12-20 17:23:33', 'Jordy (uid: 132) gives a Shotgun to Jordy (uid: 132)'),
  2174. (219, '2016-12-20 17:31:17', 'JEinstein (uid: 1) set Kalgon_Grande''s (uid: 153) admin level to 0'),
  2175. (220, '2016-12-20 17:39:14', 'Travis_Huntley (uid: 3) reversed Kalgon_Grande''s (uid: 153) DM punishment.'),
  2176. (221, '2016-12-20 17:52:25', 'Tiber (uid: 13) gives a Silenced Pistol to Jack_Lazlow (uid: 70)'),
  2177. (222, '2016-12-20 17:53:10', 'JEinstein (uid: 1) set JEinstein''s (uid: 1) helper level to 4'),
  2178. (223, '2016-12-20 17:53:23', 'Jordy (uid: 132) set Larko_Trapz''s (uid: 159) hours to 10'),
  2179. (224, '2016-12-20 17:53:29', 'Jordy (uid: 132) set Larko_Trapz''s (uid: 159) level to 2'),
  2180. (225, '2016-12-20 17:53:54', 'Jordy (uid: 132) set Jordy''s (uid: 132) level to 4'),
  2181. (226, '2016-12-20 17:58:04', 'Tiber (uid: 13) reversed Kalgon_Grande''s (uid: 153) DM punishment.'),
  2182. (227, '2016-12-20 17:58:26', 'Tyler_Huntley (uid: 2) reversed Kalgon_Grande''s (uid: 153) DM punishment.'),
  2183. (228, '2016-12-20 18:17:48', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2184. (229, '2016-12-20 18:30:14', 'Tyler_Huntley (uid: 2) set Tay_Forbes''s (uid: 15) phone to 2'),
  2185. (230, '2016-12-20 18:44:32', 'Jordy (uid: 132) gives a Minigun to Jordy (uid: 132)'),
  2186. (231, '2016-12-20 18:46:24', 'Tyler_Huntley (uid: 2) reversed Dann_Lazlow''s (uid: 8) DM punishment.'),
  2187. (232, '2016-12-20 18:50:46', 'Tyler_Huntley (uid: 2) set Bella_Cool''s (uid: 185) admin level to 1'),
  2188. (233, '2016-12-20 18:58:22', 'Jordy (uid: 132) gives a Combat Shotgun to Jordy (uid: 132)'),
  2189. (234, '2016-12-20 19:00:30', 'Jordy (uid: 132) gives a Minigun to Jordy (uid: 132)'),
  2190. (235, '2016-12-20 19:03:03', 'Jordy (uid: 132) set Jordy''s (uid: 132) phone to -67'),
  2191. (236, '2016-12-20 19:04:15', 'Jordy (uid: 132) set Jordy''s (uid: 132) cash to 45000'),
  2192. (237, '2016-12-20 19:09:51', 'Jordy (uid: 132) reversed Kalgon_Grande''s (uid: 153) DM punishment.'),
  2193. (238, '2016-12-20 19:16:46', 'Tyler_Huntley (uid: 2) changed Bella_Cool''s (uid: 185) name to Dick_Black.'),
  2194. (239, '2016-12-20 19:19:52', 'Jordy (uid: 132) gives a Knife to Jordy (uid: 132)'),
  2195. (240, '2016-12-20 19:33:37', 'Jordy (uid: 132) set Jordy''s (uid: 132) level to 2'),
  2196. (241, '2016-12-20 19:36:15', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2197. (242, '2016-12-20 19:36:17', 'Jordy (uid: 132) gives a Shotgun to Jordy (uid: 132)'),
  2198. (243, '2016-12-20 19:40:36', 'Tye (uid: 2) gives a Desert Eagle to Tye (uid: 2)'),
  2199. (244, '2016-12-20 19:41:47', 'Jordy (uid: 132) gives a Minigun to Jordy (uid: 132)'),
  2200. (245, '2016-12-20 20:12:35', 'Tyler_Huntley (uid: 2) reversed Kalgon_Grande''s (uid: 153) DM punishment.'),
  2201. (246, '2016-12-20 20:16:03', 'Jordy (uid: 132) set Jordy''s (uid: 132) cash to 200000'),
  2202. (247, '2016-12-20 20:19:22', 'Lazlow (uid: 5) set Devon_Bronx''s (uid: 194) hours to 2'),
  2203. (248, '2016-12-20 20:21:45', 'Lazlow (uid: 5) set Devon_Bronx''s (uid: 194) weed to 100'),
  2204. (249, '2016-12-20 20:21:49', 'Lazlow (uid: 5) set Devon_Bronx''s (uid: 194) cocaine to 100'),
  2205. (250, '2016-12-20 20:21:54', 'Jordy (uid: 132) set Jordy''s (uid: 132) cash to 25460'),
  2206. (251, '2016-12-20 20:22:12', 'Lazlow (uid: 5) set Jaz_Shock''s (uid: 184) materials to 15000'),
  2207. (252, '2016-12-20 20:22:37', 'Lazlow (uid: 5) set Jaz_Shock''s (uid: 184) hours to 4'),
  2208. (253, '2016-12-20 20:28:33', 'Lazlow (uid: 5) gives a Desert Eagle to Jaz_Shock (uid: 184)'),
  2209. (254, '2016-12-20 20:28:39', 'Lazlow (uid: 5) gives a Desert Eagle to Devon_Bronx (uid: 194)'),
  2210. (255, '2016-12-20 20:28:45', 'Lazlow (uid: 5) gives a Desert Eagle to Lazlow (uid: 5)'),
  2211. (256, '2016-12-20 20:29:36', 'Lazlow (uid: 5) set Devon_Bronx''s (uid: 194) fmjammo to 50'),
  2212. (257, '2016-12-20 20:29:40', 'Lazlow (uid: 5) set Jaz_Shock''s (uid: 184) fmjammo to 50'),
  2213. (258, '2016-12-20 20:31:59', 'Lazlow (uid: 5) set Devon_Bronx''s (uid: 194) poisonammo to 50'),
  2214. (259, '2016-12-20 20:32:02', 'Lazlow (uid: 5) set Jaz_Shock''s (uid: 184) poisonammo to 50'),
  2215. (260, '2016-12-20 20:34:14', 'Lazlow (uid: 5) set Devon_Bronx''s (uid: 194) hpammo to 50'),
  2216. (261, '2016-12-20 20:34:17', 'Lazlow (uid: 5) set Jaz_Shock''s (uid: 184) hpammo to 50'),
  2217. (262, '2016-12-20 20:37:25', 'Lazlow (uid: 5) gives a TEC9 to Jaz_Shock (uid: 184)'),
  2218. (263, '2016-12-20 20:37:28', 'Lazlow (uid: 5) gives a Rifle to Jaz_Shock (uid: 184)'),
  2219. (264, '2016-12-20 20:37:31', 'Lazlow (uid: 5) gives a UZI to Jaz_Shock (uid: 184)'),
  2220. (265, '2016-12-20 20:37:33', 'Lazlow (uid: 5) gives a Sawn-off Shotgun to Jaz_Shock (uid: 184)'),
  2221. (266, '2016-12-20 20:37:35', 'Lazlow (uid: 5) gives a Shotgun to Jaz_Shock (uid: 184)'),
  2222. (267, '2016-12-20 20:37:37', 'Lazlow (uid: 5) gives a Desert Eagle to Jaz_Shock (uid: 184)'),
  2223. (268, '2016-12-20 20:37:39', 'Lazlow (uid: 5) gives a Combat Shotgun to Jaz_Shock (uid: 184)'),
  2224. (269, '2016-12-20 20:41:43', 'Tyler_Huntley (uid: 2) set Kalgon_Grande''s (uid: 153) admin level to 1'),
  2225. (270, '2016-12-20 20:41:44', 'Lazlow (uid: 5) set Jaz_Shock''s (uid: 184) hpammo to 10'),
  2226. (271, '2016-12-20 20:41:59', 'Lazlow (uid: 5) set Jaz_Shock''s (uid: 184) poisonammo to 10'),
  2227. (272, '2016-12-20 20:42:07', 'Lazlow (uid: 5) set Jaz_Shock''s (uid: 184) fmjammo to 10'),
  2228. (273, '2016-12-20 20:42:16', 'Lazlow (uid: 5) set Devon_Bronx''s (uid: 194) hpammo to 10'),
  2229. (274, '2016-12-20 20:42:20', 'Lazlow (uid: 5) set Devon_Bronx''s (uid: 194) fmjammo to 10'),
  2230. (275, '2016-12-20 20:42:26', 'Lazlow (uid: 5) set Devon_Bronx''s (uid: 194) poisonammo to 10'),
  2231. (276, '2016-12-20 21:04:39', 'Tyler_Huntley (uid: 2) set Kalgon_Grande''s (uid: 153) admin level to 0'),
  2232. (277, '2016-12-20 21:04:43', 'Tyler_Huntley (uid: 2) set Kalgon_Grande''s (uid: 153) admin level to 1'),
  2233. (278, '2016-12-20 22:30:12', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2234. (279, '2016-12-20 22:35:49', 'Lui (uid: 12) gives a Combat Shotgun to Dan_Devil (uid: 157)'),
  2235. (280, '2016-12-20 22:39:18', 'JEinstein (uid: 1) set Riley_Huntley''s (uid: 213) level to 2'),
  2236. (281, '2016-12-20 22:43:50', 'JEinstein (uid: 1) set Johnny_Caudill''s (uid: 214) level to 1'),
  2237. (282, '2016-12-20 23:11:04', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2238. (283, '2016-12-20 23:29:54', 'Tyler_Huntley (uid: 2) locked Luffy_Gomu''s account.'),
  2239. (284, '2016-12-20 23:30:03', 'Tyler_Huntley (uid: 2) locked Jay_Caunter''s account.'),
  2240. (285, '2016-12-20 23:30:09', 'Tyler_Huntley (uid: 2) locked Shankz_Street''s account.'),
  2241. (286, '2016-12-20 23:44:25', 'JEinstein (uid: 1) set James_Maple''s (uid: 141) helper level to 1'),
  2242. (287, '2016-12-21 00:37:34', 'Tye (uid: 2) reversed Tony_Freeman''s (uid: 24) DM punishment.'),
  2243. (288, '2016-12-21 00:38:41', 'Tye (uid: 2) changed Dan_Devil''s (uid: 157) name to James_Williams.'),
  2244. (289, '2016-12-21 00:39:11', 'Tye (uid: 2) changed Lrizz_Devil''s (uid: 144) name to Razor_V_Rameriz.'),
  2245. (290, '2016-12-21 00:44:55', 'Tye (uid: 2) set Dante_Bangz''s (uid: 242) hours to 2'),
  2246. (291, '2016-12-21 00:50:21', 'Franklyn_Menace (uid: 10) changed Razor_V_Rameriz''s (uid: 144) name to Lrizz_Devil.'),
  2247. (292, '2016-12-21 00:51:20', 'Franklyn_Menace (uid: 10) changed James_Williams''s (uid: 157) name to Dan_Devil.'),
  2248. (293, '2016-12-21 00:54:02', 'Tyler_Huntley (uid: 2) changed pete_swift''s (uid: 14) name to Pete_Swifty.'),
  2249. (294, '2016-12-21 00:54:03', 'Tyler_Huntley (uid: 2) changed Pete_Swifty''s (uid: 14) name to Pete_Swift.'),
  2250. (295, '2016-12-21 01:10:44', 'Travis (uid: 3) accepted Camron_Johnson''s (uid: 116) free namechange to Lucenzo_Johnson.'),
  2251. (296, '2016-12-21 01:42:45', 'Tyler_Huntley (uid: 2) gives a Desert Eagle to oscar_G_Ramirez (uid: 122)'),
  2252. (297, '2016-12-21 01:42:50', 'Tyler_Huntley (uid: 2) gives a Shotgun to oscar_G_Ramirez (uid: 122)'),
  2253. (298, '2016-12-21 02:10:09', 'Tyler_Huntley (uid: 2) fined James_Maple (uid: 141) for $3000, reason: Money Transfers'),
  2254. (299, '2016-12-21 02:21:18', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2255. (300, '2016-12-21 02:34:59', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2256. (301, '2016-12-21 02:35:28', 'Tyler_Huntley (uid: 2) accepted Dan_Devil''s (uid: 157) free namechange to Dan_Artz.'),
  2257. (302, '2016-12-21 02:35:59', 'Tyler_Huntley (uid: 2) accepted Dan_Artz''s (uid: 157) free namechange to Dan_Devil.'),
  2258. (303, '2016-12-21 02:53:12', 'Franklyn_Menace (uid: 10) accepted Dan_Devil''s (uid: 157) free namechange to Jeezy_Box.'),
  2259. (304, '2016-12-21 02:54:29', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2260. (305, '2016-12-21 03:01:32', 'Franklyn_Menace (uid: 10) accepted Jeezy_Box''s (uid: 157) free namechange to Dan_Devil.'),
  2261. (306, '2016-12-21 03:15:22', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2262. (307, '2016-12-21 03:30:25', 'Travis_Huntley (uid: 3) gives a Sniper Rifle to Ed_Slash (uid: 34)'),
  2263. (308, '2016-12-21 03:30:28', 'Travis_Huntley (uid: 3) gives a Sniper Rifle to Ed_Slash (uid: 34)'),
  2264. (309, '2016-12-21 03:30:32', 'Travis_Huntley (uid: 3) gives a Combat Shotgun to Ed_Slash (uid: 34)'),
  2265. (310, '2016-12-21 03:30:33', 'Travis_Huntley (uid: 3) gives a Desert Eagle to Ed_Slash (uid: 34)'),
  2266. (311, '2016-12-21 04:24:27', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2267. (312, '2016-12-21 04:34:50', 'Lui (uid: 12) changed Jeyo_Wazowski''s (uid: 71) name to John_Smith.'),
  2268. (313, '2016-12-21 04:37:35', 'Franklyn (uid: 10) reversed Derek_Gucci_sosa''s (uid: 17) DM punishment.'),
  2269. (314, '2016-12-21 04:37:59', 'Franklyn (uid: 10) gives a Shotgun to Derek_Gucci_sosa (uid: 17)'),
  2270. (315, '2016-12-21 04:40:11', 'Franklyn (uid: 10) gives a Desert Eagle to Shawn (uid: 137)'),
  2271. (316, '2016-12-21 04:41:07', 'Lui (uid: 12) set Wiz_Gucci_Sosa''s (uid: 36) helper level to 1'),
  2272. (317, '2016-12-21 04:44:35', 'Lui (uid: 12) accepted Google_Chrome''s (uid: 293) free namechange to Asyton_Vincre.'),
  2273. (318, '2016-12-21 04:44:58', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2274. (319, '2016-12-21 04:49:04', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2275. (320, '2016-12-21 04:55:28', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2276. (321, '2016-12-21 05:02:42', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2277. (322, '2016-12-21 05:09:51', 'Travis_Huntley (uid: 3) fined Umer_Menace (uid: 25) for $5000, reason: non rp'),
  2278. (323, '2016-12-21 05:24:31', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2279. (324, '2016-12-21 05:27:16', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2280. (325, '2016-12-21 05:36:39', 'Shawn (uid: 137) fined Keima_Adkins (uid: 283) for $2000, reason: Car ramming to death'),
  2281. (326, '2016-12-21 05:36:49', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2282. (327, '2016-12-21 05:48:43', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2283. (328, '2016-12-21 05:49:01', 'Lui (uid: 12) set Lucenzo_Johnson''s (uid: 116) helper level to 1'),
  2284. (329, '2016-12-21 06:00:22', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2285. (330, '2016-12-21 06:07:09', 'Jordy (uid: 132) gives a Brass Knuckles to Jordy (uid: 132)'),
  2286. (331, '2016-12-21 06:07:10', 'Jordy (uid: 132) gives a Knife to Jordy (uid: 132)'),
  2287. (332, '2016-12-21 06:07:45', 'Jordy (uid: 132) set Jamie_G_Shock''s (uid: 319) hours to 2'),
  2288. (333, '2016-12-21 06:07:52', 'Jordy (uid: 132) gives a Desert Eagle to Jamie_G_Shock (uid: 319)'),
  2289. (334, '2016-12-21 06:13:06', 'Jordy (uid: 132) gives a Knife to Jordy (uid: 132)'),
  2290. (335, '2016-12-21 06:13:12', 'Jordy (uid: 132) accepted Dan_Devil''s (uid: 157) free namechange to El_Chapo.'),
  2291. (336, '2016-12-21 06:18:31', 'Jordy (uid: 132) gives a Minigun to Jordy (uid: 132)'),
  2292. (337, '2016-12-21 06:28:39', 'Jordy (uid: 132) accepted El_Chapo''s (uid: 157) free namechange to Dan_Devil.'),
  2293. (338, '2016-12-21 06:29:31', 'Jordy (uid: 132) gives a Minigun to Jordy (uid: 132)'),
  2294. (339, '2016-12-21 06:39:44', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2295. (340, '2016-12-21 06:46:04', 'Jordy (uid: 132) set Rio_Flocka''s (uid: 150) phone to -6'),
  2296. (341, '2016-12-21 06:55:24', 'Jordy (uid: 132) set Jamie_G_Shock''s (uid: 319) phone to -69'),
  2297. (342, '2016-12-21 06:56:51', 'Jordy (uid: 132) gives a Minigun to Jordy (uid: 132)'),
  2298. (343, '2016-12-21 07:07:21', 'Darrell_Ford (uid: 21) has given Darrell_Ford (uid: 21) their own BMX.'),
  2299. (344, '2016-12-21 07:39:31', 'Darrell_Ford (uid: 21) set Darrell_Ford''s (uid: 21) admin level to 1'),
  2300. (345, '2016-12-21 08:54:10', 'Lance (uid: 11) fined Nejin_Cash (uid: 340) for $500, reason: sex'),
  2301. (346, '2016-12-21 08:57:41', 'Jordy (uid: 132) fined Moddi_Carter (uid: 193) for $2000, reason: Skin-Change'),
  2302. (347, '2016-12-21 09:06:37', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2303. (348, '2016-12-21 09:16:00', 'Jordy (uid: 132) set Jayden_Trapz''s (uid: 181) hours to 6'),
  2304. (349, '2016-12-21 09:29:52', 'Jordy (uid: 132) set Jordy''s (uid: 132) job to 4 '),
  2305. (350, '2016-12-21 09:30:35', 'Jordy (uid: 132) set Batchi_Honda''s (uid: 329) materials to 40000'),
  2306. (351, '2016-12-21 09:30:38', 'Jordy (uid: 132) set Batchi_Honda''s (uid: 329) materials to 0'),
  2307. (352, '2016-12-21 09:30:44', 'Jordy (uid: 132) set Jordy''s (uid: 132) materials to 40000'),
  2308. (353, '2016-12-21 10:03:48', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2309. (354, '2016-12-21 11:04:51', 'Jordy (uid: 132) set Jordy''s (uid: 132) cash to 143000'),
  2310. (355, '2016-12-21 11:12:34', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2311. (356, '2016-12-21 11:12:36', 'Jordy (uid: 132) gives a Combat Shotgun to Jordy (uid: 132)'),
  2312. (357, '2016-12-21 11:12:37', 'Jordy (uid: 132) gives a Sniper Rifle to Jordy (uid: 132)'),
  2313. (358, '2016-12-21 11:18:48', 'Jordy (uid: 132) set Jordy''s (uid: 132) cookies to 30'),
  2314. (359, '2016-12-21 11:19:28', 'JEinstein (uid: 1) fined Kimbo_Slice (uid: 257) for $1, reason: How massive?'),
  2315. (360, '2016-12-21 11:20:57', 'JEinstein (uid: 1) set Luigi_Mendez''s (uid: 42) phone to 50'),
  2316. (361, '2016-12-21 11:28:13', 'Jordy (uid: 132) gives a Minigun to Jordy (uid: 132)'),
  2317. (362, '2016-12-21 11:43:12', 'JEinstein (uid: 1) gives a Desert Eagle to Tyler_X_Cage (uid: 26)'),
  2318. (363, '2016-12-21 11:43:14', 'JEinstein (uid: 1) gives a Combat Shotgun to Tyler_X_Cage (uid: 26)'),
  2319. (364, '2016-12-21 11:43:16', 'JEinstein (uid: 1) gives a M4 to Tyler_X_Cage (uid: 26)'),
  2320. (365, '2016-12-21 11:43:21', 'JEinstein (uid: 1) gives a Sniper Rifle to Tyler_X_Cage (uid: 26)'),
  2321. (366, '2016-12-21 11:43:23', 'JEinstein (uid: 1) gives a MP5 to Tyler_X_Cage (uid: 26)'),
  2322. (367, '2016-12-21 11:46:36', 'Jordy (uid: 132) gives a Knife to Jordy (uid: 132)'),
  2323. (368, '2016-12-21 11:57:47', 'Jordy (uid: 132) gives a Desert Eagle to Joga_Hernandez (uid: 77)'),
  2324. (369, '2016-12-21 12:00:36', 'JEinstein (uid: 1) set Kimbo_Slice''s (uid: 257) hours to 2'),
  2325. (370, '2016-12-21 12:00:37', 'JEinstein (uid: 1) gives a Combat Shotgun to Kimbo_Slice (uid: 257)'),
  2326. (371, '2016-12-21 12:03:24', 'Jordy (uid: 132) gives a Desert Eagle to Tony_Freeman (uid: 24)'),
  2327. (372, '2016-12-21 12:03:29', 'Jordy (uid: 132) gives a Combat Shotgun to Tony_Freeman (uid: 24)'),
  2328. (373, '2016-12-21 12:07:39', 'Jordy (uid: 132) set Kimberly_Banks''s (uid: 368) hours to 19'),
  2329. (374, '2016-12-21 12:07:41', 'Jordy (uid: 132) gives a Shotgun to Kimberly_Banks (uid: 368)'),
  2330. (375, '2016-12-21 12:10:49', 'JEinstein (uid: 1) gives a Camera to Joga_Hernandez (uid: 77)'),
  2331. (376, '2016-12-21 12:10:53', 'JEinstein (uid: 1) gives a Camera to JEinstein (uid: 1)'),
  2332. (377, '2016-12-21 12:21:37', 'Jordy (uid: 132) set Jayden_Trapz''s (uid: 181) cash to 87543'),
  2333. (378, '2016-12-21 12:24:32', 'Jordy (uid: 132) set Tyrone_Coleman''s (uid: 85) cash to 15000'),
  2334. (379, '2016-12-21 12:30:46', 'Tyler_Huntley (uid: 2) gives a Desert Eagle to Tyler_Huntley (uid: 2)'),
  2335. (380, '2016-12-21 12:34:04', 'Tyler_Huntley (uid: 2) set Tyler_Huntley''s (uid: 2) Materials to 5250'),
  2336. (381, '2016-12-21 12:34:11', 'Tyler_Huntley (uid: 2) gives a Desert Eagle to Lance_Lanvins (uid: 11)'),
  2337. (382, '2016-12-21 12:46:52', 'Lazlow (uid: 5) set Eazy_Gucci_Sosa''s (uid: 360) hours to 2'),
  2338. (383, '2016-12-21 12:47:23', 'Lazlow (uid: 5) set Sigre_Gucci_Sosa''s (uid: 370) hours to 2'),
  2339. (384, '2016-12-21 12:49:45', 'Jordy (uid: 132) gives a Knife to Jordy (uid: 132)'),
  2340. (385, '2016-12-21 13:15:12', 'Tyler_Huntley (uid: 2) set Tyler_X_Cage''s (uid: 26) admin level to 1'),
  2341. (386, '2016-12-21 13:15:15', 'Tyler_Huntley (uid: 2) set Tyler_X_Cage''s (uid: 26) admin level to 0'),
  2342. (387, '2016-12-21 13:15:56', 'Jordy (uid: 132) set Erick_Johnson''s (uid: 117) hours to 2'),
  2343. (388, '2016-12-21 13:17:38', 'Jordy (uid: 132) accepted Dan_Devil''s (uid: 157) free namechange to Devin_Hawk.'),
  2344. (389, '2016-12-21 13:18:11', 'Josh_Einstein (uid: 1) set Josh_Einstein''s (uid: 1) admin level to 1'),
  2345. (390, '2016-12-21 13:19:01', 'Tyler_Huntley (uid: 2) locked Chloe_Teaser''s account.'),
  2346. (391, '2016-12-21 13:19:05', 'Tyler_Huntley (uid: 2) locked Logan_Teaser''s account.'),
  2347. (392, '2016-12-21 13:19:14', 'Tyler_Huntley (uid: 2) locked Tony_Street''s account.'),
  2348. (393, '2016-12-21 13:19:59', 'Tyler_Huntley (uid: 2) offline fined Tyrone_Street for $100000, reason: Total Wealth fine'),
  2349. (394, '2016-12-21 13:24:50', 'JEinstein (uid: 1) set Jonathan_Fabbrie''s (uid: 33) boombox to 1'),
  2350. (395, '2016-12-21 13:25:26', 'Jordy (uid: 132) accepted Devin_Hawk''s (uid: 157) free namechange to Matthew_Johnson.'),
  2351. (396, '2016-12-21 13:26:21', 'JEinstein (uid: 1) set Jonathan_Fabbrie''s (uid: 33) weed to 50'),
  2352. (397, '2016-12-21 13:26:26', 'JEinstein (uid: 1) set Jonathan_Fabbrie''s (uid: 33) cocaine to 25'),
  2353. (398, '2016-12-21 13:26:31', 'JEinstein (uid: 1) set Jonathan_Fabbrie''s (uid: 33) meth to 20'),
  2354. (399, '2016-12-21 13:26:36', 'JEinstein (uid: 1) set Jonathan_Fabbrie''s (uid: 33) painkillers to 5'),
  2355. (400, '2016-12-21 13:27:02', 'Jordy (uid: 132) set Matthew_Johnson''s (uid: 157) phone to 34343'),
  2356. (401, '2016-12-21 13:34:57', 'Jordy (uid: 132) gives a Knife to Jordy (uid: 132)'),
  2357. (402, '2016-12-21 13:35:35', 'Jordy (uid: 132) accepted Matthew_Johnson''s (uid: 157) free namechange to Dan_Devil.'),
  2358. (403, '2016-12-21 14:09:12', 'Shawn_Menace (uid: 137) accepted Dan_Devil''s (uid: 157) free namechange to John_Cock.'),
  2359. (404, '2016-12-21 14:32:48', 'Shawn_Menace (uid: 137) accepted John_Cock''s (uid: 157) free namechange to El_Chapo.'),
  2360. (405, '2016-12-21 14:33:11', 'Jordy (uid: 132) set El_Chapo''s (uid: 157) phone to 28824'),
  2361. (406, '2016-12-21 14:39:45', 'Jordy (uid: 132) set Tiber''s (uid: 13) hours to 40'),
  2362. (407, '2016-12-21 14:39:47', 'Jordy (uid: 132) set Tiber''s (uid: 13) hours to 2'),
  2363. (408, '2016-12-21 14:40:00', 'Tiber (uid: 13) gives a Knife to Tiber (uid: 13)'),
  2364. (409, '2016-12-21 14:40:25', 'Tiber (uid: 13) gives a Minigun to Tiber (uid: 13)'),
  2365. (410, '2016-12-21 14:42:41', 'Tiber (uid: 13) gives a Baseball Bat to Tiber (uid: 13)'),
  2366. (411, '2016-12-21 14:42:50', 'Jordy (uid: 132) set Jordy''s (uid: 132) respect to 16'),
  2367. (412, '2016-12-21 14:50:10', 'Jordy (uid: 132) gives a Combat Shotgun to Jordy (uid: 132)'),
  2368. (413, '2016-12-21 14:52:37', 'Jordy (uid: 132) gives a Combat Shotgun to Joga_Hernandez (uid: 77)'),
  2369. (414, '2016-12-21 14:56:17', 'Tiber (uid: 13) gives a Dildo to Tiber (uid: 13)'),
  2370. (415, '2016-12-21 14:56:20', 'Tiber (uid: 13) gives a Cane to Tiber (uid: 13)'),
  2371. (416, '2016-12-21 14:56:22', 'Tiber (uid: 13) gives a Flowers to Tiber (uid: 13)'),
  2372. (417, '2016-12-21 15:29:26', 'JEinstein (uid: 1) reversed Simon_Walker''s (uid: 46) DM punishment.'),
  2373. (418, '2016-12-21 15:31:24', 'JEinstein (uid: 1) set Kimbo_Slice''s (uid: 257) admin level to 5'),
  2374. (419, '2016-12-21 15:31:31', 'JEinstein (uid: 1) set Kimbo_Slice''s (uid: 257) admin level to 0'),
  2375. (420, '2016-12-21 15:35:36', 'Shawn (uid: 137) accepted Lrizz_Devil''s (uid: 144) free namechange to Sean_Santo.'),
  2376. (421, '2016-12-21 15:37:16', 'JEinstein (uid: 1) set Tiber''s (uid: 13) admin level to 5'),
  2377. (422, '2016-12-21 15:41:32', 'JEinstein (uid: 1) set Tiber''s (uid: 13) admin level to 6'),
  2378. (423, '2016-12-21 15:42:19', 'JEinstein (uid: 1) set Tiber''s (uid: 13) admin level to 4'),
  2379. (424, '2016-12-21 15:45:15', 'JEinstein (uid: 1) changed Kimbo_Slice''s (uid: 257) name to Gaybo_Slice.'),
  2380. (425, '2016-12-21 15:48:01', 'JEinstein (uid: 1) changed Gaybo_Slice''s (uid: 257) name to Kimbo_Slice.'),
  2381. (426, '2016-12-21 15:53:51', 'JEinstein (uid: 1) set Dominic_Frost''s (uid: 363) admin level to 1'),
  2382. (427, '2016-12-21 16:03:39', 'Shawn_Menace (uid: 137) accepted Sean_Santo''s (uid: 144) free namechange to Lrizz_Devil.'),
  2383. (428, '2016-12-21 16:17:37', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2384. (429, '2016-12-21 16:17:57', 'Jordy (uid: 132) gives a Desert Eagle to Jonathan_Fabbrie (uid: 33)'),
  2385. (430, '2016-12-21 16:29:55', 'Tiber (uid: 13) gives a Knife to Tiber (uid: 13)'),
  2386. (431, '2016-12-21 16:32:12', 'Tiber (uid: 13) gives a Minigun to Tiber (uid: 13)'),
  2387. (432, '2016-12-21 16:44:14', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2388. (433, '2016-12-21 16:49:04', 'Jordy (uid: 132) set Jayden_Trapz''s (uid: 181) cash to 96433'),
  2389. (434, '2016-12-21 16:51:03', 'Jordy (uid: 132) accepted El_Chapo''s (uid: 157) free namechange to Dan_Devil.'),
  2390. (435, '2016-12-21 16:53:55', 'Tiber (uid: 13) gives a Satchel Explosives to Tiber (uid: 13)'),
  2391. (436, '2016-12-21 16:53:58', 'Tiber (uid: 13) gives a Flamethrower to Tiber (uid: 13)'),
  2392. (437, '2016-12-21 16:54:24', 'Tiber (uid: 13) gives a Bomb to Tiber (uid: 13)'),
  2393. (438, '2016-12-21 16:56:59', 'Jordy (uid: 132) gives a Knife to Jordy (uid: 132)'),
  2394. (439, '2016-12-21 16:58:47', 'Jordy (uid: 132) gives a Desert Eagle to Jayden_Trapz (uid: 181)'),
  2395. (440, '2016-12-21 17:17:41', 'Tiber (uid: 13) gives a Minigun to Tiber (uid: 13)'),
  2396. (441, '2016-12-21 17:22:31', 'Tiber (uid: 13) gives a Baseball Bat to Tiber (uid: 13)'),
  2397. (442, '2016-12-21 17:28:36', 'Tyler_Huntley (uid: 2) locked Tina_Paris''s account.'),
  2398. (443, '2016-12-21 17:28:43', 'Tyler_Huntley (uid: 2) locked Stacy_Moone''s account.'),
  2399. (444, '2016-12-21 17:32:18', 'Tyler_Huntley (uid: 2) set Tori_Chester''s (uid: 9) phone to 69'),
  2400. (445, '2016-12-21 17:33:42', 'Tiber (uid: 13) gives a Baseball Bat to Tiber (uid: 13)'),
  2401. (446, '2016-12-21 17:33:47', 'Tyler_Huntley (uid: 2) locked Walter_Cash''s account.'),
  2402. (447, '2016-12-21 17:35:56', 'Franklyn_Menace (uid: 10) accepted Dominic_Frost''s (uid: 363) free namechange to Jack_Justice.'),
  2403. (448, '2016-12-21 17:37:59', 'Tye (uid: 2) set Rafi_Hopskin''s (uid: 380) admin level to 2'),
  2404. (449, '2016-12-21 17:38:23', 'Tye (uid: 2) set Rafi_Hopskin''s (uid: 380) admin level to 0'),
  2405. (450, '2016-12-21 17:41:02', 'Dann_Lazlow (uid: 8) denied Dick_Black''s (uid: 185) namechange to Get_lost.'),
  2406. (451, '2016-12-21 17:52:28', 'Jordy (uid: 132) accepted Larko_Trapz''s (uid: 159) namechange to Alom_Trapz for $30000.'),
  2407. (452, '2016-12-21 18:01:39', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2408. (453, '2016-12-21 18:17:34', 'Franklyn_Menace (uid: 10) reversed Vinay_X_Ramcharan''s (uid: 427) DM punishment.'),
  2409. (454, '2016-12-21 18:24:27', 'Jordy (uid: 132) fined Lrizz_Devil (uid: 144) for $2000, reason: skin change'),
  2410. (455, '2016-12-21 18:25:26', 'Jordy (uid: 132) fined Dolla_Street (uid: 404) for $2000, reason: skin-change'),
  2411. (456, '2016-12-21 18:32:36', 'Jordy (uid: 132) gives a to Lance_Lanvins (uid: 11)'),
  2412. (457, '2016-12-21 18:33:08', 'Jordy (uid: 132) gives a Colt 45 to Lance_Lanvins (uid: 11)'),
  2413. (458, '2016-12-21 18:35:22', 'Jordy (uid: 132) gives a Desert Eagle to Jordy (uid: 132)'),
  2414. (459, '2016-12-21 18:39:50', 'Tyler_Huntley (uid: 2) reversed Adam_Menace''s (uid: 192) DM punishment.'),
  2415. (460, '2016-12-21 18:47:04', 'Dann (uid: 8) accepted Rhen_''s (uid: 439) free namechange to Rhen_Christopher.'),
  2416. (461, '2016-12-21 18:49:16', 'Jordy (uid: 132) set Omar_Lakewood''s (uid: 436) hours to 2'),
  2417. (462, '2016-12-21 19:05:32', 'Jordy (uid: 132) denied terry_scaletta''s (uid: 169) namechange to terry_chigga.'),
  2418. (463, '2016-12-21 19:05:55', 'Jordy (uid: 132) denied terry_scaletta''s (uid: 169) namechange to Terry_chigga.'),
  2419. (464, '2016-12-21 19:06:21', 'Shawn_Menace (uid: 137) accepted terry_scaletta''s (uid: 169) free namechange to Terry_Chigga.'),
  2420. (465, '2016-12-21 19:06:39', 'Tyler_Huntley (uid: 2) gives a Desert Eagle to Adam_Menace (uid: 192)'),
  2421. (466, '2016-12-21 19:11:18', 'Jack (uid: 70) denied Erick_Johnson''s (uid: 117) namechange to Zak_Chigga.'),
  2422. (467, '2016-12-21 19:12:09', 'Tyler_Huntley (uid: 2) accepted Erick_Johnson''s (uid: 117) free namechange to Eric_Chigga.'),
  2423. (468, '2016-12-21 19:35:41', 'Tyler_Huntley (uid: 2) changed manqobas_pearl''s (uid: 111) name to Manqobas_Pearlm.'),
  2424. (469, '2016-12-21 19:35:41', 'Tyler_Huntley (uid: 2) changed Manqobas_Pearlm''s (uid: 111) name to Manqobas_Pearl.'),
  2425. (470, '2016-12-21 19:35:57', 'Tyler_Huntley (uid: 2) changed Pastor_lee''s (uid: 48) name to Pastor_Leee.'),
  2426. (471, '2016-12-21 19:35:57', 'Tyler_Huntley (uid: 2) changed Pastor_Leee''s (uid: 48) name to Pastor_Lee.'),
  2427. (472, '2016-12-21 19:45:06', 'Tyler_Huntley (uid: 2) unlocked Walter_Cash''s account.'),
  2428. (473, '2016-12-21 20:00:13', 'Jordy (uid: 132) gives a Desert Eagle to Joga_Hernandez (uid: 77)'),
  2429. (474, '2016-12-21 20:00:15', 'Jordy (uid: 132) gives a Shotgun to Joga_Hernandez (uid: 77)'),
  2430. (475, '2016-12-21 20:09:51', 'Lui (uid: 12) set Lance''s (uid: 11) helper level to 3'),
  2431. (476, '2016-12-21 20:11:08', 'Josh_Einstein (uid: 1) set Josh_Einstein''s (uid: 1) mp3player to 1'),
  2432. (477, '2016-12-21 20:15:11', 'Lance (uid: 11) set Olly_Bronx''s (uid: 176) helper level to 1'),
  2433. (478, '2016-12-21 20:15:17', 'Lui (uid: 12) changed Lucenzo_Johnson''s (uid: 116) name to Justin_Chigga.'),
  2434. (479, '2016-12-21 20:18:44', 'Lance (uid: 11) set Joga_Hernandez''s (uid: 77) helper level to 1'),
  2435. (480, '2016-12-21 20:21:31', 'Jordy (uid: 132) gives a Shotgun to Kiiong_Lu (uid: 202)'),
  2436. (481, '2016-12-21 20:30:45', 'Tyler_Huntley (uid: 2) gives a Desert Eagle to Tyler_Huntley (uid: 2)'),
  2437. (482, '2016-12-21 20:30:47', 'Tyler_Huntley (uid: 2) gives a Shotgun to Tyler_Huntley (uid: 2)'),
  2438. (483, '2016-12-21 20:57:23', 'Lance_Lanvins (uid: 11) accepted tane_tane''s (uid: 453) free namechange to Tane_Honda.'),
  2439. (484, '2016-12-21 21:03:07', 'Lance_Lanvins (uid: 11) accepted Lrizz_Devil''s (uid: 144) free namechange to Enzo_Ozbourne.'),
  2440. (485, '2016-12-21 21:05:26', 'Lance_Lanvins (uid: 11) accepted Enzo_Ozbourne''s (uid: 144) free namechange to Lrizz_Devil.'),
  2441. (486, '2016-12-21 21:16:35', 'Lance_Lanvins (uid: 11) accepted Lrizz_Devil''s (uid: 144) free namechange to Karim_Scarletta.'),
  2442. (487, '2016-12-21 21:17:39', 'Lance_Lanvins (uid: 11) accepted Dan_Devil''s (uid: 157) free namechange to El_Chapo.'),
  2443. (488, '2016-12-21 21:19:32', 'Lance (uid: 11) accepted Karim_Scarletta''s (uid: 144) free namechange to Karim_Abas.'),
  2444. (489, '2016-12-21 21:19:50', 'Tyler_Huntley (uid: 2) set Dick_Black''s (uid: 185) admin level to 2'),
  2445. (490, '2016-12-21 21:21:11', 'Tyler_Huntley (uid: 2) accepted Karim_Abas''s (uid: 144) free namechange to Lrizz_Devil.'),
  2446. (491, '2016-12-21 21:27:45', 'Dann (uid: 8) accepted joseph_vincre''s (uid: 454) namechange to Joseph_Miguel for $15000.'),
  2447. (492, '2016-12-21 21:32:51', 'Tyler_Huntley (uid: 2) gives a Combat Shotgun to Andrei_Dillinger (uid: 331)'),
  2448. (493, '2016-12-21 21:33:04', 'Tyler_Huntley (uid: 2) gives a Desert Eagle to Andrei_Dillinger (uid: 331)'),
  2449. (494, '2016-12-21 21:47:23', 'Lui_Mendez (uid: 12) accepted Achilles_G_Johnson''s (uid: 227) free namechange to Ach_West_Gates.'),
  2450. (495, '2016-12-21 21:57:56', 'Tyler_Huntley (uid: 2) set Aviana_Starr''s (uid: 303) helper level to 1'),
  2451. (496, '2016-12-21 22:02:22', 'Lui (uid: 12) set Ach_West_Gates''s (uid: 227) helper level to 1'),
  2452. (497, '2016-12-21 22:06:39', 'Travis_Huntley (uid: 3) accepted El_Chapo''s (uid: 157) free namechange to Dan_Devil.'),
  2453. (498, '2016-12-21 22:15:10', 'Dann (uid: 8) accepted Nathan_Vincre''s (uid: 468) namechange to Nathan_Bobo for $15000.'),
  2454. (499, '2016-12-21 22:17:43', 'Lui_Mendez (uid: 12) accepted Dan_Devil''s (uid: 157) free namechange to Johnny_X_Williams.'),
  2455. (500, '2016-12-21 22:29:14', 'Dann (uid: 8) accepted Tommy_Gates''s (uid: 81) free namechange to Kevin_Banks.'),
  2456. (501, '2016-12-21 22:30:10', 'Dann (uid: 8) accepted Kevin_Banks''s (uid: 81) free namechange to Tommy_Gates.'),
  2457. (502, '2016-12-21 22:31:51', 'Lance (uid: 11) reversed Tori_Chester''s (uid: 9) DM punishment.'),
  2458. (503, '2016-12-21 22:33:02', 'Lance_Lanvins (uid: 11) accepted Johnny_X_Williams''s (uid: 157) free namechange to Dan_Devil.'),
  2459. (504, '2016-12-21 22:37:24', 'Tyler_Huntley (uid: 2) set Tommy_Gates''s (uid: 81) admin level to 0'),
  2460. (505, '2016-12-21 22:37:54', 'Travis_Huntley (uid: 3) set Tommy_Gates''s (uid: 81) admin level to 1'),
  2461. (506, '2016-12-21 22:38:16', 'Travis_Huntley (uid: 3) reversed Jack_Justice''s (uid: 363) DM punishment.'),
  2462. (507, '2016-12-21 22:47:13', 'Dann (uid: 8) accepted Lrizz_Devil''s (uid: 144) free namechange to Kai_V_Rameriz.'),
  2463. (508, '2016-12-21 22:48:57', 'Travis_Huntley (uid: 3) changed Danny_Delino''s (uid: 263) name to Lann_Dazlow.'),
  2464. (509, '2016-12-21 22:49:08', 'Travis_Huntley (uid: 3) changed Lann_Dazlow''s (uid: 263) name to Danny_Delino.'),
  2465. (510, '2016-12-21 22:51:07', 'Tyler_Huntley (uid: 2) set Aviana_Starr''s (uid: 303) CarLicense to 1');
  2466. INSERT INTO `log_admin` (`id`, `date`, `description`) VALUES
  2467. (511, '2016-12-21 22:51:42', 'Travis_Huntley (uid: 3) set Dann''s (uid: 8) admin level to 2'),
  2468. (512, '2016-12-21 22:51:43', 'Travis_Huntley (uid: 3) set Dann''s (uid: 8) admin level to 3'),
  2469. (513, '2016-12-21 22:53:05', 'Shawn (uid: 137) accepted Kai_V_Rameriz''s (uid: 144) free namechange to Lrizz_Devil.'),
  2470. (514, '2016-12-21 22:53:48', 'Tyler_Huntley (uid: 2) set Franklyn_Menace''s (uid: 10) phone to 7'),
  2471. (515, '2016-12-21 22:54:02', 'Tyler_Huntley (uid: 2) set Franklyn_Menace''s (uid: 10) boombox to 1'),
  2472. (516, '2016-12-21 22:54:55', 'Tyler_Huntley (uid: 2) has given Franklyn_Menace (uid: 10) their own Infernus.'),
  2473. (517, '2016-12-21 22:55:03', 'Travis_Huntley (uid: 3) accepted Jack_Justice''s (uid: 363) free namechange to Dominic_Frost.'),
  2474. (518, '2016-12-21 23:17:44', 'Tyler_Huntley (uid: 2) changed rene_lolo''s (uid: 431) name to Rene_Lolol.'),
  2475. (519, '2016-12-21 23:17:45', 'Tyler_Huntley (uid: 2) changed Rene_Lolol''s (uid: 431) name to Rene_Lolo.'),
  2476. (520, '2016-12-21 23:39:14', 'Franklyn (uid: 10) gives a Desert Eagle to Shawn_Menace (uid: 137)'),
  2477. (521, '2016-12-21 23:43:04', 'Travis_Huntley (uid: 3) accepted Lrizz_Devil''s (uid: 144) free namechange to Sam_Ozbourne.'),
  2478. (522, '2016-12-21 23:44:52', 'Franklyn (uid: 10) accepted Sam_Ozbourne''s (uid: 144) free namechange to Lrizz_Devil.'),
  2479. (523, '2016-12-21 23:48:46', 'Lui (uid: 12) fined Nejin_Shades (uid: 493) for $2000, reason: skin'),
  2480. (524, '2016-12-22 00:24:25', 'Tyler_Huntley (uid: 2) changed Tyler_Huntley''s (uid: 2) name to Jim_Lazlers.'),
  2481. (525, '2016-12-22 00:26:50', 'Jim_Lazlers (uid: 2) changed Jim_Lazlers''s (uid: 2) name to Tyler_Huntley.'),
  2482. (526, '2016-12-22 01:15:15', 'Franklyn (uid: 10) gives a Desert Eagle to Ed_Slash (uid: 34)'),
  2483. (527, '2016-12-22 01:15:19', 'Franklyn (uid: 10) gives a Sniper Rifle to Ed_Slash (uid: 34)'),
  2484. (528, '2016-12-22 01:16:43', 'Lui (uid: 12) gives a Minigun to Lui (uid: 12)'),
  2485. (529, '2016-12-22 01:16:51', 'Lui (uid: 12) gives a Desert Eagle to Lui (uid: 12)'),
  2486. (530, '2016-12-22 01:17:09', 'Lui (uid: 12) gives a Desert Eagle to Lui (uid: 12)'),
  2487. (531, '2016-12-22 01:23:21', 'Tyler_Huntley (uid: 2) denied Alexis_Bronx''s (uid: 306) namechange to Shurban_Turtle.'),
  2488. (532, '2016-12-22 01:24:10', 'Travis_Huntley (uid: 3) accepted Alexis_Bronx''s (uid: 306) namechange to Shurban_Turtle for $15000.'),
  2489. (533, '2016-12-22 02:02:45', 'Travis_Huntley (uid: 3) has offline set Jordan_Trapz''s admin level to 3.'),
  2490. (534, '2016-12-22 02:05:55', 'Travis_Huntley (uid: 3) has offline set Tiber_Septim''s admin level to 5.'),
  2491. (535, '2016-12-22 02:06:42', 'JEinstein (uid: 1) has offline set Jordan_Trapz''s admin level to 3.'),
  2492. (536, '2016-12-22 02:12:19', 'Travis_Huntley (uid: 3) set Travis_Huntley''s (uid: 3) upgradepoints to 100'),
  2493. (537, '2016-12-22 02:36:41', 'Travis_Huntley (uid: 3) set Dan_Devil''s (uid: 157) helper level to 2'),
  2494. (538, '2016-12-23 12:51:00', 'JEinstein (uid: 1) set Tiber_Septim''s (uid: 13) admin level to 5'),
  2495. (539, '2016-12-23 12:55:49', 'JEinstein (uid: 1) set Michael_Render''s (uid: 113) boombox to 1'),
  2496. (540, '2016-12-23 12:56:59', 'JEinstein (uid: 1) has given Tay_Forbes (uid: 15) their own NRG-500.'),
  2497. (541, '2016-12-23 12:58:22', 'JEinstein (uid: 1) set Jordan_Trapz''s (uid: 132) admin level to 3'),
  2498. (542, '2016-12-23 13:09:30', 'Fig_Mcfig (uid: 21) gives a MP5 to Fig_Mcfig (uid: 21)'),
  2499. (543, '2016-12-23 13:11:13', 'JEinstein (uid: 1) has given Danny_Delino (uid: 263) their own NRG-500.'),
  2500. (544, '2016-12-23 13:11:14', 'JEinstein (uid: 1) has given Danny_Delino (uid: 263) their own NRG-500.'),
  2501. (545, '2016-12-23 13:11:14', 'JEinstein (uid: 1) has given Danny_Delino (uid: 263) their own NRG-500.'),
  2502. (546, '2016-12-23 13:11:16', 'Tiber (uid: 13) gives a Minigun to Tiber (uid: 13)'),
  2503. (547, '2016-12-23 13:20:39', 'JEinstein (uid: 1) set Kalgon_Grande''s (uid: 153) admin level to 2'),
  2504. (548, '2016-12-23 13:21:38', 'Fig_Mcfig (uid: 21) changed Fig_Mcfig''s (uid: 21) name to Ronald_McDonald.'),
  2505. (549, '2016-12-23 13:22:40', 'Ronald_McDonald (uid: 21) set Ronald_McDonald''s (uid: 21) admin level to 1'),
  2506. (550, '2016-12-23 13:25:32', 'Lance_Lanvins (uid: 11) set Luigi_Mendez''s (uid: 42) helper level to 1'),
  2507. (551, '2016-12-23 13:25:35', 'Lance_Lanvins (uid: 11) set Wallace_Lanvins''s (uid: 530) helper level to 1'),
  2508. (552, '2016-12-23 13:27:30', 'Ronald_McDonald (uid: 21) has made Ronald_McDonald (uid: 21) a ban appealer.'),
  2509. (553, '2016-12-23 13:27:32', 'Ronald_McDonald (uid: 21) set Ronald_McDonald''s (uid: 21) admin level to 1'),
  2510. (554, '2016-12-23 13:34:29', 'Jordy (uid: 132) fined Vitsz_Hayes (uid: 205) for $840 (10 percent), reason: OOC /ad'),
  2511. (555, '2016-12-23 13:34:33', 'Ronald_McDonald (uid: 21) changed Ronald_McDonald''s (uid: 21) name to cock_in_mouth.'),
  2512. (556, '2016-12-23 13:34:42', 'cock_in_mouth (uid: 21) changed cock_in_mouth''s (uid: 21) name to Ronald_McDonald.'),
  2513. (557, '2016-12-23 13:36:11', 'Lance (uid: 11) reversed Kai_G_Ramirez''s (uid: 318) DM punishment.'),
  2514. (558, '2016-12-23 13:36:46', 'Ronald_McDonald (uid: 21) changed Ronald_McDonald''s (uid: 21) name to ____________________.'),
  2515. (559, '2016-12-23 13:37:24', '____________________ (uid: 21) changed ____________________''s (uid: 21) name to Ronald_McDonald.'),
  2516. (560, '2016-12-23 13:40:46', 'Ronald_McDonald (uid: 21) set Ronald_McDonald''s (uid: 21) admin level to 1'),
  2517. (561, '2016-12-23 13:52:00', 'Ronald_McDonald (uid: 21) set Ronald_McDonald''s (uid: 21) admin level to 1'),
  2518. (562, '2016-12-23 13:56:55', 'Ronald_McDonald (uid: 21) set Ronald_McDonald''s (uid: 21) admin level to 1'),
  2519. (563, '2016-12-23 14:01:44', 'Ronald_McDonald (uid: 21) set Ronald_McDonald''s (uid: 21) admin level to 1'),
  2520. (564, '2016-12-23 14:02:56', 'Ronald_McDonald (uid: 21) set Wallace_Lanvins''s (uid: 530) hours to 2'),
  2521. (565, '2016-12-23 14:05:02', 'Tyler_Huntley (uid: 2) set Wallace_Lanvins''s (uid: 530) upgradepoints to 2'),
  2522. (566, '2016-12-23 14:05:58', 'Ronald_McDonald (uid: 21) set Ronald_McDonald''s (uid: 21) admin level to 1'),
  2523. (567, '2016-12-23 14:06:11', 'Tiber (uid: 13) changed Devanshul_Sharma''s (uid: 280) name to Alex_Johnson.'),
  2524. (568, '2016-12-23 14:07:04', 'Tiber (uid: 13) gives a Satchel Explosives to Tiber (uid: 13)'),
  2525. (569, '2016-12-23 14:07:05', 'Tiber (uid: 13) gives a Bomb to Tiber (uid: 13)'),
  2526. (570, '2016-12-23 14:07:51', 'Tiber (uid: 13) gives a Sniper Rifle to Tiber (uid: 13)'),
  2527. (571, '2016-12-23 14:09:48', 'Tiber (uid: 13) gives a Knife to Tiber (uid: 13)'),
  2528. (572, '2016-12-23 14:13:42', 'Tiber (uid: 13) gives a Minigun to Tiber (uid: 13)'),
  2529. (573, '2016-12-23 14:23:03', 'Lance (uid: 11) set Michael_Render''s (uid: 113) helper level to 1'),
  2530. (574, '2016-12-23 14:52:00', 'Tyler_Huntley (uid: 2) unlocked Tina_Paris''s account.'),
  2531. (575, '2016-12-23 14:52:23', 'Tyler_Huntley (uid: 2) unlocked Stacy_Moone''s account.'),
  2532. (576, '2016-12-23 15:21:08', 'Tyler_Huntley (uid: 2) set Tyler_Kilo''s (uid: 558) level to 2'),
  2533. (577, '2016-12-23 15:21:13', 'Tyler_Huntley (uid: 2) set Tyler_Kilo''s (uid: 558) upgradepoints to 4'),
  2534. (578, '2016-12-23 15:22:24', 'Tyler_Huntley (uid: 2) set Tyrone_D_Silva''s (uid: 559) Level to 2'),
  2535. (579, '2016-12-23 15:23:29', 'Jordy (uid: 132) reversed Adam_Menace''s (uid: 192) DM punishment.'),
  2536. (580, '2016-12-23 15:26:47', 'Tyler_Huntley (uid: 2) set Tyrone_D_Silva''s (uid: 559) hours to 2'),
  2537. (581, '2016-12-23 15:45:15', 'Tyler_Huntley (uid: 2) set Sergei_Kovalevsky''s (uid: 549) level to 2'),
  2538. (582, '2016-12-23 15:45:22', 'Tyler_Huntley (uid: 2) set Sergei_Kovalevsky''s (uid: 549) upgradepoints to 2'),
  2539. (583, '2016-12-23 15:45:28', 'Tyler_Huntley (uid: 2) set Sergei_Kovalevsky''s (uid: 549) hours to 2'),
  2540. (584, '2016-12-23 15:48:25', 'Tyler_Huntley (uid: 2) set Kai_Flame''s (uid: 550) level to 2'),
  2541. (585, '2016-12-23 15:48:33', 'Tyler_Huntley (uid: 2) set Kai_Flame''s (uid: 550) hours to 2'),
  2542. (586, '2016-12-23 15:48:40', 'Tyler_Huntley (uid: 2) set Kai_Flame''s (uid: 550) Upgradepoints to 2'),
  2543. (587, '2016-12-23 15:50:11', 'Tyler_Huntley (uid: 2) set Julian_Trapz''s (uid: 556) Level to 2'),
  2544. (588, '2016-12-23 15:50:16', 'Tyler_Huntley (uid: 2) set Julian_Trapz''s (uid: 556) Hours to 2'),
  2545. (589, '2016-12-23 15:50:22', 'Tyler_Huntley (uid: 2) set Julian_Trapz''s (uid: 556) Upgradepoints to 2'),
  2546. (590, '2016-12-23 15:50:49', 'Tyler_Huntley (uid: 2) set Mystogan_Moons''s (uid: 41) level to 5'),
  2547. (591, '2016-12-23 15:51:08', 'Tyler_Huntley (uid: 2) set Finn_Bloom''s (uid: 560) level to 2'),
  2548. (592, '2016-12-23 15:51:16', 'Tyler_Huntley (uid: 2) set Finn_Bloom''s (uid: 560) hours to 2'),
  2549. (593, '2016-12-23 15:51:32', 'Tyler_Huntley (uid: 2) set Finn_Bloom''s (uid: 560) Upgradepoints to 2'),
  2550. (594, '2016-12-23 16:02:46', 'JEinstein (uid: 1) set Lrizz_Devil''s (uid: 144) hours to 44'),
  2551. (595, '2016-12-23 16:02:54', 'JEinstein (uid: 1) set Lrizz_Devil''s (uid: 144) level to 7'),
  2552. (596, '2016-12-23 16:04:53', 'Lance (uid: 11) accepted Tray_Fwego''s (uid: 563) free namechange to Bentley_Cash.'),
  2553. (597, '2016-12-23 16:30:40', 'Tyler_Huntley (uid: 2) set Bentley_Cash''s (uid: 563) level to 2'),
  2554. (598, '2016-12-23 16:30:43', 'Tyler_Huntley (uid: 2) set Bentley_Cash''s (uid: 563) hours to 2'),
  2555. (599, '2016-12-23 16:30:49', 'Tyler_Huntley (uid: 2) set Bentley_Cash''s (uid: 563) upgradepoints to 2'),
  2556. (600, '2016-12-23 16:30:56', 'Dick_Cardenas (uid: 185) accepted Dan_Devil''s (uid: 157) free namechange to Jacob_Menace.'),
  2557. (601, '2016-12-23 16:37:55', 'Lance (uid: 11) accepted Tommy_Gates''s (uid: 81) free namechange to Kevin_Young.'),
  2558. (602, '2016-12-23 16:41:50', 'Dick_Cardenas (uid: 185) accepted Jacob_Menace''s (uid: 157) free namechange to Danny_Cash.'),
  2559. (603, '2016-12-23 16:43:27', 'Lance (uid: 11) accepted Kevin_Young''s (uid: 81) free namechange to Tommy_Gates.'),
  2560. (604, '2016-12-23 16:48:17', 'Franklyn_Menace (uid: 10) accepted Danny_Cash''s (uid: 157) free namechange to Dan_Devil.'),
  2561. (605, '2016-12-23 17:33:33', 'Tyler_Huntley (uid: 2) set Tommy_Gates''s (uid: 81) weed to 50'),
  2562. (606, '2016-12-23 17:33:38', 'Tyler_Huntley (uid: 2) set Tommy_Gates''s (uid: 81) cocaine to 25'),
  2563. (607, '2016-12-23 17:33:43', 'Tyler_Huntley (uid: 2) set Tommy_Gates''s (uid: 81) Meth to 20'),
  2564. (608, '2016-12-23 17:33:52', 'Tyler_Huntley (uid: 2) set Tommy_Gates''s (uid: 81) Painkillers to 5'),
  2565. (609, '2016-12-23 17:33:59', 'Tyler_Huntley (uid: 2) set Tommy_Gates''s (uid: 81) seeds to 10'),
  2566. (610, '2016-12-23 17:41:50', 'Franklyn (uid: 10) reversed Aizander_Sage''s (uid: 423) DM punishment.'),
  2567. (611, '2016-12-23 17:45:09', 'Travis_Huntley (uid: 3) set Joseph_Dredd''s (uid: 574) level to 2'),
  2568. (612, '2016-12-23 17:45:15', 'Travis_Huntley (uid: 3) set Joseph_Dredd''s (uid: 574) hours to 8'),
  2569. (613, '2016-12-23 17:47:28', 'Travis_Huntley (uid: 3) set Joseph_Dredd''s (uid: 574) admin level to 1'),
  2570. (614, '2016-12-23 17:55:40', 'Franklyn (uid: 10) reversed Tony_Freeman''s (uid: 24) DM punishment.'),
  2571. (615, '2016-12-23 17:57:09', 'Travis_Huntley (uid: 3) set Franklyn_Menace''s (uid: 10) phone to 72'),
  2572. (616, '2016-12-23 18:05:08', 'Travis_Huntley (uid: 3) gives a Desert Eagle to Tommy_Gates (uid: 81)'),
  2573. (617, '2016-12-23 18:05:09', 'Travis_Huntley (uid: 3) gives a Shotgun to Tommy_Gates (uid: 81)'),
  2574. (618, '2016-12-23 18:05:11', 'Travis_Huntley (uid: 3) gives a Knife to Tommy_Gates (uid: 81)'),
  2575. (619, '2016-12-23 18:09:22', 'Travis_Huntley (uid: 3) set Tori_Chester''s (uid: 9) level to 5'),
  2576. (620, '2016-12-23 18:15:40', 'Travis_Huntley (uid: 3) set Travis_Huntley''s (uid: 3) job to 9'),
  2577. (621, '2016-12-23 18:17:02', 'Travis_Huntley (uid: 3) set Sammy_Sunshine''s (uid: 587) level to 2'),
  2578. (622, '2016-12-23 18:17:07', 'Travis_Huntley (uid: 3) set Sammy_Sunshine''s (uid: 587) hours to 8'),
  2579. (623, '2016-12-23 19:13:09', 'Travis_Huntley (uid: 3) set Shurban_Turtle''s (uid: 306) helper level to 1'),
  2580. (624, '2016-12-23 19:14:34', 'Travis_Huntley (uid: 3) set Shurban_Turtle''s (uid: 306) phone to 24'),
  2581. (625, '2016-12-23 19:15:14', 'Travis_Huntley (uid: 3) set Shurban_Turtle''s (uid: 306) level to 4');
  2582. -- --------------------------------------------------------
  2583. --
  2584. -- Table structure for table `log_cheat`
  2585. --
  2586. CREATE TABLE IF NOT EXISTS `log_cheat` (
  2587. `id` int(10) NOT NULL,
  2588. `date` datetime DEFAULT NULL,
  2589. `description` varchar(255) DEFAULT NULL
  2590. ) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=latin1;
  2591. --
  2592. -- Dumping data for table `log_cheat`
  2593. --
  2594. INSERT INTO `log_cheat` (`id`, `date`, `description`) VALUES
  2595. (1, '2016-12-20 00:56:16', 'Test_McTest (uid: 4) had a desynced '),
  2596. (2, '2016-12-20 00:56:17', 'Test_McTest (uid: 4) had a desynced '),
  2597. (3, '2016-12-20 01:05:57', 'Test_McTest (uid: 4) possibly hacked armor. (old: 50.00, new: 100.00)'),
  2598. (4, '2016-12-20 01:05:57', 'Test_McTest (uid: 4) possibly hacked armor. (old: 50.00, new: 100.00)'),
  2599. (5, '2016-12-20 01:08:37', 'Test_McTest (uid: 4) possibly hacked armor. (old: 2.00, new: 50.00)'),
  2600. (6, '2016-12-20 01:08:51', 'Test_McTest (uid: 4) possibly hacked armor. (old: 2.00, new: 150.00)'),
  2601. (7, '2016-12-20 12:41:12', 'Johnny_Krauser (uid: 29) had a desynced ´` with 19999 ammunition.'),
  2602. (8, '2016-12-20 12:41:13', 'Johnny_Krauser (uid: 29) had a desynced ´` with 19999 ammunition.'),
  2603. (9, '2016-12-20 12:44:34', 'Johnny_Krauser (uid: 29) possibly hacked armor. (old: 0.00, new: 100.00)'),
  2604. (10, '2016-12-20 12:54:16', 'Jeff_Brooks (uid: 90) possibly hacked armor. (old: 2.00, new: 4.00)'),
  2605. (11, '2016-12-20 13:21:32', 'pete_swift (uid: 14) had a desynced ´`,, with 19999 ammunition.'),
  2606. (12, '2016-12-20 13:23:06', 'pete_swift (uid: 14) had a desynced ´`,, with 19999 ammunition.'),
  2607. (13, '2016-12-20 13:26:33', 'pete_swift (uid: 14) had a desynced ´`// with 19999 ammunition.'),
  2608. (14, '2016-12-20 13:32:04', 'Salah_Amphibia (uid: 44) had a desynced ´` with 19999 ammunition.'),
  2609. (15, '2016-12-20 13:33:00', 'Gre_Hunter (uid: 39) had a desynced ´` with 19999 ammunition.'),
  2610. (16, '2016-12-20 14:26:39', 'Asykon_Amphibia (uid: 6) possibly hacked armor. (old: 0.00, new: 100.00)'),
  2611. (17, '2016-12-20 15:35:46', 'Jordan_Trapz (uid: 132) possibly speedhacked, speed: 351.2 km/h'),
  2612. (18, '2016-12-20 15:35:48', 'Jordan_Trapz (uid: 132) possibly speedhacked, speed: 389.1 km/h'),
  2613. (19, '2016-12-20 15:49:36', 'David_Ross (uid: 58) possibly hacked armor. (old: 45.00, new: 55.00)'),
  2614. (20, '2016-12-20 15:49:37', 'David_Ross (uid: 58) possibly hacked armor. (old: 15.00, new: 20.00)'),
  2615. (21, '2016-12-20 16:09:27', 'Blake_Amphibia (uid: 19) possibly hacked armor. (old: 83.00, new: 90.00)'),
  2616. (22, '2016-12-20 16:09:33', 'Blake_Amphibia (uid: 19) possibly hacked armor. (old: 36.00, new: 83.00)'),
  2617. (23, '2016-12-20 16:11:44', 'Cynthia_Tucker (uid: 73) possibly hacked armor. (old: 37.00, new: 40.00)'),
  2618. (24, '2016-12-20 16:11:46', 'Cynthia_Tucker (uid: 73) possibly hacked armor. (old: 23.00, new: 37.00)'),
  2619. (25, '2016-12-20 16:11:46', 'Gre_Hunter (uid: 39) possibly hacked armor. (old: 8.00, new: 51.00)'),
  2620. (26, '2016-12-20 16:11:48', 'Gre_Hunter (uid: 39) possibly hacked armor. (old: 0.00, new: 8.00)'),
  2621. (27, '2016-12-21 02:45:23', 'Jimbei_Piece (uid: 215) had a desynced Desert Eagle with 100 ammunition.'),
  2622. (28, '2016-12-21 04:20:49', 'Tom_Wrzosek (uid: 74) had a desynced Silenced Pistol with 19999 ammunition.'),
  2623. (29, '2016-12-21 04:20:50', 'Tom_Wrzosek (uid: 74) had a desynced Silenced Pistol with 19999 ammunition.'),
  2624. (30, '2016-12-21 04:43:00', 'Umer_Menace (uid: 25) had a desynced Desert Eagle with 19985 ammunition.'),
  2625. (31, '2016-12-21 04:43:02', 'Umer_Menace (uid: 25) had a desynced Desert Eagle with 19985 ammunition.'),
  2626. (32, '2016-12-21 04:44:46', 'Asyton_Vincre (uid: 293) had a desynced Desert Eagle with 19990 ammunition.'),
  2627. (33, '2016-12-21 11:02:23', 'Jayden_Trapz (uid: 181) had a desynced Shotgun with 19993 ammunition.'),
  2628. (34, '2016-12-21 11:02:24', 'Jayden_Trapz (uid: 181) had a desynced Shotgun with 19993 ammunition.'),
  2629. (35, '2016-12-21 11:41:25', 'Salah_Amphibia (uid: 44) had a desynced Desert Eagle with -31082 ammunition.'),
  2630. (36, '2016-12-21 11:41:25', 'Clarence_Breyer (uid: 277) had a desynced M4 with -31086 ammunition.'),
  2631. (37, '2016-12-21 11:41:25', 'Filip_Amphibia (uid: 93) had a desynced Desert Eagle with -31080 ammunition.'),
  2632. (38, '2016-12-21 11:41:26', 'Kimbo_Slice (uid: 257) had a desynced Desert Eagle with -31082 ammunition.'),
  2633. (39, '2016-12-21 11:41:26', 'Liam_Maxwell (uid: 361) had a desynced Desert Eagle with -31080 ammunition.'),
  2634. (40, '2016-12-21 11:41:26', 'Salah_Amphibia (uid: 44) had a desynced Desert Eagle with -31082 ammunition.'),
  2635. (41, '2016-12-21 11:41:27', 'Filip_Amphibia (uid: 93) had a desynced Desert Eagle with -31080 ammunition.'),
  2636. (42, '2016-12-21 11:41:27', 'Kimbo_Slice (uid: 257) had a desynced Desert Eagle with -31082 ammunition.'),
  2637. (43, '2016-12-21 11:41:27', 'Liam_Maxwell (uid: 361) had a desynced Desert Eagle with -31080 ammunition.'),
  2638. (44, '2016-12-21 11:41:28', 'Clarence_Breyer (uid: 277) had a desynced Desert Eagle with -31087 ammunition.'),
  2639. (45, '2016-12-21 11:41:29', 'Jason_Gucci_Sosa (uid: 23) had a desynced Combat Shotgun with -31093 ammunition.'),
  2640. (46, '2016-12-21 11:41:31', 'Jason_Gucci_Sosa (uid: 23) had a desynced Desert Eagle with -31088 ammunition.'),
  2641. (47, '2016-12-21 19:01:16', 'Kiiong_Lu (uid: 202) had a desynced Desert Eagle with -31079 ammunition.'),
  2642. (48, '2016-12-21 19:01:17', 'Kiiong_Lu (uid: 202) had a desynced Desert Eagle with -31079 ammunition.'),
  2643. (49, '2016-12-21 19:01:30', 'Lawrence_Lam (uid: 316) possibly speedhacked, speed: 361.6 km/h'),
  2644. (50, '2016-12-21 19:01:31', 'Lawrence_Lam (uid: 316) possibly speedhacked, speed: 360.9 km/h'),
  2645. (51, '2016-12-21 19:30:14', 'Jafari_Hakeem (uid: 430) had a desynced Baseball Bat with 1300 ammunition.'),
  2646. (52, '2016-12-21 19:30:43', 'Jafari_Hakeem (uid: 430) had a desynced Desert Eagle with 1300 ammunition.'),
  2647. (53, '2016-12-21 19:33:32', 'Pastor_lee (uid: 48) possibly speedhacked, speed: 383.8 km/h'),
  2648. (54, '2016-12-23 13:42:18', 'Artjom_Slavnik (uid: 538) had a desynced Desert Eagle with 50 ammunition.'),
  2649. (55, '2016-12-23 17:58:59', 'Orlando_Amphibia (uid: 100) possibly hacked armor. (old: 0.00, new: 100.00)'),
  2650. (56, '2016-12-23 18:02:02', 'Orlando_Amphibia (uid: 100) possibly hacked armor. (old: 0.00, new: 100.00)');
  2651. -- --------------------------------------------------------
  2652. --
  2653. -- Table structure for table `log_contracts`
  2654. --
  2655. CREATE TABLE IF NOT EXISTS `log_contracts` (
  2656. `id` int(10) NOT NULL,
  2657. `date` datetime DEFAULT NULL,
  2658. `description` varchar(255) DEFAULT NULL
  2659. ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=latin1;
  2660. --
  2661. -- Dumping data for table `log_contracts`
  2662. --
  2663. INSERT INTO `log_contracts` (`id`, `date`, `description`) VALUES
  2664. (1, '2016-12-20 15:24:53', 'Travis (uid: 3) placed a contract on Lrizz_Devil (uid: 144) for $10000, reason: Lots of Love'),
  2665. (2, '2016-12-20 21:31:40', 'Dan Devil (uid: 157) successfully completed their hit on Lrizz Devil (uid: 144) for $10000.'),
  2666. (3, '2016-12-21 00:30:23', 'Shawn_Menace (uid: 137) placed a contract on Tony_Freeman (uid: 24) for $10000, reason: nigger'),
  2667. (4, '2016-12-21 00:31:58', 'Dan Devil (uid: 157) successfully completed their hit on Tony Freeman (uid: 24) for $10000.'),
  2668. (5, '2016-12-21 00:37:05', 'Joga_Hernandez (uid: 77) placed a contract on Walter_Cash (uid: 16) for $10000, reason: Vatos Loco is trash'),
  2669. (6, '2016-12-21 00:37:45', 'Franklyn_Menace (uid: 10) placed a contract on Shawn_Menace (uid: 137) for $10000, reason: You fucking asshole'),
  2670. (7, '2016-12-21 00:41:03', 'Shawn_Menace (uid: 137) placed a contract on Franklyn_Menace (uid: 10) for $20000, reason: Fuckinn old nerdddddddddd'),
  2671. (8, '2016-12-21 00:42:01', 'Razor V Rameriz (uid: 144) successfully completed their hit on Franklyn Menace (uid: 10) for $20000.'),
  2672. (9, '2016-12-21 00:43:14', 'James Williams (uid: 157) successfully completed their hit on Shawn Menace (uid: 137) for $10000.'),
  2673. (10, '2016-12-21 01:47:56', 'Lrizz Devil (uid: 144) successfully completed their hit on Walter Cash (uid: 16) for $10000.'),
  2674. (11, '2016-12-21 06:09:59', 'Jordan_Trapz (uid: 132) placed a contract on Luigi_Mendez (uid: 42) for $10000, reason: get him boys'),
  2675. (12, '2016-12-21 06:27:10', 'El Chapo (uid: 157) successfully completed their hit on Luigi Mendez (uid: 42) for $10000.'),
  2676. (13, '2016-12-21 12:37:44', 'Tyler_X_Cage (uid: 26) placed a contract on Tony_Freeman (uid: 24) for $10000, reason: Yo get him'),
  2677. (14, '2016-12-21 14:11:56', 'John Cock (uid: 157) failed their hit on Tony Freeman (uid: 24) and lost $10000.'),
  2678. (15, '2016-12-21 15:34:00', 'Niko_Santo (uid: 142) placed a contract on Julia_Covenant (uid: 78) for $10000, reason: Lrizz pressent '),
  2679. (16, '2016-12-21 15:58:21', 'Tommy Gates (uid: 81) successfully completed their hit on Julia Covenant (uid: 78) for $10000.'),
  2680. (17, '2016-12-21 16:37:54', 'Shawn_Menace (uid: 137) placed a contract on Tony_Freeman (uid: 24) for $10000, reason: Menace'),
  2681. (18, '2016-12-21 21:03:12', 'Wu_Gotti (uid: 265) placed a contract on William_J_Thompson (uid: 221) for $10000, reason: mother fucker killed my wife'),
  2682. (19, '2016-12-21 21:03:55', 'Enzo Ozbourne (uid: 144) successfully completed their hit on William J Thompson (uid: 221) for $10000.'),
  2683. (20, '2016-12-21 21:16:18', 'Joga_Hernandez (uid: 77) placed a contract on Walter_Cash (uid: 16) for $10000, reason: Who do you think you are '),
  2684. (21, '2016-12-21 21:18:28', 'Wu_Gotti (uid: 265) placed a contract on Andrei_Dillinger (uid: 331) for $10000, reason: almost pushed me off the fishing pier'),
  2685. (22, '2016-12-21 21:20:24', 'Karim Abas (uid: 144) successfully completed their hit on Andrei Dillinger (uid: 331) for $10000.'),
  2686. (23, '2016-12-21 21:29:15', 'Tommy Gates (uid: 81) successfully completed their hit on Walter Cash (uid: 16) for $10000.'),
  2687. (24, '2016-12-21 22:16:32', 'William_J_Thompson (uid: 221) placed a contract on Andrei_Dillinger (uid: 331) for $20000, reason: dick head'),
  2688. (25, '2016-12-21 22:31:14', 'Johnny X Williams (uid: 157) successfully completed their hit on Andrei Dillinger (uid: 331) for $20000.'),
  2689. (26, '2016-12-21 22:34:39', 'William_J_Thompson (uid: 221) placed a contract on Andrei_Dillinger (uid: 331) for $10000, reason: kill him again pls'),
  2690. (27, '2016-12-21 23:44:12', 'Sam Ozbourne (uid: 144) successfully completed their hit on Andrei Dillinger (uid: 331) for $10000.'),
  2691. (28, '2016-12-23 16:31:50', 'Kai_Flame (uid: 550) placed a contract on oscar_g_ramirez (uid: 122) for $10000, reason: nigger'),
  2692. (29, '2016-12-23 16:47:24', 'Danny Cash (uid: 157) successfully completed their hit on oscar g ramirez (uid: 122) for $10000.');
  2693. -- --------------------------------------------------------
  2694. --
  2695. -- Table structure for table `log_faction`
  2696. --
  2697. CREATE TABLE IF NOT EXISTS `log_faction` (
  2698. `id` int(10) NOT NULL,
  2699. `date` datetime DEFAULT NULL,
  2700. `description` varchar(255) DEFAULT NULL
  2701. ) ENGINE=InnoDB AUTO_INCREMENT=249 DEFAULT CHARSET=latin1;
  2702. --
  2703. -- Dumping data for table `log_faction`
  2704. --
  2705. INSERT INTO `log_faction` (`id`, `date`, `description`) VALUES
  2706. (1, '2016-12-20 10:51:43', 'Lui_Mendez (uid: 12) has started a live interview with Tyler_Huntley (uid: 2)'),
  2707. (2, '2016-12-20 10:53:19', 'Lui Mendez (uid: 12) added Lui_Mendez with number 5 to the phonebook.'),
  2708. (3, '2016-12-20 11:16:45', 'Tiber_Septim (uid: 13) kicked Tiber_Septim (uid: 13) from Los Santos Police Department (id: 0) as rank Chief of Police (6).'),
  2709. (4, '2016-12-20 12:17:05', 'Tay_Forbes (uid: 15) has invited Dion_Gucci_Sosa (uid: 20) to San Andreas Fire & Medical Department (id: 1).'),
  2710. (5, '2016-12-20 12:17:25', 'Tay_Forbes (uid: 15) has set Dion_Gucci_Sosa''s (uid: 20) rank to Lieutenant (4).'),
  2711. (6, '2016-12-20 12:17:39', 'Tay_Forbes (uid: 15) has set Dion_Gucci_Sosa''s (uid: 20) rank to Assistant Chief (5).'),
  2712. (7, '2016-12-20 12:27:30', 'Tay_Forbes (uid: 15) has invited Johnny_Krauser (uid: 29) to San Andreas Fire & Medical Department (id: 1).'),
  2713. (8, '2016-12-20 12:27:47', 'Tay_Forbes (uid: 15) has set Johnny_Krauser''s (uid: 29) rank to Assistant Chief (5).'),
  2714. (9, '2016-12-20 12:32:46', 'Tay_Forbes (uid: 15) has invited Tommy_Gates (uid: 81) to San Andreas Fire & Medical Department (id: 1).'),
  2715. (10, '2016-12-20 12:39:31', 'Tay_Forbes (uid: 15) has set Tommy_Gates''s (uid: 81) rank to Assistant Chief (5).'),
  2716. (11, '2016-12-20 12:43:51', 'Tommy_Gates (uid: 81) has quit San Andreas Fire & Medical Department (id: 1) has rank Assistant Chief (5).'),
  2717. (12, '2016-12-20 12:53:19', 'Tay_Forbes (uid: 15) has invited Harley_Quinn (uid: 30) to San Andreas Fire & Medical Department (id: 1).'),
  2718. (13, '2016-12-20 14:04:32', 'Jordan_Capone (uid: 88) has invited Badar_Khan (uid: 31) to Los Santos Police Department (id: 0).'),
  2719. (14, '2016-12-20 14:04:58', 'Jordan_Capone (uid: 88) has set Badar_Khan''s (uid: 31) rank to Officer (1).'),
  2720. (15, '2016-12-20 14:06:12', 'Jordan_Capone (uid: 88) has invited Tom_Wrzosek (uid: 74) to Los Santos Police Department (id: 0).'),
  2721. (16, '2016-12-20 14:10:16', 'Jordan_Capone (uid: 88) kicked Tom_Wrzosek (uid: 74) from Los Santos Police Department (id: 0) as rank Cadet (0).'),
  2722. (17, '2016-12-20 14:10:33', 'Jordan_Capone (uid: 88) has invited Tom_Wrzosek (uid: 74) to Los Santos Police Department (id: 0).'),
  2723. (18, '2016-12-20 14:49:20', 'Tay_Forbes (uid: 15) has invited Tyler_X_Cage (uid: 26) to San Andreas Fire & Medical Department (id: 1).'),
  2724. (19, '2016-12-20 14:50:29', 'Jordan_Capone (uid: 88) has set Tom_Wrzosek''s (uid: 74) rank to Officer (1).'),
  2725. (20, '2016-12-20 15:10:38', 'Lazlow_VRocks (uid: 5) has quit Los Santos Police Department (id: 0) has rank Chief of Police (6).'),
  2726. (21, '2016-12-20 15:20:58', 'Jordan_Capone (uid: 88) has invited Kalgon_Grande (uid: 153) to Los Santos Police Department (id: 0).'),
  2727. (22, '2016-12-20 15:21:26', 'Jordan_Capone (uid: 88) has set Kalgon_Grande''s (uid: 153) rank to Deputy Chief (5).'),
  2728. (23, '2016-12-20 15:53:01', 'Kalgon_Grande (uid: 153) has invited Travis_Huntley (uid: 3) to Los Santos Police Department (id: 0).'),
  2729. (24, '2016-12-20 15:53:53', 'Kalgon_Grande (uid: 153) has invited Jake_Parker (uid: 143) to Los Santos Police Department (id: 0).'),
  2730. (25, '2016-12-20 16:05:33', 'Jordan_Capone (uid: 88) has set Jake_Parker''s (uid: 143) rank to Officer (1).'),
  2731. (26, '2016-12-20 16:22:42', 'Kalgon_Grande (uid: 153) has invited Julia_Covenant (uid: 78) to Los Santos Police Department (id: 0).'),
  2732. (27, '2016-12-20 17:09:16', 'Kalgon_Grande (uid: 153) has invited Dan_Devil (uid: 157) to Los Santos Police Department (id: 0).'),
  2733. (28, '2016-12-20 17:10:16', 'Kalgon_Grande (uid: 153) has invited Lrizz_Devil (uid: 144) to Los Santos Police Department (id: 0).'),
  2734. (29, '2016-12-20 17:14:32', 'Jordan_Capone (uid: 88) kicked Jordy (uid: 132) from Los Santos Police Department (id: 0) as rank Chief of Police (6).'),
  2735. (30, '2016-12-20 17:25:27', 'Jake_Parker (uid: 143) has charged John_Robert (uid: 173) with Grand Theft Auto.'),
  2736. (31, '2016-12-20 17:25:34', 'Jake_Parker (uid: 143) has charged John_Robert (uid: 173) with Driving without a license.'),
  2737. (32, '2016-12-20 17:25:38', 'Jake_Parker (uid: 143) has arrested John_Robert (uid: 173) for 30 minutes, fine: $10000.'),
  2738. (33, '2016-12-20 17:38:19', 'Tom_Wrzosek (uid: 74) has charged Denzel_Freeman (uid: 43) with Failure to comply'),
  2739. (34, '2016-12-20 17:38:28', 'Tom_Wrzosek (uid: 74) has charged Denzel_Freeman (uid: 43) with Attempted murder on a LEO x1'),
  2740. (35, '2016-12-20 17:39:39', 'Tom_Wrzosek (uid: 74) has charged Denzel_Freeman (uid: 43) with Reckless driving'),
  2741. (36, '2016-12-20 17:46:55', 'Jordan_Grande (uid: 88) kicked Jordan_Trapz (uid: 132) from Los Santos Police Department (id: 0) as rank Officer (1).'),
  2742. (37, '2016-12-20 18:29:17', 'Dann_Lazlow (uid: 8) has invited Olly_Bronx (uid: 176) to Federal Bureau of Investigation (id: 2).'),
  2743. (38, '2016-12-20 18:40:35', 'Kalgon_Grande (uid: 153) has charged Shawn_Menace (uid: 137) with Reckless Niggerdry'),
  2744. (39, '2016-12-20 18:41:40', 'Dann_Lazlow (uid: 8) has invited Tay_Forbes (uid: 15) to Federal Bureau of Investigation (id: 2).'),
  2745. (40, '2016-12-20 18:50:28', 'Kalgon_Grande (uid: 153) has charged Dann_Lazlow (uid: 8) with Reckless Endangement'),
  2746. (41, '2016-12-20 18:50:38', 'Kalgon_Grande (uid: 153) has charged Dann_Lazlow (uid: 8) with Attempted Rape with a Fishing Rod'),
  2747. (42, '2016-12-20 18:53:29', 'Kalgon_Grande (uid: 153) has arrested Dann_Lazlow (uid: 8) for 8 minutes, fine: $10000.'),
  2748. (43, '2016-12-20 21:12:04', 'Dan_Devil (uid: 157) has quit Los Santos Police Department (id: 0) has rank Cadet (0).'),
  2749. (44, '2016-12-20 21:12:18', 'Lrizz_Devil (uid: 144) has invited Dan_Devil (uid: 157) to The Hitman Agency (id: 4).'),
  2750. (45, '2016-12-20 21:12:48', 'Lrizz_Devil (uid: 144) has set Dan_Devil''s (uid: 157) rank to Senior Agent (2).'),
  2751. (46, '2016-12-20 21:12:49', 'Lrizz_Devil (uid: 144) has set Dan_Devil''s (uid: 157) rank to Director (3).'),
  2752. (47, '2016-12-21 00:00:09', 'Dan_Devil (uid: 157) has invited Joga_Hernandez (uid: 77) to The Hitman Agency (id: 4).'),
  2753. (48, '2016-12-21 00:04:48', 'Dan_Devil (uid: 157) kicked Joga_Hernandez (uid: 77) from The Hitman Agency (id: 4) as rank Apprentice (0).'),
  2754. (49, '2016-12-21 02:22:47', 'Dan_Devil (uid: 157) has set Dan_Devil''s (uid: 157) rank to Vice Director (4).'),
  2755. (50, '2016-12-21 02:35:28', 'Dan_Devil (uid: 157) used the /passport command to change their name to Dan_Artz, level to 10 and skin to 111.'),
  2756. (51, '2016-12-21 02:35:59', 'Dan_Artz (uid: 157) used the /passport command to change their name to Dan_Devil, level to 2 and skin to 116.'),
  2757. (52, '2016-12-21 02:53:12', 'Dan_Devil (uid: 157) used the /passport command to change their name to Jeezy_Box, level to 5 and skin to 173.'),
  2758. (53, '2016-12-21 03:01:32', 'Jeezy_Box (uid: 157) used the /passport command to change their name to Dan_Devil, level to 2 and skin to 174.'),
  2759. (54, '2016-12-21 04:16:16', 'Tom_Wrzosek (uid: 74) has given Fox_Creed (uid: 268) a ticket for $1000.'),
  2760. (55, '2016-12-21 05:36:35', 'Tom_Wrzosek (uid: 74) has charged Gre_Hunter (uid: 39) with Attempted murder on a LEO'),
  2761. (56, '2016-12-21 05:36:44', 'Tom_Wrzosek (uid: 74) has charged Gre_Hunter (uid: 39) with Reckless driving'),
  2762. (57, '2016-12-21 05:37:50', 'Tom_Wrzosek (uid: 74) has charged Gre_Hunter (uid: 39) with illegal posseisson of a firearm'),
  2763. (58, '2016-12-21 06:13:12', 'Dan_Devil (uid: 157) used the /passport command to change their name to El_Chapo, level to 6 and skin to 117.'),
  2764. (59, '2016-12-21 06:28:39', 'El_Chapo (uid: 157) used the /passport command to change their name to Dan_Devil, level to 6 and skin to 116.'),
  2765. (60, '2016-12-21 09:16:28', 'Tyler_X_Cage (uid: 26) has quit San Andreas Fire & Medical Department (id: 1) has rank Trainee Paramedic (0).'),
  2766. (61, '2016-12-21 09:31:55', 'Jordy (uid: 132) has invited Jayden_Trapz (uid: 181) to Federal Bureau of Investigation (id: 2).'),
  2767. (62, '2016-12-21 11:52:16', 'Jordy (uid: 132) has invited Joey_Mercer (uid: 297) to Federal Bureau of Investigation (id: 2).'),
  2768. (63, '2016-12-21 12:05:43', 'Johnny_Krauser (uid: 29) has quit San Andreas Fire & Medical Department (id: 1) has rank Assistant Chief (5).'),
  2769. (64, '2016-12-21 12:05:54', 'Jordy (uid: 132) has invited Johnny_Krauser (uid: 29) to Federal Bureau of Investigation (id: 2).'),
  2770. (65, '2016-12-21 12:25:15', 'Jayden_Trapz (uid: 181) has charged Lance_Lanvins (uid: 11) with Murder'),
  2771. (66, '2016-12-21 12:26:44', 'Jayden_Trapz (uid: 181) has charged Lance_Lanvins (uid: 11) with Evasion of arrest'),
  2772. (67, '2016-12-21 12:26:55', 'Jayden_Trapz (uid: 181) has charged Lance_Lanvins (uid: 11) with Failure to comply'),
  2773. (68, '2016-12-21 12:46:52', 'Jordan_Grande (uid: 88) has invited William_J_Thompson (uid: 221) to Los Santos Police Department (id: 0).'),
  2774. (69, '2016-12-21 13:02:30', 'Jordan_Grande (uid: 88) has invited Michael_Render (uid: 113) to Los Santos Police Department (id: 0).'),
  2775. (70, '2016-12-21 13:04:49', 'Jordan_Grande (uid: 88) has set Michael_Render''s (uid: 113) rank to Officer (1).'),
  2776. (71, '2016-12-21 13:09:01', 'Jordan_Grande (uid: 88) has set Badar_Khan''s (uid: 31) rank to Cadet (0).'),
  2777. (72, '2016-12-21 13:09:02', 'Jordan_Grande (uid: 88) has set Badar_Khan''s (uid: 31) rank to Officer II (2).'),
  2778. (73, '2016-12-21 13:09:02', 'Jordan_Grande (uid: 88) has set Badar_Khan''s (uid: 31) rank to Officer (1).'),
  2779. (74, '2016-12-21 13:09:02', 'Jordan_Grande (uid: 88) has set Badar_Khan''s (uid: 31) rank to Sergeant (3).'),
  2780. (75, '2016-12-21 13:09:03', 'Jordan_Grande (uid: 88) has set Badar_Khan''s (uid: 31) rank to Lieutenant (4).'),
  2781. (76, '2016-12-21 13:09:04', 'Jordan_Grande (uid: 88) has set Badar_Khan''s (uid: 31) rank to Deputy Chief (5).'),
  2782. (77, '2016-12-21 13:09:05', 'Jordan_Grande (uid: 88) has set Badar_Khan''s (uid: 31) rank to Chief of Police (6).'),
  2783. (78, '2016-12-21 13:09:07', 'Jordan_Grande (uid: 88) has set Badar_Khan''s (uid: 31) rank to Lieutenant (4).'),
  2784. (79, '2016-12-21 13:17:38', 'Dan_Devil (uid: 157) used the /passport command to change their name to Devin_Hawk, level to 5 and skin to 163.'),
  2785. (80, '2016-12-21 13:24:11', 'Jordan_Grande (uid: 88) has invited Don_Ryders (uid: 240) to Los Santos Police Department (id: 0).'),
  2786. (81, '2016-12-21 13:24:37', 'Jordan_Grande (uid: 88) has set Don_Ryders''s (uid: 240) rank to Officer (1).'),
  2787. (82, '2016-12-21 13:25:26', 'Devin_Hawk (uid: 157) used the /passport command to change their name to Matthew_Johnson, level to 2 and skin to 117.'),
  2788. (83, '2016-12-21 13:32:29', 'Michael_Render (uid: 113) has charged Morgan_Temple (uid: 381) with Trespassing'),
  2789. (84, '2016-12-21 13:33:11', 'Michael_Render (uid: 113) has arrested Morgan_Temple (uid: 381) for 15 minutes, fine: $5000.'),
  2790. (85, '2016-12-21 13:35:35', 'Matthew_Johnson (uid: 157) used the /passport command to change their name to Dan_Devil, level to 3 and skin to 85.'),
  2791. (86, '2016-12-21 13:39:05', 'Jordan_Grande (uid: 88) has invited Tyrone_Coleman (uid: 85) to Los Santos Police Department (id: 0).'),
  2792. (87, '2016-12-21 13:39:24', 'Jordan_Grande (uid: 88) has set Tyrone_Coleman''s (uid: 85) rank to Officer II (2).'),
  2793. (88, '2016-12-21 13:40:30', 'Jordan_Grande (uid: 88) has set Julia_Covenant''s (uid: 78) rank to Officer (1).'),
  2794. (89, '2016-12-21 13:44:55', 'Jordan_Grande (uid: 88) has invited Ben_Barrage (uid: 355) to Los Santos Police Department (id: 0).'),
  2795. (90, '2016-12-21 14:09:11', 'Dan_Devil (uid: 157) used the /passport command to change their name to John_Cock, level to 1 and skin to 26.'),
  2796. (91, '2016-12-21 14:32:48', 'John_Cock (uid: 157) used the /passport command to change their name to El_Chapo, level to 3 and skin to 121.'),
  2797. (92, '2016-12-21 15:20:04', 'Dann (uid: 8) has set Joey_Mercer''s (uid: 297) rank to Supervisory Agent (4).'),
  2798. (93, '2016-12-21 15:20:07', 'Dann (uid: 8) has set Joey_Mercer''s (uid: 297) rank to Deputy Director (5).'),
  2799. (94, '2016-12-21 15:20:08', 'Dann (uid: 8) has set Joey_Mercer''s (uid: 297) rank to Supervisory Agent (4).'),
  2800. (95, '2016-12-21 15:35:36', 'Lrizz_Devil (uid: 144) used the /passport command to change their name to Sean_Santo, level to 1 and skin to 43.'),
  2801. (96, '2016-12-21 16:03:39', 'Sean_Santo (uid: 144) used the /passport command to change their name to Lrizz_Devil, level to 2 and skin to 172.'),
  2802. (97, '2016-12-21 16:12:49', 'Dann (uid: 8) has invited Devanshul_Sharma (uid: 280) to Federal Bureau of Investigation (id: 2).'),
  2803. (98, '2016-12-21 16:29:01', 'Tori_Chester (uid: 9) has invited Adam_Menace (uid: 192) to Federal Bureau of Investigation (id: 2).'),
  2804. (99, '2016-12-21 16:47:10', 'Tiber (uid: 13) kicked Tiber (uid: 13) from Federal Bureau of Investigation (id: 2) as rank Director (6).'),
  2805. (100, '2016-12-21 16:47:12', 'Jack (uid: 70) kicked Jack (uid: 70) from Federal Bureau of Investigation (id: 2) as rank Director (6).'),
  2806. (101, '2016-12-21 16:51:03', 'El_Chapo (uid: 157) used the /passport command to change their name to Dan_Devil, level to 3 and skin to 7.'),
  2807. (102, '2016-12-21 16:53:32', 'Jack (uid: 70) kicked Jack (uid: 70) from The Hitman Agency (id: 4) as rank Director (5).'),
  2808. (103, '2016-12-21 16:59:57', 'Lance_Lanvins (uid: 11) has invited Simon_Gucci_Sosa (uid: 337) to San Andreas Fire & Medical Department (id: 1).'),
  2809. (104, '2016-12-21 17:00:03', 'Lance_Lanvins (uid: 11) has invited David_Bracker (uid: 409) to San Andreas Fire & Medical Department (id: 1).'),
  2810. (105, '2016-12-21 17:00:21', 'Lance_Lanvins (uid: 11) has invited Josh_Filder (uid: 76) to San Andreas Fire & Medical Department (id: 1).'),
  2811. (106, '2016-12-21 17:04:52', 'Dann_Lazlow (uid: 8) kicked Adam_Menace (uid: 192) from Federal Bureau of Investigation (id: 2) as rank Intern (0).'),
  2812. (107, '2016-12-21 17:15:27', 'Lance_Lanvins (uid: 11) has invited James_Maple (uid: 141) to San Andreas Fire & Medical Department (id: 1).'),
  2813. (108, '2016-12-21 17:15:34', 'Lance_Lanvins (uid: 11) has set James_Maple''s (uid: 141) rank to Lead Paramedic (3).'),
  2814. (109, '2016-12-21 17:22:11', 'Tom_Wrzosek (uid: 74) has charged Lucenzo_Johnson (uid: 116) with Attempted murder on a Leo x2'),
  2815. (110, '2016-12-21 17:22:18', 'Tom_Wrzosek (uid: 74) has charged Lucenzo_Johnson (uid: 116) with Reckless driving'),
  2816. (111, '2016-12-21 17:22:30', 'Tom_Wrzosek (uid: 74) has charged Lucenzo_Johnson (uid: 116) with Failure to comply'),
  2817. (112, '2016-12-21 17:47:15', 'Lance_Lanvins (uid: 11) has invited Ray_Bronx (uid: 63) to San Andreas Fire & Medical Department (id: 1).'),
  2818. (113, '2016-12-21 17:56:26', 'Jordan_Grande (uid: 88) has invited Franklyn_Menace (uid: 10) to Los Santos Police Department (id: 0).'),
  2819. (114, '2016-12-21 17:56:31', 'Jordan_Grande (uid: 88) has set Franklyn_Menace''s (uid: 10) rank to Sergeant (3).'),
  2820. (115, '2016-12-21 18:02:31', 'Ray_Bronx (uid: 63) has quit San Andreas Fire & Medical Department (id: 1) has rank Trainee Paramedic (0).'),
  2821. (116, '2016-12-21 18:17:31', 'Travis_Huntley (uid: 3) has invited Adam_Menace (uid: 192) to Federal Bureau of Investigation (id: 2).'),
  2822. (117, '2016-12-21 18:20:15', 'Jordan_Grande (uid: 88) has set Michael_Render''s (uid: 113) rank to Officer II (2).'),
  2823. (118, '2016-12-21 18:36:41', 'Dann_Lazlow (uid: 8) kicked Adam_Menace (uid: 192) from Federal Bureau of Investigation (id: 2) as rank Intern (0).'),
  2824. (119, '2016-12-21 18:36:45', 'Jordan_Grande (uid: 88) kicked Jordy (uid: 132) from Los Santos Police Department (id: 0) as rank Chief of Police (6).'),
  2825. (120, '2016-12-21 18:38:10', 'Dann_Lazlow (uid: 8) has invited Adam_Menace (uid: 192) to Federal Bureau of Investigation (id: 2).'),
  2826. (121, '2016-12-21 19:09:57', 'Jordan_Grande (uid: 88) has set Tom_Wrzosek''s (uid: 74) rank to Sergeant (3).'),
  2827. (122, '2016-12-21 19:24:18', 'Adam_Menace (uid: 192) has charged Ray_Bronx (uid: 63) with Test'),
  2828. (123, '2016-12-21 19:24:36', 'Adam_Menace (uid: 192) has arrested Ray_Bronx (uid: 63) for 15 minutes, fine: $5000.'),
  2829. (124, '2016-12-21 19:28:38', 'Dan_Devil (uid: 157) has invited Oswaldo_Crumpettoe (uid: 274) to The Hitman Agency (id: 4).'),
  2830. (125, '2016-12-21 19:28:38', 'Dan_Devil (uid: 157) kicked Oswaldo_Crumpettoe (uid: 274) from The Hitman Agency (id: 4) as rank Apprentice (0).'),
  2831. (126, '2016-12-21 19:48:19', 'Lance_Lanvins (uid: 11) has invited Joga_Hernandez (uid: 77) to San Andreas Fire & Medical Department (id: 1).'),
  2832. (127, '2016-12-21 20:33:56', 'Lance_Lanvins (uid: 11) has invited Claude_West (uid: 247) to San Andreas Fire & Medical Department (id: 1).'),
  2833. (128, '2016-12-21 20:53:58', 'Tyler_Huntley (uid: 2) has given Lawrence_Vincre (uid: 256) a ticket for $1500.'),
  2834. (129, '2016-12-21 20:57:15', 'Lance_Lanvins (uid: 11) has invited Lui_Mendez (uid: 12) to San Andreas Fire & Medical Department (id: 1).'),
  2835. (130, '2016-12-21 20:59:37', 'Lance_Lanvins (uid: 11) kicked Claude_West (uid: 247) from San Andreas Fire & Medical Department (id: 1) as rank Trainee Paramedic (0).'),
  2836. (131, '2016-12-21 21:03:07', 'Lrizz_Devil (uid: 144) used the /passport command to change their name to Enzo_Ozbourne, level to 2 and skin to 124.'),
  2837. (132, '2016-12-21 21:05:26', 'Enzo_Ozbourne (uid: 144) used the /passport command to change their name to Lrizz_Devil, level to 3 and skin to 172.'),
  2838. (133, '2016-12-21 21:16:35', 'Lrizz_Devil (uid: 144) used the /passport command to change their name to Karim_Scarletta, level to 1 and skin to 15.'),
  2839. (134, '2016-12-21 21:17:38', 'Dan_Devil (uid: 157) used the /passport command to change their name to El_Chapo, level to 6 and skin to 109.'),
  2840. (135, '2016-12-21 21:19:32', 'Karim_Scarletta (uid: 144) used the /passport command to change their name to Karim_Abas, level to 2 and skin to 43.'),
  2841. (136, '2016-12-21 21:21:11', 'Karim_Abas (uid: 144) used the /passport command to change their name to Lrizz_Devil, level to 3 and skin to 172.'),
  2842. (137, '2016-12-21 21:40:23', 'Lance_Lanvins (uid: 11) has set Lui_Mendez''s (uid: 12) rank to Comissioner (6).'),
  2843. (138, '2016-12-21 21:48:04', 'Tom_Wrzosek (uid: 74) has given James_Maple (uid: 141) a ticket for $1500.'),
  2844. (139, '2016-12-21 22:06:38', 'El_Chapo (uid: 157) used the /passport command to change their name to Dan_Devil, level to 3 and skin to 108.'),
  2845. (140, '2016-12-21 22:10:03', 'Lance_Lanvins (uid: 11) has quit San Andreas Fire & Medical Department (id: 1) has rank Comissioner (6).'),
  2846. (141, '2016-12-21 22:10:50', 'James_Maple (uid: 141) has quit San Andreas Fire & Medical Department (id: 1) has rank Lead Paramedic (3).'),
  2847. (142, '2016-12-21 22:13:06', 'Tom_Wrzosek (uid: 74) has given Dan_Dandruff (uid: 279) a ticket for $1000.'),
  2848. (143, '2016-12-21 22:16:45', 'Aviana_Starr (uid: 303) has invited Khatani_Warjam (uid: 485) to San Andreas Fire & Medical Department (id: 1).'),
  2849. (144, '2016-12-21 22:16:55', 'Aviana_Starr (uid: 303) has set Khatani_Warjam''s (uid: 485) rank to Assistant Chief (5).'),
  2850. (145, '2016-12-21 22:17:43', 'Dan_Devil (uid: 157) used the /passport command to change their name to Johnny_X_Williams, level to 4 and skin to 107.'),
  2851. (146, '2016-12-21 22:29:14', 'Tommy_Gates (uid: 81) used the /passport command to change their name to Kevin_Banks, level to 2 and skin to 4.'),
  2852. (147, '2016-12-21 22:30:10', 'Kevin_Banks (uid: 81) used the /passport command to change their name to Tommy_Gates, level to 4 and skin to 4.'),
  2853. (148, '2016-12-21 22:33:01', 'Johnny_X_Williams (uid: 157) used the /passport command to change their name to Dan_Devil, level to 3 and skin to 107.'),
  2854. (149, '2016-12-21 22:43:24', 'Tyler_Huntley (uid: 2) has set Tyler_Huntley''s (uid: 2) rank to Lead Paramedic (3).'),
  2855. (150, '2016-12-21 22:47:13', 'Lrizz_Devil (uid: 144) used the /passport command to change their name to Kai_V_Rameriz, level to 1 and skin to 270.'),
  2856. (151, '2016-12-21 22:53:05', 'Kai_V_Rameriz (uid: 144) used the /passport command to change their name to Lrizz_Devil, level to 5 and skin to 172.'),
  2857. (152, '2016-12-21 23:17:20', 'Aviana_Starr (uid: 303) has invited Micjan_G_Calindog (uid: 441) to San Andreas Fire & Medical Department (id: 1).'),
  2858. (153, '2016-12-21 23:23:08', 'Aviana_Starr (uid: 303) has set Khatani_Warjam''s (uid: 485) rank to Paramedic (1).'),
  2859. (154, '2016-12-21 23:23:09', 'Aviana_Starr (uid: 303) has set Khatani_Warjam''s (uid: 485) rank to Trainee Paramedic (0).'),
  2860. (155, '2016-12-21 23:23:11', 'Aviana_Starr (uid: 303) has set Khatani_Warjam''s (uid: 485) rank to Trainee Paramedic (0).'),
  2861. (156, '2016-12-21 23:23:12', 'Aviana_Starr (uid: 303) has set Khatani_Warjam''s (uid: 485) rank to Paramedic (1).'),
  2862. (157, '2016-12-21 23:23:13', 'Aviana_Starr (uid: 303) has set Khatani_Warjam''s (uid: 485) rank to Sr. Paramedic (2).'),
  2863. (158, '2016-12-21 23:23:13', 'Aviana_Starr (uid: 303) has set Khatani_Warjam''s (uid: 485) rank to Lead Paramedic (3).'),
  2864. (159, '2016-12-21 23:23:14', 'Aviana_Starr (uid: 303) has set Khatani_Warjam''s (uid: 485) rank to Lieutenant (4).'),
  2865. (160, '2016-12-21 23:23:15', 'Aviana_Starr (uid: 303) has set Khatani_Warjam''s (uid: 485) rank to Assistant Chief (5).'),
  2866. (161, '2016-12-21 23:23:15', 'Aviana_Starr (uid: 303) has set Khatani_Warjam''s (uid: 485) rank to Comissioner (6).'),
  2867. (162, '2016-12-21 23:23:18', 'Aviana_Starr (uid: 303) has set Khatani_Warjam''s (uid: 485) rank to Assistant Chief (5).'),
  2868. (163, '2016-12-21 23:37:25', 'Khatani_Warjam (uid: 485) has invited Dei_Kremlin (uid: 437) to San Andreas Fire & Medical Department (id: 1).'),
  2869. (164, '2016-12-21 23:37:43', 'Aviana_Starr (uid: 303) has invited Troy_Gold_Forbes (uid: 483) to San Andreas Fire & Medical Department (id: 1).'),
  2870. (165, '2016-12-21 23:43:04', 'Lrizz_Devil (uid: 144) used the /passport command to change their name to Sam_Ozbourne, level to 1 and skin to 134.'),
  2871. (166, '2016-12-21 23:44:52', 'Sam_Ozbourne (uid: 144) used the /passport command to change their name to Lrizz_Devil, level to 5 and skin to 172.'),
  2872. (167, '2016-12-21 23:46:34', 'Khatani_Warjam (uid: 485) has invited Emilio_Putik (uid: 357) to San Andreas Fire & Medical Department (id: 1).'),
  2873. (168, '2016-12-21 23:50:48', 'Aviana_Starr (uid: 303) kicked Emilio_Putik (uid: 357) from San Andreas Fire & Medical Department (id: 1) as rank Trainee Paramedic (0).'),
  2874. (169, '2016-12-21 23:51:05', 'Khatani_Warjam (uid: 485) has invited Fox_Creed (uid: 268) to San Andreas Fire & Medical Department (id: 1).'),
  2875. (170, '2016-12-21 23:51:12', 'Khatani_Warjam (uid: 485) has invited Jay_Calindog (uid: 487) to San Andreas Fire & Medical Department (id: 1).'),
  2876. (171, '2016-12-21 23:51:17', 'Khatani_Warjam (uid: 485) has invited Mike_Wrzosek (uid: 199) to San Andreas Fire & Medical Department (id: 1).'),
  2877. (172, '2016-12-22 01:41:53', 'Lui_Mendez (uid: 12) has quit Los Santos Police Department (id: 0) has rank Chief of Police (6).'),
  2878. (173, '2016-12-22 02:12:28', 'Ben_Barrage (uid: 355) has given Micjan_G_Calindog (uid: 441) a ticket for $1000.'),
  2879. (174, '2016-12-22 02:44:35', 'Khatani_Warjam (uid: 485) has set Joga_Hernandez''s (uid: 77) rank to Sr. Paramedic (2).'),
  2880. (175, '2016-12-23 13:47:39', 'Clarence_Breyer (uid: 277) has invited Paris_Breyer (uid: 522) to San Andreas Government (id: 3).'),
  2881. (176, '2016-12-23 13:47:51', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Ast. Director (5).'),
  2882. (177, '2016-12-23 13:47:54', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Dictator (6).'),
  2883. (178, '2016-12-23 13:47:55', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Ast. Director (5).'),
  2884. (179, '2016-12-23 13:52:02', 'Simon_Gucci_Sosa (uid: 337) has quit San Andreas Fire & Medical Department (id: 1) has rank Trainee Paramedic (0).'),
  2885. (180, '2016-12-23 13:54:15', 'Clarence_Breyer (uid: 277) has invited Orlando_Amphibia (uid: 100) to San Andreas Government (id: 3).'),
  2886. (181, '2016-12-23 13:54:20', 'Clarence_Breyer (uid: 277) has set Orlando_Amphibia''s (uid: 100) rank to Secretary (5).'),
  2887. (182, '2016-12-23 13:54:22', 'Clarence_Breyer (uid: 277) has set Orlando_Amphibia''s (uid: 100) rank to Lieutenant Governor (6).'),
  2888. (183, '2016-12-23 13:54:23', 'Clarence_Breyer (uid: 277) has set Orlando_Amphibia''s (uid: 100) rank to Secretary (5).'),
  2889. (184, '2016-12-23 13:54:47', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Staff (1).'),
  2890. (185, '2016-12-23 13:54:48', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Security (0).'),
  2891. (186, '2016-12-23 13:54:49', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Staff (1).'),
  2892. (187, '2016-12-23 13:54:50', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Head of Security (2).'),
  2893. (188, '2016-12-23 13:54:51', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Head of Staff (3).'),
  2894. (189, '2016-12-23 13:54:52', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Head of Staff (4).'),
  2895. (190, '2016-12-23 13:55:29', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Lieutenant Governor (6).'),
  2896. (191, '2016-12-23 14:00:49', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Security (0).'),
  2897. (192, '2016-12-23 14:00:52', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Staff (1).'),
  2898. (193, '2016-12-23 14:00:53', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Head of Security (2).'),
  2899. (194, '2016-12-23 14:17:28', 'Clarence_Breyer (uid: 277) has set Paris_Breyer''s (uid: 522) rank to Lieutenant Governor (6).'),
  2900. (195, '2016-12-23 15:15:18', 'Clarence_Breyer (uid: 277) has invited Jordy (uid: 132) to San Andreas Government (id: 3).'),
  2901. (196, '2016-12-23 15:15:22', 'Clarence_Breyer (uid: 277) has set Jordy''s (uid: 132) rank to Governor (7).'),
  2902. (197, '2016-12-23 15:21:28', 'Jordan_Trapz (uid: 132) has set Jordan_Trapz''s (uid: 132) rank to Staff (1).'),
  2903. (198, '2016-12-23 15:38:57', 'Tyler_Huntley (uid: 2) set the income tax rate to 10 percent.'),
  2904. (199, '2016-12-23 15:39:48', 'Clarence_Breyer (uid: 277) set the income tax rate to 10 percent.'),
  2905. (200, '2016-12-23 15:49:04', 'Troy_Gold_Forbes (uid: 483) has quit San Andreas Fire & Medical Department (id: 1) has rank Trainee Paramedic (0).'),
  2906. (201, '2016-12-23 15:52:53', 'Clarence_Breyer (uid: 277) set San Andreas Government''s (id: 3) paycheck for rank 0 to $80000.'),
  2907. (202, '2016-12-23 15:52:59', 'Clarence_Breyer (uid: 277) set San Andreas Government''s (id: 3) paycheck for rank 1 to $100000.'),
  2908. (203, '2016-12-23 15:53:35', 'Clarence_Breyer (uid: 277) set San Andreas Government''s (id: 3) paycheck for rank 0 to $45000.'),
  2909. (204, '2016-12-23 15:53:40', 'Clarence_Breyer (uid: 277) set San Andreas Government''s (id: 3) paycheck for rank 1 to $50000.'),
  2910. (205, '2016-12-23 15:53:48', 'Clarence_Breyer (uid: 277) set San Andreas Government''s (id: 3) paycheck for rank 2 to $65000.'),
  2911. (206, '2016-12-23 15:53:53', 'Clarence_Breyer (uid: 277) set San Andreas Government''s (id: 3) paycheck for rank 3 to $65000.'),
  2912. (207, '2016-12-23 15:54:00', 'Clarence_Breyer (uid: 277) set San Andreas Government''s (id: 3) paycheck for rank 4 to $70000.'),
  2913. (208, '2016-12-23 15:54:03', 'Clarence_Breyer (uid: 277) set San Andreas Government''s (id: 3) paycheck for rank 5 to $80000.'),
  2914. (209, '2016-12-23 15:54:10', 'Clarence_Breyer (uid: 277) set San Andreas Government''s (id: 3) paycheck for rank 6 to $90000.'),
  2915. (210, '2016-12-23 15:54:13', 'Clarence_Breyer (uid: 277) set San Andreas Government''s (id: 3) paycheck for rank 7 to $100000.'),
  2916. (211, '2016-12-23 15:54:56', 'Clarence_Breyer (uid: 277) set Los Santos Police Department''s (id: 0) paycheck for rank 0 to $45000.'),
  2917. (212, '2016-12-23 15:54:59', 'Clarence_Breyer (uid: 277) set Los Santos Police Department''s (id: 0) paycheck for rank 1 to $50000.'),
  2918. (213, '2016-12-23 15:55:05', 'Clarence_Breyer (uid: 277) set Los Santos Police Department''s (id: 0) paycheck for rank 2 to $57000.'),
  2919. (214, '2016-12-23 15:55:08', 'Clarence_Breyer (uid: 277) set Los Santos Police Department''s (id: 0) paycheck for rank 3 to $60000.'),
  2920. (215, '2016-12-23 15:55:13', 'Clarence_Breyer (uid: 277) set Los Santos Police Department''s (id: 0) paycheck for rank 4 to $67000.'),
  2921. (216, '2016-12-23 15:55:17', 'Clarence_Breyer (uid: 277) set Los Santos Police Department''s (id: 0) paycheck for rank 5 to $70000.'),
  2922. (217, '2016-12-23 15:55:21', 'Clarence_Breyer (uid: 277) set Los Santos Police Department''s (id: 0) paycheck for rank 6 to $100000.'),
  2923. (218, '2016-12-23 15:55:32', 'Clarence_Breyer (uid: 277) set Federal Bureau of Investigation''s (id: 2) paycheck for rank 0 to $50000.'),
  2924. (219, '2016-12-23 15:55:35', 'Clarence_Breyer (uid: 277) set Federal Bureau of Investigation''s (id: 2) paycheck for rank 1 to $60000.'),
  2925. (220, '2016-12-23 15:55:39', 'Clarence_Breyer (uid: 277) set Federal Bureau of Investigation''s (id: 2) paycheck for rank 2 to $75000.'),
  2926. (221, '2016-12-23 15:55:41', 'Clarence_Breyer (uid: 277) set Federal Bureau of Investigation''s (id: 2) paycheck for rank 3 to $85000.'),
  2927. (222, '2016-12-23 15:55:46', 'Clarence_Breyer (uid: 277) set Federal Bureau of Investigation''s (id: 2) paycheck for rank 4 to $90000.'),
  2928. (223, '2016-12-23 15:55:49', 'Clarence_Breyer (uid: 277) set Federal Bureau of Investigation''s (id: 2) paycheck for rank 5 to $99000.'),
  2929. (224, '2016-12-23 15:55:52', 'Clarence_Breyer (uid: 277) set Federal Bureau of Investigation''s (id: 2) paycheck for rank 6 to $100000.'),
  2930. (225, '2016-12-23 15:56:09', 'Clarence_Breyer (uid: 277) set San Andreas Fire & Medical Department''s (id: 1) paycheck for rank 0 to $50000.'),
  2931. (226, '2016-12-23 15:56:11', 'Clarence_Breyer (uid: 277) set San Andreas Fire & Medical Department''s (id: 1) paycheck for rank 1 to $60000.'),
  2932. (227, '2016-12-23 15:56:14', 'Clarence_Breyer (uid: 277) set San Andreas Fire & Medical Department''s (id: 1) paycheck for rank 2 to $75000.'),
  2933. (228, '2016-12-23 15:56:18', 'Clarence_Breyer (uid: 277) set San Andreas Fire & Medical Department''s (id: 1) paycheck for rank 3 to $78000.'),
  2934. (229, '2016-12-23 15:56:22', 'Clarence_Breyer (uid: 277) set San Andreas Fire & Medical Department''s (id: 1) paycheck for rank 4 to $80000.'),
  2935. (230, '2016-12-23 15:56:26', 'Clarence_Breyer (uid: 277) set San Andreas Fire & Medical Department''s (id: 1) paycheck for rank 4 to $95000.'),
  2936. (231, '2016-12-23 15:56:32', 'Clarence_Breyer (uid: 277) set San Andreas Fire & Medical Department''s (id: 1) paycheck for rank 3 to $85000.'),
  2937. (232, '2016-12-23 15:56:38', 'Clarence_Breyer (uid: 277) set San Andreas Fire & Medical Department''s (id: 1) paycheck for rank 5 to $99000.'),
  2938. (233, '2016-12-23 15:56:42', 'Clarence_Breyer (uid: 277) set San Andreas Fire & Medical Department''s (id: 1) paycheck for rank 6 to $100000.'),
  2939. (234, '2016-12-23 16:08:26', 'Clarence_Breyer (uid: 277) has invited Wallace_Lanvins (uid: 530) to San Andreas Government (id: 3).'),
  2940. (235, '2016-12-23 16:30:56', 'Dan_Devil (uid: 157) used the /passport command to change their name to Jacob_Menace, level to 1 and skin to 7.'),
  2941. (236, '2016-12-23 16:37:55', 'Tommy_Gates (uid: 81) used the /passport command to change their name to Kevin_Young, level to 4 and skin to 119.'),
  2942. (237, '2016-12-23 16:41:50', 'Jacob_Menace (uid: 157) used the /passport command to change their name to Danny_Cash, level to 5 and skin to 114.'),
  2943. (238, '2016-12-23 16:43:27', 'Kevin_Young (uid: 81) used the /passport command to change their name to Tommy_Gates, level to 7 and skin to 119.'),
  2944. (239, '2016-12-23 16:48:17', 'Danny_Cash (uid: 157) used the /passport command to change their name to Dan_Devil, level to 5 and skin to 174.'),
  2945. (240, '2016-12-23 17:07:04', 'Don_Ryders (uid: 240) has given michael_D_felabs (uid: 568) a ticket for $1000.'),
  2946. (241, '2016-12-23 17:15:19', 'Don_Ryders (uid: 240) has charged Nyu_Gucci_Sosa (uid: 129) with Failure to comply'),
  2947. (242, '2016-12-23 17:15:30', 'Don_Ryders (uid: 240) has charged Nyu_Gucci_Sosa (uid: 129) with Attempt to Murder'),
  2948. (243, '2016-12-23 17:44:56', 'Travis_Huntley (uid: 3) has invited Joseph_Dredd (uid: 574) to Los Santos Police Department (id: 0).'),
  2949. (244, '2016-12-23 17:45:01', 'Travis_Huntley (uid: 3) has set Joseph_Dredd''s (uid: 574) rank to Lieutenant (4).'),
  2950. (245, '2016-12-23 17:52:51', 'Khatani_Warjam (uid: 485) has set Joga_Hernandez''s (uid: 77) rank to Lieutenant (4).'),
  2951. (246, '2016-12-23 17:56:45', 'Dann (uid: 8) has invited Tori_Chester (uid: 9) to Federal Bureau of Investigation (id: 2).'),
  2952. (247, '2016-12-23 17:57:00', 'Dann (uid: 8) has set Tori_Chester''s (uid: 9) rank to Deputy Director (5).'),
  2953. (248, '2016-12-23 18:05:53', 'Jordy (uid: 132) has quit San Andreas Government (id: 3) has rank Staff (1).');
  2954. -- --------------------------------------------------------
  2955. --
  2956. -- Table structure for table `log_gang`
  2957. --
  2958. CREATE TABLE IF NOT EXISTS `log_gang` (
  2959. `id` int(10) NOT NULL,
  2960. `date` datetime DEFAULT NULL,
  2961. `description` varchar(255) DEFAULT NULL
  2962. ) ENGINE=InnoDB AUTO_INCREMENT=424 DEFAULT CHARSET=latin1;
  2963. --
  2964. -- Dumping data for table `log_gang`
  2965. --
  2966. INSERT INTO `log_gang` (`id`, `date`, `description`) VALUES
  2967. (1, '2016-12-20 03:38:18', 'Lazlow_VRocks (uid: 5) spent 500 GP & $50000 on an NPC drug dealer for Grove Street Families (id: 0).'),
  2968. (2, '2016-12-20 03:38:22', 'Lazlow_VRocks (uid: 5) spent 500 GP & $50000 on an NPC arm dealer for Grove Street Families (id: 0).'),
  2969. (3, '2016-12-20 03:47:13', 'Lazlow_VRocks (uid: 5) spent 500 GP & $50000 on an NPC drug dealer for Grove Street Families (id: 0).'),
  2970. (4, '2016-12-20 03:47:16', 'Lazlow_VRocks (uid: 5) spent 500 GP & $50000 on an NPC arm dealer for Grove Street Families (id: 0).'),
  2971. (5, '2016-12-20 04:21:58', 'Lazlow_VRocks (uid: 5) deposits 50000 materials in the gang stash.'),
  2972. (6, '2016-12-20 04:22:06', 'Lazlow VRocks (uid: 5) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  2973. (7, '2016-12-20 04:22:09', 'Lazlow VRocks (uid: 5) crafts a molotov using 5000 materials from the gang stash.'),
  2974. (8, '2016-12-20 04:22:18', 'Lazlow VRocks (uid: 5) crafts a shotgun using 500 materials from the gang stash.'),
  2975. (9, '2016-12-20 04:25:47', 'Lazlow_VRocks (uid: 5) withdraws 42500 materials from the gang stash.'),
  2976. (10, '2016-12-20 04:25:52', 'Lazlow_VRocks (uid: 5) withdraws a shotgun from the Grove Street Families (id: 0) gang stash.'),
  2977. (11, '2016-12-20 04:25:56', 'Lazlow_VRocks (uid: 5) withdraws a molotov from the Grove Street Families (id: 0) gang stash.'),
  2978. (12, '2016-12-20 04:45:02', 'Lazlow_VRocks (uid: 5) spent 6000 GP & $75000 for gang level 2/3 for Grove Street Families (id: 0).'),
  2979. (13, '2016-12-20 04:45:24', 'Lazlow_VRocks (uid: 5) spent 12000 GP & $100000 for gang level 3/3 for Grove Street Families (id: 0).'),
  2980. (14, '2016-12-20 04:46:37', 'Lazlow_VRocks (uid: 5) spent 6000 GP & $75000 for gang level 2/3 for Grove Street Families (id: 0).'),
  2981. (15, '2016-12-20 04:46:54', 'Lazlow_VRocks (uid: 5) spent 12000 GP & $100000 for gang level 3/3 for Grove Street Families (id: 0).'),
  2982. (16, '2016-12-20 04:55:22', 'Test_McTest (uid: 4) deposits an MP5 in the Grove Street Families (id: 0) gang stash.'),
  2983. (17, '2016-12-20 04:55:24', 'Test_McTest (uid: 4) withdraws an MP5 from the Grove Street Families (id: 0) gang stash.'),
  2984. (18, '2016-12-20 04:55:27', 'Test_McTest (uid: 4) withdraws a Desert Eagle from the Grove Street Families (id: 0) gang stash.'),
  2985. (19, '2016-12-20 04:55:29', 'Test_McTest (uid: 4) deposits a Desert Eagle in the Grove Street Families (id: 0) gang stash.'),
  2986. (20, '2016-12-20 06:01:24', 'Asykon_Amphibia (uid: 6) kicked Lazlow_VRocks (uid: 5) from Amphibia Corporation (id: 0) as rank Unspecified (5).'),
  2987. (21, '2016-12-20 06:01:58', 'Asykon_Amphibia (uid: 6) has invited Lazlow_VRocks (uid: 5) to Amphibia Corporation (id: 0).'),
  2988. (22, '2016-12-20 06:02:12', 'Lazlow_VRocks (uid: 5) has quit Amphibia Corporation (id: 0) has rank Unspecified (0).'),
  2989. (23, '2016-12-20 12:12:06', 'Asykon_Amphibia (uid: 6) has invited Blake_Amphibia (uid: 19) to Amphibia Corporation (id: 0).'),
  2990. (24, '2016-12-20 12:12:42', 'Asykon_Amphibia (uid: 6) has invited Salah_Amphibia (uid: 44) to Amphibia Corporation (id: 0).'),
  2991. (25, '2016-12-20 12:25:10', 'Asykon_Amphibia (uid: 6) has invited Curtis_Leaf (uid: 32) to Amphibia Corporation (id: 0).'),
  2992. (26, '2016-12-20 12:28:26', 'Asykon_Amphibia (uid: 6) has invited Eddie_Siera (uid: 79) to Amphibia Corporation (id: 0).'),
  2993. (27, '2016-12-20 12:28:38', 'Asykon_Amphibia (uid: 6) has invited Cynthia_Tucker (uid: 73) to Amphibia Corporation (id: 0).'),
  2994. (28, '2016-12-20 12:30:23', 'Asykon_Amphibia (uid: 6) has invited Bench_Freeman (uid: 64) to Amphibia Corporation (id: 0).'),
  2995. (29, '2016-12-20 12:35:07', 'Asykon_Amphibia (uid: 6) has set Blake_Amphibia''s (uid: 19) rank to L.T General (5).'),
  2996. (30, '2016-12-20 12:36:15', 'Asykon_Amphibia (uid: 6) has invited Raven_Street (uid: 69) to Amphibia Corporation (id: 0).'),
  2997. (31, '2016-12-20 12:41:01', 'Asykon_Amphibia (uid: 6) has invited christopher_leaf (uid: 57) to Amphibia Corporation (id: 0).'),
  2998. (32, '2016-12-20 12:50:41', 'Asykon_Amphibia (uid: 6) has invited Filip_Amphibia (uid: 93) to Amphibia Corporation (id: 0).'),
  2999. (33, '2016-12-20 13:12:38', 'Asykon_Amphibia (uid: 6) has invited Orlando_Amphibia (uid: 100) to Amphibia Corporation (id: 0).'),
  3000. (34, '2016-12-20 13:28:36', 'Lazlow_VRocks (uid: 5) has invited Tom_Wrzosek (uid: 74) to Grove Street Families (id: 2).'),
  3001. (35, '2016-12-20 13:28:37', 'Lazlow_VRocks (uid: 5) has invited Zac_Wrzosek (uid: 91) to Grove Street Families (id: 2).'),
  3002. (36, '2016-12-20 13:30:55', 'Lazlow_VRocks (uid: 5) has invited Don_Nox (uid: 104) to Grove Street Families (id: 2).'),
  3003. (37, '2016-12-20 13:33:55', 'Lazlow_VRocks (uid: 5) has set Don_Nox''s (uid: 104) rank to Muscle (1).'),
  3004. (38, '2016-12-20 13:33:58', 'Lazlow_VRocks (uid: 5) has set Zac_Wrzosek''s (uid: 91) rank to Muscle (1).'),
  3005. (39, '2016-12-20 13:34:02', 'Lazlow_VRocks (uid: 5) has set Tom_Wrzosek''s (uid: 74) rank to Muscle (1).'),
  3006. (40, '2016-12-20 13:34:19', 'Lazlow_VRocks (uid: 5) deposits 30000 materials in the gang stash.'),
  3007. (41, '2016-12-20 13:34:24', 'Lazlow VRocks (uid: 5) crafts a shotgun using 500 materials from the gang stash.'),
  3008. (42, '2016-12-20 13:34:26', 'Lazlow VRocks (uid: 5) crafts a shotgun using 500 materials from the gang stash.'),
  3009. (43, '2016-12-20 13:34:26', 'Zac_Wrzosek (uid: 91) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3010. (44, '2016-12-20 13:34:27', 'Lazlow VRocks (uid: 5) crafts a shotgun using 500 materials from the gang stash.'),
  3011. (45, '2016-12-20 13:34:28', 'Lazlow VRocks (uid: 5) crafts a shotgun using 500 materials from the gang stash.'),
  3012. (46, '2016-12-20 13:34:30', 'Lazlow VRocks (uid: 5) crafts a shotgun using 500 materials from the gang stash.'),
  3013. (47, '2016-12-20 13:34:31', 'Lazlow VRocks (uid: 5) crafts a shotgun using 500 materials from the gang stash.'),
  3014. (48, '2016-12-20 13:34:31', 'Don_Nox (uid: 104) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3015. (49, '2016-12-20 13:34:32', 'Lazlow VRocks (uid: 5) crafts a shotgun using 500 materials from the gang stash.'),
  3016. (50, '2016-12-20 13:34:34', 'Lazlow VRocks (uid: 5) crafts a shotgun using 500 materials from the gang stash.'),
  3017. (51, '2016-12-20 13:34:35', 'Lazlow VRocks (uid: 5) crafts a shotgun using 500 materials from the gang stash.'),
  3018. (52, '2016-12-20 13:34:41', 'Tom_Wrzosek (uid: 74) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3019. (53, '2016-12-20 13:37:57', 'Lazlow_VRocks (uid: 5) has invited Tony_Freeman (uid: 24) to Grove Street Families (id: 2).'),
  3020. (54, '2016-12-20 13:40:36', 'Asykon_Amphibia (uid: 6) has invited Cletus_Amphibia (uid: 110) to Amphibia Corporation (id: 0).'),
  3021. (55, '2016-12-20 13:41:01', 'Asykon_Amphibia (uid: 6) has invited Andrea_Brianna (uid: 56) to Amphibia Corporation (id: 0).'),
  3022. (56, '2016-12-20 13:49:39', 'Lazlow_VRocks (uid: 5) has invited Drake_Wrzosek (uid: 126) to Grove Street Families (id: 2).'),
  3023. (57, '2016-12-20 13:49:43', 'Lazlow_VRocks (uid: 5) has invited Justin_Wrzosek (uid: 123) to Grove Street Families (id: 2).'),
  3024. (58, '2016-12-20 13:50:20', 'Tom_Wrzosek (uid: 74) deposits 55 materials in the gang stash.'),
  3025. (59, '2016-12-20 13:50:21', 'Lazlow_VRocks (uid: 5) has set Drake_Wrzosek''s (uid: 126) rank to Gangster (2).'),
  3026. (60, '2016-12-20 13:50:26', 'Lazlow_VRocks (uid: 5) has set Justin_Wrzosek''s (uid: 123) rank to Muscle (1).'),
  3027. (61, '2016-12-20 13:50:28', 'Justin_Wrzosek (uid: 123) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3028. (62, '2016-12-20 13:50:45', 'Tom_Wrzosek (uid: 74) deposits 100 materials in the gang stash.'),
  3029. (63, '2016-12-20 13:50:50', 'Drake_Wrzosek (uid: 126) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3030. (64, '2016-12-20 13:56:58', 'Max_Mabbitt (uid: 7) has invited Kenny_Phixion (uid: 51) to Los Santos Rifa (id: 1).'),
  3031. (65, '2016-12-20 13:57:07', 'Max_Mabbitt (uid: 7) has invited Gre_Hunter (uid: 39) to Los Santos Rifa (id: 1).'),
  3032. (66, '2016-12-20 13:57:12', 'Max_Mabbitt (uid: 7) has invited Pete_Swift (uid: 14) to Los Santos Rifa (id: 1).'),
  3033. (67, '2016-12-20 14:01:01', 'Asykon_Amphibia (uid: 6) deposits 25000 materials in the gang stash.'),
  3034. (68, '2016-12-20 14:01:11', 'Asykon_Amphibia (uid: 6) has set Cynthia_Tucker''s (uid: 73) rank to Unspecified (2).'),
  3035. (69, '2016-12-20 14:01:15', 'Asykon_Amphibia (uid: 6) has set Bench_Freeman''s (uid: 64) rank to Unspecified (2).'),
  3036. (70, '2016-12-20 14:01:18', 'Asykon_Amphibia (uid: 6) has set Raven_Street''s (uid: 69) rank to Unspecified (2).'),
  3037. (71, '2016-12-20 14:01:21', 'Asykon_Amphibia (uid: 6) has set Salah_Amphibia''s (uid: 44) rank to Unspecified (2).'),
  3038. (72, '2016-12-20 14:01:24', 'Asykon_Amphibia (uid: 6) has set Curtis_Leaf''s (uid: 32) rank to Unspecified (2).'),
  3039. (73, '2016-12-20 14:01:28', 'Asykon_Amphibia (uid: 6) has set Cletus_Amphibia''s (uid: 110) rank to Unspecified (2).'),
  3040. (74, '2016-12-20 14:01:42', 'Max_Mabbitt (uid: 7) has set Kenny_Phixion''s (uid: 51) rank to Unspecified (5).'),
  3041. (75, '2016-12-20 14:02:24', 'Asykon Amphibia (uid: 6) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  3042. (76, '2016-12-20 14:02:30', 'Cynthia_Tucker (uid: 73) withdraws a Desert Eagle from the Amphibia Corporation (id: 0) gang stash.'),
  3043. (77, '2016-12-20 14:03:09', 'Blake Amphibia (uid: 19) crafts a shotgun using 500 materials from the gang stash.'),
  3044. (78, '2016-12-20 14:03:15', 'Salah_Amphibia (uid: 44) withdraws a shotgun from the Amphibia Corporation (id: 0) gang stash.'),
  3045. (79, '2016-12-20 14:03:48', 'Blake Amphibia (uid: 19) crafts a shotgun using 500 materials from the gang stash.'),
  3046. (80, '2016-12-20 14:03:56', 'Raven_Street (uid: 69) withdraws a shotgun from the Amphibia Corporation (id: 0) gang stash.'),
  3047. (81, '2016-12-20 14:04:27', 'Blake Amphibia (uid: 19) crafts a 9mm using 150 materials from the gang stash.'),
  3048. (82, '2016-12-20 14:04:34', 'Blake Amphibia (uid: 19) crafts a shotgun using 500 materials from the gang stash.'),
  3049. (83, '2016-12-20 14:05:04', 'Blake Amphibia (uid: 19) crafts a shotgun using 500 materials from the gang stash.'),
  3050. (84, '2016-12-20 14:05:10', 'Asykon Amphibia (uid: 6) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  3051. (85, '2016-12-20 14:05:14', 'Curtis_Leaf (uid: 32) withdraws a 9mm from the Amphibia Corporation (id: 0) gang stash.'),
  3052. (86, '2016-12-20 14:05:29', 'Asykon Amphibia (uid: 6) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  3053. (87, '2016-12-20 14:05:38', 'Asykon Amphibia (uid: 6) crafts a shotgun using 500 materials from the gang stash.'),
  3054. (88, '2016-12-20 14:05:42', 'Blake_Amphibia (uid: 19) withdraws a Desert Eagle from the Amphibia Corporation (id: 0) gang stash.'),
  3055. (89, '2016-12-20 14:05:54', 'Lazlow VRocks (uid: 5) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  3056. (90, '2016-12-20 14:05:56', 'Lazlow VRocks (uid: 5) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  3057. (91, '2016-12-20 14:05:58', 'Lazlow VRocks (uid: 5) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  3058. (92, '2016-12-20 14:05:59', 'Lazlow VRocks (uid: 5) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  3059. (93, '2016-12-20 14:06:00', 'Asykon_Amphibia (uid: 6) withdraws a Desert Eagle from the Amphibia Corporation (id: 0) gang stash.'),
  3060. (94, '2016-12-20 14:06:01', 'Lazlow VRocks (uid: 5) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  3061. (95, '2016-12-20 14:06:04', 'Lazlow VRocks (uid: 5) crafts a molotov using 5000 materials from the gang stash.'),
  3062. (96, '2016-12-20 14:06:11', 'Lazlow_VRocks (uid: 5) withdraws a molotov from the Grove Street Families (id: 2) gang stash.'),
  3063. (97, '2016-12-20 14:06:46', 'Curtis_Leaf (uid: 32) deposits a 9mm in the Amphibia Corporation (id: 0) gang stash.'),
  3064. (98, '2016-12-20 14:06:58', 'Cletus_Amphibia (uid: 110) withdraws a shotgun from the Amphibia Corporation (id: 0) gang stash.'),
  3065. (99, '2016-12-20 14:06:58', 'Blake_Amphibia (uid: 19) deposits a Desert Eagle in the Amphibia Corporation (id: 0) gang stash.'),
  3066. (100, '2016-12-20 14:07:03', 'Curtis_Leaf (uid: 32) withdraws a shotgun from the Amphibia Corporation (id: 0) gang stash.'),
  3067. (101, '2016-12-20 14:07:09', 'Blake_Amphibia (uid: 19) withdraws a shotgun from the Amphibia Corporation (id: 0) gang stash.'),
  3068. (102, '2016-12-20 14:08:51', 'Asykon Amphibia (uid: 6) crafts a shotgun using 500 materials from the gang stash.'),
  3069. (103, '2016-12-20 14:08:52', 'Asykon Amphibia (uid: 6) crafts a shotgun using 500 materials from the gang stash.'),
  3070. (104, '2016-12-20 14:08:54', 'Asykon Amphibia (uid: 6) crafts a shotgun using 500 materials from the gang stash.'),
  3071. (105, '2016-12-20 14:09:02', 'Asykon Amphibia (uid: 6) crafts a shotgun using 500 materials from the gang stash.'),
  3072. (106, '2016-12-20 14:09:07', 'Cynthia_Tucker (uid: 73) withdraws a shotgun from the Amphibia Corporation (id: 0) gang stash.'),
  3073. (107, '2016-12-20 14:13:02', 'Lazlow (uid: 5) has invited oscar_G_Ramirez (uid: 122) to Grove Street Families (id: 2).'),
  3074. (108, '2016-12-20 14:13:32', 'Lazlow (uid: 5) has set oscar_G_Ramirez''s (uid: 122) rank to Unspecified (1).'),
  3075. (109, '2016-12-20 14:16:05', 'oscar_G_Ramirez (uid: 122) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3076. (110, '2016-12-20 14:20:55', 'Cletus_Amphibia (uid: 110) withdraws a shotgun from the Amphibia Corporation (id: 0) gang stash.'),
  3077. (111, '2016-12-20 14:35:39', 'Max_Mabbitt (uid: 7) has set Gre_Hunter''s (uid: 39) rank to El Commandanté (5).'),
  3078. (112, '2016-12-20 14:44:37', 'Asykon_Amphibia (uid: 6) has invited jaim_kappa (uid: 115) to Amphibia Corporation (id: 0).'),
  3079. (113, '2016-12-20 14:46:57', 'Max_Mabbitt (uid: 7) has invited Andergdon_Lanvins (uid: 94) to Los Santos Rifa (id: 1).'),
  3080. (114, '2016-12-20 15:09:27', 'Lazlow_VRocks (uid: 5) has set Zac_Wrzosek''s (uid: 91) rank to Unspecified (2).'),
  3081. (115, '2016-12-20 15:09:40', 'Zac_Wrzosek (uid: 91) withdraws a Desert Eagle from the Grove Street Families (id: 2) gang stash.'),
  3082. (116, '2016-12-20 15:18:45', 'Gre_Hunter (uid: 39) has invited Rio_Flocka (uid: 150) to Los Santos Rifa (id: 1).'),
  3083. (117, '2016-12-20 15:28:48', 'Lazlow_VRocks (uid: 5) kicked Tony_Freeman (uid: 24) from Grove Street Families (id: 2) as rank Unspecified (0).'),
  3084. (118, '2016-12-20 15:38:40', 'Lazlow_VRocks (uid: 5) has invited Joga_Hernandez (uid: 77) to Grove Street Families (id: 2).'),
  3085. (119, '2016-12-20 15:38:45', 'Lazlow_VRocks (uid: 5) has set Joga_Hernandez''s (uid: 77) rank to Unspecified (1).'),
  3086. (120, '2016-12-20 15:38:54', 'Lazlow_VRocks (uid: 5) has set Joga_Hernandez''s (uid: 77) rank to Unspecified (2).'),
  3087. (121, '2016-12-20 15:38:55', 'Lazlow_VRocks (uid: 5) has set Joga_Hernandez''s (uid: 77) rank to Unspecified (3).'),
  3088. (122, '2016-12-20 15:38:57', 'Lazlow_VRocks (uid: 5) has set Joga_Hernandez''s (uid: 77) rank to Unspecified (1).'),
  3089. (123, '2016-12-20 15:57:05', 'Lazlow_VRocks (uid: 5) kicked Tom_Wrzosek (uid: 74) from Grove Street Families (id: 2) as rank Unspecified (1).'),
  3090. (124, '2016-12-20 16:05:46', 'Asykon_Amphibia (uid: 6) has set christopher_leaf''s (uid: 57) rank to Unspecified (2).'),
  3091. (125, '2016-12-20 16:06:14', 'christopher_leaf (uid: 57) withdraws a 9mm from the Amphibia Corporation (id: 0) gang stash.'),
  3092. (126, '2016-12-20 16:06:42', 'Justin_Wrzosek (uid: 123) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3093. (127, '2016-12-20 16:09:08', 'Joga_Hernandez (uid: 77) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3094. (128, '2016-12-20 16:10:29', 'Zac_Wrzosek (uid: 91) withdraws a Desert Eagle from the Grove Street Families (id: 2) gang stash.'),
  3095. (129, '2016-12-20 16:12:27', 'Kenny_Phixion (uid: 51) has invited Lucas_Henning (uid: 97) to Los Santos Rifa (id: 1).'),
  3096. (130, '2016-12-20 16:12:33', 'Justin_Wrzosek (uid: 123) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3097. (131, '2016-12-20 16:14:27', 'Lazlow_VRocks (uid: 5) withdraws a Desert Eagle from the Grove Street Families (id: 2) gang stash.'),
  3098. (132, '2016-12-20 16:14:39', 'Lazlow_VRocks (uid: 5) deposits 5000 materials in the gang stash.'),
  3099. (133, '2016-12-20 16:14:58', 'Lazlow_VRocks (uid: 5) withdraws a Desert Eagle from the Grove Street Families (id: 2) gang stash.'),
  3100. (134, '2016-12-20 16:15:51', 'Max_Mabbitt (uid: 7) has invited Ibrahim_Mason (uid: 82) to Los Santos Rifa (id: 1).'),
  3101. (135, '2016-12-20 16:16:19', 'Max_Mabbitt (uid: 7) has set Ibrahim_Mason''s (uid: 82) rank to Soldado (3).'),
  3102. (136, '2016-12-20 16:16:28', 'Max_Mabbitt (uid: 7) has set Lucas_Henning''s (uid: 97) rank to El Commandanté (5).'),
  3103. (137, '2016-12-20 16:19:02', 'Asykon_Amphibia (uid: 6) has invited Lrizz_Devil (uid: 144) to Amphibia Corporation (id: 0).'),
  3104. (138, '2016-12-20 16:22:06', 'Gre_Hunter (uid: 39) has invited Ryan_Sindrit (uid: 140) to Los Santos Rifa (id: 1).'),
  3105. (139, '2016-12-20 16:22:28', 'Max_Mabbitt (uid: 7) has set Ryan_Sindrit''s (uid: 140) rank to El Commandanté (5).'),
  3106. (140, '2016-12-20 16:23:09', 'Asykon_Amphibia (uid: 6) has invited Mystogan_Moons (uid: 41) to Amphibia Corporation (id: 0).'),
  3107. (141, '2016-12-20 16:26:39', 'Kenny_Phixion (uid: 51) has invited David_Ross (uid: 58) to Los Santos Rifa (id: 1).'),
  3108. (142, '2016-12-20 16:27:39', 'Kenny_Phixion (uid: 51) has invited Vincent_Valentino (uid: 163) to Los Santos Rifa (id: 1).'),
  3109. (143, '2016-12-20 16:38:55', 'Joga_Hernandez (uid: 77) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3110. (144, '2016-12-20 16:55:17', 'Drake_Wrzosek (uid: 126) withdraws a Desert Eagle from the Grove Street Families (id: 2) gang stash.'),
  3111. (145, '2016-12-20 16:58:13', 'Lazlow_VRocks (uid: 5) has invited Kenna_Wrzosek (uid: 170) to Grove Street Families (id: 2).'),
  3112. (146, '2016-12-20 17:01:07', 'Max_Mabbitt (uid: 7) has set Andergdon_Lanvins''s (uid: 94) rank to El Commandanté (5).'),
  3113. (147, '2016-12-20 17:03:03', 'Lazlow_VRocks (uid: 5) has set Kenna_Wrzosek''s (uid: 170) rank to Unspecified (1).'),
  3114. (148, '2016-12-20 17:04:01', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3115. (149, '2016-12-20 17:04:13', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3116. (150, '2016-12-20 17:04:27', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3117. (151, '2016-12-20 17:04:35', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3118. (152, '2016-12-20 17:04:41', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3119. (153, '2016-12-20 17:04:48', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3120. (154, '2016-12-20 17:04:50', 'Kenna_Wrzosek (uid: 170) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3121. (155, '2016-12-20 17:04:55', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3122. (156, '2016-12-20 17:05:05', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3123. (157, '2016-12-20 17:05:12', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3124. (158, '2016-12-20 17:05:26', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3125. (159, '2016-12-20 17:05:39', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3126. (160, '2016-12-20 17:05:59', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3127. (161, '2016-12-20 17:06:10', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3128. (162, '2016-12-20 17:06:18', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3129. (163, '2016-12-20 17:06:24', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3130. (164, '2016-12-20 17:06:32', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3131. (165, '2016-12-20 17:06:41', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3132. (166, '2016-12-20 17:06:49', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3133. (167, '2016-12-20 17:07:05', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3134. (168, '2016-12-20 17:07:15', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3135. (169, '2016-12-20 17:07:22', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3136. (170, '2016-12-20 17:07:32', 'Lazlow_VRocks (uid: 5) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3137. (171, '2016-12-20 17:10:45', 'Lazlow_VRocks (uid: 5) has set Drake_Wrzosek''s (uid: 126) rank to Unspecified (5).'),
  3138. (172, '2016-12-20 17:14:33', 'Max_Mabbitt (uid: 7) has set Andergdon_Lanvins''s (uid: 94) rank to Bandito (1).'),
  3139. (173, '2016-12-20 17:30:31', 'Lazlow_VRocks (uid: 5) deposits 5000 materials in the gang stash.'),
  3140. (174, '2016-12-20 17:30:42', 'Lazlow_VRocks (uid: 5) deposits a shotgun in the Grove Street Families (id: 2) gang stash.'),
  3141. (175, '2016-12-20 17:30:50', 'Lazlow VRocks (uid: 5) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  3142. (176, '2016-12-20 17:30:54', 'Lazlow_VRocks (uid: 5) withdraws a Desert Eagle from the Grove Street Families (id: 2) gang stash.'),
  3143. (177, '2016-12-20 17:38:08', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3144. (178, '2016-12-20 17:38:23', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3145. (179, '2016-12-20 17:38:31', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3146. (180, '2016-12-20 17:38:43', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3147. (181, '2016-12-20 17:40:53', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3148. (182, '2016-12-20 17:41:01', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3149. (183, '2016-12-20 17:41:12', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3150. (184, '2016-12-20 17:41:18', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3151. (185, '2016-12-20 17:41:23', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3152. (186, '2016-12-20 17:41:32', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3153. (187, '2016-12-20 17:41:40', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3154. (188, '2016-12-20 17:41:45', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3155. (189, '2016-12-20 17:41:52', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3156. (190, '2016-12-20 17:41:58', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3157. (191, '2016-12-20 17:42:03', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3158. (192, '2016-12-20 17:42:09', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3159. (193, '2016-12-20 17:42:16', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3160. (194, '2016-12-20 17:42:30', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3161. (195, '2016-12-20 17:42:37', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3162. (196, '2016-12-20 17:42:47', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3163. (197, '2016-12-20 17:42:52', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3164. (198, '2016-12-20 17:43:01', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3165. (199, '2016-12-20 17:43:11', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3166. (200, '2016-12-20 17:43:18', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3167. (201, '2016-12-20 17:43:25', 'Curtis_Leaf (uid: 32) deposits a shotgun in the Amphibia Corporation (id: 0) gang stash.'),
  3168. (202, '2016-12-20 17:44:43', 'Asykon_Amphibia (uid: 6) has invited Dan_Devil (uid: 157) to Amphibia Corporation (id: 0).'),
  3169. (203, '2016-12-20 17:56:39', 'Max_Mabbitt (uid: 7) has invited Jack_Lazlow (uid: 70) to Los Santos Rifa (id: 1).'),
  3170. (204, '2016-12-20 18:00:23', 'Max_Mabbitt (uid: 7) has invited Richie_Legend (uid: 128) to Los Santos Rifa (id: 1).'),
  3171. (205, '2016-12-20 18:02:14', 'Max_Mabbitt (uid: 7) has invited Leii_Maddox (uid: 35) to Los Santos Rifa (id: 1).'),
  3172. (206, '2016-12-20 19:33:07', 'Joga_Hernandez (uid: 77) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3173. (207, '2016-12-20 20:06:42', 'Lazlow (uid: 5) has invited Jaz_Shock (uid: 184) to Grove Street Families (id: 2).'),
  3174. (208, '2016-12-20 20:10:14', 'Lazlow (uid: 5) has set Jaz_Shock''s (uid: 184) rank to King (6).'),
  3175. (209, '2016-12-20 20:14:40', 'Asykon_Amphibia (uid: 6) has set Curtis_Leaf''s (uid: 32) rank to L.T General (5).'),
  3176. (210, '2016-12-20 20:15:48', 'Jaz_Shock (uid: 184) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3177. (211, '2016-12-20 20:16:34', 'Curtis_Leaf (uid: 32) withdraws a shotgun from the Amphibia Corporation (id: 0) gang stash.'),
  3178. (212, '2016-12-20 20:18:05', 'Lazlow (uid: 5) spent 500 GP & $50000 on an NPC drug dealer for test (id: 3).'),
  3179. (213, '2016-12-20 20:18:07', 'Lazlow (uid: 5) spent 500 GP & $50000 on an NPC arm dealer for test (id: 3).'),
  3180. (214, '2016-12-20 20:19:24', 'Asykon_Amphibia (uid: 6) has set Curtis_Leaf''s (uid: 32) rank to Unspecified (2).'),
  3181. (215, '2016-12-20 20:21:24', 'christopher_leaf (uid: 57) withdraws a shotgun from the Amphibia Corporation (id: 0) gang stash.'),
  3182. (216, '2016-12-20 20:23:16', 'Asykon_Amphibia (uid: 6) has set Curtis_Leaf''s (uid: 32) rank to L.T General (5).'),
  3183. (217, '2016-12-20 20:33:55', 'Asykon_Amphibia (uid: 6) has set Curtis_Leaf''s (uid: 32) rank to Unspecified (2).'),
  3184. (218, '2016-12-20 21:23:09', 'Lazlow_VRocks (uid: 5) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3185. (219, '2016-12-20 21:24:03', 'Lazlow_VRocks (uid: 5) deposits 10000 materials in the gang stash.'),
  3186. (220, '2016-12-20 21:24:28', 'Lazlow VRocks (uid: 5) crafts an AK-47 using 3000 materials from the gang stash.'),
  3187. (221, '2016-12-20 21:24:32', 'Lazlow VRocks (uid: 5) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  3188. (222, '2016-12-20 21:24:34', 'Lazlow VRocks (uid: 5) crafts a Desert Eagle using 2000 materials from the gang stash.'),
  3189. (223, '2016-12-20 21:24:36', 'Lazlow VRocks (uid: 5) crafts a shotgun using 500 materials from the gang stash.'),
  3190. (224, '2016-12-20 21:24:41', 'Lazlow_VRocks (uid: 5) withdraws an AK-47 from the Grove Street Families (id: 2) gang stash.'),
  3191. (225, '2016-12-20 21:24:47', 'Lazlow_VRocks (uid: 5) deposits a shotgun in the Grove Street Families (id: 2) gang stash.'),
  3192. (226, '2016-12-20 21:25:13', 'Jaz_Shock (uid: 184) withdraws a Desert Eagle from the Grove Street Families (id: 2) gang stash.'),
  3193. (227, '2016-12-20 21:25:23', 'Jaz_Shock (uid: 184) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3194. (228, '2016-12-20 21:31:22', 'Jaz_Shock (uid: 184) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3195. (229, '2016-12-21 00:19:42', 'Joga_Hernandez (uid: 77) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3196. (230, '2016-12-21 00:50:23', 'Bench_Freeman (uid: 64) withdraws a Desert Eagle from the Amphibia Corporation (id: 0) gang stash.'),
  3197. (231, '2016-12-21 04:08:14', 'Asykon_Amphibia (uid: 6) has invited Thude_Hernandez (uid: 210) to Amphibia Corporation (id: 0).'),
  3198. (232, '2016-12-21 04:08:24', 'Asykon_Amphibia (uid: 6) has invited mohamed_yonkou (uid: 272) to Amphibia Corporation (id: 0).'),
  3199. (233, '2016-12-21 04:08:33', 'Asykon_Amphibia (uid: 6) has invited Katiysa_Vargas (uid: 179) to Amphibia Corporation (id: 0).'),
  3200. (234, '2016-12-21 04:10:02', 'Asykon_Amphibia (uid: 6) has set Katiysa_Vargas''s (uid: 179) rank to Unspecified (2).'),
  3201. (235, '2016-12-21 04:52:41', 'Asykon_Amphibia (uid: 6) has invited Nathan_Hopskin (uid: 219) to Amphibia Corporation (id: 0).'),
  3202. (236, '2016-12-21 04:55:02', 'Asykon_Amphibia (uid: 6) has invited Ace_Capone (uid: 296) to Amphibia Corporation (id: 0).'),
  3203. (237, '2016-12-21 05:07:02', 'Gre_Hunter (uid: 39) has set Gre_Hunter''s (uid: 39) rank to Unspecified (5).'),
  3204. (238, '2016-12-21 05:37:52', 'Asykon_Amphibia (uid: 6) has invited Marco_Ki (uid: 312) to Amphibia Corporation (id: 0).'),
  3205. (239, '2016-12-21 06:14:30', 'oscar_g_ramirez (uid: 122) has quit Grove Street Families (id: 2) has rank Unspecified (1).'),
  3206. (240, '2016-12-21 06:15:24', 'Asykon_Amphibia (uid: 6) has invited oscar_g_ramirez (uid: 122) to Amphibia Corporation (id: 0).'),
  3207. (241, '2016-12-21 06:15:37', 'Asykon_Amphibia (uid: 6) has set Cletus_Amphibia''s (uid: 110) rank to General (6).'),
  3208. (242, '2016-12-21 06:15:38', 'Asykon_Amphibia (uid: 6) has set Cletus_Amphibia''s (uid: 110) rank to L.T General (5).'),
  3209. (243, '2016-12-21 06:37:55', 'Ryan_Sindrit (uid: 140) has invited Jamie_G_Shock (uid: 319) to Los Santos Rifa (id: 1).'),
  3210. (244, '2016-12-21 06:39:10', 'Asykon_Amphibia (uid: 6) has set Orlando_Amphibia''s (uid: 100) rank to Unspecified (2).'),
  3211. (245, '2016-12-21 06:39:16', 'Asykon_Amphibia (uid: 6) has set Nathan_Hopskin''s (uid: 219) rank to Unspecified (2).'),
  3212. (246, '2016-12-21 06:39:46', 'Asykon_Amphibia (uid: 6) has set Marco_Ki''s (uid: 312) rank to Unspecified (2).'),
  3213. (247, '2016-12-21 06:49:40', 'Max_Mabbitt (uid: 7) has set Rio_Flocka''s (uid: 150) rank to Unspecified (5).'),
  3214. (248, '2016-12-21 06:55:42', 'Max_Mabbitt (uid: 7) has set Vincent_Valentino''s (uid: 163) rank to Soldado (3).'),
  3215. (249, '2016-12-21 07:04:50', 'Asykon_Amphibia (uid: 6) has set Thude_Hernandez''s (uid: 210) rank to Unspecified (2).'),
  3216. (250, '2016-12-21 07:13:47', 'Asykon_Amphibia (uid: 6) has invited David_Amphibia (uid: 204) to Amphibia Corporation (id: 0).'),
  3217. (251, '2016-12-21 07:17:07', 'Asykon_Amphibia (uid: 6) has set Lrizz_Devil''s (uid: 144) rank to L.T General (5).'),
  3218. (252, '2016-12-21 07:19:02', 'Asykon_Amphibia (uid: 6) has set Orlando_Amphibia''s (uid: 100) rank to L.T General (5).'),
  3219. (253, '2016-12-21 07:21:51', 'Asykon_Amphibia (uid: 6) has set Orlando_Amphibia''s (uid: 100) rank to Unspecified (2).'),
  3220. (254, '2016-12-21 07:21:54', 'Asykon_Amphibia (uid: 6) has set Lrizz_Devil''s (uid: 144) rank to Unspecified (2).'),
  3221. (255, '2016-12-21 07:22:15', 'Curtis_Leaf (uid: 32) withdraws a Desert Eagle from the Amphibia Corporation (id: 0) gang stash.'),
  3222. (256, '2016-12-21 07:22:18', 'Marco_Ki (uid: 312) withdraws a Desert Eagle from the Amphibia Corporation (id: 0) gang stash.'),
  3223. (257, '2016-12-21 07:27:10', 'Asykon_Amphibia (uid: 6) has set David_Amphibia''s (uid: 204) rank to L.T General (5).'),
  3224. (258, '2016-12-21 08:25:33', 'Asykon_Amphibia (uid: 6) has set Thude_Hernandez''s (uid: 210) rank to L.T General (5).'),
  3225. (259, '2016-12-21 08:25:45', 'Asykon_Amphibia (uid: 6) has set Thude_Hernandez''s (uid: 210) rank to Unspecified (2).'),
  3226. (260, '2016-12-21 09:05:05', 'Bench_Freeman (uid: 64) withdraws a Desert Eagle from the Amphibia Corporation (id: 0) gang stash.'),
  3227. (261, '2016-12-21 10:08:06', 'Asykon_Amphibia (uid: 6) has invited Leonardo_Fox (uid: 239) to Amphibia Corporation (id: 0).'),
  3228. (262, '2016-12-21 10:28:46', 'Asykon_Amphibia (uid: 6) withdraws $111391 from the gang stash.'),
  3229. (263, '2016-12-21 10:30:39', 'Raven_Street (uid: 69) deposited $5000 in the gang stash.'),
  3230. (264, '2016-12-21 12:16:44', 'Lazlow (uid: 5) has invited Derek_Gucci_Sosa (uid: 17) to Grove Street Families (id: 2).'),
  3231. (265, '2016-12-21 12:16:52', 'Lazlow (uid: 5) has set Derek_Gucci_Sosa''s (uid: 17) rank to King (6).'),
  3232. (266, '2016-12-21 12:17:55', 'Derek_Gucci_Sosa (uid: 17) has invited Troy_Gucci_Sosa (uid: 50) to Grove Street Families (id: 2).'),
  3233. (267, '2016-12-21 12:18:00', 'Derek_Gucci_Sosa (uid: 17) has invited Wiz_Gucci_Sosa (uid: 36) to Grove Street Families (id: 2).'),
  3234. (268, '2016-12-21 12:18:06', 'Derek_Gucci_Sosa (uid: 17) has invited Sigre_Gucci_Sosa (uid: 370) to Grove Street Families (id: 2).'),
  3235. (269, '2016-12-21 12:18:11', 'Derek_Gucci_Sosa (uid: 17) has invited Simon_Gucci_Sosa (uid: 337) to Grove Street Families (id: 2).'),
  3236. (270, '2016-12-21 12:18:14', 'Derek_Gucci_Sosa (uid: 17) has invited Eazy_Gucci_Sosa (uid: 360) to Grove Street Families (id: 2).'),
  3237. (271, '2016-12-21 12:20:10', 'Derek_Gucci_Sosa (uid: 17) has invited Jason_Gucci_Sosa (uid: 23) to Grove Street Families (id: 2).'),
  3238. (272, '2016-12-21 12:21:21', 'Derek_Gucci_Sosa (uid: 17) has invited Theo_J_King (uid: 321) to Grove Street Families (id: 2).'),
  3239. (273, '2016-12-21 12:40:01', 'Blake_Amphibia (uid: 19) deposits a 9mm in the Amphibia Corporation (id: 0) gang stash.'),
  3240. (274, '2016-12-21 12:45:51', 'christopher_leaf (uid: 57) withdraws a 9mm from the Amphibia Corporation (id: 0) gang stash.'),
  3241. (275, '2016-12-21 12:45:52', 'Derek_Gucci_Sosa (uid: 17) has invited Pedro_Deagle (uid: 362) to Grove Street Families (id: 2).'),
  3242. (276, '2016-12-21 12:58:41', 'Kenny_Phixion (uid: 51) has invited Max_Thomax (uid: 47) to Los Santos Rifa (id: 1).'),
  3243. (277, '2016-12-21 13:03:39', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3244. (278, '2016-12-21 13:05:47', 'Derek_Gucci_Sosa (uid: 17) kicked Pedro_Deagle (uid: 362) from Grove Street Families (id: 2) as rank Outsider (0).'),
  3245. (279, '2016-12-21 13:16:30', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3246. (280, '2016-12-21 13:16:39', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3247. (281, '2016-12-21 13:16:44', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3248. (282, '2016-12-21 13:16:49', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3249. (283, '2016-12-21 13:16:53', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3250. (284, '2016-12-21 13:16:57', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3251. (285, '2016-12-21 13:17:00', 'Simon_Gucci_Sosa (uid: 337) deposits a Desert Eagle in the Grove Street Families (id: 2) gang stash.'),
  3252. (286, '2016-12-21 13:17:01', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3253. (287, '2016-12-21 13:17:05', 'Simon_Gucci_Sosa (uid: 337) deposits a shotgun in the Grove Street Families (id: 2) gang stash.'),
  3254. (288, '2016-12-21 13:17:07', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3255. (289, '2016-12-21 13:17:12', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3256. (290, '2016-12-21 13:17:15', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3257. (291, '2016-12-21 13:17:18', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3258. (292, '2016-12-21 13:17:20', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3259. (293, '2016-12-21 13:17:23', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3260. (294, '2016-12-21 13:17:26', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3261. (295, '2016-12-21 13:17:29', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3262. (296, '2016-12-21 13:17:30', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3263. (297, '2016-12-21 13:17:34', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3264. (298, '2016-12-21 13:17:42', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3265. (299, '2016-12-21 13:17:48', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3266. (300, '2016-12-21 13:18:06', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3267. (301, '2016-12-21 13:18:14', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3268. (302, '2016-12-21 13:18:22', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3269. (303, '2016-12-21 13:18:28', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3270. (304, '2016-12-21 13:18:34', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3271. (305, '2016-12-21 13:18:40', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3272. (306, '2016-12-21 13:18:46', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3273. (307, '2016-12-21 13:18:52', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3274. (308, '2016-12-21 13:19:09', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3275. (309, '2016-12-21 13:19:19', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3276. (310, '2016-12-21 13:19:53', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3277. (311, '2016-12-21 13:19:58', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3278. (312, '2016-12-21 13:20:02', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3279. (313, '2016-12-21 13:20:07', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3280. (314, '2016-12-21 13:20:23', 'Simon_Gucci_Sosa (uid: 337) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3281. (315, '2016-12-21 13:29:31', 'Blake_Amphibia (uid: 19) deposits a 9mm in the Amphibia Corporation (id: 0) gang stash.'),
  3282. (316, '2016-12-21 13:30:20', 'Asykon_Amphibia (uid: 6) has invited Razor_W_Ramirez (uid: 266) to Amphibia Corporation (id: 0).'),
  3283. (317, '2016-12-21 13:31:04', 'Kenny_Phixion (uid: 51) has set Kenny_Phixion''s (uid: 51) rank to Unspecified (4).'),
  3284. (318, '2016-12-21 13:33:48', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3285. (319, '2016-12-21 13:33:51', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3286. (320, '2016-12-21 13:33:57', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3287. (321, '2016-12-21 13:34:02', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3288. (322, '2016-12-21 13:34:07', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3289. (323, '2016-12-21 13:34:10', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3290. (324, '2016-12-21 13:34:15', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3291. (325, '2016-12-21 13:34:19', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3292. (326, '2016-12-21 13:34:23', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3293. (327, '2016-12-21 13:34:27', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3294. (328, '2016-12-21 13:34:33', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3295. (329, '2016-12-21 13:34:37', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3296. (330, '2016-12-21 13:34:41', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3297. (331, '2016-12-21 13:34:44', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3298. (332, '2016-12-21 13:34:48', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3299. (333, '2016-12-21 13:34:52', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3300. (334, '2016-12-21 13:34:57', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3301. (335, '2016-12-21 13:37:16', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3302. (336, '2016-12-21 13:37:20', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3303. (337, '2016-12-21 13:37:24', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3304. (338, '2016-12-21 13:37:28', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3305. (339, '2016-12-21 13:37:33', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3306. (340, '2016-12-21 13:37:37', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3307. (341, '2016-12-21 13:37:41', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3308. (342, '2016-12-21 13:37:45', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3309. (343, '2016-12-21 13:37:48', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3310. (344, '2016-12-21 13:37:52', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3311. (345, '2016-12-21 13:37:55', 'Lazlow_VRocks (uid: 5) deposits a 9mm in the Grove Street Families (id: 2) gang stash.'),
  3312. (346, '2016-12-21 13:45:23', 'theo_J_king (uid: 321) has quit Grove Street Families (id: 2) has rank Outsider (0).'),
  3313. (347, '2016-12-21 14:48:56', 'Asykon_Amphibia (uid: 6) deposited $37882 in the gang stash.'),
  3314. (348, '2016-12-21 14:49:11', 'Asykon_Amphibia (uid: 6) withdraws $75764 from the gang stash.'),
  3315. (349, '2016-12-21 15:11:35', 'Lucas_Henning (uid: 97) has invited Bibas_Valentino (uid: 398) to Los Santos Rifa (id: 1).'),
  3316. (350, '2016-12-21 17:00:28', 'Ryan_Sindrit (uid: 140) kicked Ryan_Sindrit (uid: 140) from Los Santos Rifa (id: 1) as rank Unspecified (5).'),
  3317. (351, '2016-12-21 17:02:15', 'Don_Nox (uid: 104) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3318. (352, '2016-12-21 18:55:59', 'Joga_Hernandez (uid: 77) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3319. (353, '2016-12-21 20:02:52', 'Asykon_Amphibia (uid: 6) has set Lrizz_Devil''s (uid: 144) rank to L.T General (5).'),
  3320. (354, '2016-12-21 20:23:45', 'Asykon_Amphibia (uid: 6) has set Dan_Devil''s (uid: 157) rank to Unspecified (2).'),
  3321. (355, '2016-12-21 20:41:47', 'Devon_Bronx (uid: 194) has invited Ray_Bronx (uid: 63) to Grove Street Families (id: 2).'),
  3322. (356, '2016-12-21 20:43:19', 'Justin_Wrzosek (uid: 123) withdraws a shotgun from the Grove Street Families (id: 2) gang stash.'),
  3323. (357, '2016-12-21 20:45:07', 'Devon_Bronx (uid: 194) has invited Olly_Bronx (uid: 176) to Grove Street Families (id: 2).'),
  3324. (358, '2016-12-21 20:51:15', 'Devon_Bronx (uid: 194) has invited Adam_Menace (uid: 192) to Grove Street Families (id: 2).'),
  3325. (359, '2016-12-21 21:02:51', 'Ray_Bronx (uid: 63) has quit Grove Street Families (id: 2) has rank Unspecified (0).'),
  3326. (360, '2016-12-21 21:03:13', 'Olly_Bronx (uid: 176) has quit Grove Street Families (id: 2) has rank Unspecified (0).'),
  3327. (361, '2016-12-22 01:34:28', 'David_Amphibia (uid: 204) has invited Heist_Devil (uid: 508) to Amphibia Corporation (id: 0).'),
  3328. (362, '2016-12-22 01:44:14', 'David_Amphibia (uid: 204) has invited James_Whistler (uid: 464) to Amphibia Corporation (id: 0).'),
  3329. (363, '2016-12-22 01:44:52', 'Joga_Hernandez (uid: 77) has quit Grove Street Families (id: 2) has rank Unspecified (1).'),
  3330. (364, '2016-12-23 13:42:31', 'Mystogan_Moons (uid: 41) has quit Amphibia Corporation (id: 0) has rank Recruit (0).'),
  3331. (365, '2016-12-23 13:51:16', 'Ed_Slash (uid: 34) has invited Walter_Cash (uid: 16) to Black Disciples (id: 3).'),
  3332. (366, '2016-12-23 13:51:46', 'Simon_Gucci_Sosa (uid: 337) has quit Grove Street Families (id: 2) has rank Outsider (0).'),
  3333. (367, '2016-12-23 13:52:17', 'Ed_Slash (uid: 34) has invited Simon_Gucci_Sosa (uid: 337) to Black Disciples (id: 3).'),
  3334. (368, '2016-12-23 13:53:16', 'Sigre_Gucci_Sosa (uid: 370) has quit Grove Street Families (id: 2) has rank Outsider (0).'),
  3335. (369, '2016-12-23 13:53:34', 'Ed_Slash (uid: 34) has invited Sigre_Gucci_Sosa (uid: 370) to Black Disciples (id: 3).'),
  3336. (370, '2016-12-23 13:54:05', 'Orlando_Amphibia (uid: 100) has quit Amphibia Corporation (id: 0) has rank Unspecified (2).'),
  3337. (371, '2016-12-23 13:54:48', 'Jason_Gucci_Sosa (uid: 23) has quit Grove Street Families (id: 2) has rank Outsider (0).'),
  3338. (372, '2016-12-23 13:54:57', 'Ed_Slash (uid: 34) has invited Jason_Gucci_Sosa (uid: 23) to Black Disciples (id: 3).'),
  3339. (373, '2016-12-23 13:55:12', 'Ed_Slash (uid: 34) has set Jason_Gucci_Sosa''s (uid: 23) rank to Unspecified (6).'),
  3340. (374, '2016-12-23 13:55:35', 'Jason_Gucci_Sosa (uid: 23) has invited Callum_Riley (uid: 527) to Black Disciples (id: 3).'),
  3341. (375, '2016-12-23 13:55:56', 'Jason_Gucci_Sosa (uid: 23) has set Callum_Riley''s (uid: 527) rank to Unspecified (1).'),
  3342. (376, '2016-12-23 13:56:06', 'Ed_Slash (uid: 34) has invited Vitsz_Hayes (uid: 205) to Black Disciples (id: 3).'),
  3343. (377, '2016-12-23 13:57:37', 'Jason_Gucci_Sosa (uid: 23) has set Sigre_Gucci_Sosa''s (uid: 370) rank to Unspecified (5).'),
  3344. (378, '2016-12-23 14:00:30', 'Ed_Slash (uid: 34) has invited Angelo_Hayes (uid: 373) to Black Disciples (id: 3).'),
  3345. (379, '2016-12-23 14:02:31', 'Ed_Slash (uid: 34) has set Walter_Cash''s (uid: 16) rank to Unspecified (6).'),
  3346. (380, '2016-12-23 14:02:37', 'Ed_Slash (uid: 34) has set Simon_Gucci_Sosa''s (uid: 337) rank to Unspecified (5).'),
  3347. (381, '2016-12-23 14:05:55', 'Ed_Slash (uid: 34) has invited Jordy (uid: 132) to Black Disciples (id: 3).'),
  3348. (382, '2016-12-23 14:06:01', 'Ed_Slash (uid: 34) has set Jordy''s (uid: 132) rank to Unspecified (3).'),
  3349. (383, '2016-12-23 14:07:06', 'Ed_Slash (uid: 34) has invited Jayden_Trapz (uid: 181) to Black Disciples (id: 3).'),
  3350. (384, '2016-12-23 14:07:12', 'Ed_Slash (uid: 34) has set Jayden_Trapz''s (uid: 181) rank to Unspecified (2).'),
  3351. (385, '2016-12-23 14:17:56', 'Ed_Slash (uid: 34) withdraws $12075 from the gang stash.'),
  3352. (386, '2016-12-23 14:26:28', 'Blake_Amphibia (uid: 19) has invited Kevin_Amphibia (uid: 529) to Amphibia Corporation (id: 0).'),
  3353. (387, '2016-12-23 14:31:01', 'Ed_Slash (uid: 34) has invited Domi_Walker (uid: 49) to Black Disciples (id: 3).'),
  3354. (388, '2016-12-23 14:31:01', 'Ed_Slash (uid: 34) has invited Simon_Walker (uid: 46) to Black Disciples (id: 3).'),
  3355. (389, '2016-12-23 14:33:13', 'Walter_Cash (uid: 16) has invited Dolla_Street (uid: 404) to Black Disciples (id: 3).'),
  3356. (390, '2016-12-23 14:33:24', 'Walter_Cash (uid: 16) has set Dolla_Street''s (uid: 404) rank to Lil'' Homie (2).'),
  3357. (391, '2016-12-23 14:39:26', 'Domi_Walker (uid: 49) has quit Black Disciples (id: 3) has rank Bitches (0).'),
  3358. (392, '2016-12-23 14:39:40', 'Simon_Walker (uid: 46) has quit Black Disciples (id: 3) has rank Bitches (0).'),
  3359. (393, '2016-12-23 14:47:47', 'Simon_Gucci_Sosa (uid: 337) has invited Danny_Delino (uid: 263) to Black Disciples (id: 3).'),
  3360. (394, '2016-12-23 14:55:04', 'Jordan_Trapz (uid: 132) has quit Black Disciples (id: 3) has rank Triggerman (3).'),
  3361. (395, '2016-12-23 15:00:14', 'Wiz_Gucci_Sosa (uid: 36) has quit Grove Street Families (id: 2) has rank Outsider (0).'),
  3362. (396, '2016-12-23 15:00:31', 'Derek_Gucci_Sosa (uid: 17) has invited Wiz_Gucci_Sosa (uid: 36) to Black Disciples (id: 3).'),
  3363. (397, '2016-12-23 15:00:33', 'Derek_Gucci_Sosa (uid: 17) has set Wiz_Gucci_Sosa''s (uid: 36) rank to Gucci (5).'),
  3364. (398, '2016-12-23 15:11:43', 'razor_W_ramirez (uid: 266) has quit Amphibia Corporation (id: 0) has rank Recruit (0).'),
  3365. (399, '2016-12-23 15:11:53', 'Ed_Slash (uid: 34) has invited razor_W_ramirez (uid: 266) to Black Disciples (id: 3).'),
  3366. (400, '2016-12-23 15:11:59', 'Ed_Slash (uid: 34) has set razor_W_ramirez''s (uid: 266) rank to Lil'' Homie (2).'),
  3367. (401, '2016-12-23 15:17:01', 'Blake_Amphibia (uid: 19) has invited Alex_Johnson (uid: 280) to Amphibia Corporation (id: 0).'),
  3368. (402, '2016-12-23 15:27:42', 'Ed_Slash (uid: 34) has invited Nyu_Gucci_Sosa (uid: 129) to Black Disciples (id: 3).'),
  3369. (403, '2016-12-23 15:27:57', 'Ed_Slash (uid: 34) has set Nyu_Gucci_Sosa''s (uid: 129) rank to Gucci (5).'),
  3370. (404, '2016-12-23 15:49:45', 'Derek_Gucci_Sosa (uid: 17) has invited luke_x_chicano (uid: 535) to Black Disciples (id: 3).'),
  3371. (405, '2016-12-23 15:49:54', 'Ed_Slash (uid: 34) has invited Troy_Gold_Forbes (uid: 483) to Black Disciples (id: 3).'),
  3372. (406, '2016-12-23 16:23:20', 'Derek_Gucci_Sosa (uid: 17) has invited Chester_Cobra (uid: 565) to Black Disciples (id: 3).'),
  3373. (407, '2016-12-23 16:24:47', 'Ed_Slash (uid: 34) kicked Troy_Gold_Forbes (uid: 483) from Black Disciples (id: 3) as rank Busta (0).'),
  3374. (408, '2016-12-23 16:24:55', 'Ed_Slash (uid: 34) has invited Troy_Gold_Forbes (uid: 483) to Black Disciples (id: 3).'),
  3375. (409, '2016-12-23 16:25:03', 'Ed_Slash (uid: 34) has set Troy_Gold_Forbes''s (uid: 483) rank to Gucci (5).'),
  3376. (410, '2016-12-23 16:28:49', 'Ed_Slash (uid: 34) has set Troy_Gold_Forbes''s (uid: 483) rank to Lil'' Homie (2).'),
  3377. (411, '2016-12-23 16:39:53', 'Blake_Amphibia (uid: 19) has invited Julian_Trapz (uid: 556) to Amphibia Corporation (id: 0).'),
  3378. (412, '2016-12-23 16:48:26', 'Simon_Gucci_Sosa (uid: 337) kicked Jayden_Trapz (uid: 181) from Black Disciples (id: 3) as rank Lil'' Homie (2).'),
  3379. (413, '2016-12-23 16:50:27', 'Ed_Slash (uid: 34) has invited Bentley_Cash (uid: 563) to Black Disciples (id: 3).'),
  3380. (414, '2016-12-23 17:00:10', 'Walter_Cash (uid: 16) has set Bentley_Cash''s (uid: 563) rank to Lil'' Homie (2).'),
  3381. (415, '2016-12-23 17:03:03', 'Ed_Slash (uid: 34) kicked Walter_Cash (uid: 16) from Black Disciples (id: 3) as rank Big Gucci (6).'),
  3382. (416, '2016-12-23 17:03:34', 'Ed_Slash (uid: 34) has invited Walter_Cash (uid: 16) to Black Disciples (id: 3).'),
  3383. (417, '2016-12-23 17:03:37', 'Ed_Slash (uid: 34) has set Walter_Cash''s (uid: 16) rank to Big Gucci (6).'),
  3384. (418, '2016-12-23 17:17:23', 'Ed_Slash (uid: 34) has invited Wade_Dawson (uid: 532) to Black Disciples (id: 3).'),
  3385. (419, '2016-12-23 17:20:17', 'Ed_Slash (uid: 34) has invited Tyler_X_Cage (uid: 26) to Black Disciples (id: 3).');
  3386. INSERT INTO `log_gang` (`id`, `date`, `description`) VALUES
  3387. (420, '2016-12-23 17:20:30', 'Ed_Slash (uid: 34) has set Tyler_X_Cage''s (uid: 26) rank to Triggerman (3).'),
  3388. (421, '2016-12-23 17:27:12', 'Wade_Dawson (uid: 532) has quit Black Disciples (id: 3) has rank Busta (0).'),
  3389. (422, '2016-12-23 17:45:11', 'Gre_Hunter (uid: 39) has set Gre_Hunter''s (uid: 39) rank to Bandito (1).'),
  3390. (423, '2016-12-23 18:16:07', 'Ed_Slash (uid: 34) withdraws $16200 from the gang stash.');
  3391. -- --------------------------------------------------------
  3392. --
  3393. -- Table structure for table `log_give`
  3394. --
  3395. CREATE TABLE IF NOT EXISTS `log_give` (
  3396. `id` int(10) NOT NULL,
  3397. `date` datetime DEFAULT NULL,
  3398. `description` varchar(255) DEFAULT NULL
  3399. ) ENGINE=InnoDB AUTO_INCREMENT=864 DEFAULT CHARSET=latin1;
  3400. --
  3401. -- Dumping data for table `log_give`
  3402. --
  3403. INSERT INTO `log_give` (`id`, `date`, `description`) VALUES
  3404. (1, '2016-12-20 10:48:21', 'Test_McTest (uid: 4) gives their MP5 to Lui_Mendez (uid: 12)'),
  3405. (2, '2016-12-20 11:25:42', 'Jamal_Burrows (uid: 4) has sold their Desert Eagle to JEinstein (uid: 1) for $69.'),
  3406. (3, '2016-12-20 12:45:39', 'Tyrone_Street (uid: 59) (IP: 31.54.49.43) gives $100 to Tony_Street (uid: 22) (IP: 31.54.49.43)'),
  3407. (4, '2016-12-20 13:40:43', 'Lance (uid: 11) (IP: 188.230.248.136) gives $1000 to Pete_Swift (uid: 14) (IP: 89.201.189.192)'),
  3408. (5, '2016-12-20 14:57:14', 'Franklyn_Menace (uid: 10) (IP: 75.159.100.40) gives $5000 to Camron_Johnson (uid: 116) (IP: 103.57.168.233)'),
  3409. (6, '2016-12-20 15:20:12', 'Max_Mabbitt (uid: 7) (IP: 178.85.38.221) gives $300 to Gre_Hunter (uid: 39) (IP: 194.204.28.253)'),
  3410. (7, '2016-12-20 15:43:14', 'Kenny_Phixion (uid: 51) (IP: 80.89.72.236) gives $2000 to Richie_Legend (uid: 128) (IP: 77.100.232.121)'),
  3411. (8, '2016-12-20 15:57:38', 'Richie_Legend (uid: 128) (IP: 77.100.232.121) gives $1000 to Kenny_Phixion (uid: 51) (IP: 80.89.72.236)'),
  3412. (9, '2016-12-20 15:57:49', 'Richie_Legend (uid: 128) (IP: 77.100.232.121) gives $1000 to Kenny_Phixion (uid: 51) (IP: 80.89.72.236)'),
  3413. (10, '2016-12-20 16:03:46', 'Max_Mabbitt (uid: 7) (IP: 178.85.38.221) gives $1000 to Andergdon_Lanvins (uid: 94) (IP: 24.135.241.99)'),
  3414. (11, '2016-12-20 16:11:10', 'Justin_Wrzosek (uid: 123) (IP: 207.244.166.185) gives $250 to Zac_Wrzosek (uid: 91) (IP: 172.73.113.124)'),
  3415. (12, '2016-12-20 16:14:09', 'Lazlow_VRocks (uid: 5) (IP: 32.214.128.30) gives $1000 to Zac_Wrzosek (uid: 91) (IP: 172.73.113.124)'),
  3416. (13, '2016-12-20 16:17:48', 'Ed_Slash (uid: 34) (IP: 45.116.232.36) gives $1000 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3417. (14, '2016-12-20 16:19:21', 'Ed_Slash (uid: 34) (IP: 45.116.232.36) gives $1000 to Franklyn_Menace (uid: 10) (IP: 75.159.100.40)'),
  3418. (15, '2016-12-20 16:19:56', 'Joe_Myers (uid: 155) (IP: 105.158.137.252) gives $1000 to Lee_Bao (uid: 154) (IP: 109.237.36.237)'),
  3419. (16, '2016-12-20 16:20:52', 'Lee_Bao (uid: 154) (IP: 109.237.36.237) gives $1000 to Joe_Myers (uid: 155) (IP: 105.158.137.252)'),
  3420. (17, '2016-12-20 16:22:06', 'Franklyn_Menace (uid: 10) (IP: 75.159.100.40) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.36)'),
  3421. (18, '2016-12-20 16:45:45', 'James_Maple (uid: 141) (IP: 68.67.107.181) gives $1000 to Joga_Hernandez (uid: 77) (IP: 24.87.149.175)'),
  3422. (19, '2016-12-20 16:45:48', 'James_Maple (uid: 141) (IP: 68.67.107.181) gives $1000 to Joga_Hernandez (uid: 77) (IP: 24.87.149.175)'),
  3423. (20, '2016-12-20 16:52:58', 'Cynthia_Tucker (uid: 73) (IP: 84.25.253.214) gives $250 to Ali_Zebi (uid: 165) (IP: 82.217.150.245)'),
  3424. (21, '2016-12-20 17:06:35', 'pastor_lee (uid: 48) (IP: 197.87.49.206) gives $200 to manqobas_pearl (uid: 111) (IP: 197.87.49.206)'),
  3425. (22, '2016-12-20 17:17:40', 'Andergdon_Lanvins (uid: 94) has sold their 2000 materials to Lance_Lanvins (uid: 11) for $6000.'),
  3426. (23, '2016-12-20 17:18:38', 'Domi_Walker (uid: 49) (IP: 82.73.146.18) gives $200 to Simon_Walker (uid: 46) (IP: 178.135.88.83)'),
  3427. (24, '2016-12-20 17:47:43', 'Asykon_Amphibia (uid: 6) (IP: 217.208.122.63) gives $20 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  3428. (25, '2016-12-20 17:55:05', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3429. (26, '2016-12-20 17:55:22', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3430. (27, '2016-12-20 17:57:26', 'Asykon_Amphibia (uid: 6) (IP: 217.208.122.63) gives $700 to Blake_Amphibia (uid: 19) (IP: 84.192.107.89)'),
  3431. (28, '2016-12-20 17:59:08', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3432. (29, '2016-12-20 17:59:27', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3433. (30, '2016-12-20 17:59:50', 'Denzel_Freeman (uid: 43) (IP: 105.128.252.251) gives $1000 to Ibrahim_Mason (uid: 82) (IP: 45.242.58.23)'),
  3434. (31, '2016-12-20 18:00:51', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3435. (32, '2016-12-20 18:02:40', 'Denzel_Freeman (uid: 43) (IP: 105.128.252.251) gives $1000 to Andergdon_Lanvins (uid: 94) (IP: 24.135.241.99)'),
  3436. (33, '2016-12-20 18:02:55', 'Andergdon_Lanvins (uid: 94) (IP: 24.135.241.99) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3437. (34, '2016-12-20 18:03:43', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3438. (35, '2016-12-20 18:04:28', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3439. (36, '2016-12-20 18:04:37', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3440. (37, '2016-12-20 18:04:50', 'Denzel_Freeman (uid: 43) (IP: 105.128.252.251) gives $1000 to Ibrahim_Mason (uid: 82) (IP: 45.242.58.23)'),
  3441. (38, '2016-12-20 18:05:06', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3442. (39, '2016-12-20 18:05:15', 'Denzel_Freeman (uid: 43) (IP: 105.128.252.251) gives $1000 to Ibrahim_Mason (uid: 82) (IP: 45.242.58.23)'),
  3443. (40, '2016-12-20 18:05:24', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3444. (41, '2016-12-20 18:05:34', 'Denzel_Freeman (uid: 43) (IP: 105.128.252.251) gives $1000 to Ibrahim_Mason (uid: 82) (IP: 45.242.58.23)'),
  3445. (42, '2016-12-20 18:05:41', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3446. (43, '2016-12-20 18:05:46', 'Denzel_Freeman (uid: 43) (IP: 105.128.252.251) gives $1000 to Ibrahim_Mason (uid: 82) (IP: 45.242.58.23)'),
  3447. (44, '2016-12-20 18:05:53', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3448. (45, '2016-12-20 18:05:58', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $260 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3449. (46, '2016-12-20 18:06:38', 'Denzel_Freeman (uid: 43) (IP: 105.128.252.251) gives $5000 to Ibrahim_Mason (uid: 82) (IP: 45.242.58.23)'),
  3450. (47, '2016-12-20 18:06:47', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $5000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3451. (48, '2016-12-20 18:06:56', 'Denzel_Freeman (uid: 43) (IP: 105.128.252.251) gives $5000 to Ibrahim_Mason (uid: 82) (IP: 45.242.58.23)'),
  3452. (49, '2016-12-20 18:09:57', 'Ibrahim_Mason (uid: 82) (IP: 45.242.58.23) gives $1000 to Denzel_Freeman (uid: 43) (IP: 105.128.252.251)'),
  3453. (50, '2016-12-20 19:10:36', 'Michael_Render (uid: 113) (IP: 2.218.124.219) gives $1 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3454. (51, '2016-12-20 19:45:32', 'Joga_Hernandez (uid: 77) (IP: 24.87.149.175) gives $2000 to Tay_Forbes (uid: 15) (IP: 86.163.82.51)'),
  3455. (52, '2016-12-20 20:18:04', 'Jordan_Trapz (uid: 132) (IP: 90.216.196.220) gives $100000 to Larko_Trapz (uid: 159) (IP: 86.135.26.10)'),
  3456. (53, '2016-12-20 20:27:59', 'Tyler_Huntley (uid: 2) (IP: 68.150.15.158) gives $50 to Kalgon_Grande (uid: 153) (IP: 184.91.56.190)'),
  3457. (54, '2016-12-20 20:45:01', 'Michael_Render (uid: 113) (IP: 2.218.124.219) gives $5000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3458. (55, '2016-12-20 21:03:11', 'Tyler_Huntley (uid: 2) (IP: 68.150.15.158) gives $400 to Dann_Lazlow (uid: 8) (IP: 86.176.153.116)'),
  3459. (56, '2016-12-20 21:03:20', 'Tyler_Huntley (uid: 2) (IP: 68.150.15.158) gives $400 to Dann_Lazlow (uid: 8) (IP: 86.176.153.116)'),
  3460. (57, '2016-12-20 21:17:04', 'Adam_Menace (uid: 192) (IP: 73.46.140.175) gives $800 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  3461. (58, '2016-12-20 21:22:22', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $1000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  3462. (59, '2016-12-20 21:28:04', 'Tommy_Gates (uid: 81) has sold their 1000 materials to Adam_Menace (uid: 192) for $1600.'),
  3463. (60, '2016-12-20 21:38:53', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3464. (61, '2016-12-20 21:39:02', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3465. (62, '2016-12-20 21:39:09', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3466. (63, '2016-12-20 21:39:13', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3467. (64, '2016-12-20 21:39:16', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3468. (65, '2016-12-20 21:39:19', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3469. (66, '2016-12-20 21:39:22', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3470. (67, '2016-12-20 21:39:25', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3471. (68, '2016-12-20 21:52:36', 'Asykon_Amphibia (uid: 6) (IP: 217.208.122.63) gives $2000 to David_Amphibia (uid: 204) (IP: 222.124.85.102)'),
  3472. (69, '2016-12-20 22:09:10', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $1000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  3473. (70, '2016-12-20 22:22:00', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3474. (71, '2016-12-20 22:22:03', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3475. (72, '2016-12-20 22:22:07', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3476. (73, '2016-12-20 22:22:11', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3477. (74, '2016-12-20 22:22:15', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3478. (75, '2016-12-20 22:22:18', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3479. (76, '2016-12-20 22:22:22', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3480. (77, '2016-12-20 22:22:25', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3481. (78, '2016-12-20 22:22:28', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3482. (79, '2016-12-20 22:22:32', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3483. (80, '2016-12-20 22:22:35', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3484. (81, '2016-12-20 22:22:38', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3485. (82, '2016-12-20 22:22:46', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3486. (83, '2016-12-20 22:22:50', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3487. (84, '2016-12-20 22:22:53', 'Jay_Caunter (uid: 211) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3488. (85, '2016-12-20 22:29:21', 'Luffy_Gomu (uid: 212) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3489. (86, '2016-12-20 22:29:25', 'Luffy_Gomu (uid: 212) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3490. (87, '2016-12-20 22:29:31', 'Luffy_Gomu (uid: 212) (IP: 86.152.81.156) gives $1000 to Shankz_Street (uid: 62) (IP: 86.152.81.156)'),
  3491. (88, '2016-12-20 23:01:51', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Dick_Black (uid: 185) (IP: 76.68.221.82)'),
  3492. (89, '2016-12-20 23:01:54', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Dick_Black (uid: 185) (IP: 76.68.221.82)'),
  3493. (90, '2016-12-20 23:01:57', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Dick_Black (uid: 185) (IP: 76.68.221.82)'),
  3494. (91, '2016-12-21 00:31:01', 'Jozshua_fox (uid: 236) (IP: 180.251.46.87) gives $1000 to Matthew_D_Fox (uid: 45) (IP: 139.194.212.141)'),
  3495. (92, '2016-12-21 00:52:46', 'Matthew_D_Fox (uid: 45) (IP: 139.194.212.141) gives $1 to Leonardo_Fox (uid: 239) (IP: 36.83.203.162)'),
  3496. (93, '2016-12-21 00:52:46', 'Aero_D_Fox (uid: 220) (IP: 114.125.170.178) gives $100 to Leonardo_Fox (uid: 239) (IP: 36.83.203.162)'),
  3497. (94, '2016-12-21 00:53:09', 'oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4) gives $1000 to Tony_Freeman (uid: 24) (IP: 5.102.195.19)'),
  3498. (95, '2016-12-21 00:53:13', 'oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4) gives $1000 to Tony_Freeman (uid: 24) (IP: 5.102.195.19)'),
  3499. (96, '2016-12-21 00:53:16', 'oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4) gives $1000 to Tony_Freeman (uid: 24) (IP: 5.102.195.19)'),
  3500. (97, '2016-12-21 00:53:17', 'Tony_Freeman (uid: 24) (IP: 5.102.195.19) gives $2000 to oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4)'),
  3501. (98, '2016-12-21 00:53:19', 'oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4) gives $1000 to Tony_Freeman (uid: 24) (IP: 5.102.195.19)'),
  3502. (99, '2016-12-21 00:53:20', 'Tony_Freeman (uid: 24) (IP: 5.102.195.19) gives $1000 to oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4)'),
  3503. (100, '2016-12-21 00:53:22', 'oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4) gives $1000 to Tony_Freeman (uid: 24) (IP: 5.102.195.19)'),
  3504. (101, '2016-12-21 00:53:33', 'oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4) gives $1000 to Tony_Freeman (uid: 24) (IP: 5.102.195.19)'),
  3505. (102, '2016-12-21 00:53:38', 'oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4) gives $1000 to Tony_Freeman (uid: 24) (IP: 5.102.195.19)'),
  3506. (103, '2016-12-21 00:53:42', 'Tony_Freeman (uid: 24) (IP: 5.102.195.19) gives $1000 to oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4)'),
  3507. (104, '2016-12-21 00:53:47', 'Tony_Freeman (uid: 24) (IP: 5.102.195.19) gives $1000 to oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4)'),
  3508. (105, '2016-12-21 00:53:50', 'oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4) gives $1000 to Tony_Freeman (uid: 24) (IP: 5.102.195.19)'),
  3509. (106, '2016-12-21 00:53:53', 'oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4) gives $1000 to Tony_Freeman (uid: 24) (IP: 5.102.195.19)'),
  3510. (107, '2016-12-21 00:54:09', 'Tony_Freeman (uid: 24) (IP: 5.102.195.19) gives $1000 to oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4)'),
  3511. (108, '2016-12-21 01:05:55', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $10000 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3512. (109, '2016-12-21 01:07:46', 'oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4) gives $400 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  3513. (110, '2016-12-21 01:07:54', 'oscar_G_Ramirez (uid: 122) (IP: 185.32.179.4) gives $400 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  3514. (111, '2016-12-21 01:25:05', 'Salah_Amphibia (uid: 44) (IP: 197.27.82.205) gives $10000 to David_Amphibia (uid: 204) (IP: 222.124.85.102)'),
  3515. (112, '2016-12-21 01:25:09', 'Salah_Amphibia (uid: 44) (IP: 197.27.82.205) gives $10000 to David_Amphibia (uid: 204) (IP: 222.124.85.102)'),
  3516. (113, '2016-12-21 01:25:13', 'Salah_Amphibia (uid: 44) (IP: 197.27.82.205) gives $10000 to David_Amphibia (uid: 204) (IP: 222.124.85.102)'),
  3517. (114, '2016-12-21 01:25:16', 'Salah_Amphibia (uid: 44) (IP: 197.27.82.205) gives $10000 to David_Amphibia (uid: 204) (IP: 222.124.85.102)'),
  3518. (115, '2016-12-21 01:25:19', 'Salah_Amphibia (uid: 44) (IP: 197.27.82.205) gives $10000 to David_Amphibia (uid: 204) (IP: 222.124.85.102)'),
  3519. (116, '2016-12-21 01:25:23', 'Salah_Amphibia (uid: 44) (IP: 197.27.82.205) gives $10000 to David_Amphibia (uid: 204) (IP: 222.124.85.102)'),
  3520. (117, '2016-12-21 01:25:30', 'Salah_Amphibia (uid: 44) (IP: 197.27.82.205) gives $9000 to David_Amphibia (uid: 204) (IP: 222.124.85.102)'),
  3521. (118, '2016-12-21 01:53:37', 'Thude_Hernandez (uid: 210) (IP: 76.175.112.162) gives $50000 to David_Amphibia (uid: 204) (IP: 222.124.85.102)'),
  3522. (119, '2016-12-21 02:02:42', 'Hudson_Maple (uid: 241) (IP: 68.67.107.181) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3523. (120, '2016-12-21 02:02:45', 'Hudson_Maple (uid: 241) (IP: 68.67.107.181) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3524. (121, '2016-12-21 02:02:49', 'Hudson_Maple (uid: 241) (IP: 68.67.107.181) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3525. (122, '2016-12-21 02:02:53', 'Hudson_Maple (uid: 241) (IP: 68.67.107.181) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3526. (123, '2016-12-21 02:02:54', 'Michael_Maple (uid: 217) (IP: 152.7.73.183) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3527. (124, '2016-12-21 02:02:57', 'Hudson_Maple (uid: 241) (IP: 68.67.107.181) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3528. (125, '2016-12-21 02:02:58', 'Michael_Maple (uid: 217) (IP: 152.7.73.183) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3529. (126, '2016-12-21 02:03:02', 'Michael_Maple (uid: 217) (IP: 152.7.73.183) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3530. (127, '2016-12-21 02:03:03', 'Hudson_Maple (uid: 241) (IP: 68.67.107.181) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3531. (128, '2016-12-21 02:03:07', 'Michael_Maple (uid: 217) (IP: 152.7.73.183) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3532. (129, '2016-12-21 02:03:15', 'Michael_Maple (uid: 217) (IP: 152.7.73.183) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3533. (130, '2016-12-21 02:06:06', 'Don_Ryders (uid: 240) (IP: 109.64.151.152) gives $1000 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3534. (131, '2016-12-21 02:06:12', 'Don_Ryders (uid: 240) (IP: 109.64.151.152) gives $1000 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3535. (132, '2016-12-21 02:06:19', 'Don_Ryders (uid: 240) (IP: 109.64.151.152) gives $1000 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3536. (133, '2016-12-21 02:06:24', 'Don_Ryders (uid: 240) (IP: 109.64.151.152) gives $1000 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3537. (134, '2016-12-21 02:06:31', 'Don_Ryders (uid: 240) (IP: 109.64.151.152) gives $500 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3538. (135, '2016-12-21 02:12:39', 'Michael_Maple (uid: 217) (IP: 152.7.73.183) gives $1000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  3539. (136, '2016-12-21 02:19:11', 'Michael Maple (uid: 217) (IP: 152.7.73.183) transferred $54632 to James Maple (uid: 141) (IP: 68.67.107.181)'),
  3540. (137, '2016-12-21 03:37:26', 'Darrell_Ford (uid: 21) (IP: 70.31.48.16) gives $1000 to Luke_Yonkou (uid: 233) (IP: 202.67.43.15)'),
  3541. (138, '2016-12-21 04:01:19', 'Michael Maple (uid: 217) (IP: 152.7.73.183) transferred $61000 to James Maple (uid: 141) (IP: 68.67.107.181)'),
  3542. (139, '2016-12-21 04:04:26', 'Shane_Malakas (uid: 248) gives 750 materials to Lawrence_Vincre (uid: 256)'),
  3543. (140, '2016-12-21 04:09:21', 'Edward_Vincre (uid: 249) (IP: 180.190.104.199) gives $1000 to Shane_Malakas (uid: 248) (IP: 180.190.104.199)'),
  3544. (141, '2016-12-21 04:18:01', 'Edward_Vincre (uid: 249) (IP: 180.190.104.199) gives $1000 to Shane_Malakas (uid: 248) (IP: 180.190.104.199)'),
  3545. (142, '2016-12-21 04:19:51', 'Fox_Creed (uid: 268) (IP: 122.54.10.74) gives $1000 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3546. (143, '2016-12-21 04:19:55', 'Fox_Creed (uid: 268) (IP: 122.54.10.74) gives $1000 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3547. (144, '2016-12-21 04:19:58', 'Fox_Creed (uid: 268) (IP: 122.54.10.74) gives $1000 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3548. (145, '2016-12-21 04:20:02', 'Fox_Creed (uid: 268) (IP: 122.54.10.74) gives $1000 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3549. (146, '2016-12-21 04:20:05', 'Fox_Creed (uid: 268) (IP: 122.54.10.74) gives $1000 to Shawn_Menace (uid: 137) (IP: 70.75.128.245)'),
  3550. (147, '2016-12-21 04:25:04', 'Shane_Malakas (uid: 248) gives 3000 materials to Lawrence_Vincre (uid: 256)'),
  3551. (148, '2016-12-21 04:25:23', 'Lawrence_Vincre (uid: 256) (IP: 180.190.104.199) gives $1000 to Shane_Malakas (uid: 248) (IP: 180.190.104.199)'),
  3552. (149, '2016-12-21 04:25:31', 'Lawrence_Vincre (uid: 256) (IP: 180.190.104.199) gives $1000 to Shane_Malakas (uid: 248) (IP: 180.190.104.199)'),
  3553. (150, '2016-12-21 04:48:07', 'Edward_Vincre (uid: 249) (IP: 180.190.104.199) gives $1000 to Shane_Malakas (uid: 248) (IP: 180.190.104.199)'),
  3554. (151, '2016-12-21 04:57:29', 'Clarence_Breyer (uid: 277) (IP: 5.107.164.116) gives $1000 to Max_S_Schneider (uid: 294) (IP: 180.191.94.39)'),
  3555. (152, '2016-12-21 04:57:33', 'Clarence_Breyer (uid: 277) (IP: 5.107.164.116) gives $1000 to Max_S_Schneider (uid: 294) (IP: 180.191.94.39)'),
  3556. (153, '2016-12-21 05:04:49', 'Diego_Honda (uid: 254) gives their Rifle to Pavlos_Honda (uid: 258)'),
  3557. (154, '2016-12-21 05:06:06', 'Andergdon_Lanvins (uid: 94) (IP: 24.135.241.99) gives $1000 to Vincent_Valentino (uid: 163) (IP: 120.29.87.145)'),
  3558. (155, '2016-12-21 05:07:10', 'Amado_Honda (uid: 269) gives their Colt 45 to Xavi_Hawk (uid: 253)'),
  3559. (156, '2016-12-21 05:09:21', 'Cletus_Amphibia (uid: 110) (IP: 81.234.68.95) gives $1000 to Shane_Malakas (uid: 248) (IP: 180.190.104.199)'),
  3560. (157, '2016-12-21 05:28:18', 'Denzel_Freeman (uid: 43) (IP: 197.131.145.253) gives $1000 to Gre_Hunter (uid: 39) (IP: 194.204.28.253)'),
  3561. (158, '2016-12-21 05:28:45', 'Gre_Hunter (uid: 39) (IP: 194.204.28.253) gives $1000 to Denzel_Freeman (uid: 43) (IP: 197.131.145.253)'),
  3562. (159, '2016-12-21 05:33:22', 'Asyton_Vincre (uid: 293) (IP: 180.190.104.199) gives $1 to Geoffrey_Entwistle (uid: 308) (IP: 180.190.104.199)'),
  3563. (160, '2016-12-21 05:33:40', 'Leon_Clarin (uid: 298) (IP: 39.50.210.134) gives $768 to Clarence_Breyer (uid: 277) (IP: 5.107.164.116)'),
  3564. (161, '2016-12-21 05:38:45', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.199) gives $10000 to Bench_Freeman (uid: 64) (IP: 180.190.104.199)'),
  3565. (162, '2016-12-21 05:38:48', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.199) gives $10000 to Bench_Freeman (uid: 64) (IP: 180.190.104.199)'),
  3566. (163, '2016-12-21 05:38:51', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.199) gives $10000 to Bench_Freeman (uid: 64) (IP: 180.190.104.199)'),
  3567. (164, '2016-12-21 05:38:55', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.199) gives $10000 to Bench_Freeman (uid: 64) (IP: 180.190.104.199)'),
  3568. (165, '2016-12-21 05:39:01', 'Edward_Vincre (uid: 249) (IP: 180.190.104.199) gives $8 to Bench_Freeman (uid: 64) (IP: 180.190.104.199)'),
  3569. (166, '2016-12-21 05:41:07', 'Denzel_Freeman (uid: 43) (IP: 197.131.145.253) gives $4000 to Gre_Hunter (uid: 39) (IP: 194.204.28.253)'),
  3570. (167, '2016-12-21 05:42:00', 'Bench_Freeman (uid: 64) (IP: 180.190.104.199) gives $10000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.199)'),
  3571. (168, '2016-12-21 05:42:04', 'Bench_Freeman (uid: 64) (IP: 180.190.104.199) gives $10000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.199)'),
  3572. (169, '2016-12-21 05:42:07', 'Bench_Freeman (uid: 64) (IP: 180.190.104.199) gives $10000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.199)'),
  3573. (170, '2016-12-21 05:42:11', 'Bench_Freeman (uid: 64) (IP: 180.190.104.199) gives $10000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.199)'),
  3574. (171, '2016-12-21 05:42:16', 'Bench_Freeman (uid: 64) (IP: 180.190.104.199) gives $10000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.199)'),
  3575. (172, '2016-12-21 05:42:19', 'Bench_Freeman (uid: 64) (IP: 180.190.104.199) gives $10000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.199)'),
  3576. (173, '2016-12-21 05:42:24', 'Bench_Freeman (uid: 64) (IP: 180.190.104.199) gives $20000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.199)'),
  3577. (174, '2016-12-21 05:42:28', 'Bench_Freeman (uid: 64) (IP: 180.190.104.199) gives $20000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.199)'),
  3578. (175, '2016-12-21 05:42:34', 'Bench_Freeman (uid: 64) (IP: 180.190.104.199) gives $50000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.199)'),
  3579. (176, '2016-12-21 05:42:36', 'Denzel_Freeman (uid: 43) (IP: 197.131.145.253) gives $1000 to Gre_Hunter (uid: 39) (IP: 194.204.28.253)'),
  3580. (177, '2016-12-21 05:42:39', 'christopher_leaf (uid: 57) (IP: 197.77.190.0) gives $10000 to Curtis_Leaf (uid: 32) (IP: 197.77.166.199)'),
  3581. (178, '2016-12-21 05:42:44', 'christopher_leaf (uid: 57) (IP: 197.77.190.0) gives $100000 to Curtis_Leaf (uid: 32) (IP: 197.77.166.199)'),
  3582. (179, '2016-12-21 05:42:50', 'christopher_leaf (uid: 57) (IP: 197.77.190.0) gives $40000 to Curtis_Leaf (uid: 32) (IP: 197.77.166.199)'),
  3583. (180, '2016-12-21 05:47:36', 'Curtis_Leaf (uid: 32) (IP: 197.77.166.199) gives $10000 to christopher_leaf (uid: 57) (IP: 197.77.190.0)'),
  3584. (181, '2016-12-21 05:58:16', 'Derek_Gucci_sosa (uid: 17) (IP: 79.180.61.34) gives $10000 to Ed_Slash (uid: 34) (IP: 45.116.232.3)'),
  3585. (182, '2016-12-21 05:59:06', 'Ed_Slash (uid: 34) (IP: 45.116.232.3) gives $9000 to Derek_Gucci_sosa (uid: 17) (IP: 79.180.61.34)'),
  3586. (183, '2016-12-21 06:10:46', 'Leon_Clarin (uid: 298) (IP: 39.50.210.134) gives $400 to Clarence_Breyer (uid: 277) (IP: 5.107.164.116)'),
  3587. (184, '2016-12-21 06:16:58', 'El_Chapo (uid: 157) (IP: 108.192.121.241) gives $10000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3588. (185, '2016-12-21 06:26:50', 'Ed_Slash (uid: 34) (IP: 45.116.232.3) gives $1 to Derek_Gucci_sosa (uid: 17) (IP: 79.180.61.34)'),
  3589. (186, '2016-12-21 06:26:58', 'Jamie_G_Shock (uid: 319) (IP: 207.232.37.219) gives $1000 to Jonathan_Fabbrie (uid: 33) (IP: 86.134.4.9)'),
  3590. (187, '2016-12-21 06:27:04', 'Jamie_G_Shock (uid: 319) (IP: 207.232.37.219) gives $1000 to Jonathan_Fabbrie (uid: 33) (IP: 86.134.4.9)'),
  3591. (188, '2016-12-21 06:27:08', 'Clarence_Breyer (uid: 277) (IP: 5.107.164.116) gives $500 to Aviana_Starr (uid: 303) (IP: 112.202.24.58)'),
  3592. (189, '2016-12-21 06:28:41', 'Clarence_Breyer (uid: 277) (IP: 5.107.164.116) gives $500 to Leonardo_Fox (uid: 239) (IP: 36.83.203.162)'),
  3593. (190, '2016-12-21 06:35:58', 'Lenzel_Vincre (uid: 311) (IP: 180.190.104.199) gives $600 to Asyton_Vincre (uid: 293) (IP: 180.190.104.199)'),
  3594. (191, '2016-12-21 06:48:45', 'Clarence_Breyer (uid: 277) (IP: 5.107.164.116) gives $500 to Devanshul_Sharma (uid: 280) (IP: 123.201.183.181)'),
  3595. (192, '2016-12-21 06:52:34', 'Max_Mabbitt (uid: 7) gives 200 materials to Ryan_Sindrit (uid: 140)'),
  3596. (193, '2016-12-21 06:52:51', 'Ryan_Sindrit (uid: 140) gives 200 materials to Max_Mabbitt (uid: 7)'),
  3597. (194, '2016-12-21 06:54:00', 'Amado_Honda (uid: 269) (IP: 180.191.91.18) gives $2400 to Diego_Honda (uid: 254) (IP: 180.191.91.18)'),
  3598. (195, '2016-12-21 07:02:35', 'Max_Mabbitt (uid: 7) (IP: 178.85.38.221) gives $1000 to Vincent_Valentino (uid: 163) (IP: 120.29.87.145)'),
  3599. (196, '2016-12-21 07:02:37', 'Max_Mabbitt (uid: 7) gives 200 materials to Ryan_Sindrit (uid: 140)'),
  3600. (197, '2016-12-21 07:04:32', 'Ryan_Sindrit (uid: 140) gives 200 materials to Max_Mabbitt (uid: 7)'),
  3601. (198, '2016-12-21 07:08:49', 'James Maple (uid: 141) (IP: 68.67.107.181) transferred $158000 to Michael Maple (uid: 217) (IP: 152.7.73.183)'),
  3602. (199, '2016-12-21 07:10:01', 'Amado_Honda (uid: 269) (IP: 180.191.91.18) gives $2400 to Diego_Honda (uid: 254) (IP: 180.191.91.18)'),
  3603. (200, '2016-12-21 07:11:30', 'Derek_Gucci_sosa (uid: 17) gives their Desert Eagle to William_J_Thompson (uid: 221)'),
  3604. (201, '2016-12-21 07:11:34', 'William_J_Thompson (uid: 221) (IP: 112.201.195.187) gives $7000 to Derek_Gucci_sosa (uid: 17) (IP: 79.180.61.34)'),
  3605. (202, '2016-12-21 07:40:28', 'Raven_Street (uid: 69) (IP: 119.73.102.52) gives $1000 to Orlando_Amphibia (uid: 100) (IP: 119.73.102.52)'),
  3606. (203, '2016-12-21 07:40:31', 'Raven_Street (uid: 69) (IP: 119.73.102.52) gives $1000 to Orlando_Amphibia (uid: 100) (IP: 119.73.102.52)'),
  3607. (204, '2016-12-21 07:40:34', 'Raven_Street (uid: 69) (IP: 119.73.102.52) gives $1000 to Orlando_Amphibia (uid: 100) (IP: 119.73.102.52)'),
  3608. (205, '2016-12-21 07:50:47', 'Raven_Street (uid: 69) (IP: 119.73.102.52) gives $1000 to David_Amphibia (uid: 204) (IP: 222.124.85.102)'),
  3609. (206, '2016-12-21 07:52:46', 'Niko_Santo (uid: 142) (IP: 94.65.122.238) gives $6000 to Ed_Slash (uid: 34) (IP: 45.116.232.3)'),
  3610. (207, '2016-12-21 08:25:18', 'Elon Maple (uid: 282) (IP: 71.172.28.221) transferred $100000 to Michael Maple (uid: 217) (IP: 152.7.73.183)'),
  3611. (208, '2016-12-21 08:31:44', 'Joy_Vincre (uid: 320) (IP: 180.190.104.199) gives $1000 to Chase_Ainsworth (uid: 270) (IP: 180.190.104.199)'),
  3612. (209, '2016-12-21 08:31:57', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.199) gives $1000 to Joy_Vincre (uid: 320) (IP: 180.190.104.199)'),
  3613. (210, '2016-12-21 08:37:19', 'Raven_Street (uid: 69) (IP: 119.73.102.52) gives $1000 to Asykon_Amphibia (uid: 6) (IP: 217.208.122.63)'),
  3614. (211, '2016-12-21 08:38:42', 'Andrea_Brianna (uid: 56) (IP: 180.190.104.199) gives $39193 to Chase_Ainsworth (uid: 270) (IP: 180.190.104.199)'),
  3615. (212, '2016-12-21 08:41:02', 'Ed_Slash (uid: 34) (IP: 45.116.233.11) gives $1 to Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34)'),
  3616. (213, '2016-12-21 08:57:25', 'Ed_Slash (uid: 34) (IP: 45.116.233.11) gives $1 to Simon_Gucci_Sosa (uid: 337) (IP: 95.178.192.181)'),
  3617. (214, '2016-12-21 08:57:32', 'Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34) gives $1000 to Simon_Gucci_Sosa (uid: 337) (IP: 95.178.192.181)'),
  3618. (215, '2016-12-21 09:20:28', 'Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34) gives $2000 to Aero_D_Fox (uid: 220) (IP: 114.125.170.178)'),
  3619. (216, '2016-12-21 09:26:54', 'Daniel_Alvarez (uid: 314) (IP: 180.191.94.141) gives $5000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3620. (217, '2016-12-21 09:32:24', 'Derek_Gucci_Sosa (uid: 17) gives their Desert Eagle to William_J_Thompson (uid: 221)'),
  3621. (218, '2016-12-21 09:32:31', 'William_J_Thompson (uid: 221) (IP: 112.201.195.187) gives $7000 to Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34)'),
  3622. (219, '2016-12-21 09:35:23', 'Michael Maple (uid: 217) (IP: 152.7.73.183) transferred $75813 to Elon Maple (uid: 282) (IP: 71.172.28.221)'),
  3623. (220, '2016-12-21 09:39:04', 'Tyrone_Street (uid: 59) (IP: 31.54.49.43) gives $5000 to Michael_Render (uid: 113) (IP: 2.218.124.219)'),
  3624. (221, '2016-12-21 10:00:51', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3625. (222, '2016-12-21 10:01:08', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3626. (223, '2016-12-21 10:01:23', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3627. (224, '2016-12-21 10:01:46', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3628. (225, '2016-12-21 10:01:52', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3629. (226, '2016-12-21 10:02:20', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3630. (227, '2016-12-21 10:02:43', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3631. (228, '2016-12-21 10:03:06', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3632. (229, '2016-12-21 10:03:15', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3633. (230, '2016-12-21 10:03:18', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3634. (231, '2016-12-21 10:03:21', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3635. (232, '2016-12-21 10:03:24', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3636. (233, '2016-12-21 10:03:28', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3637. (234, '2016-12-21 10:03:32', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3638. (235, '2016-12-21 10:03:41', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3639. (236, '2016-12-21 10:03:55', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.233.11)'),
  3640. (237, '2016-12-21 10:13:27', 'Tony_Street (uid: 22) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3641. (238, '2016-12-21 10:13:31', 'Tony_Street (uid: 22) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3642. (239, '2016-12-21 10:13:35', 'Tony_Street (uid: 22) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3643. (240, '2016-12-21 10:13:40', 'Tony_Street (uid: 22) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3644. (241, '2016-12-21 10:13:46', 'Tony_Street (uid: 22) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3645. (242, '2016-12-21 10:13:51', 'Tony_Street (uid: 22) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3646. (243, '2016-12-21 10:13:57', 'Tony_Street (uid: 22) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3647. (244, '2016-12-21 10:14:02', 'Tony_Street (uid: 22) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3648. (245, '2016-12-21 10:16:37', 'Joey_Mercer (uid: 297) has sold their 1400 materials to Simon_Gucci_Sosa (uid: 337) for $2100.'),
  3649. (246, '2016-12-21 10:35:28', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3650. (247, '2016-12-21 10:35:31', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3651. (248, '2016-12-21 10:35:34', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3652. (249, '2016-12-21 10:35:37', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3653. (250, '2016-12-21 10:35:40', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3654. (251, '2016-12-21 10:35:43', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3655. (252, '2016-12-21 10:35:47', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3656. (253, '2016-12-21 10:35:50', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3657. (254, '2016-12-21 10:35:53', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3658. (255, '2016-12-21 10:35:57', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3659. (256, '2016-12-21 10:36:00', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3660. (257, '2016-12-21 10:36:05', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3661. (258, '2016-12-21 10:36:07', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3662. (259, '2016-12-21 10:36:10', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3663. (260, '2016-12-21 10:36:14', 'Chloe_Teaser (uid: 356) (IP: 31.54.49.43) gives $1000 to Tyrone_Street (uid: 59) (IP: 31.54.49.43)'),
  3664. (261, '2016-12-21 10:36:59', 'Skusta_Honda (uid: 278) (IP: 180.191.91.18) gives $1 to Ben_Barrage (uid: 355) (IP: 78.84.139.197)'),
  3665. (262, '2016-12-21 10:48:52', 'Ed_Slash (uid: 34) (IP: 45.116.233.11) gives $10000 to Walter_Cash (uid: 16) (IP: 213.238.251.112)'),
  3666. (263, '2016-12-21 10:48:55', 'Ed_Slash (uid: 34) (IP: 45.116.233.11) gives $10000 to Walter_Cash (uid: 16) (IP: 213.238.251.112)'),
  3667. (264, '2016-12-21 10:48:59', 'Ed_Slash (uid: 34) (IP: 45.116.233.11) gives $10000 to Walter_Cash (uid: 16) (IP: 213.238.251.112)'),
  3668. (265, '2016-12-21 10:49:02', 'Ed_Slash (uid: 34) (IP: 45.116.233.11) gives $20000 to Walter_Cash (uid: 16) (IP: 213.238.251.112)'),
  3669. (266, '2016-12-21 10:49:22', 'Ed_Slash (uid: 34) (IP: 45.116.233.11) gives $50000 to Walter_Cash (uid: 16) (IP: 213.238.251.112)'),
  3670. (267, '2016-12-21 10:55:34', 'Michael_Render (uid: 113) (IP: 2.218.124.219) gives $260 to Michael_Maple (uid: 217) (IP: 152.7.73.183)'),
  3671. (268, '2016-12-21 10:57:44', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Emilio_Putik (uid: 357) (IP: 49.151.158.167)'),
  3672. (269, '2016-12-21 10:57:46', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $1000 to Emilio_Putik (uid: 357) (IP: 49.151.158.167)'),
  3673. (270, '2016-12-21 10:58:39', 'Andrei_Dillinger (uid: 331) (IP: 49.151.158.167) gives $700 to Emilio_Putik (uid: 357) (IP: 49.151.158.167)'),
  3674. (271, '2016-12-21 11:13:22', 'Wiz_Gucci_Sosa (uid: 36) (IP: 217.73.139.19) gives $1000 to Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34)'),
  3675. (272, '2016-12-21 11:13:42', 'Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34) gives $1000 to Jason_Gucci_Sosa (uid: 23) (IP: 79.106.209.148)'),
  3676. (273, '2016-12-21 11:29:35', 'Aero_D_Fox (uid: 220) (IP: 114.125.170.178) gives $10000 to Matthew_D_Fox (uid: 45) (IP: 139.194.212.141)'),
  3677. (274, '2016-12-21 11:32:35', 'christopher_leaf (uid: 57) (IP: 197.77.203.54) gives $1 to Pastor_lee (uid: 48) (IP: 197.87.49.206)'),
  3678. (275, '2016-12-21 11:32:58', 'christopher_leaf (uid: 57) (IP: 197.77.203.54) gives $1 to Pastor_lee (uid: 48) (IP: 197.87.49.206)'),
  3679. (276, '2016-12-21 11:33:54', 'christopher_leaf (uid: 57) (IP: 197.77.203.54) gives $1 to Thude_Hernandez (uid: 210) (IP: 76.175.112.162)'),
  3680. (277, '2016-12-21 11:52:53', 'Andrea_Brianna (uid: 56) (IP: 180.190.104.199) gives $50000 to Bench_Freeman (uid: 64) (IP: 180.190.104.199)'),
  3681. (278, '2016-12-21 12:05:14', 'Michael Maple (uid: 217) (IP: 152.7.73.183) transferred $109000 to Elon Maple (uid: 282) (IP: 71.172.28.221)'),
  3682. (279, '2016-12-21 12:11:49', 'Dominic_Frost (uid: 363) (IP: 73.119.238.51) gives $1 to Kimberly_Banks (uid: 368) (IP: 5.22.134.69)'),
  3683. (280, '2016-12-21 12:28:54', 'Lance_Lanvins (uid: 11) gives 2000 materials to Ed_Slash (uid: 34)'),
  3684. (281, '2016-12-21 12:29:50', 'Lance_Lanvins (uid: 11) gives 100 materials to Ed_Slash (uid: 34)'),
  3685. (282, '2016-12-21 12:31:44', 'Lance_Lanvins (uid: 11) gives 2000 materials to Ed_Slash (uid: 34)'),
  3686. (283, '2016-12-21 12:32:49', 'Ed_Slash (uid: 34) gives 2000 materials to Lance_Lanvins (uid: 11)'),
  3687. (284, '2016-12-21 12:33:45', 'Tyler_Huntley (uid: 2) gives 2000 materials to Lance_Lanvins (uid: 11)'),
  3688. (285, '2016-12-21 13:01:43', 'Eddie_Siera (uid: 79) (IP: 5.121.41.255) gives $1000 to Salah_Amphibia (uid: 44) (IP: 197.27.82.205)'),
  3689. (286, '2016-12-21 13:02:06', 'Salah_Amphibia (uid: 44) (IP: 197.27.82.205) gives $3000 to Eddie_Siera (uid: 79) (IP: 5.121.41.255)'),
  3690. (287, '2016-12-21 13:05:01', 'Derek_Gucci_Sosa (uid: 17) gives their MP5 to Pedro_Deagle (uid: 362)'),
  3691. (288, '2016-12-21 13:05:03', 'Wiz_Gucci_Sosa (uid: 36) (IP: 217.73.139.19) gives $1000 to Troy_Gucci_Sosa (uid: 50) (IP: 79.106.209.145)'),
  3692. (289, '2016-12-21 13:07:06', 'Jordan_Trapz (uid: 132) has sold their 13000 materials to Simon_Gucci_Sosa (uid: 337) for $20000.'),
  3693. (290, '2016-12-21 13:07:15', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3694. (291, '2016-12-21 13:07:21', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3695. (292, '2016-12-21 13:07:27', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3696. (293, '2016-12-21 13:07:35', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3697. (294, '2016-12-21 13:07:42', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3698. (295, '2016-12-21 13:07:47', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3699. (296, '2016-12-21 13:07:52', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3700. (297, '2016-12-21 13:07:56', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3701. (298, '2016-12-21 13:08:01', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3702. (299, '2016-12-21 13:08:07', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3703. (300, '2016-12-21 13:08:11', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3704. (301, '2016-12-21 13:08:16', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3705. (302, '2016-12-21 13:08:23', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3706. (303, '2016-12-21 13:08:31', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3707. (304, '2016-12-21 13:08:38', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3708. (305, '2016-12-21 13:10:49', 'Aero_D_Fox (uid: 220) (IP: 114.125.165.116) gives $2000 to Rafi_Hopskin (uid: 380) (IP: 202.67.46.1)'),
  3709. (306, '2016-12-21 13:12:57', 'Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34) gives $1000 to Jason_Gucci_Sosa (uid: 23) (IP: 79.106.209.148)'),
  3710. (307, '2016-12-21 13:13:27', 'Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34) gives $1000 to Troy_Gucci_Sosa (uid: 50) (IP: 79.106.209.145)'),
  3711. (308, '2016-12-21 13:13:54', 'Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34) gives $1000 to Lazlow_VRocks (uid: 5) (IP: 32.214.128.30)'),
  3712. (309, '2016-12-21 13:14:11', 'Lazlow_VRocks (uid: 5) (IP: 32.214.128.30) gives $1000 to Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34)'),
  3713. (310, '2016-12-21 13:26:31', 'oscar_g_ramirez (uid: 122) (IP: 185.32.179.29) gives $400 to Asykon_Amphibia (uid: 6) (IP: 217.208.122.63)'),
  3714. (311, '2016-12-21 13:26:34', 'oscar_g_ramirez (uid: 122) (IP: 185.32.179.29) gives $400 to Asykon_Amphibia (uid: 6) (IP: 217.208.122.63)'),
  3715. (312, '2016-12-21 13:38:21', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3716. (313, '2016-12-21 13:38:25', 'Rafi_Hopskin (uid: 380) (IP: 202.67.46.1) gives $1000 to Aero_D_Fox (uid: 220) (IP: 114.125.165.116)'),
  3717. (314, '2016-12-21 13:42:01', 'Cletus_Amphibia (uid: 110) (IP: 81.234.68.95) gives $2000 to Kenny_Phixion (uid: 51) (IP: 85.254.179.237)'),
  3718. (315, '2016-12-21 13:42:08', 'Kenny_Phixion (uid: 51) (IP: 85.254.179.237) gives $2000 to pete_swift (uid: 14) (IP: 185.18.63.194)'),
  3719. (316, '2016-12-21 13:42:20', 'pete_swift (uid: 14) (IP: 185.18.63.194) gives $600 to Kenny_Phixion (uid: 51) (IP: 85.254.179.237)'),
  3720. (317, '2016-12-21 13:42:23', 'pete_swift (uid: 14) (IP: 185.18.63.194) gives $600 to Richie_Legend (uid: 128) (IP: 77.100.232.121)'),
  3721. (318, '2016-12-21 13:45:22', 'Aero_D_Fox (uid: 220) (IP: 114.125.165.116) gives $1000 to Rafi_Hopskin (uid: 380) (IP: 202.67.46.1)'),
  3722. (319, '2016-12-21 13:45:26', 'Aero_D_Fox (uid: 220) (IP: 114.125.165.116) gives $1000 to Rafi_Hopskin (uid: 380) (IP: 202.67.46.1)'),
  3723. (320, '2016-12-21 14:33:41', 'Steven_Robinson (uid: 358) (IP: 180.190.104.199) gives $70000 to Bench_Freeman (uid: 64) (IP: 180.190.104.199)'),
  3724. (321, '2016-12-21 14:58:39', 'Walter_Cash (uid: 16) gives their Shotgun to Josh_Filder (uid: 76)'),
  3725. (322, '2016-12-21 14:59:05', 'Josh_Filder (uid: 76) gives their Shotgun to Walter_Cash (uid: 16)'),
  3726. (323, '2016-12-21 14:59:06', 'Salah_Amphibia (uid: 44) (IP: 197.27.82.205) gives $70000 to Asykon_Amphibia (uid: 6) (IP: 217.208.122.63)'),
  3727. (324, '2016-12-21 15:00:53', 'Curtis_Leaf (uid: 32) (IP: 197.77.166.199) gives $10000 to christopher_leaf (uid: 57) (IP: 197.77.203.54)'),
  3728. (325, '2016-12-21 15:00:56', 'Curtis_Leaf (uid: 32) (IP: 197.77.166.199) gives $10000 to christopher_leaf (uid: 57) (IP: 197.77.203.54)'),
  3729. (326, '2016-12-21 15:01:00', 'Steven_Robinson (uid: 358) (IP: 180.190.104.199) gives $17516 to Andrea_Brianna (uid: 56) (IP: 180.190.104.199)'),
  3730. (327, '2016-12-21 15:01:01', 'Curtis_Leaf (uid: 32) (IP: 197.77.166.199) gives $10000 to christopher_leaf (uid: 57) (IP: 197.77.203.54)'),
  3731. (328, '2016-12-21 15:01:07', 'Curtis_Leaf (uid: 32) (IP: 197.77.166.199) gives $40000 to christopher_leaf (uid: 57) (IP: 197.77.203.54)'),
  3732. (329, '2016-12-21 15:01:13', 'Curtis_Leaf (uid: 32) (IP: 197.77.166.199) gives $3000 to christopher_leaf (uid: 57) (IP: 197.77.203.54)'),
  3733. (330, '2016-12-21 15:01:17', 'Curtis_Leaf (uid: 32) (IP: 197.77.166.199) gives $30000 to christopher_leaf (uid: 57) (IP: 197.77.203.54)'),
  3734. (331, '2016-12-21 15:10:22', 'Steven_Robinson (uid: 358) (IP: 180.190.104.199) gives $28000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.199)'),
  3735. (332, '2016-12-21 15:32:03', 'Troy_Gucci_Sosa (uid: 50) (IP: 79.106.209.145) gives $1000 to Clarence_Breyer (uid: 277) (IP: 5.107.164.116)'),
  3736. (333, '2016-12-21 15:41:46', 'Michael_Render (uid: 113) (IP: 77.99.74.84) gives $4000 to Jonathan_Fabbrie (uid: 33) (IP: 86.134.4.9)'),
  3737. (334, '2016-12-21 15:43:40', 'Tony_Freeman (uid: 24) (IP: 5.102.195.19) gives $1000 to David_Ross (uid: 58) (IP: 31.210.187.59)'),
  3738. (335, '2016-12-21 15:43:46', 'David_Ross (uid: 58) (IP: 31.210.187.59) gives $1000 to Tony_Freeman (uid: 24) (IP: 5.102.195.19)'),
  3739. (336, '2016-12-21 15:51:37', 'Joga_Hernandez (uid: 77) (IP: 24.87.149.175) gives $1000 to Mark_Hillshire (uid: 407) (IP: 73.106.79.84)'),
  3740. (337, '2016-12-21 16:06:59', 'Eazy_Gucci_Sosa (uid: 360) gives 400 materials to Troy_Gucci_Sosa (uid: 50)'),
  3741. (338, '2016-12-21 16:09:18', 'christopher_leaf (uid: 57) (IP: 197.77.203.54) gives $40000 to Curtis_Leaf (uid: 32) (IP: 197.77.166.199)'),
  3742. (339, '2016-12-21 16:18:43', 'Pastor_lee (uid: 48) (IP: 197.87.49.206) gives $300 to manqobas_pearl (uid: 111) (IP: 197.87.49.206)'),
  3743. (340, '2016-12-21 16:24:11', 'Jayden_Mack (uid: 411) (IP: 79.97.84.55) gives $100 to Rondo_Nine (uid: 410) (IP: 51.175.197.108)'),
  3744. (341, '2016-12-21 16:24:33', 'Jayden_Mack (uid: 411) (IP: 79.97.84.55) gives $1000 to Rondo_Nine (uid: 410) (IP: 51.175.197.108)'),
  3745. (342, '2016-12-21 16:30:50', 'Jack_Lazlow (uid: 70) (IP: 92.12.214.183) gives $20000 to Jonathan_Fabbrie (uid: 33) (IP: 86.134.4.9)'),
  3746. (343, '2016-12-21 16:34:43', 'Tommy_Gates (uid: 81) (IP: 71.70.224.216) gives $4000 to El_Chapo (uid: 157) (IP: 108.192.121.241)'),
  3747. (344, '2016-12-21 16:57:19', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3748. (345, '2016-12-21 16:57:23', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3749. (346, '2016-12-21 16:57:26', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3750. (347, '2016-12-21 16:57:30', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3751. (348, '2016-12-21 16:57:33', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3752. (349, '2016-12-21 17:03:53', 'Tina_Paris (uid: 397) (IP: 95.149.146.142) gives $5000 to Tay_Forbes (uid: 15) (IP: 86.178.127.110)'),
  3753. (350, '2016-12-21 17:04:08', 'Tay_Forbes (uid: 15) (IP: 86.178.127.110) gives $5000 to Tina_Paris (uid: 397) (IP: 95.149.146.142)'),
  3754. (351, '2016-12-21 17:05:10', 'Tina_Paris (uid: 397) gives 2000 materials to Tay_Forbes (uid: 15)'),
  3755. (352, '2016-12-21 17:05:42', 'Tina_Paris (uid: 397) gives 2000 materials to Tay_Forbes (uid: 15)'),
  3756. (353, '2016-12-21 17:06:02', 'Tay_Forbes (uid: 15) gives 2000 materials to Tina_Paris (uid: 397)'),
  3757. (354, '2016-12-21 17:11:35', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3758. (355, '2016-12-21 17:11:38', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3759. (356, '2016-12-21 17:11:44', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3760. (357, '2016-12-21 17:11:45', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3761. (358, '2016-12-21 17:11:48', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3762. (359, '2016-12-21 17:11:52', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3763. (360, '2016-12-21 17:13:52', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3764. (361, '2016-12-21 17:13:54', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3765. (362, '2016-12-21 17:13:58', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3766. (363, '2016-12-21 17:14:03', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3767. (364, '2016-12-21 17:14:06', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3768. (365, '2016-12-21 17:14:10', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3769. (366, '2016-12-21 17:14:19', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3770. (367, '2016-12-21 17:14:23', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3771. (368, '2016-12-21 17:14:26', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3772. (369, '2016-12-21 17:14:30', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3773. (370, '2016-12-21 17:14:38', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3774. (371, '2016-12-21 17:14:44', 'Pedro_Deagle (uid: 362) (IP: 185.18.63.76) gives $1000 to Kai_G_Ramirez (uid: 318) (IP: 217.132.54.238)'),
  3775. (372, '2016-12-21 17:18:55', 'Jayden_Trapz (uid: 181) (IP: 109.159.26.217) gives $1 to Aizander_Sage (uid: 423) (IP: 49.151.17.124)'),
  3776. (373, '2016-12-21 17:22:21', 'Joga_Hernandez (uid: 77) (IP: 24.87.149.175) gives $40000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  3777. (374, '2016-12-21 17:22:32', 'Joga_Hernandez (uid: 77) (IP: 24.87.149.175) gives $30000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  3778. (375, '2016-12-21 17:23:42', 'Wu_Gotti (uid: 265) (IP: 173.85.202.237) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3779. (376, '2016-12-21 17:23:44', 'Tina_Paris (uid: 397) (IP: 95.149.146.142) gives $5000 to Stacy_Moone (uid: 425) (IP: 95.149.146.142)'),
  3780. (377, '2016-12-21 17:24:20', 'Wu Gotti (uid: 265) (IP: 173.85.202.237) transferred $80000 to Lrizz Devil (uid: 144) (IP: 202.159.135.203)'),
  3781. (378, '2016-12-21 17:24:25', 'Stacy_Moone (uid: 425) (IP: 95.149.146.142) gives $1000 to Tina_Paris (uid: 397) (IP: 95.149.146.142)');
  3782. INSERT INTO `log_give` (`id`, `date`, `description`) VALUES
  3783. (379, '2016-12-21 17:24:30', 'Stacy_Moone (uid: 425) (IP: 95.149.146.142) gives $1000 to Tina_Paris (uid: 397) (IP: 95.149.146.142)'),
  3784. (380, '2016-12-21 17:24:33', 'Stacy_Moone (uid: 425) (IP: 95.149.146.142) gives $1000 to Tina_Paris (uid: 397) (IP: 95.149.146.142)'),
  3785. (381, '2016-12-21 17:24:37', 'Stacy_Moone (uid: 425) (IP: 95.149.146.142) gives $1000 to Tina_Paris (uid: 397) (IP: 95.149.146.142)'),
  3786. (382, '2016-12-21 17:24:41', 'Stacy_Moone (uid: 425) (IP: 95.149.146.142) gives $1000 to Tina_Paris (uid: 397) (IP: 95.149.146.142)'),
  3787. (383, '2016-12-21 17:25:32', 'Tina Paris (uid: 397) (IP: 95.149.146.142) transferred $5000 to Stacy Moone (uid: 425) (IP: 95.149.146.142)'),
  3788. (384, '2016-12-21 17:27:11', 'Stacy_Moone (uid: 425) (IP: 95.149.146.142) gives $1000 to Tina_Paris (uid: 397) (IP: 95.149.146.142)'),
  3789. (385, '2016-12-21 17:27:16', 'Stacy_Moone (uid: 425) (IP: 95.149.146.142) gives $1000 to Tina_Paris (uid: 397) (IP: 95.149.146.142)'),
  3790. (386, '2016-12-21 17:27:20', 'Stacy_Moone (uid: 425) (IP: 95.149.146.142) gives $1000 to Tina_Paris (uid: 397) (IP: 95.149.146.142)'),
  3791. (387, '2016-12-21 17:30:14', 'Wu_Gotti (uid: 265) (IP: 173.85.202.237) gives $11000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  3792. (388, '2016-12-21 17:38:37', 'christopher_leaf (uid: 57) gives 5 spraycans to Curtis_Leaf (uid: 32)'),
  3793. (389, '2016-12-21 17:49:30', 'Jordan_Trapz (uid: 132) (IP: 90.216.196.220) gives $15000 to Larko_Trapz (uid: 159) (IP: 109.159.26.217)'),
  3794. (390, '2016-12-21 18:36:51', 'Michael_Render (uid: 113) (IP: 77.99.74.84) gives $2000 to Tyrone_Coleman (uid: 85) (IP: 86.25.126.189)'),
  3795. (391, '2016-12-21 19:01:47', 'William_J_Thompson (uid: 221) (IP: 112.201.195.187) gives $10000 to Dolla_Street (uid: 404) (IP: 31.54.49.43)'),
  3796. (392, '2016-12-21 19:02:37', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3797. (393, '2016-12-21 19:02:44', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3798. (394, '2016-12-21 19:02:46', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3799. (395, '2016-12-21 19:03:42', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3800. (396, '2016-12-21 19:03:44', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3801. (397, '2016-12-21 19:03:45', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3802. (398, '2016-12-21 19:03:48', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3803. (399, '2016-12-21 19:03:50', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3804. (400, '2016-12-21 19:03:51', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3805. (401, '2016-12-21 19:03:53', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3806. (402, '2016-12-21 19:03:55', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3807. (403, '2016-12-21 19:04:00', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3808. (404, '2016-12-21 19:04:00', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3809. (405, '2016-12-21 19:04:02', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3810. (406, '2016-12-21 19:04:04', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3811. (407, '2016-12-21 19:04:05', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3812. (408, '2016-12-21 19:04:08', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3813. (409, '2016-12-21 19:04:08', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3814. (410, '2016-12-21 19:04:12', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3815. (411, '2016-12-21 19:04:12', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3816. (412, '2016-12-21 19:04:16', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3817. (413, '2016-12-21 19:04:16', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3818. (414, '2016-12-21 19:04:20', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3819. (415, '2016-12-21 19:04:20', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3820. (416, '2016-12-21 19:04:21', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3821. (417, '2016-12-21 19:04:24', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3822. (418, '2016-12-21 19:04:24', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3823. (419, '2016-12-21 19:04:25', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3824. (420, '2016-12-21 19:04:28', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3825. (421, '2016-12-21 19:04:29', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3826. (422, '2016-12-21 19:04:29', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3827. (423, '2016-12-21 19:04:32', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3828. (424, '2016-12-21 19:04:33', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3829. (425, '2016-12-21 19:04:33', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3830. (426, '2016-12-21 19:04:35', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3831. (427, '2016-12-21 19:04:35', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3832. (428, '2016-12-21 19:04:38', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3833. (429, '2016-12-21 19:04:40', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3834. (430, '2016-12-21 19:04:43', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3835. (431, '2016-12-21 19:04:43', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3836. (432, '2016-12-21 19:04:44', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3837. (433, '2016-12-21 19:04:46', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3838. (434, '2016-12-21 19:04:47', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3839. (435, '2016-12-21 19:04:49', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3840. (436, '2016-12-21 19:04:49', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3841. (437, '2016-12-21 19:04:49', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3842. (438, '2016-12-21 19:04:52', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3843. (439, '2016-12-21 19:04:53', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3844. (440, '2016-12-21 19:04:55', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3845. (441, '2016-12-21 19:04:56', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3846. (442, '2016-12-21 19:04:59', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3847. (443, '2016-12-21 19:05:02', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3848. (444, '2016-12-21 19:05:02', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3849. (445, '2016-12-21 19:05:02', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3850. (446, '2016-12-21 19:05:05', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3851. (447, '2016-12-21 19:05:06', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3852. (448, '2016-12-21 19:05:07', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3853. (449, '2016-12-21 19:05:08', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3854. (450, '2016-12-21 19:05:10', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3855. (451, '2016-12-21 19:05:11', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3856. (452, '2016-12-21 19:05:12', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3857. (453, '2016-12-21 19:05:14', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3858. (454, '2016-12-21 19:05:17', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3859. (455, '2016-12-21 19:05:19', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3860. (456, '2016-12-21 19:05:22', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3861. (457, '2016-12-21 19:05:23', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3862. (458, '2016-12-21 19:05:24', 'christopher_leaf (uid: 57) (IP: 197.77.203.54) gives $50000 to Curtis_Leaf (uid: 32) (IP: 197.77.166.199)'),
  3863. (459, '2016-12-21 19:05:26', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3864. (460, '2016-12-21 19:05:26', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3865. (461, '2016-12-21 19:05:28', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3866. (462, '2016-12-21 19:05:29', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3867. (463, '2016-12-21 19:05:31', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3868. (464, '2016-12-21 19:05:34', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3869. (465, '2016-12-21 19:05:34', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3870. (466, '2016-12-21 19:05:34', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3871. (467, '2016-12-21 19:05:38', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3872. (468, '2016-12-21 19:05:41', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3873. (469, '2016-12-21 19:05:41', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3874. (470, '2016-12-21 19:05:43', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3875. (471, '2016-12-21 19:05:45', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3876. (472, '2016-12-21 19:05:45', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3877. (473, '2016-12-21 19:05:46', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3878. (474, '2016-12-21 19:05:49', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3879. (475, '2016-12-21 19:05:50', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3880. (476, '2016-12-21 19:05:50', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3881. (477, '2016-12-21 19:05:52', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3882. (478, '2016-12-21 19:05:53', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3883. (479, '2016-12-21 19:05:55', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3884. (480, '2016-12-21 19:05:56', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3885. (481, '2016-12-21 19:05:57', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3886. (482, '2016-12-21 19:05:59', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3887. (483, '2016-12-21 19:06:00', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3888. (484, '2016-12-21 19:06:00', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3889. (485, '2016-12-21 19:06:02', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3890. (486, '2016-12-21 19:06:02', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3891. (487, '2016-12-21 19:06:06', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3892. (488, '2016-12-21 19:06:06', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3893. (489, '2016-12-21 19:06:07', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3894. (490, '2016-12-21 19:06:08', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3895. (491, '2016-12-21 19:06:10', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3896. (492, '2016-12-21 19:06:10', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3897. (493, '2016-12-21 19:06:13', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3898. (494, '2016-12-21 19:06:14', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3899. (495, '2016-12-21 19:06:15', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3900. (496, '2016-12-21 19:06:16', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3901. (497, '2016-12-21 19:06:19', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3902. (498, '2016-12-21 19:06:19', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3903. (499, '2016-12-21 19:06:20', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3904. (500, '2016-12-21 19:06:22', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3905. (501, '2016-12-21 19:06:27', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3906. (502, '2016-12-21 19:06:27', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3907. (503, '2016-12-21 19:06:31', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3908. (504, '2016-12-21 19:06:31', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3909. (505, '2016-12-21 19:06:37', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3910. (506, '2016-12-21 19:06:40', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3911. (507, '2016-12-21 19:06:41', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3912. (508, '2016-12-21 19:06:43', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3913. (509, '2016-12-21 19:06:45', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3914. (510, '2016-12-21 19:06:48', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3915. (511, '2016-12-21 19:06:50', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3916. (512, '2016-12-21 19:06:53', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3917. (513, '2016-12-21 19:06:57', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3918. (514, '2016-12-21 19:07:01', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3919. (515, '2016-12-21 19:07:02', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3920. (516, '2016-12-21 19:07:04', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3921. (517, '2016-12-21 19:07:07', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3922. (518, '2016-12-21 19:07:09', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3923. (519, '2016-12-21 19:07:12', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3924. (520, '2016-12-21 19:07:12', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3925. (521, '2016-12-21 19:07:12', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3926. (522, '2016-12-21 19:07:15', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3927. (523, '2016-12-21 19:07:15', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3928. (524, '2016-12-21 19:07:15', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3929. (525, '2016-12-21 19:07:18', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3930. (526, '2016-12-21 19:07:18', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3931. (527, '2016-12-21 19:07:21', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3932. (528, '2016-12-21 19:07:21', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3933. (529, '2016-12-21 19:07:21', 'Hamza_Scaletta (uid: 135) (IP: 111.88.23.64) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3934. (530, '2016-12-21 19:07:24', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3935. (531, '2016-12-21 19:07:27', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3936. (532, '2016-12-21 19:07:27', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3937. (533, '2016-12-21 19:07:31', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3938. (534, '2016-12-21 19:07:31', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3939. (535, '2016-12-21 19:07:34', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3940. (536, '2016-12-21 19:07:35', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3941. (537, '2016-12-21 19:07:38', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3942. (538, '2016-12-21 19:07:39', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3943. (539, '2016-12-21 19:07:42', 'Imam_Scaletta (uid: 419) (IP: 203.11.65.31) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3944. (540, '2016-12-21 19:07:42', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3945. (541, '2016-12-21 19:07:45', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3946. (542, '2016-12-21 19:07:49', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3947. (543, '2016-12-21 19:07:53', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3948. (544, '2016-12-21 19:07:57', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3949. (545, '2016-12-21 19:07:59', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3950. (546, '2016-12-21 19:08:02', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3951. (547, '2016-12-21 19:08:07', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3952. (548, '2016-12-21 19:08:11', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3953. (549, '2016-12-21 19:08:15', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3954. (550, '2016-12-21 19:08:19', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3955. (551, '2016-12-21 19:08:38', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3956. (552, '2016-12-21 19:08:42', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3957. (553, '2016-12-21 19:08:45', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3958. (554, '2016-12-21 19:08:48', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3959. (555, '2016-12-21 19:08:52', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3960. (556, '2016-12-21 19:08:56', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3961. (557, '2016-12-21 19:08:59', 'Pastor_lee (uid: 48) (IP: 197.87.49.206) gives $50000 to manqobas_pearl (uid: 111) (IP: 197.87.49.206)'),
  3962. (558, '2016-12-21 19:08:59', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3963. (559, '2016-12-21 19:09:03', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3964. (560, '2016-12-21 19:09:07', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3965. (561, '2016-12-21 19:09:13', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3966. (562, '2016-12-21 19:09:13', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3967. (563, '2016-12-21 19:09:21', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3968. (564, '2016-12-21 19:09:27', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3969. (565, '2016-12-21 19:09:30', 'Erick_Johnson (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3970. (566, '2016-12-21 19:10:03', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3971. (567, '2016-12-21 19:10:22', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3972. (568, '2016-12-21 19:10:28', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3973. (569, '2016-12-21 19:10:33', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3974. (570, '2016-12-21 19:10:37', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3975. (571, '2016-12-21 19:10:40', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3976. (572, '2016-12-21 19:10:44', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3977. (573, '2016-12-21 19:10:47', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3978. (574, '2016-12-21 19:10:50', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3979. (575, '2016-12-21 19:10:55', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3980. (576, '2016-12-21 19:10:58', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3981. (577, '2016-12-21 19:11:03', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3982. (578, '2016-12-21 19:11:06', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3983. (579, '2016-12-21 19:11:09', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3984. (580, '2016-12-21 19:11:14', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3985. (581, '2016-12-21 19:11:17', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3986. (582, '2016-12-21 19:11:20', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3987. (583, '2016-12-21 19:11:23', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3988. (584, '2016-12-21 19:11:27', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3989. (585, '2016-12-21 19:11:34', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3990. (586, '2016-12-21 19:11:38', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3991. (587, '2016-12-21 19:11:44', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3992. (588, '2016-12-21 19:11:46', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3993. (589, '2016-12-21 19:11:49', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3994. (590, '2016-12-21 19:11:53', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3995. (591, '2016-12-21 19:11:56', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3996. (592, '2016-12-21 19:11:59', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3997. (593, '2016-12-21 19:12:03', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3998. (594, '2016-12-21 19:12:06', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  3999. (595, '2016-12-21 19:12:10', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4000. (596, '2016-12-21 19:12:13', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4001. (597, '2016-12-21 19:12:19', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4002. (598, '2016-12-21 19:12:23', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4003. (599, '2016-12-21 19:12:25', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4004. (600, '2016-12-21 19:12:27', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4005. (601, '2016-12-21 19:12:28', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4006. (602, '2016-12-21 19:12:29', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4007. (603, '2016-12-21 19:12:31', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4008. (604, '2016-12-21 19:12:34', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4009. (605, '2016-12-21 19:12:39', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4010. (606, '2016-12-21 19:12:41', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4011. (607, '2016-12-21 19:12:44', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4012. (608, '2016-12-21 19:12:48', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4013. (609, '2016-12-21 19:12:50', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4014. (610, '2016-12-21 19:12:53', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4015. (611, '2016-12-21 19:12:53', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4016. (612, '2016-12-21 19:12:57', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4017. (613, '2016-12-21 19:12:58', 'Terry_Chigga (uid: 169) (IP: 111.88.63.46) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4018. (614, '2016-12-21 19:13:15', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4019. (615, '2016-12-21 19:13:20', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4020. (616, '2016-12-21 19:13:23', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4021. (617, '2016-12-21 19:13:26', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4022. (618, '2016-12-21 19:13:30', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4023. (619, '2016-12-21 19:13:33', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4024. (620, '2016-12-21 19:13:42', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4025. (621, '2016-12-21 19:13:49', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4026. (622, '2016-12-21 19:14:01', 'Jafari_Hakeem (uid: 430) gives 250 materials to Omar_Lakewood (uid: 436)'),
  4027. (623, '2016-12-21 19:15:13', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4028. (624, '2016-12-21 19:15:17', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4029. (625, '2016-12-21 19:15:20', 'Eric_Chigga (uid: 117) (IP: 202.5.154.211) gives $1000 to Lucenzo_Johnson (uid: 116) (IP: 45.117.105.193)'),
  4030. (626, '2016-12-21 19:28:28', 'Lucenzo Johnson (uid: 116) (IP: 45.117.105.193) transferred $150000 to Terry Chigga (uid: 169) (IP: 111.88.63.46)'),
  4031. (627, '2016-12-21 19:31:22', 'Ben_Warren (uid: 327) gives their Sniper Rifle to Mike_Wrzosek (uid: 199)'),
  4032. (628, '2016-12-21 19:31:23', 'Ben_Warren (uid: 327) gives their M4 to Mike_Wrzosek (uid: 199)'),
  4033. (629, '2016-12-21 19:31:24', 'Ben_Warren (uid: 327) gives their MP5 to Mike_Wrzosek (uid: 199)'),
  4034. (630, '2016-12-21 19:49:01', 'Tay_Forbes (uid: 15) (IP: 86.178.127.110) gives $15000 to Mark_Hillshire (uid: 407) (IP: 73.106.78.226)'),
  4035. (631, '2016-12-21 19:54:13', 'Vincent_Valentino (uid: 163) (IP: 120.29.87.145) gives $1000 to Jack_Lazlow (uid: 70) (IP: 92.12.214.183)'),
  4036. (632, '2016-12-21 19:54:22', 'Vincent_Valentino (uid: 163) (IP: 120.29.87.145) gives $1000 to Max_Mabbitt (uid: 7) (IP: 178.85.38.221)'),
  4037. (633, '2016-12-21 20:01:42', 'Wu Gotti (uid: 265) (IP: 173.85.202.237) transferred $150000 to Lrizz Devil (uid: 144) (IP: 202.159.135.203)'),
  4038. (634, '2016-12-21 20:01:51', 'Oswaldo Crumpettoe (uid: 274) (IP: 58.7.81.82) transferred $76896 to Lrizz Devil (uid: 144) (IP: 202.159.135.203)'),
  4039. (635, '2016-12-21 20:05:36', 'Lawrence_Vincre (uid: 256) (IP: 180.190.104.28) gives $4000 to Lenzel_Vincre (uid: 311) (IP: 180.190.104.28)'),
  4040. (636, '2016-12-21 20:07:37', 'Pastor_lee (uid: 48) (IP: 197.87.49.206) gives $100000 to Manqobas_Pearl (uid: 111) (IP: 197.87.49.206)'),
  4041. (637, '2016-12-21 20:07:47', 'Pastor_lee (uid: 48) (IP: 197.87.49.206) gives $15000 to Manqobas_Pearl (uid: 111) (IP: 197.87.49.206)'),
  4042. (638, '2016-12-21 20:08:43', 'Manqobas_Pearl (uid: 111) (IP: 197.87.49.206) gives $100000 to Pastor_lee (uid: 48) (IP: 197.87.49.206)'),
  4043. (639, '2016-12-21 20:09:03', 'Manqobas_Pearl (uid: 111) (IP: 197.87.49.206) gives $75000 to Pastor_lee (uid: 48) (IP: 197.87.49.206)'),
  4044. (640, '2016-12-21 20:12:42', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $40000 to Wu_Gotti (uid: 265) (IP: 173.85.202.237)'),
  4045. (641, '2016-12-21 20:26:22', 'Kiiong_Lu (uid: 202) (IP: 104.193.199.165) gives $800 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4046. (642, '2016-12-21 20:26:58', 'Steven_Robinson (uid: 358) (IP: 180.190.104.28) gives $6740 to Andrea_Brianna (uid: 56) (IP: 180.190.104.28)'),
  4047. (643, '2016-12-21 20:40:11', 'Nathan_Hopskin (uid: 219) (IP: 36.84.13.207) gives $600 to Hamza_Scaletta (uid: 135) (IP: 111.88.23.64)'),
  4048. (644, '2016-12-21 20:41:21', 'Ray_Bronx (uid: 63) (IP: 151.227.184.87) gives $10000 to Devon_Bronx (uid: 194) (IP: 178.195.38.166)'),
  4049. (645, '2016-12-21 20:41:58', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $500 to Hamza_Scaletta (uid: 135) (IP: 111.88.23.64)'),
  4050. (646, '2016-12-21 20:42:10', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $500 to Hamza_Scaletta (uid: 135) (IP: 111.88.23.64)'),
  4051. (647, '2016-12-21 20:42:11', 'Lance_Lanvins (uid: 11) gives 2000 materials to Joga_Hernandez (uid: 77)'),
  4052. (648, '2016-12-21 20:46:10', 'Vitsz_Hayes (uid: 205) (IP: 112.201.88.237) gives $5000 to Rupert_Grint (uid: 449) (IP: 180.191.94.142)'),
  4053. (649, '2016-12-21 20:53:44', 'Shane_Malakas (uid: 248) (IP: 180.190.104.28) gives $789 to joseph_vincre (uid: 454) (IP: 180.190.104.28)'),
  4054. (650, '2016-12-21 20:54:00', 'joseph_vincre (uid: 454) (IP: 180.190.104.28) gives $1000 to Shane_Malakas (uid: 248) (IP: 180.190.104.28)'),
  4055. (651, '2016-12-21 20:54:07', 'joseph_vincre (uid: 454) (IP: 180.190.104.28) gives $1000 to Shane_Malakas (uid: 248) (IP: 180.190.104.28)'),
  4056. (652, '2016-12-21 20:55:01', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $100000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  4057. (653, '2016-12-21 20:55:08', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $90000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  4058. (654, '2016-12-21 20:56:48', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4059. (655, '2016-12-21 20:56:51', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4060. (656, '2016-12-21 20:56:54', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4061. (657, '2016-12-21 20:56:57', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4062. (658, '2016-12-21 20:57:00', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4063. (659, '2016-12-21 20:57:03', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4064. (660, '2016-12-21 20:57:09', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4065. (661, '2016-12-21 20:57:12', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4066. (662, '2016-12-21 20:57:17', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4067. (663, '2016-12-21 20:58:52', 'Fredo_Woodz (uid: 201) (IP: 104.193.199.198) gives $1000 to Dei_Kremlin (uid: 437) (IP: 75.67.221.179)'),
  4068. (664, '2016-12-21 20:58:57', 'Fredo_Woodz (uid: 201) (IP: 104.193.199.198) gives $1000 to Dei_Kremlin (uid: 437) (IP: 75.67.221.179)'),
  4069. (665, '2016-12-21 20:58:59', 'Fredo_Woodz (uid: 201) (IP: 104.193.199.198) gives $1000 to Dei_Kremlin (uid: 437) (IP: 75.67.221.179)'),
  4070. (666, '2016-12-21 20:59:02', 'Fredo_Woodz (uid: 201) (IP: 104.193.199.198) gives $1000 to Dei_Kremlin (uid: 437) (IP: 75.67.221.179)'),
  4071. (667, '2016-12-21 20:59:05', 'Fredo_Woodz (uid: 201) (IP: 104.193.199.198) gives $1000 to Dei_Kremlin (uid: 437) (IP: 75.67.221.179)'),
  4072. (668, '2016-12-21 20:59:08', 'Fredo_Woodz (uid: 201) (IP: 104.193.199.198) gives $1000 to Dei_Kremlin (uid: 437) (IP: 75.67.221.179)'),
  4073. (669, '2016-12-21 20:59:12', 'Fredo_Woodz (uid: 201) (IP: 104.193.199.198) gives $1000 to Dei_Kremlin (uid: 437) (IP: 75.67.221.179)'),
  4074. (670, '2016-12-21 20:59:15', 'Fredo_Woodz (uid: 201) (IP: 104.193.199.198) gives $1000 to Dei_Kremlin (uid: 437) (IP: 75.67.221.179)'),
  4075. (671, '2016-12-21 20:59:18', 'Fredo_Woodz (uid: 201) (IP: 104.193.199.198) gives $1000 to Dei_Kremlin (uid: 437) (IP: 75.67.221.179)'),
  4076. (672, '2016-12-21 20:59:21', 'Fredo_Woodz (uid: 201) (IP: 104.193.199.198) gives $1000 to Dei_Kremlin (uid: 437) (IP: 75.67.221.179)'),
  4077. (673, '2016-12-21 21:01:23', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4078. (674, '2016-12-21 21:01:26', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4079. (675, '2016-12-21 21:01:29', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4080. (676, '2016-12-21 21:01:32', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4081. (677, '2016-12-21 21:01:43', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4082. (678, '2016-12-21 21:01:46', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4083. (679, '2016-12-21 21:01:49', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4084. (680, '2016-12-21 21:01:53', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4085. (681, '2016-12-21 21:01:55', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4086. (682, '2016-12-21 21:01:58', 'Dei_Kremlin (uid: 437) (IP: 75.67.221.179) gives $1000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4087. (683, '2016-12-21 21:02:59', 'Fredo_Woodz (uid: 201) (IP: 104.193.199.198) gives $3000 to Kiiong_Lu (uid: 202) (IP: 104.193.199.165)'),
  4088. (684, '2016-12-21 21:07:13', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $10000 to Wu_Gotti (uid: 265) (IP: 173.85.202.237)'),
  4089. (685, '2016-12-21 21:30:01', 'Aizander_Sage (uid: 423) (IP: 49.151.17.124) gives $8000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4090. (686, '2016-12-21 21:40:10', 'Amado_Honda (uid: 269) (IP: 180.191.137.91) gives $7000 to Ed_Slash (uid: 34) (IP: 45.116.232.5)'),
  4091. (687, '2016-12-21 21:40:14', 'Ed_Slash (uid: 34) gives their Desert Eagle to Amado_Honda (uid: 269)'),
  4092. (688, '2016-12-21 21:45:05', 'Aizander_Sage (uid: 423) (IP: 49.151.17.124) gives $10000 to Fredo_Woodz (uid: 201) (IP: 104.193.199.198)'),
  4093. (689, '2016-12-21 21:46:49', 'Ed_Slash (uid: 34) gives their Desert Eagle to Chase_Ainsworth (uid: 270)'),
  4094. (690, '2016-12-21 21:46:53', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.28) gives $6000 to Ed_Slash (uid: 34) (IP: 45.116.232.5)'),
  4095. (691, '2016-12-21 22:02:26', 'Ed_Slash (uid: 34) gives their Sniper Rifle to Lenzel_Vincre (uid: 311)'),
  4096. (692, '2016-12-21 22:02:38', 'Lenzel_Vincre (uid: 311) (IP: 180.190.104.28) gives $10000 to Ed_Slash (uid: 34) (IP: 45.116.232.5)'),
  4097. (693, '2016-12-21 22:02:42', 'Lenzel_Vincre (uid: 311) (IP: 180.190.104.28) gives $7000 to Ed_Slash (uid: 34) (IP: 45.116.232.5)'),
  4098. (694, '2016-12-21 22:05:18', 'Johnny_Bravo (uid: 324) (IP: 111.125.110.170) gives $500 to frederick_x_kian (uid: 482) (IP: 180.190.104.28)'),
  4099. (695, '2016-12-21 22:05:28', 'Joga_Hernandez (uid: 77) (IP: 24.87.149.175) gives $1000 to Candice_Brooks (uid: 479) (IP: 85.167.172.32)'),
  4100. (696, '2016-12-21 22:12:30', 'Amado_Honda (uid: 269) (IP: 180.191.137.91) gives $20000 to Diego_Honda (uid: 254) (IP: 180.191.137.91)'),
  4101. (697, '2016-12-21 22:17:18', 'Joe_J_King (uid: 476) (IP: 180.191.141.17) gives $20 to Micjan_G_Calindog (uid: 441) (IP: 180.191.141.17)'),
  4102. (698, '2016-12-21 22:19:06', 'Andrei_Dillinger (uid: 331) (IP: 49.151.137.221) gives $1000 to Emilio_Putik (uid: 357) (IP: 49.151.137.221)'),
  4103. (699, '2016-12-21 22:30:13', 'Edward_Vincre (uid: 249) (IP: 180.190.104.28) gives $25000 to Lenzel_Vincre (uid: 311) (IP: 180.190.104.28)'),
  4104. (700, '2016-12-21 22:33:00', 'Joy_Vincre (uid: 320) (IP: 180.190.104.28) gives $800 to frederick_x_kian (uid: 482) (IP: 180.190.104.28)'),
  4105. (701, '2016-12-21 22:41:50', 'Johnny_Bravo (uid: 324) (IP: 180.190.104.28) gives $20000 to Wiz_Khalifa (uid: 267) (IP: 180.190.104.28)'),
  4106. (702, '2016-12-21 23:00:49', 'Wu Gotti (uid: 265) (IP: 173.85.202.237) transferred $75000 to Lrizz Devil (uid: 144) (IP: 202.159.135.203)'),
  4107. (703, '2016-12-21 23:04:03', 'manqobas_pearl (uid: 111) (IP: 197.87.49.206) gives $765 to Pastor_lee (uid: 48) (IP: 197.87.49.206)'),
  4108. (704, '2016-12-21 23:06:16', 'Lenzel_Vincre (uid: 311) (IP: 180.190.104.28) gives $400 to Pastor_lee (uid: 48) (IP: 197.87.49.206)'),
  4109. (705, '2016-12-21 23:09:20', 'Edward_Vincre (uid: 249) (IP: 180.190.104.28) gives $15000 to Shane_Malakas (uid: 248) (IP: 180.190.104.28)'),
  4110. (706, '2016-12-21 23:10:29', 'Aero_D_Fox (uid: 220) (IP: 114.125.175.164) gives $2000 to Nathan_Hopskin (uid: 219) (IP: 36.84.13.207)'),
  4111. (707, '2016-12-21 23:11:03', 'Nathan_Hopskin (uid: 219) (IP: 36.84.13.207) gives $3000 to Aero_D_Fox (uid: 220) (IP: 114.125.175.164)'),
  4112. (708, '2016-12-21 23:11:04', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Shane_Malakas (uid: 248) (IP: 180.190.104.28)'),
  4113. (709, '2016-12-21 23:11:29', 'Nathan_Hopskin (uid: 219) (IP: 36.84.13.207) gives $4833 to Aero_D_Fox (uid: 220) (IP: 114.125.175.164)'),
  4114. (710, '2016-12-21 23:12:01', 'Lawrence_Vincre (uid: 256) (IP: 180.190.104.28) gives $1 to Pastor_lee (uid: 48) (IP: 197.87.49.206)'),
  4115. (711, '2016-12-21 23:15:49', 'Justin_Chigga (uid: 116) (IP: 119.73.103.11) gives $200 to Pastor_lee (uid: 48) (IP: 197.87.49.206)'),
  4116. (712, '2016-12-21 23:17:58', 'Pastor_lee (uid: 48) (IP: 197.87.49.206) gives $75000 to manqobas_pearl (uid: 111) (IP: 197.87.49.206)'),
  4117. (713, '2016-12-21 23:18:25', 'Nathan_Hopskin (uid: 219) (IP: 36.84.13.207) gives $500 to Aero_D_Fox (uid: 220) (IP: 114.125.175.164)'),
  4118. (714, '2016-12-21 23:23:41', 'Nathan_Hopskin (uid: 219) (IP: 36.84.13.207) gives $1000 to Shane_Malakas (uid: 248) (IP: 180.190.104.28)'),
  4119. (715, '2016-12-21 23:24:56', 'Aero_D_Fox (uid: 220) (IP: 114.125.175.164) gives $10000 to Nathan_Hopskin (uid: 219) (IP: 36.84.13.207)'),
  4120. (716, '2016-12-21 23:25:04', 'Shane_Malakas (uid: 248) (IP: 180.190.104.28) gives $5285 to Olly_Bronx (uid: 176) (IP: 108.216.98.28)'),
  4121. (717, '2016-12-21 23:29:06', 'Park_Seo_Lee (uid: 486) (IP: 180.190.92.141) gives $200 to Jang_Ozbourne (uid: 295) (IP: 180.190.92.141)'),
  4122. (718, '2016-12-21 23:29:24', 'Brian_Ozbourne (uid: 232) (IP: 180.190.92.176) gives $3000 to Sam_Tin_Wong (uid: 492) (IP: 180.190.92.141)'),
  4123. (719, '2016-12-21 23:49:06', 'Andrei Dillinger (uid: 331) (IP: 49.151.137.221) transferred $60000 to Emilio Putik (uid: 357) (IP: 49.151.137.221)'),
  4124. (720, '2016-12-21 23:49:11', 'Andrei Dillinger (uid: 331) (IP: 49.151.137.221) transferred $1696 to Emilio Putik (uid: 357) (IP: 49.151.137.221)'),
  4125. (721, '2016-12-22 00:28:27', 'Tyler_Huntley (uid: 2) (IP: 68.150.15.158) gives $100000 to Lance_Lanvins (uid: 11) (IP: 188.230.248.136)'),
  4126. (722, '2016-12-22 00:29:41', 'Edward_Vincre (uid: 249) (IP: 180.190.104.28) gives $50000 to Lawrence_Vincre (uid: 256) (IP: 180.190.104.28)'),
  4127. (723, '2016-12-22 00:30:07', 'James Maple (uid: 141) (IP: 68.67.107.181) transferred $175000 to Elon Maple (uid: 282) (IP: 71.172.28.221)'),
  4128. (724, '2016-12-22 00:35:07', 'Leonardo_Fox (uid: 239) (IP: 36.83.203.162) gives $200 to Shane_Malakas (uid: 248) (IP: 180.190.104.28)'),
  4129. (725, '2016-12-22 00:37:03', 'Ed_Slash (uid: 34) gives their Sniper Rifle to Jovs_Honda (uid: 281)'),
  4130. (726, '2016-12-22 00:37:21', 'Jovs_Honda (uid: 281) (IP: 180.191.137.91) gives $16000 to Ed_Slash (uid: 34) (IP: 45.116.232.5)'),
  4131. (727, '2016-12-22 00:54:34', 'David_Amphibia (uid: 204) (IP: 222.124.85.102) gives $1 to William_G_Morgan (uid: 498) (IP: 103.10.67.165)'),
  4132. (728, '2016-12-22 00:54:39', 'David_Amphibia (uid: 204) (IP: 222.124.85.102) gives $200 to William_G_Morgan (uid: 498) (IP: 103.10.67.165)'),
  4133. (729, '2016-12-22 00:54:43', 'David_Amphibia (uid: 204) (IP: 222.124.85.102) gives $500 to William_G_Morgan (uid: 498) (IP: 103.10.67.165)'),
  4134. (730, '2016-12-22 00:55:05', 'David_Amphibia (uid: 204) (IP: 222.124.85.102) gives $40 to William_G_Morgan (uid: 498) (IP: 103.10.67.165)'),
  4135. (731, '2016-12-22 00:57:31', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.28) gives $50000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.28)'),
  4136. (732, '2016-12-22 00:57:36', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.28) gives $25000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.28)'),
  4137. (733, '2016-12-22 01:05:55', 'Edward_Vincre (uid: 249) (IP: 180.190.104.28) gives $10000 to Lawrence_Vincre (uid: 256) (IP: 180.190.104.28)'),
  4138. (734, '2016-12-22 01:06:16', 'James_Maple (uid: 141) (IP: 68.67.107.181) gives $1000 to Michael_Maple (uid: 217) (IP: 174.109.156.36)'),
  4139. (735, '2016-12-22 01:06:58', 'Elon_Maple (uid: 282) (IP: 71.172.28.221) gives $265 to Michael_Maple (uid: 217) (IP: 174.109.156.36)'),
  4140. (736, '2016-12-22 01:08:48', 'Shane_Malakas (uid: 248) (IP: 180.190.104.28) gives $15000 to Edward_Vincre (uid: 249) (IP: 180.190.104.28)'),
  4141. (737, '2016-12-22 01:09:16', 'Aero_D_Fox (uid: 220) (IP: 114.125.176.33) gives $5000 to Johnny_Bravo (uid: 324) (IP: 180.190.104.28)'),
  4142. (738, '2016-12-22 01:09:43', 'Edward_Vincre (uid: 249) (IP: 180.190.104.28) gives $15000 to Lawrence_Vincre (uid: 256) (IP: 180.190.104.28)'),
  4143. (739, '2016-12-22 01:10:27', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.28) gives $40000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.28)'),
  4144. (740, '2016-12-22 01:11:27', 'Aero_D_Fox (uid: 220) (IP: 114.125.176.33) gives $2000 to Johnny_Bravo (uid: 324) (IP: 180.190.104.28)'),
  4145. (741, '2016-12-22 01:12:10', 'Lawrence_Vincre (uid: 256) (IP: 180.190.104.28) gives $50 to Edward_Vincre (uid: 249) (IP: 180.190.104.28)'),
  4146. (742, '2016-12-22 01:13:03', 'Antonio_G_Mangio (uid: 250) (IP: 180.190.104.28) gives $30000 to Andrea_Brianna (uid: 56) (IP: 180.190.104.28)'),
  4147. (743, '2016-12-22 01:13:21', 'Ed_Slash (uid: 34) gives their Combat Shotgun to Shawn_Menace (uid: 137)'),
  4148. (744, '2016-12-22 01:15:53', 'Shawn_Menace (uid: 137) (IP: 70.75.128.245) gives $15000 to Ed_Slash (uid: 34) (IP: 45.116.232.5)');
  4149. INSERT INTO `log_give` (`id`, `date`, `description`) VALUES
  4150. (745, '2016-12-22 01:22:44', 'Rafi_Hopskin (uid: 380) (IP: 202.67.40.23) gives $1000 to finn_oakleys (uid: 500) (IP: 36.74.151.198)'),
  4151. (746, '2016-12-22 01:29:14', 'Aero_D_Fox (uid: 220) (IP: 114.125.176.33) gives $2000 to William_G_Morgan (uid: 498) (IP: 103.10.67.165)'),
  4152. (747, '2016-12-22 01:30:28', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $5000 to Heist_Devil (uid: 508) (IP: 180.190.104.86)'),
  4153. (748, '2016-12-22 01:41:29', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $25000 to Heist_Devil (uid: 508) (IP: 180.190.104.86)'),
  4154. (749, '2016-12-22 02:02:11', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.28) gives $4000 to Lawrence_Vincre (uid: 256) (IP: 180.190.104.28)'),
  4155. (750, '2016-12-22 02:02:47', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.28) gives $10000 to Lawrence_Vincre (uid: 256) (IP: 180.190.104.28)'),
  4156. (751, '2016-12-22 02:02:56', 'Michael Maple (uid: 217) (IP: 174.109.156.36) transferred $50000 to James Maple (uid: 141) (IP: 68.67.107.181)'),
  4157. (752, '2016-12-22 02:07:17', 'Olivia_Beckett (uid: 300) (IP: 180.190.104.28) gives $160 to Shane_Malakas (uid: 248) (IP: 180.190.104.28)'),
  4158. (753, '2016-12-22 02:07:39', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $100000 to Franklyn_Menace (uid: 10) (IP: 75.159.100.40)'),
  4159. (754, '2016-12-22 02:09:07', 'Skusta_Honda (uid: 278) (IP: 180.191.137.91) gives $90000 to justine_louis (uid: 511) (IP: 180.191.137.91)'),
  4160. (755, '2016-12-22 02:09:37', 'Olivia_Beckett (uid: 300) (IP: 180.190.104.28) gives $206 to Shane_Malakas (uid: 248) (IP: 180.190.104.28)'),
  4161. (756, '2016-12-22 02:10:07', 'Olivia_Beckett (uid: 300) (IP: 180.190.104.28) gives $100 to Chase_Ainsworth (uid: 270) (IP: 180.190.104.28)'),
  4162. (757, '2016-12-22 02:10:30', 'justine_louis (uid: 511) (IP: 180.191.137.91) gives $1000 to Amado_Honda (uid: 269) (IP: 180.191.137.91)'),
  4163. (758, '2016-12-22 02:10:36', 'justine_louis (uid: 511) (IP: 180.191.137.91) gives $1000 to Amado_Honda (uid: 269) (IP: 180.191.137.91)'),
  4164. (759, '2016-12-22 02:10:40', 'justine_louis (uid: 511) (IP: 180.191.137.91) gives $1000 to Amado_Honda (uid: 269) (IP: 180.191.137.91)'),
  4165. (760, '2016-12-22 02:11:52', 'justine_louis (uid: 511) (IP: 180.191.137.91) gives $1000 to Amado_Honda (uid: 269) (IP: 180.191.137.91)'),
  4166. (761, '2016-12-22 02:12:12', 'justine_louis (uid: 511) (IP: 180.191.137.91) gives $1000 to Amado_Honda (uid: 269) (IP: 180.191.137.91)'),
  4167. (762, '2016-12-22 02:12:20', 'justine_louis (uid: 511) (IP: 180.191.137.91) gives $1000 to Amado_Honda (uid: 269) (IP: 180.191.137.91)'),
  4168. (763, '2016-12-22 02:12:25', 'justine_louis (uid: 511) (IP: 180.191.137.91) gives $1000 to Amado_Honda (uid: 269) (IP: 180.191.137.91)'),
  4169. (764, '2016-12-22 02:12:29', 'justine_louis (uid: 511) (IP: 180.191.137.91) gives $1000 to Amado_Honda (uid: 269) (IP: 180.191.137.91)'),
  4170. (765, '2016-12-22 02:12:34', 'justine_louis (uid: 511) (IP: 180.191.137.91) gives $1000 to Amado_Honda (uid: 269) (IP: 180.191.137.91)'),
  4171. (766, '2016-12-22 02:12:56', 'justine_louis (uid: 511) (IP: 180.191.137.91) gives $1000 to Amado_Honda (uid: 269) (IP: 180.191.137.91)'),
  4172. (767, '2016-12-22 02:13:21', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $100000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  4173. (768, '2016-12-22 02:26:20', 'Chase_Ainsworth (uid: 270) (IP: 180.190.104.28) gives $2000 to Bench_Freeman (uid: 64) (IP: 180.190.104.28)'),
  4174. (769, '2016-12-22 02:26:28', 'Bench_Freeman (uid: 64) (IP: 180.190.104.28) gives $1000 to Chase_Ainsworth (uid: 270) (IP: 180.190.104.28)'),
  4175. (770, '2016-12-22 02:27:17', 'Michael Maple (uid: 217) (IP: 174.109.156.36) transferred $10256 to James Maple (uid: 141) (IP: 68.67.107.181)'),
  4176. (771, '2016-12-22 02:28:26', 'Joga_Hernandez (uid: 77) (IP: 24.87.149.175) gives $100000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  4177. (772, '2016-12-22 02:28:31', 'Joga_Hernandez (uid: 77) (IP: 24.87.149.175) gives $20000 to James_Maple (uid: 141) (IP: 68.67.107.181)'),
  4178. (773, '2016-12-22 02:29:06', 'Elon Maple (uid: 282) (IP: 71.172.28.221) transferred $90400 to James Maple (uid: 141) (IP: 68.67.107.181)'),
  4179. (774, '2016-12-22 02:29:16', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $3 to Wu_Gotti (uid: 265) (IP: 173.85.202.237)'),
  4180. (775, '2016-12-22 02:29:32', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $100000 to Wu_Gotti (uid: 265) (IP: 173.85.202.237)'),
  4181. (776, '2016-12-22 02:29:39', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $100000 to Wu_Gotti (uid: 265) (IP: 173.85.202.237)'),
  4182. (777, '2016-12-22 02:29:43', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $100000 to Wu_Gotti (uid: 265) (IP: 173.85.202.237)'),
  4183. (778, '2016-12-22 02:29:47', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $100000 to Wu_Gotti (uid: 265) (IP: 173.85.202.237)'),
  4184. (779, '2016-12-22 02:29:57', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $75000 to Wu_Gotti (uid: 265) (IP: 173.85.202.237)'),
  4185. (780, '2016-12-22 02:30:11', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $84000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  4186. (781, '2016-12-22 02:38:32', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $2000 to Shane_Malakas (uid: 248) (IP: 180.190.104.28)'),
  4187. (782, '2016-12-22 02:38:36', 'Litso_Rich (uid: 467) (IP: 96.242.56.193) gives $200 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  4188. (783, '2016-12-22 02:38:41', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $2000 to Wu_Gotti (uid: 265) (IP: 173.85.202.237)'),
  4189. (784, '2016-12-22 02:38:45', 'Litso_Rich (uid: 467) (IP: 96.242.56.193) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  4190. (785, '2016-12-22 02:38:50', 'Litso_Rich (uid: 467) (IP: 96.242.56.193) gives $1000 to Lrizz_Devil (uid: 144) (IP: 202.159.135.203)'),
  4191. (786, '2016-12-22 02:45:52', 'Nathan_Hopskin (uid: 219) (IP: 36.84.13.207) gives $1000 to Joga_Hernandez (uid: 77) (IP: 24.87.149.175)'),
  4192. (787, '2016-12-23 13:12:18', 'Tay_Forbes (uid: 15) (IP: 109.155.203.200) gives $7000 to Bree_Olson (uid: 455) (IP: 172.219.119.115)'),
  4193. (788, '2016-12-23 13:24:39', 'Blake_Amphibia (uid: 19) (IP: 84.192.107.89) gives $1000 to Curtis_Leaf (uid: 32) (IP: 197.77.197.235)'),
  4194. (789, '2016-12-23 13:37:07', 'Richard_Krauser (uid: 28) (IP: 144.48.108.43) gives $2000 to Artjom_Slavnik (uid: 538) (IP: 217.251.15.193)'),
  4195. (790, '2016-12-23 13:47:14', 'Tyler_X_Cage (uid: 26) (IP: 89.138.176.127) gives $1000 to Lance_Lanvins (uid: 11) (IP: 188.230.248.136)'),
  4196. (791, '2016-12-23 14:06:02', 'Vallon_West (uid: 524) (IP: 5.154.251.137) gives $6500 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4197. (792, '2016-12-23 14:06:07', 'Ed_Slash (uid: 34) gives their Desert Eagle to Vallon_West (uid: 524)'),
  4198. (793, '2016-12-23 14:07:29', 'Lance_Lanvins (uid: 11) (IP: 188.230.248.136) gives $2000 to Wallace_Lanvins (uid: 530) (IP: 109.123.22.143)'),
  4199. (794, '2016-12-23 14:07:36', 'Lance_Lanvins (uid: 11) (IP: 188.230.248.136) gives $1500 to Wallace_Lanvins (uid: 530) (IP: 109.123.22.143)'),
  4200. (795, '2016-12-23 14:12:01', 'Salah_Amphibia (uid: 44) (IP: 197.27.42.170) gives $2000 to Edward_Robinson (uid: 545) (IP: 88.196.20.29)'),
  4201. (796, '2016-12-23 14:12:38', 'Blake_Amphibia (uid: 19) (IP: 84.192.107.89) gives $1000 to Cynthia_Tucker (uid: 73) (IP: 84.25.253.214)'),
  4202. (797, '2016-12-23 14:13:12', 'Blake_Amphibia (uid: 19) (IP: 84.192.107.89) gives $10000 to Cynthia_Tucker (uid: 73) (IP: 84.25.253.214)'),
  4203. (798, '2016-12-23 14:36:06', 'Tony_Freeman (uid: 24) (IP: 31.210.180.207) gives $1001 to Tyler_X_Cage (uid: 26) (IP: 89.138.176.127)'),
  4204. (799, '2016-12-23 15:09:11', 'Tony_Freeman (uid: 24) (IP: 31.210.180.207) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4205. (800, '2016-12-23 15:47:48', 'Walter_Cash (uid: 16) (IP: 213.238.251.112) gives $25000 to Sigre_Gucci_Sosa (uid: 370) (IP: 91.230.254.11)'),
  4206. (801, '2016-12-23 15:55:30', 'Walter Cash (uid: 16) (IP: 213.238.251.112) transferred $20000 to Ed Slash (uid: 34) (IP: 45.116.232.16)'),
  4207. (802, '2016-12-23 15:58:35', 'Nyu_Gucci_Sosa (uid: 129) gives 400 materials to Ed_Slash (uid: 34)'),
  4208. (803, '2016-12-23 16:04:21', 'Clarence_Breyer (uid: 277) (IP: 5.107.162.192) gives $50000 to Wallace_Lanvins (uid: 530) (IP: 109.123.22.143)'),
  4209. (804, '2016-12-23 16:05:21', 'Julian_Trapz (uid: 556) (IP: 79.177.92.170) gives $1000 to razor_W_ramirez (uid: 266) (IP: 80.246.137.57)'),
  4210. (805, '2016-12-23 16:05:35', 'razor_W_ramirez (uid: 266) gives 500 materials to Julian_Trapz (uid: 556)'),
  4211. (806, '2016-12-23 16:06:14', 'Julian_Trapz (uid: 556) has sold their 3000 materials to Danny_Delino (uid: 263) for $12000.'),
  4212. (807, '2016-12-23 16:16:20', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $7000 to Cynthia_Tucker (uid: 73) (IP: 84.25.253.214)'),
  4213. (808, '2016-12-23 16:19:16', 'Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34) gives $1700 to Nyu_Gucci_Sosa (uid: 129) (IP: 5.43.190.176)'),
  4214. (809, '2016-12-23 16:20:22', 'Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34) gives $2000 to Nyu_Gucci_Sosa (uid: 129) (IP: 5.43.190.176)'),
  4215. (810, '2016-12-23 16:33:33', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4216. (811, '2016-12-23 16:34:03', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4217. (812, '2016-12-23 16:34:21', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4218. (813, '2016-12-23 16:34:28', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4219. (814, '2016-12-23 16:34:36', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4220. (815, '2016-12-23 16:34:48', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4221. (816, '2016-12-23 16:35:07', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4222. (817, '2016-12-23 16:35:29', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4223. (818, '2016-12-23 16:36:05', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4224. (819, '2016-12-23 16:36:16', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4225. (820, '2016-12-23 16:36:38', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $2000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4226. (821, '2016-12-23 16:36:59', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $2000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4227. (822, '2016-12-23 16:37:30', 'Leon_Clarin (uid: 298) (IP: 39.50.166.225) gives $69 to Blake_Amphibia (uid: 19) (IP: 84.192.107.89)'),
  4228. (823, '2016-12-23 16:37:42', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $2000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4229. (824, '2016-12-23 16:38:07', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $2000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4230. (825, '2016-12-23 16:38:31', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $2000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4231. (826, '2016-12-23 16:38:51', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $2000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4232. (827, '2016-12-23 16:39:36', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4233. (828, '2016-12-23 16:40:07', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4234. (829, '2016-12-23 16:40:21', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4235. (830, '2016-12-23 16:40:28', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4236. (831, '2016-12-23 16:40:36', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4237. (832, '2016-12-23 16:40:49', 'Troy_Gold_Forbes (uid: 483) (IP: 69.47.115.22) gives $1000 to Ed_Slash (uid: 34) (IP: 45.116.232.16)'),
  4238. (833, '2016-12-23 16:44:32', 'Liam_Maxwell (uid: 361) has sold their 500 materials to christian_valkins (uid: 569) for $600.'),
  4239. (834, '2016-12-23 17:04:30', 'Nyu_Gucci_Sosa (uid: 129) gives 2000 materials to Ed_Slash (uid: 34)'),
  4240. (835, '2016-12-23 17:04:57', 'Ed_Slash (uid: 34) gives 2000 materials to Nyu_Gucci_Sosa (uid: 129)'),
  4241. (836, '2016-12-23 17:06:49', 'Nyu_Gucci_Sosa (uid: 129) gives 2000 materials to Ed_Slash (uid: 34)'),
  4242. (837, '2016-12-23 17:43:44', 'Travis_Huntley (uid: 3) (IP: 162.157.92.77) gives $100000 to Joseph_Dredd (uid: 574) (IP: 75.67.221.179)'),
  4243. (838, '2016-12-23 17:44:08', 'Don_Ryders (uid: 240) (IP: 109.64.151.152) gives $2000 to Liam_Maxwell (uid: 361) (IP: 37.46.41.127)'),
  4244. (839, '2016-12-23 17:48:55', 'Simon_Gucci_Sosa (uid: 337) gives 250 materials to Ed_Slash (uid: 34)'),
  4245. (840, '2016-12-23 17:49:12', 'Ed_Slash (uid: 34) (IP: 45.116.232.3) gives $1 to Simon_Gucci_Sosa (uid: 337) (IP: 5.43.190.176)'),
  4246. (841, '2016-12-23 17:55:50', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $3000 to Mati_Zzrot (uid: 577) (IP: 181.166.134.182)'),
  4247. (842, '2016-12-23 17:55:53', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $3000 to Alfa_chorizo (uid: 578) (IP: 186.133.170.137)'),
  4248. (843, '2016-12-23 17:56:00', 'Lrizz_Devil (uid: 144) (IP: 202.159.135.203) gives $2000 to Alfa_chorizo (uid: 578) (IP: 186.133.170.137)'),
  4249. (844, '2016-12-23 17:56:02', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $1000 to Denzel_Williams (uid: 579) (IP: 90.254.141.121)'),
  4250. (845, '2016-12-23 17:56:24', 'Denzel_Williams (uid: 579) (IP: 90.254.141.121) gives $1000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  4251. (846, '2016-12-23 17:58:09', 'Michael_Render (uid: 113) (IP: 2.218.124.219) gives $50 to Dominic_Frost (uid: 363) (IP: 73.119.238.51)'),
  4252. (847, '2016-12-23 17:58:18', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $6000 to Denzel_Williams (uid: 579) (IP: 90.254.141.121)'),
  4253. (848, '2016-12-23 17:58:40', 'Denzel_Williams (uid: 579) (IP: 90.254.141.121) gives $1000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  4254. (849, '2016-12-23 17:58:43', 'Denzel_Williams (uid: 579) (IP: 90.254.141.121) gives $1000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  4255. (850, '2016-12-23 17:58:46', 'Denzel_Williams (uid: 579) (IP: 90.254.141.121) gives $1000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  4256. (851, '2016-12-23 17:58:52', 'Denzel_Williams (uid: 579) (IP: 90.254.141.121) gives $1000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  4257. (852, '2016-12-23 17:59:12', 'Denzel_Williams (uid: 579) (IP: 90.254.141.121) gives $1000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  4258. (853, '2016-12-23 17:59:19', 'Denzel_Williams (uid: 579) (IP: 90.254.141.121) gives $1000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  4259. (854, '2016-12-23 17:59:30', 'Denzel_Williams (uid: 579) (IP: 90.254.141.121) gives $1000 to Dan_Devil (uid: 157) (IP: 108.192.121.241)'),
  4260. (855, '2016-12-23 17:59:59', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $2000 to Alfa_chorizo (uid: 578) (IP: 186.133.170.137)'),
  4261. (856, '2016-12-23 18:01:54', 'Derek_Gucci_Sosa (uid: 17) (IP: 79.180.61.34) gives $7000 to Ed_Slash (uid: 34) (IP: 45.116.232.3)'),
  4262. (857, '2016-12-23 18:03:18', 'Ed_Slash (uid: 34) (IP: 45.116.232.3) gives $1000 to Walter_Cash (uid: 16) (IP: 213.238.251.112)'),
  4263. (858, '2016-12-23 18:10:30', 'Ed_Slash (uid: 34) (IP: 45.116.232.3) gives $1000 to Walter_Cash (uid: 16) (IP: 213.238.251.112)'),
  4264. (859, '2016-12-23 18:11:06', 'Ed_Slash (uid: 34) (IP: 45.116.232.3) gives $1000 to Walter_Cash (uid: 16) (IP: 213.238.251.112)'),
  4265. (860, '2016-12-23 18:11:50', 'Ed_Slash (uid: 34) (IP: 45.116.232.3) gives $1000 to Walter_Cash (uid: 16) (IP: 213.238.251.112)'),
  4266. (861, '2016-12-23 18:19:37', 'Dan_Devil (uid: 157) (IP: 108.192.121.241) gives $5000 to Aizander_Sage (uid: 423) (IP: 49.151.17.124)'),
  4267. (862, '2016-12-23 18:20:44', 'Wallace Lanvins (uid: 530) (IP: 109.123.22.143) transferred $50000 to Lance Lanvins (uid: 11) (IP: 188.230.248.136)'),
  4268. (863, '2016-12-23 18:21:09', 'Wallace Lanvins (uid: 530) (IP: 109.123.22.143) transferred $50000 to Lance Lanvins (uid: 11) (IP: 188.230.248.136)');
  4269. -- --------------------------------------------------------
  4270. --
  4271. -- Table structure for table `log_namechanges`
  4272. --
  4273. CREATE TABLE IF NOT EXISTS `log_namechanges` (
  4274. `id` int(10) NOT NULL,
  4275. `date` datetime DEFAULT NULL,
  4276. `description` varchar(255) DEFAULT NULL
  4277. ) ENGINE=InnoDB AUTO_INCREMENT=96 DEFAULT CHARSET=latin1;
  4278. --
  4279. -- Dumping data for table `log_namechanges`
  4280. --
  4281. INSERT INTO `log_namechanges` (`id`, `date`, `description`) VALUES
  4282. (1, '2016-12-20 11:17:59', 'Test_McTest (uid: 4) changed Test_McTest''s (uid: 4) name to Jamal_Burrows.'),
  4283. (2, '2016-12-20 12:13:13', 'Lui (uid: 12) accepted Dirty_pastor''s (uid: 48) free namechange to Pastor_lee.'),
  4284. (3, '2016-12-20 12:27:39', 'Lance_Lanvins (uid: 11) accepted Al_Pheco''s (uid: 74) free namechange to Tom_Wrzosek.'),
  4285. (4, '2016-12-20 12:27:58', 'Tyler_Huntley (uid: 2) changed Levi_Slash''s (uid: 71) name to Jeyo_Wazowski.'),
  4286. (5, '2016-12-20 13:07:34', 'Lazlow (uid: 5) changed Zav_Ix''s (uid: 95) name to Zav_Shitlord.'),
  4287. (6, '2016-12-20 13:29:00', 'Lance (uid: 11) accepted Mr_Shaikh''s (uid: 107) free namechange to Taha_Shaikh.'),
  4288. (7, '2016-12-20 13:29:30', 'Tyler_Huntley (uid: 2) accepted Taha_Shaikh''s (uid: 107) free namechange to Andrew_Stevenson.'),
  4289. (8, '2016-12-20 13:31:37', 'Tyler_Huntley (uid: 2) changed pete_swift''s (uid: 14) name to Pete_Swifty.'),
  4290. (9, '2016-12-20 13:31:38', 'Tyler_Huntley (uid: 2) changed Pete_Swifty''s (uid: 14) name to Pete_Swift.'),
  4291. (10, '2016-12-20 13:33:54', 'Tyler_Huntley (uid: 2) changed christopher_leaf''s (uid: 57) name to Christopher_Leafs.'),
  4292. (11, '2016-12-20 13:33:55', 'Tyler_Huntley (uid: 2) changed Christopher_Leafs''s (uid: 57) name to Christopher_Leaf.'),
  4293. (12, '2016-12-20 13:51:57', 'Lance_Lanvins (uid: 11) accepted Joe_Sheen''s (uid: 94) free namechange to Andergdon_Lanvins.'),
  4294. (13, '2016-12-20 14:23:03', 'Jack_Lazlow (uid: 70) accepted Ho_Lee_Phuck''s (uid: 115) free namechange to Jaim_Kappa.'),
  4295. (14, '2016-12-20 15:31:16', 'Tyler_Huntley (uid: 2) changed jaim_kappa''s (uid: 115) name to Jaim_Kappas.'),
  4296. (15, '2016-12-20 15:31:17', 'Tyler_Huntley (uid: 2) changed Jaim_Kappas''s (uid: 115) name to Jaim_Kappa.'),
  4297. (16, '2016-12-20 15:46:26', 'Jordan_Trapz (uid: 132) changed Jordan_Trapz''s (uid: 132) name to Jordan.'),
  4298. (17, '2016-12-20 15:47:09', 'Jordan (uid: 132) changed Jordan''s (uid: 132) name to Jordan_Trapz.'),
  4299. (18, '2016-12-20 16:03:57', 'Tyler_Huntley (uid: 2) changed Tyler_Huntley''s (uid: 2) name to Jeff_Lazlers.'),
  4300. (19, '2016-12-20 16:10:17', 'Jeff_Lazlers (uid: 2) changed Jeff_Lazlers''s (uid: 2) name to Tyler_Huntley.'),
  4301. (20, '2016-12-20 17:22:25', 'Jordy (uid: 132) accepted Jordan_Capone''s (uid: 88) free namechange to Jordan_Grande.'),
  4302. (21, '2016-12-20 19:16:46', 'Tyler_Huntley (uid: 2) changed Bella_Cool''s (uid: 185) name to Dick_Black.'),
  4303. (22, '2016-12-21 00:38:41', 'Tye (uid: 2) changed Dan_Devil''s (uid: 157) name to James_Williams.'),
  4304. (23, '2016-12-21 00:39:11', 'Tye (uid: 2) changed Lrizz_Devil''s (uid: 144) name to Razor_V_Rameriz.'),
  4305. (24, '2016-12-21 00:50:21', 'Franklyn_Menace (uid: 10) changed Razor_V_Rameriz''s (uid: 144) name to Lrizz_Devil.'),
  4306. (25, '2016-12-21 00:51:20', 'Franklyn_Menace (uid: 10) changed James_Williams''s (uid: 157) name to Dan_Devil.'),
  4307. (26, '2016-12-21 00:54:02', 'Tyler_Huntley (uid: 2) changed pete_swift''s (uid: 14) name to Pete_Swifty.'),
  4308. (27, '2016-12-21 00:54:03', 'Tyler_Huntley (uid: 2) changed Pete_Swifty''s (uid: 14) name to Pete_Swift.'),
  4309. (28, '2016-12-21 01:10:44', 'Travis (uid: 3) accepted Camron_Johnson''s (uid: 116) free namechange to Lucenzo_Johnson.'),
  4310. (29, '2016-12-21 02:35:28', 'Tyler_Huntley (uid: 2) accepted Dan_Devil''s (uid: 157) free namechange to Dan_Artz.'),
  4311. (30, '2016-12-21 02:35:59', 'Tyler_Huntley (uid: 2) accepted Dan_Artz''s (uid: 157) free namechange to Dan_Devil.'),
  4312. (31, '2016-12-21 02:53:12', 'Franklyn_Menace (uid: 10) accepted Dan_Devil''s (uid: 157) free namechange to Jeezy_Box.'),
  4313. (32, '2016-12-21 03:01:32', 'Franklyn_Menace (uid: 10) accepted Jeezy_Box''s (uid: 157) free namechange to Dan_Devil.'),
  4314. (33, '2016-12-21 04:34:50', 'Lui (uid: 12) changed Jeyo_Wazowski''s (uid: 71) name to John_Smith.'),
  4315. (34, '2016-12-21 04:44:35', 'Lui (uid: 12) accepted Google_Chrome''s (uid: 293) free namechange to Asyton_Vincre.'),
  4316. (35, '2016-12-21 06:13:12', 'Jordy (uid: 132) accepted Dan_Devil''s (uid: 157) free namechange to El_Chapo.'),
  4317. (36, '2016-12-21 06:28:39', 'Jordy (uid: 132) accepted El_Chapo''s (uid: 157) free namechange to Dan_Devil.'),
  4318. (37, '2016-12-21 13:17:38', 'Jordy (uid: 132) accepted Dan_Devil''s (uid: 157) free namechange to Devin_Hawk.'),
  4319. (38, '2016-12-21 13:25:26', 'Jordy (uid: 132) accepted Devin_Hawk''s (uid: 157) free namechange to Matthew_Johnson.'),
  4320. (39, '2016-12-21 13:35:35', 'Jordy (uid: 132) accepted Matthew_Johnson''s (uid: 157) free namechange to Dan_Devil.'),
  4321. (40, '2016-12-21 14:09:12', 'Shawn_Menace (uid: 137) accepted Dan_Devil''s (uid: 157) free namechange to John_Cock.'),
  4322. (41, '2016-12-21 14:32:48', 'Shawn_Menace (uid: 137) accepted John_Cock''s (uid: 157) free namechange to El_Chapo.'),
  4323. (42, '2016-12-21 15:35:36', 'Shawn (uid: 137) accepted Lrizz_Devil''s (uid: 144) free namechange to Sean_Santo.'),
  4324. (43, '2016-12-21 15:45:15', 'JEinstein (uid: 1) changed Kimbo_Slice''s (uid: 257) name to Gaybo_Slice.'),
  4325. (44, '2016-12-21 15:48:01', 'JEinstein (uid: 1) changed Gaybo_Slice''s (uid: 257) name to Kimbo_Slice.'),
  4326. (45, '2016-12-21 16:03:39', 'Shawn_Menace (uid: 137) accepted Sean_Santo''s (uid: 144) free namechange to Lrizz_Devil.'),
  4327. (46, '2016-12-21 16:51:03', 'Jordy (uid: 132) accepted El_Chapo''s (uid: 157) free namechange to Dan_Devil.'),
  4328. (47, '2016-12-21 17:35:56', 'Franklyn_Menace (uid: 10) accepted Dominic_Frost''s (uid: 363) free namechange to Jack_Justice.'),
  4329. (48, '2016-12-21 17:52:28', 'Jordy (uid: 132) accepted Larko_Trapz''s (uid: 159) namechange to Alom_Trapz for $30000.'),
  4330. (49, '2016-12-21 18:47:04', 'Dann (uid: 8) accepted Rhen_''s (uid: 439) free namechange to Rhen_Christopher.'),
  4331. (50, '2016-12-21 19:06:21', 'Shawn_Menace (uid: 137) accepted terry_scaletta''s (uid: 169) free namechange to Terry_Chigga.'),
  4332. (51, '2016-12-21 19:12:09', 'Tyler_Huntley (uid: 2) accepted Erick_Johnson''s (uid: 117) free namechange to Eric_Chigga.'),
  4333. (52, '2016-12-21 19:35:41', 'Tyler_Huntley (uid: 2) changed manqobas_pearl''s (uid: 111) name to Manqobas_Pearlm.'),
  4334. (53, '2016-12-21 19:35:41', 'Tyler_Huntley (uid: 2) changed Manqobas_Pearlm''s (uid: 111) name to Manqobas_Pearl.'),
  4335. (54, '2016-12-21 19:35:57', 'Tyler_Huntley (uid: 2) changed Pastor_lee''s (uid: 48) name to Pastor_Leee.'),
  4336. (55, '2016-12-21 19:35:57', 'Tyler_Huntley (uid: 2) changed Pastor_Leee''s (uid: 48) name to Pastor_Lee.'),
  4337. (56, '2016-12-21 20:15:17', 'Lui (uid: 12) changed Lucenzo_Johnson''s (uid: 116) name to Justin_Chigga.'),
  4338. (57, '2016-12-21 20:57:23', 'Lance_Lanvins (uid: 11) accepted tane_tane''s (uid: 453) free namechange to Tane_Honda.'),
  4339. (58, '2016-12-21 21:03:07', 'Lance_Lanvins (uid: 11) accepted Lrizz_Devil''s (uid: 144) free namechange to Enzo_Ozbourne.'),
  4340. (59, '2016-12-21 21:05:26', 'Lance_Lanvins (uid: 11) accepted Enzo_Ozbourne''s (uid: 144) free namechange to Lrizz_Devil.'),
  4341. (60, '2016-12-21 21:16:35', 'Lance_Lanvins (uid: 11) accepted Lrizz_Devil''s (uid: 144) free namechange to Karim_Scarletta.'),
  4342. (61, '2016-12-21 21:17:39', 'Lance_Lanvins (uid: 11) accepted Dan_Devil''s (uid: 157) free namechange to El_Chapo.'),
  4343. (62, '2016-12-21 21:19:32', 'Lance (uid: 11) accepted Karim_Scarletta''s (uid: 144) free namechange to Karim_Abas.'),
  4344. (63, '2016-12-21 21:21:11', 'Tyler_Huntley (uid: 2) accepted Karim_Abas''s (uid: 144) free namechange to Lrizz_Devil.'),
  4345. (64, '2016-12-21 21:27:45', 'Dann (uid: 8) accepted joseph_vincre''s (uid: 454) namechange to Joseph_Miguel for $15000.'),
  4346. (65, '2016-12-21 21:47:23', 'Lui_Mendez (uid: 12) accepted Achilles_G_Johnson''s (uid: 227) free namechange to Ach_West_Gates.'),
  4347. (66, '2016-12-21 22:06:39', 'Travis_Huntley (uid: 3) accepted El_Chapo''s (uid: 157) free namechange to Dan_Devil.'),
  4348. (67, '2016-12-21 22:15:10', 'Dann (uid: 8) accepted Nathan_Vincre''s (uid: 468) namechange to Nathan_Bobo for $15000.'),
  4349. (68, '2016-12-21 22:17:43', 'Lui_Mendez (uid: 12) accepted Dan_Devil''s (uid: 157) free namechange to Johnny_X_Williams.'),
  4350. (69, '2016-12-21 22:29:14', 'Dann (uid: 8) accepted Tommy_Gates''s (uid: 81) free namechange to Kevin_Banks.'),
  4351. (70, '2016-12-21 22:30:10', 'Dann (uid: 8) accepted Kevin_Banks''s (uid: 81) free namechange to Tommy_Gates.'),
  4352. (71, '2016-12-21 22:33:02', 'Lance_Lanvins (uid: 11) accepted Johnny_X_Williams''s (uid: 157) free namechange to Dan_Devil.'),
  4353. (72, '2016-12-21 22:47:13', 'Dann (uid: 8) accepted Lrizz_Devil''s (uid: 144) free namechange to Kai_V_Rameriz.'),
  4354. (73, '2016-12-21 22:48:57', 'Travis_Huntley (uid: 3) changed Danny_Delino''s (uid: 263) name to Lann_Dazlow.'),
  4355. (74, '2016-12-21 22:49:08', 'Travis_Huntley (uid: 3) changed Lann_Dazlow''s (uid: 263) name to Danny_Delino.'),
  4356. (75, '2016-12-21 22:53:06', 'Shawn (uid: 137) accepted Kai_V_Rameriz''s (uid: 144) free namechange to Lrizz_Devil.'),
  4357. (76, '2016-12-21 22:55:03', 'Travis_Huntley (uid: 3) accepted Jack_Justice''s (uid: 363) free namechange to Dominic_Frost.'),
  4358. (77, '2016-12-21 23:17:44', 'Tyler_Huntley (uid: 2) changed rene_lolo''s (uid: 431) name to Rene_Lolol.'),
  4359. (78, '2016-12-21 23:17:46', 'Tyler_Huntley (uid: 2) changed Rene_Lolol''s (uid: 431) name to Rene_Lolo.'),
  4360. (79, '2016-12-21 23:43:04', 'Travis_Huntley (uid: 3) accepted Lrizz_Devil''s (uid: 144) free namechange to Sam_Ozbourne.'),
  4361. (80, '2016-12-21 23:44:52', 'Franklyn (uid: 10) accepted Sam_Ozbourne''s (uid: 144) free namechange to Lrizz_Devil.'),
  4362. (81, '2016-12-22 00:24:26', 'Tyler_Huntley (uid: 2) changed Tyler_Huntley''s (uid: 2) name to Jim_Lazlers.'),
  4363. (82, '2016-12-22 00:26:50', 'Jim_Lazlers (uid: 2) changed Jim_Lazlers''s (uid: 2) name to Tyler_Huntley.'),
  4364. (83, '2016-12-22 01:24:10', 'Travis_Huntley (uid: 3) accepted Alexis_Bronx''s (uid: 306) namechange to Shurban_Turtle for $15000.'),
  4365. (84, '2016-12-23 13:21:38', 'Fig_Mcfig (uid: 21) changed Fig_Mcfig''s (uid: 21) name to Ronald_McDonald.'),
  4366. (85, '2016-12-23 13:34:33', 'Ronald_McDonald (uid: 21) changed Ronald_McDonald''s (uid: 21) name to cock_in_mouth.'),
  4367. (86, '2016-12-23 13:34:42', 'cock_in_mouth (uid: 21) changed cock_in_mouth''s (uid: 21) name to Ronald_McDonald.'),
  4368. (87, '2016-12-23 13:36:46', 'Ronald_McDonald (uid: 21) changed Ronald_McDonald''s (uid: 21) name to ____________________.'),
  4369. (88, '2016-12-23 13:37:24', '____________________ (uid: 21) changed ____________________''s (uid: 21) name to Ronald_McDonald.'),
  4370. (89, '2016-12-23 14:06:11', 'Tiber (uid: 13) changed Devanshul_Sharma''s (uid: 280) name to Alex_Johnson.'),
  4371. (90, '2016-12-23 16:04:53', 'Lance (uid: 11) accepted Tray_Fwego''s (uid: 563) free namechange to Bentley_Cash.'),
  4372. (91, '2016-12-23 16:30:56', 'Dick_Cardenas (uid: 185) accepted Dan_Devil''s (uid: 157) free namechange to Jacob_Menace.'),
  4373. (92, '2016-12-23 16:37:55', 'Lance (uid: 11) accepted Tommy_Gates''s (uid: 81) free namechange to Kevin_Young.'),
  4374. (93, '2016-12-23 16:41:50', 'Dick_Cardenas (uid: 185) accepted Jacob_Menace''s (uid: 157) free namechange to Danny_Cash.'),
  4375. (94, '2016-12-23 16:43:27', 'Lance (uid: 11) accepted Kevin_Young''s (uid: 81) free namechange to Tommy_Gates.'),
  4376. (95, '2016-12-23 16:48:17', 'Franklyn_Menace (uid: 10) accepted Danny_Cash''s (uid: 157) free namechange to Dan_Devil.');
  4377. -- --------------------------------------------------------
  4378. --
  4379. -- Table structure for table `log_property`
  4380. --
  4381. CREATE TABLE IF NOT EXISTS `log_property` (
  4382. `id` int(10) NOT NULL,
  4383. `date` datetime DEFAULT NULL,
  4384. `description` varchar(255) DEFAULT NULL
  4385. ) ENGINE=InnoDB AUTO_INCREMENT=126 DEFAULT CHARSET=latin1;
  4386. --
  4387. -- Dumping data for table `log_property`
  4388. --
  4389. INSERT INTO `log_property` (`id`, `date`, `description`) VALUES
  4390. (1, '2016-12-20 00:27:21', 'Test_McTest (uid: 4) purchased a Clover for $24500.'),
  4391. (2, '2016-12-20 02:52:53', 'Test_McTest (uid: 4) purchased a land (id: 1) in Verona Beach for $50000.'),
  4392. (3, '2016-12-20 07:15:39', 'Tori_Chester (uid: 9) purchased House (id: 72) for $69.'),
  4393. (4, '2016-12-20 10:29:18', 'Lui_Mendez (uid: 12) purchased Apartment (id: 65) for $25000.'),
  4394. (5, '2016-12-20 12:31:34', 'Franklyn_Menace (uid: 10) purchased a Sultan for $100000.'),
  4395. (6, '2016-12-20 13:47:53', 'Lance_Lanvins (uid: 11) purchased a Faggio for $15000.'),
  4396. (7, '2016-12-20 15:28:34', 'Tay_Forbes (uid: 15) purchased a Mountain Bike for $10000.'),
  4397. (8, '2016-12-20 17:13:05', 'Niko_Santo (uid: 142) purchased a Mountain Bike for $10000.'),
  4398. (9, '2016-12-20 20:18:44', 'Jordan_Trapz (uid: 132) purchased a Mountain Bike for $10000.'),
  4399. (10, '2016-12-20 20:18:51', 'Larko_Trapz (uid: 159) purchased a Sultan for $100000.'),
  4400. (11, '2016-12-20 20:29:42', 'Michael_Render (uid: 113) purchased House (id: 96) for $25000.'),
  4401. (12, '2016-12-20 22:02:20', 'Michael_Render (uid: 113) purchased Supermarket (id: 156) for $300000.'),
  4402. (13, '2016-12-20 22:04:43', 'Pastor_lee (uid: 48) purchased House (id: 74) for $75000.'),
  4403. (14, '2016-12-20 22:09:28', 'Pastor_lee (uid: 48) purchased House (id: 73) for $50000.'),
  4404. (15, '2016-12-20 22:13:28', 'Pastor_lee (uid: 48) purchased House (id: 66) for $40000.'),
  4405. (16, '2016-12-20 22:58:06', 'Ray_Bronx (uid: 63) purchased a Clover for $24500.'),
  4406. (17, '2016-12-21 00:25:25', 'Pastor_lee (uid: 48) purchased House (id: 67) for $50000.'),
  4407. (18, '2016-12-21 00:25:39', 'Luke_Yonkou (uid: 233) purchased a Mountain Bike for $10000.'),
  4408. (19, '2016-12-21 00:33:53', 'Darrell_Ford (uid: 21) purchased a Solair for $40000.'),
  4409. (20, '2016-12-21 00:35:26', 'Matthew_D_Fox (uid: 45) purchased a Glendale for $32500.'),
  4410. (21, '2016-12-21 00:35:27', 'Jozshua_fox (uid: 236) purchased a BMX for $5000.'),
  4411. (22, '2016-12-21 00:57:16', 'Lui_Mendez (uid: 12) purchased a Sultan for $100000.'),
  4412. (23, '2016-12-21 01:28:31', 'Lui_Mendez (uid: 12) purchased pink neon for their Sultan (id: 162)'),
  4413. (24, '2016-12-21 02:05:51', 'Michael_McHarley (uid: 262) purchased a Mountain Bike for $10000.'),
  4414. (25, '2016-12-21 02:31:16', 'Bench_Freeman (uid: 64) purchased House (id: 77) for $100000.'),
  4415. (26, '2016-12-21 02:33:08', 'David_Amphibia (uid: 204) purchased Supermarket (id: 132) for $300000.'),
  4416. (27, '2016-12-21 03:40:25', 'Darrell_Ford (uid: 21) sold their Solair (id: 159) to the dealership for $30000'),
  4417. (28, '2016-12-21 03:49:49', 'Travis_Huntley (uid: 3) purchased Gun Shop (id: 166) for $400000.'),
  4418. (29, '2016-12-21 03:50:44', 'Amado_Honda (uid: 269) purchased a Mountain Bike for $10000.'),
  4419. (30, '2016-12-21 03:58:18', 'Diego_Honda (uid: 254) purchased a Mountain Bike for $10000.'),
  4420. (31, '2016-12-21 04:03:29', 'James_Maple (uid: 141) purchased Gun Shop (id: 142) for $400000.'),
  4421. (32, '2016-12-21 05:06:28', 'Luke_Yonkou (uid: 233) purchased a Clover for $24500.'),
  4422. (33, '2016-12-21 05:29:27', 'Darrell_Ford (uid: 21) purchased a ZR-350 for $50000.'),
  4423. (34, '2016-12-21 05:37:02', 'Darrell_Ford (uid: 21) purchased a Bike for $5000.'),
  4424. (35, '2016-12-21 05:37:08', 'Darrell_Ford (uid: 21) purchased a BMX for $5000.'),
  4425. (36, '2016-12-21 05:40:27', 'Darrell_Ford (uid: 21) purchased a BMX for $5000.'),
  4426. (37, '2016-12-21 05:43:21', 'Andrea_Brianna (uid: 56) purchased House (id: 79) for $150000.'),
  4427. (38, '2016-12-21 05:43:25', 'Curtis_Leaf (uid: 32) purchased Supermarket (id: 165) for $300000.'),
  4428. (39, '2016-12-21 05:48:21', 'Darrell_Ford (uid: 21) purchased a BMX for $5000.'),
  4429. (40, '2016-12-21 06:02:31', 'Diego_Honda (uid: 254) purchased House (id: 95) for $150000.'),
  4430. (41, '2016-12-21 06:03:50', 'Edward_Vincre (uid: 249) purchased House (id: 76) for $100000.'),
  4431. (42, '2016-12-21 06:05:33', 'Amado_Honda (uid: 269) purchased House (id: 101) for $100000.'),
  4432. (43, '2016-12-21 06:22:52', 'Lrizz_Devil (uid: 144) purchased Supermarket (id: 139) for $300000.'),
  4433. (44, '2016-12-21 06:24:50', 'Nathan_Dextron (uid: 305) purchased a Mountain Bike for $10000.'),
  4434. (45, '2016-12-21 06:38:02', 'Asyton_Vincre (uid: 293) purchased House (id: 80) for $75000.'),
  4435. (46, '2016-12-21 07:01:29', 'Luke_Yonkou (uid: 233) (IP: 202.67.43.15) sold their Mountain Bike (id: 158) for $8000 to Nathan_Hopskin (uid: 219) (IP: 36.84.13.207)'),
  4436. (47, '2016-12-21 07:07:05', 'Darrell_Ford (uid: 21) purchased a BMX for $5000.'),
  4437. (48, '2016-12-21 07:09:43', 'Pavlos_Honda (uid: 258) purchased House (id: 98) for $100000.'),
  4438. (49, '2016-12-21 07:19:29', 'Luke_Yonkou (uid: 233) purchased a Clover for $24500.'),
  4439. (50, '2016-12-21 07:29:30', 'Johnny_Krauser (uid: 29) purchased a Mountain Bike for $10000.'),
  4440. (51, '2016-12-21 07:38:56', 'Darrell_Ford (uid: 21) purchased a BMX for $5000.'),
  4441. (52, '2016-12-21 08:29:22', 'Michael_Maple (uid: 217) purchased Gun Shop (id: 151) for $400000.'),
  4442. (53, '2016-12-21 08:34:13', 'Simon_Gucci_Sosa (uid: 337) purchased a Faggio for $15000.'),
  4443. (54, '2016-12-21 08:38:54', 'Curtis_Leaf (uid: 32) purchased a Boxville for $80000.'),
  4444. (55, '2016-12-21 09:19:44', 'Olivia_Beckett (uid: 300) purchased House (id: 81) for $125000.'),
  4445. (56, '2016-12-21 09:32:02', 'Xavi_Hawk (uid: 253) purchased House (id: 88) for $125000.'),
  4446. (57, '2016-12-21 10:05:39', 'Batchi_Honda (uid: 329) purchased House (id: 99) for $100000.'),
  4447. (58, '2016-12-21 10:17:25', 'Chase_Ainsworth (uid: 270) purchased Supermarket (id: 152) for $300000.'),
  4448. (59, '2016-12-21 10:45:35', 'Johnny_Bravo (uid: 324) purchased House (id: 92) for $75000.'),
  4449. (60, '2016-12-21 10:50:39', 'Walter_Cash (uid: 16) purchased Gym (id: 133) for $250000.'),
  4450. (61, '2016-12-21 12:18:08', 'JEinstein (uid: 1) purchased a land (id: 4) in Willowfield for $1.'),
  4451. (62, '2016-12-21 12:48:59', 'Cynthia_Tucker (uid: 73) purchased House (id: 94) for $50000.'),
  4452. (63, '2016-12-21 12:56:09', 'Jayden_Trapz (uid: 181) purchased a Sultan for $100000.'),
  4453. (64, '2016-12-21 13:02:52', 'christopher_leaf (uid: 57) purchased Supermarket (id: 141) for $300000.'),
  4454. (65, '2016-12-21 13:22:30', 'William_J_Thompson (uid: 221) purchased Supermarket (id: 146) for $300000.'),
  4455. (66, '2016-12-21 13:42:39', 'Aero_D_Fox (uid: 220) purchased Supermarket (id: 137) for $300000.'),
  4456. (67, '2016-12-21 14:35:53', 'Bench_Freeman (uid: 64) purchased a Turismo for $375000.'),
  4457. (68, '2016-12-21 15:01:52', 'christopher_leaf (uid: 57) purchased House (id: 93) for $175000.'),
  4458. (69, '2016-12-21 15:04:07', 'Michael_Render (uid: 113) sold their Supermarket business (id: 156) to the state for $225000'),
  4459. (70, '2016-12-21 15:06:07', 'Asykon_Amphibia (uid: 6) purchased Restaurant (id: 131) for $500000.'),
  4460. (71, '2016-12-21 16:00:58', 'Liam_Maxwell (uid: 361) purchased a Mountain Bike for $10000.'),
  4461. (72, '2016-12-21 16:01:39', 'Michael_Render (uid: 113) purchased Clothes Shop (id: 157) for $550000.'),
  4462. (73, '2016-12-21 16:08:53', 'Ben_Harper (uid: 395) purchased a BMX for $5000.'),
  4463. (74, '2016-12-21 16:20:36', 'Curtis_Leaf (uid: 32) purchased House (id: 97) for $50000.'),
  4464. (75, '2016-12-21 16:41:33', 'Pastor_lee (uid: 48) purchased a Boxville for $80000.'),
  4465. (76, '2016-12-21 17:23:00', 'Dan_Devil (uid: 157) purchased Supermarket (id: 129) for $300000.'),
  4466. (77, '2016-12-21 17:30:28', 'Lrizz_Devil (uid: 144) purchased Supermarket (id: 164) for $300000.'),
  4467. (78, '2016-12-21 17:44:31', 'Michael_Render (uid: 113) upgraded their house (id: 96) to level 1 for $25000.'),
  4468. (79, '2016-12-21 19:02:15', 'Thude_Hernandez (uid: 210) purchased Advertisement Agency (id: 163) for $475000.'),
  4469. (80, '2016-12-21 19:05:37', 'Franklyn_Menace (uid: 10) purchased Gun Shop (id: 167) for $400000.'),
  4470. (81, '2016-12-21 19:06:19', 'Curtis_Leaf (uid: 32) purchased House (id: 87) for $200000.'),
  4471. (82, '2016-12-21 19:08:29', 'manqobas_pearl (uid: 111) purchased House (id: 86) for $100000.'),
  4472. (83, '2016-12-21 19:16:55', 'manqobas_pearl (uid: 111) purchased House (id: 84) for $100000.'),
  4473. (84, '2016-12-21 19:19:34', 'Lucenzo_Johnson (uid: 116) purchased Supermarket (id: 156) for $300000.'),
  4474. (85, '2016-12-21 20:09:41', 'Pastor_lee (uid: 48) purchased House (id: 75) for $175000.'),
  4475. (86, '2016-12-21 20:12:01', 'Lrizz_Devil (uid: 144) purchased Supermarket (id: 162) for $300000.'),
  4476. (87, '2016-12-21 20:22:34', 'David_S_Schneider (uid: 289) purchased House (id: 102) for $75000.'),
  4477. (88, '2016-12-21 20:55:15', 'Dan_Devil (uid: 157) purchased Supermarket (id: 155) for $300000.'),
  4478. (89, '2016-12-21 21:03:56', 'Tyrone_Coleman (uid: 85) purchased a Mountain Bike for $10000.'),
  4479. (90, '2016-12-21 21:07:48', 'Nathan_Hopskin (uid: 219) (IP: 36.84.13.207) sold their Mountain Bike (id: 158) for $10000 to Olly_Bronx (uid: 176) (IP: 108.216.98.28)'),
  4480. (91, '2016-12-21 21:09:50', 'Ray_Bronx (uid: 63) purchased a Mountain Bike for $10000.'),
  4481. (92, '2016-12-21 21:12:24', 'Walter_Cash (uid: 16) purchased House (id: 71) for $200000.'),
  4482. (93, '2016-12-21 21:54:55', 'Pastor_lee (uid: 48) purchased a Pizzaboy for $20000.'),
  4483. (94, '2016-12-21 21:55:53', 'Olly_Bronx (uid: 176) purchased House (id: 83) for $150000.'),
  4484. (95, '2016-12-21 22:01:56', 'Ray_Bronx (uid: 63) purchased House (id: 82) for $150000.'),
  4485. (96, '2016-12-21 22:04:01', 'Jason_Gucci_Sosa (uid: 23) purchased House (id: 85) for $200000.'),
  4486. (97, '2016-12-21 22:05:22', 'Nathan_Hopskin (uid: 219) purchased Gym (id: 161) for $250000.'),
  4487. (98, '2016-12-21 22:05:52', 'John_Ozbourne (uid: 301) purchased House (id: 100) for $125000.'),
  4488. (99, '2016-12-21 22:12:33', 'Lrizz_Devil (uid: 144) purchased Advertisement Agency (id: 159) for $475000.'),
  4489. (100, '2016-12-21 22:34:03', 'Lenzel_Vincre (uid: 311) purchased House (id: 68) for $150000.'),
  4490. (101, '2016-12-21 22:35:57', 'Frank_Temple (uid: 216) purchased House (id: 89) for $100000.'),
  4491. (102, '2016-12-21 22:41:56', 'Wiz_Khalifa (uid: 267) purchased House (id: 70) for $100000.'),
  4492. (103, '2016-12-21 22:50:48', 'Diego_Honda (uid: 254) upgraded their house (id: 95) to level 1 for $25000.'),
  4493. (104, '2016-12-21 23:14:35', 'Nathan_Hopskin (uid: 219) purchased Club/Bar (id: 135) for $275000.'),
  4494. (105, '2016-12-21 23:18:26', 'manqobas_pearl (uid: 111) purchased House (id: 69) for $75000.'),
  4495. (106, '2016-12-21 23:33:56', 'Mike_Wrzosek (uid: 199) purchased House (id: 103) for $125000.'),
  4496. (107, '2016-12-22 00:32:18', 'Elon_Maple (uid: 282) purchased Advertisement Agency (id: 150) for $475000.'),
  4497. (108, '2016-12-22 01:01:46', 'John_Ozbourne (uid: 301) upgraded their house (id: 100) to level 1 for $25000.'),
  4498. (109, '2016-12-22 01:10:29', 'Lawrence_Vincre (uid: 256) purchased Club/Bar (id: 136) for $275000.'),
  4499. (110, '2016-12-22 01:13:09', 'Andrea_Brianna (uid: 56) purchased Clothes Shop (id: 147) for $550000.'),
  4500. (111, '2016-12-22 01:15:26', 'Jang_Ozbourne (uid: 295) purchased House (id: 91) for $150000.'),
  4501. (112, '2016-12-22 01:41:55', 'Travis_Huntley (uid: 3) purchased a FCR-900 for $75000.'),
  4502. (113, '2016-12-22 01:42:58', 'Travis_Huntley (uid: 3) (IP: 162.157.92.77) sold their FCR-900 (id: 189) for $1 to Shurban_Turtle (uid: 306) (IP: 112.201.88.237)'),
  4503. (114, '2016-12-22 02:12:32', 'Nathan_Dextron (uid: 305) purchased a Mountain Bike for $10000.'),
  4504. (115, '2016-12-22 02:12:37', 'Dan_Devil (uid: 157) purchased Club/Bar (id: 134) for $275000.'),
  4505. (116, '2016-12-22 02:30:20', 'James_Maple (uid: 141) purchased Advertisement Agency (id: 149) for $475000.'),
  4506. (117, '2016-12-22 02:38:54', 'Wu_Gotti (uid: 265) purchased Advertisement Agency (id: 153) for $475000.'),
  4507. (118, '2016-12-23 13:29:42', 'Blake_Amphibia (uid: 19) purchased a Sultan for $100000.'),
  4508. (119, '2016-12-23 13:31:04', 'Blake_Amphibia (uid: 19) purchased blue neon for their Sultan (id: 195)'),
  4509. (120, '2016-12-23 13:31:28', 'Blake_Amphibia (uid: 19) paid $20000 to set the license plate of their Sultan (id: 195) to Amphibia.'),
  4510. (121, '2016-12-23 13:39:03', 'John_Lehenbast (uid: 536) purchased a Mountain Bike for $10000.'),
  4511. (122, '2016-12-23 14:47:30', 'Brian_Ozbourne (uid: 232) purchased a FCR-900 for $75000.'),
  4512. (123, '2016-12-23 15:19:44', 'Simon_Gucci_Sosa (uid: 337) purchased Club/Bar (id: 160) for $275000.'),
  4513. (124, '2016-12-23 17:58:53', 'Aizander_Sage (uid: 423) purchased a Mountain Bike for $10000.'),
  4514. (125, '2016-12-23 18:08:58', 'Tori_Chester (uid: 9) purchased Supermarket (id: 172) for $1.');
  4515. -- --------------------------------------------------------
  4516. --
  4517. -- Table structure for table `log_punishments`
  4518. --
  4519. CREATE TABLE IF NOT EXISTS `log_punishments` (
  4520. `id` int(10) NOT NULL,
  4521. `date` datetime DEFAULT NULL,
  4522. `description` varchar(255) DEFAULT NULL
  4523. ) ENGINE=InnoDB AUTO_INCREMENT=204 DEFAULT CHARSET=latin1;
  4524. --
  4525. -- Dumping data for table `log_punishments`
  4526. --
  4527. INSERT INTO `log_punishments` (`id`, `date`, `description`) VALUES
  4528. (1, '2016-12-20 07:00:57', 'Lazlow_VRocks (uid: 5) has unbanned Dann_Lazlow.'),
  4529. (2, '2016-12-20 11:15:09', 'Test_McTest (uid: 4) has unbanned Lui_Mendez.'),
  4530. (3, '2016-12-20 11:40:58', 'Tyler_Huntley (uid: 2) kicked Lance_Lanvins (uid: 11), reason: Fuck you.'),
  4531. (4, '2016-12-20 11:43:33', 'Lance_Lanvins (uid: 11) prisoned Lance_Lanvins (uid: 11) for 20 minutes, reason: test'),
  4532. (5, '2016-12-20 11:43:52', 'Lance_Lanvins (uid: 11) jailed Lance_Lanvins (uid: 11) for 20 minutes, reason: test'),
  4533. (6, '2016-12-20 11:44:01', 'Lance_Lanvins (uid: 11) prisoned Lance_Lanvins (uid: 11) for 20 minutes, reason: test'),
  4534. (7, '2016-12-20 11:45:26', 'Tyler_Huntley (uid: 2) prisoned Talos (uid: 13) for 10 minutes, reason: .'),
  4535. (8, '2016-12-20 12:26:13', 'JEinstein (uid: 1) prisoned Levi_Slash (uid: 71) for 60 minutes, reason: DM [/dm]'),
  4536. (9, '2016-12-20 12:28:53', 'Jack_Lazlow (uid: 70) jailed Leii_Maddox (uid: 35) for 60 minutes, reason: Dm'),
  4537. (10, '2016-12-20 12:36:18', 'Jack_Lazlow (uid: 70) jailed Denzel_Freeman (uid: 43) for 60 minutes, reason: DM'),
  4538. (11, '2016-12-20 12:36:24', 'Jack_Lazlow (uid: 70) jailed Denzel_Freeman (uid: 43) for 60 minutes, reason: DM'),
  4539. (12, '2016-12-20 12:38:45', 'Jack_Lazlow (uid: 70) kicked Joga_Hernandez (uid: 77), reason: relog'),
  4540. (13, '2016-12-20 12:41:23', 'JEinstein (uid: 1) has unbanned Johnny_Krauser.'),
  4541. (14, '2016-12-20 12:47:27', 'Tye (uid: 2) jailed Max_Thomax (uid: 47) for 60 minutes, reason: Deathmatching'),
  4542. (15, '2016-12-20 12:48:50', 'Jack_Lazlow (uid: 70) jailed Jeyo_Wazowski (uid: 71) for 60 minutes, reason: DM'),
  4543. (16, '2016-12-20 12:49:05', 'Tye (uid: 2) jailed Jeyo_Wazowski (uid: 71) for 60 minutes, reason: Deathmatching '),
  4544. (17, '2016-12-20 13:03:36', 'Jack_Lazlow (uid: 70) kicked Ed_Slash (uid: 34), reason: Relog'),
  4545. (18, '2016-12-20 13:22:58', 'Jack_Lazlow (uid: 70) kicked Jason_Gucci_Sosa (uid: 23), reason: relog'),
  4546. (19, '2016-12-20 13:23:29', 'Tye (uid: 2) has unbanned Pete_Swift.'),
  4547. (20, '2016-12-20 13:30:08', 'Tyler_Huntley (uid: 2) has unbanned Joe_Sheen.'),
  4548. (21, '2016-12-20 13:33:08', 'Tyler_Huntley (uid: 2) has unbanned Gre_Hunter.'),
  4549. (22, '2016-12-20 13:33:11', 'Lance (uid: 11) kicked Tyrone_Coleman (uid: 85), reason: no'),
  4550. (23, '2016-12-20 13:54:51', 'Tyler_Huntley (uid: 2) kicked Raven_Street (uid: 69), reason: Relog'),
  4551. (24, '2016-12-20 14:27:32', 'Jack_Lazlow (uid: 70) banned Barney_Phife (uid: 138), reason: DDoS Threats'),
  4552. (25, '2016-12-20 14:32:11', 'Jack (uid: 70) kicked Dori_Bale (uid: 136), reason: Relog'),
  4553. (26, '2016-12-20 15:28:49', 'JEinstein (uid: 1) kicked Kalgon_Grande (uid: 153), reason: Abuse of cmds'),
  4554. (27, '2016-12-20 15:49:45', 'Tyler_Huntley (uid: 2) has unbanned David_Ross.'),
  4555. (28, '2016-12-20 15:54:47', 'Jordy (uid: 132) prisoned Tony_Freeman (uid: 24) for 60 minutes, reason: DM [/dm]'),
  4556. (29, '2016-12-20 15:55:47', 'Tyler_Huntley (uid: 2) banned Dori_Bale (uid: 136), reason: Baiting over and over and over'),
  4557. (30, '2016-12-20 15:57:35', 'Kalgon_Grande (uid: 153) silently kicked Domi_Walker (uid: 49), reason: Fuck off niggerfaggot'),
  4558. (31, '2016-12-20 16:05:01', 'Kalgon_Grande (uid: 153) prisoned Kalgon_Grande (uid: 153) for 60 minutes, reason: DM [/dm]'),
  4559. (32, '2016-12-20 16:06:05', 'Kalgon_Grande (uid: 153) prisoned Jordan_Capone (uid: 88) for 60 minutes, reason: DM [/dm]'),
  4560. (33, '2016-12-20 16:06:19', 'Jordan_Capone (uid: 88) prisoned Kalgon_Grande (uid: 153) for 120 minutes, reason: DM [/dm]'),
  4561. (34, '2016-12-20 16:06:26', 'Kalgon_Grande (uid: 153) prisoned Jordan_Capone (uid: 88) for 120 minutes, reason: DM [/dm]'),
  4562. (35, '2016-12-20 16:06:26', 'Kalgon_Grande (uid: 153) prisoned Jordan_Capone (uid: 88) for 180 minutes, reason: DM [/dm]'),
  4563. (36, '2016-12-20 16:06:26', 'Kalgon_Grande (uid: 153) prisoned Jordan_Capone (uid: 88) for 240 minutes, reason: DM [/dm]'),
  4564. (37, '2016-12-20 16:06:27', 'Kalgon_Grande (uid: 153) banned Jordan_Capone (uid: 88), reason: DM (5/5 warnings)'),
  4565. (38, '2016-12-20 16:06:41', 'Travis (uid: 3) has unbanned Jordan_Capone.'),
  4566. (39, '2016-12-20 16:07:05', 'Kalgon_Grande (uid: 153) prisoned Kalgon_Grande (uid: 153) for 180 minutes, reason: DM [/dm]'),
  4567. (40, '2016-12-20 16:07:05', 'Kalgon_Grande (uid: 153) prisoned Kalgon_Grande (uid: 153) for 240 minutes, reason: DM [/dm]'),
  4568. (41, '2016-12-20 16:07:05', 'Kalgon_Grande (uid: 153) banned Kalgon_Grande (uid: 153), reason: DM (5/5 warnings)'),
  4569. (42, '2016-12-20 16:07:13', 'Travis (uid: 3) has unbanned Kalgon_Grande.'),
  4570. (43, '2016-12-20 16:11:53', 'Tyler_Huntley (uid: 2) has unbanned Cynthia_Tucker.'),
  4571. (44, '2016-12-20 16:11:59', 'Tyler_Huntley (uid: 2) has unbanned Gre_Hunter.'),
  4572. (45, '2016-12-20 16:26:41', 'Jordan_Capone (uid: 88) banned Kalgon_Grande (uid: 153), reason: DM (5/5 warnings)'),
  4573. (46, '2016-12-20 16:26:52', 'Travis_Huntley (uid: 3) has unbanned Kalgon_Grande.'),
  4574. (47, '2016-12-20 16:40:48', 'Tyler_Huntley (uid: 2) has unbanned Max_Mabbitt.'),
  4575. (48, '2016-12-20 16:41:03', 'Tyler_Huntley (uid: 2) has unbanned Joe_Myers.'),
  4576. (49, '2016-12-20 16:43:27', 'Tyler_Huntley (uid: 2) kicked Tay_Forbes (uid: 15), reason: relog'),
  4577. (50, '2016-12-20 16:43:32', 'Tyler_Huntley (uid: 2) kicked Ibrahim_Mason (uid: 82), reason: relog'),
  4578. (51, '2016-12-20 16:43:36', 'Tyler_Huntley (uid: 2) kicked Jack_Lazlow (uid: 70), reason: relog'),
  4579. (52, '2016-12-20 16:44:50', 'Travis_Huntley (uid: 3) kicked Jamal_Burrows (uid: 0), reason: .'),
  4580. (53, '2016-12-20 16:59:40', 'Lance (uid: 11) kicked Babatunde_Koke (uid: 168), reason: relog'),
  4581. (54, '2016-12-20 17:08:13', 'Travis_Huntley (uid: 3) offline banned Pastor_Lee, reason: Post a ban appeal'),
  4582. (55, '2016-12-20 17:09:23', 'Travis_Huntley (uid: 3) silently banned manqobas_pearl (uid: 111), reason: post a ban appeal'),
  4583. (56, '2016-12-20 17:13:48', 'Kalgon_Grande (uid: 153) silently banned Jacob_Fanto (uid: 174), reason: SA'),
  4584. (57, '2016-12-20 17:17:55', 'Tyler_Huntley (uid: 2) banned pastor_lee (uid: 48), reason: Ban Evading'),
  4585. (58, '2016-12-20 17:22:13', 'Tyler_Huntley (uid: 2) kicked Kalgon_Grande (uid: 153), reason: .'),
  4586. (59, '2016-12-20 17:26:10', 'Tyler_Huntley (uid: 2) has unbanned Joga_Hernandez.'),
  4587. (60, '2016-12-20 17:27:48', 'Tyler_Huntley (uid: 2) has unbanned Joga_Hernandez.'),
  4588. (61, '2016-12-20 17:31:01', 'Jordan_Grande (uid: 88) prisoned Kalgon_Grande (uid: 153) for 60 minutes, reason: DM [/dm]'),
  4589. (62, '2016-12-20 17:35:01', 'JEinstein (uid: 1) silently banned Kalgon_Grande (uid: 153), reason: airbrake'),
  4590. (63, '2016-12-20 17:35:20', 'Travis_Huntley (uid: 3) has unbanned Kalgon_Grande.'),
  4591. (64, '2016-12-20 17:48:02', 'Jordan_Grande (uid: 88) prisoned Kalgon_Grande (uid: 153) for 60 minutes, reason: DM [/dm]'),
  4592. (65, '2016-12-20 17:58:15', 'Tyler_Huntley (uid: 2) prisoned Kalgon_Grande (uid: 153) for 60 minutes, reason: DM [/dm]'),
  4593. (66, '2016-12-20 18:32:08', 'Travis_Huntley (uid: 3) has unbanned manqobas_pearl.'),
  4594. (67, '2016-12-20 18:32:13', 'Travis_Huntley (uid: 3) has unbanned Pastor_Lee.'),
  4595. (68, '2016-12-20 18:41:26', 'Tyler_Huntley (uid: 2) has unbanned Pastor_lee.'),
  4596. (69, '2016-12-20 18:46:14', 'Tyler_Huntley (uid: 2) prisoned Dann_Lazlow (uid: 8) for 60 minutes, reason: DM [/dm]'),
  4597. (70, '2016-12-20 18:54:02', 'Tyler_Huntley (uid: 2) banned (uid: 143), reason: DDOS'),
  4598. (71, '2016-12-20 18:54:17', 'Tyler_Huntley (uid: 2) offline banned Jake_Parker, reason: DDOS'),
  4599. (72, '2016-12-20 18:57:50', 'Tyler_Huntley (uid: 2) has unbanned Joga_Hernandez.'),
  4600. (73, '2016-12-20 19:08:12', 'Jordy (uid: 132) prisoned Kalgon_Grande (uid: 153) for 60 minutes, reason: DM [/dm]'),
  4601. (74, '2016-12-20 20:02:53', 'Dann (uid: 8) prisoned Kalgon_Grande (uid: 153) for 60 minutes, reason: DM [/dm]'),
  4602. (75, '2016-12-20 20:05:20', 'Tyler_Huntley (uid: 2) prisoned Kalgon_Grande (uid: 153) for 120 minutes, reason: I''ll triple it'),
  4603. (76, '2016-12-20 20:05:37', 'Tyler_Huntley (uid: 2) prisoned Kalgon_Grande (uid: 153) for 60 minutes, reason: .'),
  4604. (77, '2016-12-20 20:05:51', 'Dann (uid: 8) jailed Kalgon_Grande (uid: 153) for 190 minutes, reason: nah'),
  4605. (78, '2016-12-20 20:08:27', 'Dann (uid: 8) kicked Kalgon_Grande (uid: 153), reason: stop it'),
  4606. (79, '2016-12-20 20:31:14', 'Tommy_Gates (uid: 81) silently jailed Joga_Hernandez (uid: 77) for 60 minutes, reason: DM'),
  4607. (80, '2016-12-20 22:29:31', 'Darrell_Ford (uid: 21) silently banned Shankz_Street (uid: 62), reason: Moneyfarming'),
  4608. (81, '2016-12-20 22:29:38', 'Darrell_Ford (uid: 21) silently banned Luffy_Gomu (uid: 212), reason: Moneyfarming'),
  4609. (82, '2016-12-21 00:43:30', 'Tye (uid: 2) banned JOga_AkbaR (uid: 243), reason: Server ad'),
  4610. (83, '2016-12-21 00:43:32', 'Franklyn_Menace (uid: 10) prisoned atherturo_w_triggs (uid: 125) for 60 minutes, reason: DM [/dm]'),
  4611. (84, '2016-12-21 01:04:25', 'Tyler_Huntley (uid: 2) offline banned Atherturo_W_Triggs, reason: Server Advertising'),
  4612. (85, '2016-12-21 01:05:55', 'Tyler_Huntley (uid: 2) banned Santino_Valentino (uid: 223), reason: TP Hacks'),
  4613. (86, '2016-12-21 01:41:00', 'Franklyn_Menace (uid: 10) jailed oscar_G_Ramirez (uid: 122) for 60 minutes, reason: CBUG'),
  4614. (87, '2016-12-21 02:25:58', 'Tyler_Huntley (uid: 2) prisoned atherturo_g_ramirez (uid: 260) for 60 minutes, reason: DM [/dm]'),
  4615. (88, '2016-12-21 02:45:39', 'Tyler_Huntley (uid: 2) has unbanned Jimbei_Piece.'),
  4616. (89, '2016-12-21 02:46:41', 'Tyler_Huntley (uid: 2) banned Jimbei_Piece (uid: 215), reason: Weapon Hacking, post a Ban Appeal.'),
  4617. (90, '2016-12-21 03:00:33', 'Tyler_Huntley (uid: 2) prisoned Franklyn_Menace (uid: 10) for 15 minutes, reason: Test'),
  4618. (91, '2016-12-21 03:29:09', 'Travis_Huntley (uid: 3) kicked Ed_Slash (uid: 34), reason: relog'),
  4619. (92, '2016-12-21 04:04:18', 'Travis_Huntley (uid: 3) kicked Tom_Wrzosek (uid: 74), reason: Relog please'),
  4620. (93, '2016-12-21 04:07:59', 'Shawn (uid: 137) prisoned Aaron_Knoxx (uid: 273) for 60 minutes, reason: DM [/dm]'),
  4621. (94, '2016-12-21 04:21:10', 'Franklyn (uid: 10) has unbanned tom_wrzosek.'),
  4622. (95, '2016-12-21 04:32:31', 'Franklyn (uid: 10) prisoned Derek_Gucci_sosa (uid: 17) for 60 minutes, reason: DM [/dm]'),
  4623. (96, '2016-12-21 04:42:31', 'Travis_Huntley (uid: 3) kicked Google_Chrome (uid: 293), reason: come back with an RP name'),
  4624. (97, '2016-12-21 04:43:11', 'Travis_Huntley (uid: 3) has unbanned Umer_Menace.'),
  4625. (98, '2016-12-21 04:45:04', 'Travis_Huntley (uid: 3) has unbanned Asyton_Vincre.'),
  4626. (99, '2016-12-21 05:14:56', 'Travis_Huntley (uid: 3) has unbanned Gre_Hunter.'),
  4627. (100, '2016-12-21 05:15:26', 'Travis_Huntley (uid: 3) prisoned AyeRon_Nox_Abdi (uid: 287) for 60 minutes, reason: DM [/dm]'),
  4628. (101, '2016-12-21 05:56:00', 'Jordy (uid: 132) prisoned AyeRon_Nox_Abdi (uid: 287) for 120 minutes, reason: DM [/dm]'),
  4629. (102, '2016-12-21 06:27:00', 'Darrell_Ford (uid: 21) has unbanned Tom_Wrzosek.'),
  4630. (103, '2016-12-21 07:38:52', 'Darrell_Ford (uid: 21) has unbanned Devanshul_Sharma.'),
  4631. (104, '2016-12-21 07:39:24', 'Darrell_Ford (uid: 21) has unbanned Keima_Adkins.'),
  4632. (105, '2016-12-21 08:11:35', 'Lance (uid: 11) kicked Johnny_Caudill_0g40 (uid: 0), reason: change your name'),
  4633. (106, '2016-12-21 08:13:15', 'Lance_Lanvins (uid: 11) kicked Johnny_Caudill_0g40 (uid: 0), reason: 1'),
  4634. (107, '2016-12-21 08:44:15', 'Lance (uid: 11) kicked Johnny_Caudill_0g40 (uid: 0), reason: .'),
  4635. (108, '2016-12-21 08:44:23', 'Lance (uid: 11) kicked Johnny_Caudill_0g40 (uid: 0), reason: .'),
  4636. (109, '2016-12-21 08:44:23', 'Lance (uid: 11) kicked (uid: 0), reason: .'),
  4637. (110, '2016-12-21 08:44:24', 'Lance (uid: 11) kicked (uid: 0), reason: .'),
  4638. (111, '2016-12-21 08:44:30', 'Lance (uid: 11) kicked Johnny_Caudill_0g40 (uid: 0), reason: .'),
  4639. (112, '2016-12-21 08:44:55', 'Jordy (uid: 132) silently kicked Johnny_Caudill_0g40 (uid: 0), reason: bye'),
  4640. (113, '2016-12-21 08:54:13', 'Darrell_Ford (uid: 21) silently banned Johnny_Caudill_0g40 (uid: 0), reason: You shall not pass.'),
  4641. (114, '2016-12-21 09:00:05', 'Jordy (uid: 132) banned Ben_Warren (uid: 327), reason: teleport hacks'),
  4642. (115, '2016-12-21 09:04:26', 'Lance_Lanvins (uid: 11) silently kicked Johnny_Caudill_0g40 (uid: 0), reason: .'),
  4643. (116, '2016-12-21 09:05:05', 'Lance_Lanvins (uid: 11) silently banned Johnny_Caudill_0g40 (uid: 0), reason: aimbot, nametags, fastwalk, skipanim.cs'),
  4644. (117, '2016-12-21 09:12:16', 'Lance (uid: 11) kicked pete_swift (uid: 14), reason: NOW!'),
  4645. (118, '2016-12-21 09:24:59', 'Jordan_Trapz (uid: 132) has unbanned Ben_Warren.'),
  4646. (119, '2016-12-21 10:26:55', 'JEinstein (uid: 1) banned Nejin_Cash (uid: 340), reason: What kind of hacks are these? '),
  4647. (120, '2016-12-21 10:36:20', 'JEinstein (uid: 1) banned Tyrone_Street (uid: 59), reason: moneyfarming'),
  4648. (121, '2016-12-21 11:01:47', 'Josh_Einstein (uid: 1) has unbanned Dori_Bale.'),
  4649. (122, '2016-12-21 11:02:32', 'JEinstein (uid: 1) has unbanned Jayden_Trapz.'),
  4650. (123, '2016-12-21 11:06:35', 'Jordy (uid: 132) prisoned Darell_Erick (uid: 351) for 60 minutes, reason: DM [/dm]'),
  4651. (124, '2016-12-21 11:07:02', 'Jordan_Trapz (uid: 132) offline banned Jayden_Trapz, reason: test'),
  4652. (125, '2016-12-21 11:07:06', 'Jordan_Trapz (uid: 132) has unbanned Jayden_Trapz.'),
  4653. (126, '2016-12-21 11:40:26', 'JEinstein (uid: 1) kicked Luigi_Mendez (uid: 42), reason: Desynced'),
  4654. (127, '2016-12-21 11:41:45', 'JEinstein (uid: 1) has unbanned Bench_Freeman.'),
  4655. (128, '2016-12-21 11:41:48', 'JEinstein (uid: 1) has unbanned Tyler_X_Cage.'),
  4656. (129, '2016-12-21 11:41:59', 'JEinstein (uid: 1) has unbanned Salah_Amphibia.'),
  4657. (130, '2016-12-21 11:42:08', 'JEinstein (uid: 1) has unbanned Filip_Amphibia.'),
  4658. (131, '2016-12-21 11:42:08', 'Lazlow (uid: 5) has unbanned Clarence_Breyer.'),
  4659. (132, '2016-12-21 11:42:14', 'JEinstein (uid: 1) has unbanned Kimbo_Slice.'),
  4660. (133, '2016-12-21 11:42:18', 'JEinstein (uid: 1) has unbanned Liam_Maxwell.'),
  4661. (134, '2016-12-21 11:42:29', 'JEinstein (uid: 1) has unbanned Jason_Gucci_Sosa.'),
  4662. (135, '2016-12-21 12:08:50', 'JEinstein (uid: 1) kicked Johnny_Caudill_0g40 (uid: 0), reason: ?'),
  4663. (136, '2016-12-21 12:26:47', 'Jordy (uid: 132) banned Kimberly_Banks (uid: 368), reason: healthhacks'),
  4664. (137, '2016-12-21 13:16:32', 'JEinstein (uid: 1) silently kicked JEinstein (uid: 1), reason: desynced as fuck'),
  4665. (138, '2016-12-21 13:19:29', 'Tyler_Huntley (uid: 2) has unbanned Tyrone_Street.'),
  4666. (139, '2016-12-21 13:20:19', 'Tyler_Huntley (uid: 2) offline prisoned Tyrone_Street for 30 minutes, reason: Ban Appeal'),
  4667. (140, '2016-12-21 15:25:49', 'Tommy_Gates (uid: 81) silently jailed Simon_Walker (uid: 46) for 60 minutes, reason: dm'),
  4668. (141, '2016-12-21 15:27:12', 'JEinstein (uid: 1) prisoned Simon_Walker (uid: 46) for 60 minutes, reason: DM [/dm]'),
  4669. (142, '2016-12-21 16:48:21', 'Tommy_Gates (uid: 81) prisoned Adam_Menace (uid: 192) for 60 minutes, reason: DM [/dm]'),
  4670. (143, '2016-12-21 17:06:34', 'Tyler_Huntley (uid: 2) banned Walter_Cash (uid: 16), reason: Exploiting server bugs. Post a ban appeal please.'),
  4671. (144, '2016-12-21 17:27:22', 'Tyler_Huntley (uid: 2) banned Stacy_Moone (uid: 425), reason: Money Farming'),
  4672. (145, '2016-12-21 17:27:27', 'Tyler_Huntley (uid: 2) banned (uid: 397), reason: Money Farming'),
  4673. (146, '2016-12-21 17:58:11', 'Dann (uid: 8) jailed Andrea_Brianna (uid: 56) for 30 minutes, reason: Logging to avoid'),
  4674. (147, '2016-12-21 18:02:35', 'Dann_Lazlow (uid: 8) jailed Andrea_Brianna (uid: 56) for 60 minutes, reason: Logging to avoid robbery'),
  4675. (148, '2016-12-21 18:03:32', 'Tyler_Huntley (uid: 2) prisoned Kenny_Phixion (uid: 51) for 30 minutes, reason: GO read the rules regarding robberys.'),
  4676. (149, '2016-12-21 18:14:33', 'Franklyn_Menace (uid: 10) prisoned Vinay_X_Ramcharan (uid: 427) for 60 minutes, reason: DM [/dm]'),
  4677. (150, '2016-12-21 18:41:39', 'Lance (uid: 11) prisoned Rasheed_Stonefield (uid: 435) for 10 minutes, reason: car ramming'),
  4678. (151, '2016-12-21 18:45:19', 'Dann (uid: 8) jailed Rhen_ (uid: 439) for 60 minutes, reason: /report for a nrn when ur ready'),
  4679. (152, '2016-12-21 18:55:42', 'Shawn_Menace (uid: 137) kicked Jake_Gomez (uid: 440), reason: Relog'),
  4680. (153, '2016-12-21 19:01:29', 'Jordy (uid: 132) has unbanned Kiiong_Lu.'),
  4681. (154, '2016-12-21 19:08:33', 'Shawn_Menace (uid: 137) jailed Jake_Gomez (uid: 440) for 30 minutes, reason: RK/DM.'),
  4682. (155, '2016-12-21 19:09:01', 'Lance (uid: 11) silently prisoned Ray_Bronx (uid: 63) for 1 minutes, reason: Test'),
  4683. (156, '2016-12-21 19:24:26', 'Lance (uid: 11) prisoned Omar_Lakewood (uid: 436) for 60 minutes, reason: DM [/dm]'),
  4684. (157, '2016-12-21 19:24:27', 'Lance (uid: 11) prisoned Jafari_Hakeem (uid: 430) for 60 minutes, reason: DM [/dm]'),
  4685. (158, '2016-12-21 19:25:55', 'Dann (uid: 8) jailed Rasheed_Stonefield (uid: 435) for 60 minutes, reason: car ramming'),
  4686. (159, '2016-12-21 19:26:21', 'Lance (uid: 11) prisoned Rasheed_Stonefield (uid: 435) for 20 minutes, reason: Adjusted'),
  4687. (160, '2016-12-21 19:30:54', 'Jordy (uid: 132) has unbanned Jafari_Hakeem.'),
  4688. (161, '2016-12-21 19:35:36', 'Jack_Justice (uid: 363) prisoned Adam_Menace (uid: 192) for 60 minutes, reason: DM [/dm]'),
  4689. (162, '2016-12-21 19:38:25', 'Jack_Lazlow (uid: 70) banned Wu_Ming (uid: 446), reason: Ban Evading'),
  4690. (163, '2016-12-21 19:48:07', 'Jack_Lazlow (uid: 70) banned Amilia_Black (uid: 451), reason: Ban evading (Tina Paris)'),
  4691. (164, '2016-12-21 19:54:04', 'Tyler_Huntley (uid: 2) has unbanned Walter_Cash.'),
  4692. (165, '2016-12-21 20:13:16', 'Jordy (uid: 132) kicked (uid: 199), reason: relog'),
  4693. (166, '2016-12-21 20:47:04', 'Tyler_Huntley (uid: 2) offline prisoned Lenzel_Vincre for 30 minutes, reason: Logging to avoid'),
  4694. (167, '2016-12-21 21:29:05', 'Dann (uid: 8) kicked Antonio_G_Mangio (uid: 250), reason: bugged'),
  4695. (168, '2016-12-21 22:09:02', 'Tommy_Gates (uid: 81) prisoned Aizander_Sage (uid: 423) for 60 minutes, reason: DM [/dm]'),
  4696. (169, '2016-12-21 22:12:37', 'Travis_Huntley (uid: 3) banned Nejin_Empire (uid: 484), reason: Evading'),
  4697. (170, '2016-12-21 22:30:35', 'Jack_Justice (uid: 363) prisoned Tori_Chester (uid: 9) for 60 minutes, reason: DM [/dm]'),
  4698. (171, '2016-12-21 22:35:16', 'Tommy_Gates (uid: 81) prisoned Jack_Justice (uid: 363) for 60 minutes, reason: DM [/dm]'),
  4699. (172, '2016-12-21 22:49:05', 'Dann (uid: 8) prisoned Keima_Adkins (uid: 283) for 60 minutes, reason: DM [/dm]'),
  4700. (173, '2016-12-21 23:15:48', 'Franklyn (uid: 10) jailed Joe_J_King (uid: 476) for 10 minutes, reason: Server ad'),
  4701. (174, '2016-12-21 23:20:52', 'Tyler_Huntley (uid: 2) kicked Rene_Lolo (uid: 431), reason: Relog.'),
  4702. (175, '2016-12-21 23:33:47', 'Franklyn (uid: 10) jailed Shawn_Menace (uid: 137) for 1 minutes, reason: CR'),
  4703. (176, '2016-12-22 00:32:01', 'Dominic_Frost (uid: 363) prisoned Emilio_Putik (uid: 357) for 60 minutes, reason: DM [/dm]'),
  4704. (177, '2016-12-22 00:45:23', 'Tyler_Huntley (uid: 2) silently banned Nejin_Shades (uid: 493), reason: Post a ban appeal on forums. You''ll find a thread called "Appeal your ban"'),
  4705. (178, '2016-12-22 01:13:41', 'Tyler_Huntley (uid: 2) has banned IP: 180.190.104.28, reason: Post a ban appeal please.'),
  4706. (179, '2016-12-22 02:03:38', 'Travis_Huntley (uid: 3) kicked Wu_Gotti (uid: 265), reason: relog'),
  4707. (180, '2016-12-22 02:18:18', 'Travis_Huntley (uid: 3) silently banned justine_louis (uid: 511), reason: Money farming, post an appeal'),
  4708. (181, '2016-12-23 13:24:54', 'JEinstein (uid: 1) silently kicked Tyler_X_Cage (uid: 26), reason: Please quit spam reporting for me'),
  4709. (182, '2016-12-23 13:26:27', 'Ronald_McDonald (uid: 21) silently banned Alexander_Solonik (uid: 534), reason: leave then bitch'),
  4710. (183, '2016-12-23 13:26:48', 'Ronald_McDonald (uid: 21) silently banned James_Whites (uid: 537), reason: no'),
  4711. (184, '2016-12-23 13:27:15', 'Ronald_McDonald (uid: 21) has unbanned James_Whites.'),
  4712. (185, '2016-12-23 13:33:32', 'Grande (uid: 153) silently kicked christopher_leaf (uid: 57), reason: Spam'),
  4713. (186, '2016-12-23 13:34:27', 'Ronald_McDonald (uid: 21) has unbanned Alexander_Solonik.'),
  4714. (187, '2016-12-23 13:35:18', 'Lance_Lanvins (uid: 11) prisoned Kai_G_Ramirez (uid: 318) for 60 minutes, reason: DM [/dm]'),
  4715. (188, '2016-12-23 13:36:30', 'Lance (uid: 11) prisoned Kai_G_Ramirez (uid: 318) for 25 minutes, reason: C-Bug [Adjusted]'),
  4716. (189, '2016-12-23 13:38:32', 'Grande (uid: 153) silently kicked Wallace_Lanvins (uid: 530), reason: English in IC chat.'),
  4717. (190, '2016-12-23 13:43:36', 'Franklyn_Menace (uid: 10) banned Artjom_Slavnik (uid: 538), reason: Weapon hack'),
  4718. (191, '2016-12-23 13:49:51', 'Jordy (uid: 132) silently kicked Callum_Riley (uid: 527), reason: relog'),
  4719. (192, '2016-12-23 13:59:35', 'Tiber (uid: 13) kicked Tyler_X_Cage (uid: 26), reason: stfu'),
  4720. (193, '2016-12-23 13:59:44', 'Tiber (uid: 13) kicked Tony_Freeman (uid: 24), reason: stfu'),
  4721. (194, '2016-12-23 14:01:45', 'Grande (uid: 153) kicked Grande (uid: 153), reason: I don''t want to exist on this earth anymore.'),
  4722. (195, '2016-12-23 15:14:10', 'Franklyn (uid: 10) prisoned Tony_Freeman (uid: 24) for 60 minutes, reason: DM [/dm]'),
  4723. (196, '2016-12-23 15:46:59', 'Lance (uid: 11) prisoned Jonathan_Fabbrie (uid: 33) for 30 minutes, reason: C-Bug'),
  4724. (197, '2016-12-23 15:52:17', 'Tyler_Huntley (uid: 2) kicked Terry_Chigga (uid: 169), reason: Stop fucking spamming, I know.'),
  4725. (198, '2016-12-23 16:24:00', 'Franklyn_Menace (uid: 10) has unbanned wallace_lanvins.'),
  4726. (199, '2016-12-23 16:46:24', 'JEinstein (uid: 1) kicked Tyler_X_Cage (uid: 26), reason: i''ve ask you many times today to stop spamming my name on report'),
  4727. (200, '2016-12-23 17:54:02', 'Tommy_Gates (uid: 81) prisoned Tony_Freeman (uid: 24) for 120 minutes, reason: DM [/dm]'),
  4728. (201, '2016-12-23 17:54:16', 'Tommy_Gates (uid: 81) prisoned Gre_Hunter (uid: 39) for 60 minutes, reason: DM [/dm]'),
  4729. (202, '2016-12-23 18:01:42', 'Tommy_Gates (uid: 81) prisoned Julio_Wolves (uid: 576) for 60 minutes, reason: DM [/dm]'),
  4730. (203, '2016-12-23 18:06:33', 'Tommy_Gates (uid: 81) silently jailed Jonathan_Fabbrie (uid: 33) for 15 minutes, reason: car park');
  4731. -- --------------------------------------------------------
  4732. --
  4733. -- Table structure for table `log_referrals`
  4734. --
  4735. CREATE TABLE IF NOT EXISTS `log_referrals` (
  4736. `id` int(10) NOT NULL,
  4737. `date` datetime DEFAULT NULL,
  4738. `description` varchar(255) DEFAULT NULL
  4739. ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
  4740. --
  4741. -- Dumping data for table `log_referrals`
  4742. --
  4743. INSERT INTO `log_referrals` (`id`, `date`, `description`) VALUES
  4744. (1, '2016-12-20 16:01:00', 'Tiber_Septim (uid: 13) (IP: 77.101.242.124) has received 3 cookies for referring Jack_Lazlow (uid: 70) (IP: 92.12.214.183).'),
  4745. (2, '2016-12-20 20:43:12', 'Mystogan_Moons (uid: 41) (IP: 82.211.150.151) has received 3 cookies for referring Joga_Hernandez (uid: 77) (IP: 24.87.149.175).'),
  4746. (3, '2016-12-21 00:16:40', 'Josh_Einstein (uid: 1) (IP: 74.139.143.139) has received 3 cookies for referring Darrell_Ford (uid: 21) (IP: 70.31.48.16).'),
  4747. (4, '2016-12-21 06:10:49', 'jason_Gucci_Sosa (uid: 23) (IP: 79.106.209.148) has received 3 cookies for referring Wiz_Gucci_Sosa (uid: 36) (IP: 217.73.139.19).'),
  4748. (5, '2016-12-21 07:06:40', 'Asykon_Amphibia (uid: 6) (IP: 217.208.122.63) has received 3 cookies for referring Cletus_Amphibia (uid: 110) (IP: 81.234.68.95).'),
  4749. (6, '2016-12-21 12:44:32', 'Tyler_X_Cage (uid: 26) (IP: 89.138.176.127) has received 3 cookies for referring Tony_Freeman (uid: 24) (IP: 5.102.195.19).'),
  4750. (7, '2016-12-21 12:55:39', 'Asykon_Amphibia (uid: 6) (IP: 217.208.122.63) has received 3 cookies for referring Cynthia_Tucker (uid: 73) (IP: 84.25.253.214).'),
  4751. (8, '2016-12-21 13:05:50', 'Tiber_Septim (uid: 13) (IP: 77.101.242.124) has received 3 cookies for referring Tyrone_Coleman (uid: 85) (IP: 86.25.126.189).'),
  4752. (9, '2016-12-21 14:09:13', 'Asykon_Amphibia (uid: 6) (IP: 217.208.122.63) has received 3 cookies for referring Raven_Street (uid: 69) (IP: 119.73.102.52).'),
  4753. (10, '2016-12-21 15:03:59', 'Tyler_X_Cage (uid: 26) (IP: 89.138.176.127) has received 3 cookies for referring David_Ross (uid: 58) (IP: 31.210.187.59).'),
  4754. (11, '2016-12-21 16:00:18', 'Asykon_Amphibia (uid: 6) (IP: 217.208.122.63) has received 3 cookies for referring Vitsz_Hayes (uid: 205) (IP: 112.201.88.237).'),
  4755. (12, '2016-12-21 16:57:30', 'Jordan_Trapz (uid: 132) (IP: 90.216.196.220) has received 3 cookies for referring Jayden_Trapz (uid: 181) (IP: 109.159.26.217).'),
  4756. (13, '2016-12-21 17:29:41', 'David_Ross (uid: 58) (IP: 31.210.187.59) has received 3 cookies for referring Lrizz_Devil (uid: 144) (IP: 202.159.135.203).'),
  4757. (14, '2016-12-21 22:15:20', 'David_Amphibia (uid: 204) (IP: 222.124.85.102) has received 3 cookies for referring Nathan_Hopskin (uid: 219) (IP: 36.84.13.207).'),
  4758. (15, '2016-12-21 22:16:00', 'Asykon_Amphibia (uid: 6) (IP: 217.208.122.63) has received 3 cookies for referring David_Amphibia (uid: 204) (IP: 222.124.85.102).'),
  4759. (16, '2016-12-22 00:14:23', 'Brian_Ozbourne (uid: 232) (IP: 180.190.92.176) has received 3 cookies for referring Jang_Ozbourne (uid: 295) (IP: 180.190.92.141).'),
  4760. (17, '2016-12-22 01:00:25', 'Asykon_Amphibia (uid: 6) (IP: 217.208.122.63) has received 3 cookies for referring Leonardo_Fox (uid: 239) (IP: 36.83.203.162).'),
  4761. (18, '2016-12-22 02:09:36', 'Walter_Cash (uid: 16) (IP: 213.238.251.112) has received 3 cookies for referring Ed_Slash (uid: 34) (IP: 45.116.232.5).');
  4762. -- --------------------------------------------------------
  4763. --
  4764. -- Table structure for table `log_vip`
  4765. --
  4766. CREATE TABLE IF NOT EXISTS `log_vip` (
  4767. `id` int(10) NOT NULL,
  4768. `date` datetime DEFAULT NULL,
  4769. `description` varchar(255) DEFAULT NULL
  4770. ) ENGINE=InnoDB AUTO_INCREMENT=105 DEFAULT CHARSET=latin1;
  4771. --
  4772. -- Dumping data for table `log_vip`
  4773. --
  4774. INSERT INTO `log_vip` (`id`, `date`, `description`) VALUES
  4775. (1, '2016-12-20 01:17:04', 'Test_McTest (uid: 4) has given Test_McTest (uid: 4) a Limited donator package for 5 days.'),
  4776. (2, '2016-12-20 01:17:18', 'Test_McTest (uid: 4) has removed Josh_Einstein''s (uid: 1) Legendary donator package.'),
  4777. (3, '2016-12-20 01:17:20', 'Test_McTest (uid: 4) has removed Test_McTest''s (uid: 4) Limited donator package.'),
  4778. (4, '2016-12-20 01:47:35', 'Test_McTest (uid: 4) has given Josh_Einstein (uid: 1) a Legendary donator package for 50 days.'),
  4779. (5, '2016-12-20 04:45:03', 'Test_McTest (uid: 4) has given Test_McTest (uid: 4) a Limited donator package for 1 days.'),
  4780. (6, '2016-12-20 04:45:10', 'Test_McTest (uid: 4) has removed Test_McTest''s (uid: 4) Limited donator package.'),
  4781. (7, '2016-12-20 07:04:12', 'Test_McTest (uid: 4) has given Dann_Lazlow (uid: 8) a Legendary donator package for 30 days.'),
  4782. (8, '2016-12-20 07:04:19', 'Test_McTest (uid: 4) has given Dann_Lazlow (uid: 8) a Legendary donator package for 90 days.'),
  4783. (9, '2016-12-20 07:11:39', 'Test_McTest (uid: 4) has given Dann_Lazlow (uid: 8) a Legendary donator package for 2 days.'),
  4784. (10, '2016-12-20 07:11:40', 'Test_McTest (uid: 4) has given Dann_Lazlow (uid: 8) a Legendary donator package for 60 days.'),
  4785. (11, '2016-12-20 07:11:46', 'Test_McTest (uid: 4) has given Tori_Chester (uid: 9) a Legendary donator package for 1 days.'),
  4786. (12, '2016-12-20 07:11:47', 'Test_McTest (uid: 4) has given Tori_Chester (uid: 9) a Legendary donator package for 30 days.'),
  4787. (13, '2016-12-20 10:41:06', 'Lui_Mendez (uid: 12) has given Lui_Mendez (uid: 12) a Legendary donator package for 1 days.'),
  4788. (14, '2016-12-20 10:41:14', 'Lui_Mendez (uid: 12) has removed Lui_Mendez''s (uid: 12) Legendary donator package.'),
  4789. (15, '2016-12-20 11:33:13', 'Jamal_Burrows (uid: 4) has given Jamal_Burrows (uid: 4) a Limited donator package for 1 days.'),
  4790. (16, '2016-12-20 11:33:20', 'Jamal_Burrows (uid: 4) has removed Jamal_Burrows''s (uid: 4) Limited donator package.'),
  4791. (17, '2016-12-20 11:33:36', 'Tyler_Huntley (uid: 2) has given Tyler_Huntley (uid: 2) a Legendary donator package for 365 days.'),
  4792. (18, '2016-12-20 12:08:40', 'JEinstein (uid: 1) has given Tay_Forbes (uid: 15) a Legendary donator package for 30 days.'),
  4793. (19, '2016-12-20 12:11:11', 'Tyler_Huntley (uid: 2) has given Harley_Quinn (uid: 30) a Limited donator package for 31 days.'),
  4794. (20, '2016-12-20 12:31:13', 'JEinstein (uid: 1) has given Harley_Quinn (uid: 30) a Limited donator package for 30 days.'),
  4795. (21, '2016-12-20 13:40:22', 'JEinstein (uid: 1) has given John_Rider (uid: 18) a Limited donator package for 30 days.'),
  4796. (22, '2016-12-20 15:12:23', 'Tyler_Huntley (uid: 2) has given James_Maple (uid: 141) a Legendary donator package for 31 days.'),
  4797. (23, '2016-12-20 15:37:08', 'JEinstein (uid: 1) has given Lrizz_Devil (uid: 144) a Legendary donator package for 30 days.'),
  4798. (24, '2016-12-20 16:43:23', 'Legendary VIP Lrizz_Devil (uid: 144) has given Dan_Devil (uid: 157) a temporary one hour package.'),
  4799. (25, '2016-12-20 17:26:12', 'Legendary VIP Dann_Lazlow (uid: 8) has given Jack_Lazlow (uid: 70) a temporary one hour package.'),
  4800. (26, '2016-12-20 18:20:23', 'Legendary VIP James_Maple (uid: 141) has purchased phone number: 9 for $20000.'),
  4801. (27, '2016-12-20 20:40:34', 'JEinstein (uid: 1) has given James_Maple (uid: 141) a Legendary donator package for 45 days.'),
  4802. (28, '2016-12-21 00:06:01', 'JEinstein (uid: 1) has given Darrell_Ford (uid: 21) a Legendary donator package for 120 days.'),
  4803. (29, '2016-12-21 00:11:35', 'Legendary VIP Darrell_Ford (uid: 21) has purchased phone number: -777 for $20000.'),
  4804. (30, '2016-12-21 11:35:14', 'Limited VIP Harley_Quinn (uid: 30) has given Andrei_Dillinger (uid: 331) a temporary one hour package.'),
  4805. (31, '2016-12-21 13:24:36', 'JEinstein (uid: 1) has given Jonathan_Fabbrie (uid: 33) a Legendary donator package for 30 days.'),
  4806. (32, '2016-12-21 16:31:01', 'Legendary VIP Jonathan_Fabbrie (uid: 33) has purchased phone number: 7 for $20000.'),
  4807. (33, '2016-12-21 16:57:19', 'Legendary VIP Lrizz_Devil (uid: 144) has given Joga_Hernandez (uid: 77) a temporary one hour package.'),
  4808. (34, '2016-12-21 22:52:49', 'Tyler_Huntley (uid: 2) has given Franklyn_Menace (uid: 10) a Limited donator package for 31 days.'),
  4809. (35, '2016-12-21 23:04:11', 'Josh_Einstein (uid: 1) has given Gomer_Pyle (uid: 209) a Legendary donator package for 12 days.'),
  4810. (36, '2016-12-21 23:04:21', 'Josh_Einstein (uid: 1) has given Gomer_Pyle (uid: 209) a Legendary donator package for 365 days.'),
  4811. (37, '2016-12-23 12:49:03', 'Legendary VIP Ben_Barrage (uid: 355) has purchased phone number: 666 for $20000.'),
  4812. (38, '2016-12-23 12:49:55', 'Legendary VIP Ben_Harper (uid: 395) has purchased phone number: 10 for $20000.'),
  4813. (39, '2016-12-23 12:54:22', 'Legendary VIP Tyler_X_Cage (uid: 26) has purchased phone number: -7 for $20000.'),
  4814. (40, '2016-12-23 12:54:53', 'Legendary VIP Richard_Krauser (uid: 28) has purchased phone number: -2 for $20000.'),
  4815. (41, '2016-12-23 13:01:33', 'JEinstein (uid: 1) has given Troy_Grianda (uid: 526) a Legendary donator package for 3 days.'),
  4816. (42, '2016-12-23 13:01:52', 'JEinstein (uid: 1) has given Paris_Breyer (uid: 522) a Legendary donator package for 3 days.'),
  4817. (43, '2016-12-23 13:07:09', 'Legendary VIP Asykon_Amphibia (uid: 6) has purchased phone number: 8 for $20000.'),
  4818. (44, '2016-12-23 13:11:57', 'JEinstein (uid: 1) has given Jordy (uid: 132) a Legendary donator package for 3 days.'),
  4819. (45, '2016-12-23 13:12:27', 'Fig_Mcfig (uid: 21) has given Drake_Phixion (uid: 525) a Legendary donator package for 3 days.'),
  4820. (46, '2016-12-23 13:12:29', 'Fig_Mcfig (uid: 21) has given Callum_Riley (uid: 527) a Legendary donator package for 3 days.'),
  4821. (47, '2016-12-23 13:12:31', 'Fig_Mcfig (uid: 21) has given Kevin_Amphibia (uid: 529) a Legendary donator package for 3 days.'),
  4822. (48, '2016-12-23 13:12:35', 'Fig_Mcfig (uid: 21) has given Liam_Maxwell (uid: 361) a Legendary donator package for 3 days.'),
  4823. (49, '2016-12-23 13:12:48', 'Fig_Mcfig (uid: 21) has given Wallace_Lanvins (uid: 530) a Legendary donator package for 3 days.'),
  4824. (50, '2016-12-23 13:13:29', 'Legendary VIP Liam_Maxwell (uid: 361) has purchased phone number: -6969 for $20000.'),
  4825. (51, '2016-12-23 13:15:11', 'Fig_Mcfig (uid: 21) has given Wade_Dawson (uid: 532) a Legendary donator package for 3 days.'),
  4826. (52, '2016-12-23 13:15:24', 'Fig_Mcfig (uid: 21) has given Joseph_Meldish (uid: 528) a Legendary donator package for 3 days.'),
  4827. (53, '2016-12-23 13:15:39', 'Fig_Mcfig (uid: 21) has given Lance_Lanvins (uid: 11) a Legendary donator package for 3 days.'),
  4828. (54, '2016-12-23 13:16:26', 'Fig_Mcfig (uid: 21) has given Vallon_West (uid: 524) a Limited donator package for 30 days.'),
  4829. (55, '2016-12-23 13:16:46', 'Legendary VIP Danny_Delino (uid: 263) has purchased phone number: 420 for $20000.'),
  4830. (56, '2016-12-23 13:16:57', 'Legendary VIP Olly_Bronx (uid: 176) has purchased phone number: -41 for $20000.'),
  4831. (57, '2016-12-23 13:17:38', 'Fig_Mcfig (uid: 21) has given Chris_Lika (uid: 531) a Legendary donator package for 3 days.'),
  4832. (58, '2016-12-23 13:17:47', 'Legendary VIP Wallace_Lanvins (uid: 530) has purchased phone number: -420 for $20000.'),
  4833. (59, '2016-12-23 13:20:09', 'Legendary VIP Chris_Lika (uid: 531) has purchased phone number: -5 for $20000.'),
  4834. (60, '2016-12-23 13:28:52', 'Legendary VIP Kevin_Amphibia (uid: 529) has purchased phone number: -187 for $20000.'),
  4835. (61, '2016-12-23 13:33:21', 'Ronald_McDonald (uid: 21) has removed christopher_leaf''s (uid: 57) Legendary donator package.'),
  4836. (62, '2016-12-23 13:44:16', 'Limited VIP Vallon_West (uid: 524) has purchased phone number: 12 for $20000.'),
  4837. (63, '2016-12-23 13:48:05', 'Legendary VIP Mystogan_Moons (uid: 41) has purchased phone number: 96 for $20000.'),
  4838. (64, '2016-12-23 13:50:59', 'Ronald_McDonald (uid: 21) has given Franklyn_Menace (uid: 10) a Legendary donator package for 3 days.'),
  4839. (65, '2016-12-23 14:01:05', 'Legendary VIP David_Ross (uid: 58) has purchased phone number: 15 for $20000.'),
  4840. (66, '2016-12-23 14:01:50', 'Legendary VIP Tony_Freeman (uid: 24) has purchased phone number: -3 for $20000.'),
  4841. (67, '2016-12-23 14:02:46', 'Legendary VIP Callum_Riley (uid: 527) has purchased phone number: -4 for $20000.'),
  4842. (68, '2016-12-23 14:03:17', 'Legendary VIP Julia_Covenant (uid: 78) has purchased phone number: 54 for $20000.'),
  4843. (69, '2016-12-23 14:05:55', 'Ronald_McDonald (uid: 21) has given Juan_Florez (uid: 546) a Legendary donator package for 3 days.'),
  4844. (70, '2016-12-23 14:06:00', 'Tyler_Huntley (uid: 2) has given Juan_Florez (uid: 546) a Legendary donator package for 3 days.'),
  4845. (71, '2016-12-23 14:06:31', 'Legendary VIP Brian_Ozbourne (uid: 232) has purchased phone number: -16 for $20000.'),
  4846. (72, '2016-12-23 14:13:21', 'Legendary VIP Ed_Slash (uid: 34) has purchased phone number: 13 for $20000.'),
  4847. (73, '2016-12-23 14:29:09', 'Tiber (uid: 13) has given Kevin_Lancer (uid: 553) a Legendary donator package for 3 days.'),
  4848. (74, '2016-12-23 14:41:57', 'Legendary VIP Derek_Gucci_Sosa (uid: 17) has purchased phone number: -9 for $20000.'),
  4849. (75, '2016-12-23 15:01:41', 'JEinstein (uid: 1) has given Kassandra_Brooks (uid: 557) a Legendary donator package for 3 days.'),
  4850. (76, '2016-12-23 15:01:46', 'JEinstein (uid: 1) has given Julian_Trapz (uid: 556) a Legendary donator package for 3 days.'),
  4851. (77, '2016-12-23 15:02:44', 'Legendary VIP Brian_Ozbourne (uid: 232) has purchased phone number: -116 for $20000.'),
  4852. (78, '2016-12-23 15:03:07', 'Tyler_Huntley (uid: 2) has given razor_W_ramirez (uid: 266) a Legendary donator package for 3 days.'),
  4853. (79, '2016-12-23 15:06:37', 'Legendary VIP Curtis_Leaf (uid: 32) has purchased phone number: 25 for $20000.'),
  4854. (80, '2016-12-23 15:19:55', 'Legendary VIP razor_W_ramirez (uid: 266) has purchased phone number: 88 for $20000.'),
  4855. (81, '2016-12-23 15:21:24', 'Tyler_Huntley (uid: 2) has given Tyler_Kilo (uid: 558) a Legendary donator package for 3 days.'),
  4856. (82, '2016-12-23 15:22:43', 'Tyler_Huntley (uid: 2) has given Tyrone_D_Silva (uid: 559) a Legendary donator package for 3 days.'),
  4857. (83, '2016-12-23 15:31:43', 'Tyler_Huntley (uid: 2) has given Kai_Flame (uid: 550) a Legendary donator package for 3 days.'),
  4858. (84, '2016-12-23 15:41:07', 'Legendary VIP Troy_Gold_Forbes (uid: 483) has purchased phone number: 77 for $20000.'),
  4859. (85, '2016-12-23 15:45:31', 'Tyler_Huntley (uid: 2) has given Sergei_Kovalevsky (uid: 549) a Legendary donator package for 3 days.'),
  4860. (86, '2016-12-23 15:45:34', 'JEinstein (uid: 1) has given Sergei_Kovalevsky (uid: 549) a Legendary donator package for 3 days.'),
  4861. (87, '2016-12-23 15:50:03', 'Legendary VIP Kai_Flame (uid: 550) has purchased phone number: -22 for $20000.'),
  4862. (88, '2016-12-23 15:50:27', 'Tyler_Huntley (uid: 2) has given Terry_Chigga (uid: 169) a Legendary donator package for 3 days.'),
  4863. (89, '2016-12-23 15:51:40', 'Tyler_Huntley (uid: 2) has given Finn_Bloom (uid: 560) a Legendary donator package for 3 days.'),
  4864. (90, '2016-12-23 15:52:06', 'Tyler_Huntley (uid: 2) has given Ashlin_White (uid: 561) a Legendary donator package for 3 days.'),
  4865. (91, '2016-12-23 15:54:57', 'Legendary VIP Ignacio_M_Einstein (uid: 145) has purchased phone number: 100 for $20000.'),
  4866. (92, '2016-12-23 16:05:01', 'JEinstein (uid: 1) has given Lrizz_Devil (uid: 144) a Legendary donator package for 36 days.'),
  4867. (93, '2016-12-23 16:27:46', 'Tyler_Huntley (uid: 2) has given Chester_Cobra (uid: 565) a Legendary donator package for 3 days.'),
  4868. (94, '2016-12-23 16:29:39', 'Tyler_Huntley (uid: 2) has given Raven_Sheen (uid: 566) a Legendary donator package for 3 days.'),
  4869. (95, '2016-12-23 16:29:47', 'Tyler_Huntley (uid: 2) has given Bentley_Cash (uid: 563) a Legendary donator package for 3 days.'),
  4870. (96, '2016-12-23 16:31:03', 'Legendary VIP Thude_Hernandez (uid: 210) has purchased phone number: -911 for $20000.'),
  4871. (97, '2016-12-23 16:33:51', 'Legendary VIP Julia_Covenant (uid: 78) has purchased phone number: 21 for $20000.'),
  4872. (98, '2016-12-23 16:41:38', 'Legendary VIP Leon_Clarin (uid: 298) has purchased phone number: 18 for $20000.'),
  4873. (99, '2016-12-23 16:46:53', 'JEinstein (uid: 1) has given Kodak_Greatful (uid: 570) a Legendary donator package for 3 days.'),
  4874. (100, '2016-12-23 16:46:58', 'JEinstein (uid: 1) has given Savage_Greatful (uid: 572) a Legendary donator package for 3 days.'),
  4875. (101, '2016-12-23 16:47:48', 'JEinstein (uid: 1) has given Fredo_Greatful (uid: 571) a Legendary donator package for 3 days.'),
  4876. (102, '2016-12-23 16:49:46', 'Legendary VIP Lrizz_Devil (uid: 144) has purchased phone number: 14 for $20000.'),
  4877. (103, '2016-12-23 17:30:28', 'Legendary VIP Finn_Bloom (uid: 560) has purchased phone number: 44 for $20000.'),
  4878. (104, '2016-12-23 17:40:19', 'Legendary VIP Max_Thomax (uid: 47) has purchased phone number: 171 for $20000.');
  4879. -- --------------------------------------------------------
  4880. --
  4881. -- Table structure for table `phonebook`
  4882. --
  4883. CREATE TABLE IF NOT EXISTS `phonebook` (
  4884. `name` varchar(24) DEFAULT NULL,
  4885. `number` int(10) DEFAULT NULL
  4886. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  4887. --
  4888. -- Dumping data for table `phonebook`
  4889. --
  4890. INSERT INTO `phonebook` (`name`, `number`) VALUES
  4891. ('Lui_Mendez', 5);
  4892. -- --------------------------------------------------------
  4893. --
  4894. -- Table structure for table `points`
  4895. --
  4896. CREATE TABLE IF NOT EXISTS `points` (
  4897. `id` tinyint(2) DEFAULT NULL,
  4898. `name` varchar(32) DEFAULT NULL,
  4899. `capturedby` varchar(24) DEFAULT 'No-one',
  4900. `capturedgang` tinyint(2) DEFAULT '-1',
  4901. `type` tinyint(2) DEFAULT '0',
  4902. `profits` int(10) DEFAULT '0',
  4903. `time` tinyint(2) DEFAULT '24',
  4904. `point_x` float DEFAULT '0',
  4905. `point_y` float DEFAULT '0',
  4906. `point_z` float DEFAULT '0',
  4907. `pointinterior` tinyint(2) DEFAULT '0',
  4908. `pointworld` int(10) DEFAULT '0'
  4909. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  4910. --
  4911. -- Dumping data for table `points`
  4912. --
  4913. INSERT INTO `points` (`id`, `name`, `capturedby`, `capturedgang`, `type`, `profits`, `time`, `point_x`, `point_y`, `point_z`, `pointinterior`, `pointworld`) VALUES
  4914. (0, 'Materials Pickup 1', 'Simon_Gucci_Sosa', 3, 6, 75, 20, 1423.67, -1315.71, 13.555, 0, 0),
  4915. (1, 'Materials Pickup 2', 'David_Amphibia', 0, 7, 14550, 17, 2391.33, -2008.55, 13.554, 0, 0),
  4916. (2, 'Materials Factory 1', 'David_Amphibia', 0, 8, 5475, 12, 2172.71, -2264.04, 13.341, 0, 0),
  4917. (3, 'Materials Factory 2', 'Blake_Amphibia', 0, 9, 25425, 3, 2285.95, -1105.82, 37.977, 0, 0),
  4918. (4, 'Fossil Fuel Company', 'Blake_Amphibia', 0, 5, 1410, 5, 2629.96, -2107.81, 16.953, 0, 0),
  4919. (5, 'Crack Lab', 'Blake_Amphibia', 0, 3, 12500, 1, 2346.82, -1184.91, 1027.98, 5, 9),
  4920. (6, 'Drug Factory', 'Blake_Amphibia', 0, 1, 21750, 18, 2205.89, 1580.99, 999.98, 1, 4000020),
  4921. (7, 'Auto Export Company', 'Ed_Slash', 3, 4, 1275, 16, 2729.65, -2451.44, 17.594, 0, 0),
  4922. (8, 'Drug Den', 'No-one', -1, 2, 20000, 19, 322.611, 1119.19, 1083.88, 5, 8);
  4923. -- --------------------------------------------------------
  4924. --
  4925. -- Table structure for table `shots`
  4926. --
  4927. CREATE TABLE IF NOT EXISTS `shots` (
  4928. `id` int(10) NOT NULL,
  4929. `playerid` smallint(3) DEFAULT NULL,
  4930. `weaponid` tinyint(2) DEFAULT NULL,
  4931. `hittype` tinyint(2) DEFAULT NULL,
  4932. `hitid` int(10) DEFAULT NULL,
  4933. `hitplayer` varchar(24) DEFAULT NULL,
  4934. `pos_x` float DEFAULT NULL,
  4935. `pos_y` float DEFAULT NULL,
  4936. `pos_z` float DEFAULT NULL,
  4937. `timestamp` int(10) DEFAULT NULL
  4938. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  4939. -- --------------------------------------------------------
  4940. --
  4941. -- Table structure for table `texts`
  4942. --
  4943. CREATE TABLE IF NOT EXISTS `texts` (
  4944. `id` int(10) NOT NULL,
  4945. `sender_number` int(10) DEFAULT NULL,
  4946. `recipient_number` int(10) DEFAULT NULL,
  4947. `sender` varchar(24) DEFAULT NULL,
  4948. `date` datetime DEFAULT NULL,
  4949. `message` varchar(255) DEFAULT NULL
  4950. ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;
  4951. --
  4952. -- Dumping data for table `texts`
  4953. --
  4954. INSERT INTO `texts` (`id`, `sender_number`, `recipient_number`, `sender`, `date`, `message`) VALUES
  4955. (1, 972022, 3, 'Lrizz_Devil', '2016-12-20 17:05:04', 't'),
  4956. (2, 972022, 3, 'Lrizz_Devil', '2016-12-20 17:05:14', 'how did u get 3 fucker'),
  4957. (11, 7, 3, 'Franklyn_Menace', '2016-12-23 13:57:48', 'I have cookies'),
  4958. (13, 976325, 1, 'Alex_Johnson', '2016-12-23 14:49:08', 'do vip have free namechange too? :3))'),
  4959. (14, 964683, 1, 'Adam_Menace', '2016-12-23 15:17:45', 'yo'),
  4960. (15, 964683, 1, 'Adam_Menace', '2016-12-23 15:17:51', 'What happened to FBI'),
  4961. (16, 964321, -22, 'Bentley_Cash', '2016-12-23 16:59:04', 'are u from Wild?');
  4962. -- --------------------------------------------------------
  4963. --
  4964. -- Table structure for table `turfs`
  4965. --
  4966. CREATE TABLE IF NOT EXISTS `turfs` (
  4967. `id` tinyint(2) DEFAULT NULL,
  4968. `name` varchar(32) DEFAULT NULL,
  4969. `capturedby` varchar(24) DEFAULT 'No-one',
  4970. `capturedgang` tinyint(2) DEFAULT '-1',
  4971. `type` tinyint(2) DEFAULT '0',
  4972. `time` tinyint(2) DEFAULT '12',
  4973. `min_x` float DEFAULT '0',
  4974. `min_y` float DEFAULT '0',
  4975. `max_x` float DEFAULT '0',
  4976. `max_y` float DEFAULT '0',
  4977. `height` float DEFAULT '0'
  4978. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  4979. --
  4980. -- Dumping data for table `turfs`
  4981. --
  4982. INSERT INTO `turfs` (`id`, `name`, `capturedby`, `capturedgang`, `type`, `time`, `min_x`, `min_y`, `max_x`, `max_y`, `height`) VALUES
  4983. (2, 'East Beach Avenue', 'No-one', -1, 0, 0, 2747.71, -1664.65, 2844.56, -1489.14, 13.242),
  4984. (1, 'East Beach Southern Ave', 'No-one', -1, 0, 0, 2625.12, -1666.95, 2742.56, -1496.26, 30.849),
  4985. (3, 'East Beach North Ave', 'none', -1, 0, 0, 2635.36, -1492.7, 2742.64, -1268.07, 59.771),
  4986. (4, 'East Beach', 'No-one', -1, 0, 0, 2747.72, -1478.21, 2866.08, -1152.48, 30.99),
  4987. (5, 'Los Flores Apartments', 'No-one', -1, 0, 0, 2561.29, -1264.92, 2746.88, -1173.4, 69.411),
  4988. (0, 'Los Flores Market', 'No-one', -1, 0, 0, 2632.97, -1169.17, 2744.51, -1058.17, 70.29),
  4989. (6, 'Los Flores Overpass', 'No-one', -1, 0, 0, 2375.9, -1163.54, 2631.72, -1027.74, 75.379),
  4990. (7, 'East Los Santos 1st Ave', 'No-one', -1, 0, 0, 2561.14, -1453.22, 2631.94, -1267.37, 34.526),
  4991. (8, 'Big Smoke''s Cocaine Factory', 'No-one', -1, 6, 0, 2442.02, -1454.15, 2555.42, -1174.34, 24.106),
  4992. (9, 'Jefferson East', 'Michael_Render', -1, 0, 11, 2293.03, -1383.59, 2436.45, -1174.36, 36.697),
  4993. (10, 'Jefferson Intersection', 'No-one', -1, 0, 0, 2355.23, -1454.06, 2438, -1385.28, 24.238),
  4994. (11, 'East Los Santos Car Wash', 'No-one', -1, 0, 0, 2422.13, -1628.33, 2631.54, -1455.59, 11.186),
  4995. (12, 'Jeffferson', 'No-one', -1, 0, 0, 2354.67, -1626.87, 2420.75, -1456.93, 25.574),
  4996. (13, 'Grove Street', 'No-one', 2, 8, 0, 2208.74, -1721.31, 2623.36, -1632.03, 12.25),
  4997. (14, 'Ganton Apartments', 'Michael_Render', -1, 0, 12, 2207.5, -1825.38, 2413.24, -1726.84, 13.415),
  4998. (15, '98 Cent Block', 'No-one', -1, 0, 0, 2414.4, -1931.88, 2650.78, -1725.56, 11.523),
  4999. (16, 'Willowfield', 'No-one', -1, 0, 0, 2414.42, -2038.13, 2582.74, -1933.7, 13.383),
  5000. (17, 'Seville Mod Shop', 'No-one', -1, 0, 0, 2584.39, -2039.48, 2714.08, -1933.24, 13.611),
  5001. (18, 'Stadium', 'No-one', -1, 0, 0, 2653.67, -1880.26, 2801.89, -1669.6, 11.689),
  5002. (19, 'Playa Del Seville', 'No-one', -1, 0, 0, 2715.65, -2039.61, 2812.45, -1879.98, 11.055),
  5003. (20, 'Full Metal Jacket Manufacturer', 'No-one', -1, 3, 0, 2425.22, -2144.1, 2702.92, -2066.68, 13.547),
  5004. (21, 'Ocean Docks Oil Field', 'No-one', -1, 0, 0, 2282.69, -2144.59, 2423.45, -2059.08, 12.478),
  5005. (22, 'Willowfield Storage', 'No-one', -1, 0, 0, 2217.13, -2055.25, 2420.22, -1972.52, 13.547),
  5006. (23, 'Willowfield Apartments', 'Michael_Render', -1, 0, 12, 2217.48, -1971.93, 2418.75, -1825.56, 13.547),
  5007. (25, 'Idlewood East Apartment Complex', 'Michael_Render', -1, 0, 12, 2082.09, -1752.08, 2210.51, -1613.05, 13.952),
  5008. (26, 'Idlewood', 'Michael_Render', -1, 0, 12, 1941.3, -1752.47, 2090.17, -1612.39, 13.374),
  5009. (27, 'Idlewood Storage', 'Michael_Render', -1, 0, 12, 1962.04, -1931.88, 2081.37, -1753.02, 13.383),
  5010. (28, 'Idlewood Hollow Point Depot', 'Michael_Render', -1, 1, 12, 1822.03, -1931.94, 1961.11, -1753.13, 13.391),
  5011. (29, 'Alhambra', 'No-one', -1, 0, 0, 1822.11, -1751.88, 1941.08, -1612.72, 13.383),
  5012. (24, 'Idlewood Pizza Stack', 'Michael_Render', -1, 0, 12, 2083.96, -1893.98, 2213.29, -1753.43, 13.486),
  5013. (30, 'El Corona', 'No-one', 1, 8, 0, 1823.57, -2051.69, 1960.93, -1933.13, 13.377),
  5014. (31, 'El Corona Apartments', 'No-one', -1, 0, 0, 1823.62, -2165.93, 1961.05, -2052.83, 13.383),
  5015. (32, 'Willowfield Junk Yard', 'Michael_Render', -1, 0, 12, 2082.37, -2006.93, 2204.13, -1894.95, 13.547),
  5016. (33, 'El Corona Cocaine Outlet', 'Michael_Render', -1, 6, 12, 1962.26, -2053.42, 2081.07, -1933.29, 13.383),
  5017. (34, 'Ganton Red Bridge', 'No-one', -1, 0, 0, 2214.84, -1630.07, 2352.28, -1484.81, 22.586),
  5018. (35, 'Jefferson Courtyard', 'No-one', -1, 0, 0, 2212.65, -1483.41, 2353.26, -1385.98, 23.828),
  5019. (36, 'Jefferson', 'No-one', -1, 0, 0, 2176.03, -1383.96, 2286.2, -1150.17, 23.828),
  5020. (37, 'West Jefferson', 'No-one', -1, 0, 0, 2070.09, -1382.39, 2169.57, -1111.22, 23.82),
  5021. (38, 'Glen Park Apartment Complex', 'No-one', -1, 0, 0, 1850.21, -1340.38, 2068.56, -1261.22, 23.82),
  5022. (39, 'Glen Park', 'No-one', -1, 0, 0, 1847.58, -1260.82, 2068.38, -1136.51, 24.144),
  5023. (40, 'Glen Park Shacks', 'No-one', 3, 8, 0, 1849.05, -1135.02, 2068.04, -1032.26, 25.707),
  5024. (41, 'Los Colinas East Hill', 'Michael_Render', -1, 0, 10, 2274.45, -1148.89, 2374.98, -1030, 26.746),
  5025. (42, 'Las Colinas', 'No-one', -1, 0, 0, 2176.13, -1145.99, 2267.03, -969.411, 87.368),
  5026. (43, 'Los Colinas West Hill', 'No-one', -1, 0, 0, 2068.41, -1119.16, 2169.56, -966.949, 85.39),
  5027. (44, 'Skate Park', 'Michael_Render', -1, 0, 10, 1850.1, -1450.57, 1975.87, -1341.51, 13.405),
  5028. (45, 'Idlewood Bridge', 'No-one', -1, 0, 0, 2117.54, -1614.48, 2212.16, -1384.71, 23.828),
  5029. (46, 'Idlewood Traphouse', 'Michael_Render', -1, 5, 12, 1814.41, -1611.69, 2097.35, -1533.69, 13.566),
  5030. (47, 'Amphibia Industries', 'No-one', 0, 8, 0, 1715.25, -1440.31, 1848.94, -1318.1, 13.566),
  5031. (48, 'Glen Park Towers', 'Michael_Render', -1, 0, 12, 1715.13, -1315.88, 1842.22, -1161.42, 13.55),
  5032. (49, 'Star Tower', 'Michael_Render', -1, 0, 12, 1455.32, -1440.42, 1714.23, -1301.6, 13.391),
  5033. (50, 'Downtoun Los Santos', 'Michael_Render', -1, 0, 12, 1454.63, -1300.31, 1714.2, -1161.3, 23.654),
  5034. (51, 'Little Mexico Church', 'Michael_Render', -1, 0, 12, 1690.01, -1865.92, 1821.18, -1733.09, 13.383),
  5035. (52, 'Conference Center', 'No-one', -1, 0, 0, 1689.89, -1731.76, 1820.78, -1612.98, 13.391),
  5036. (57, 'Market Extortion', 'Lazlow', -1, 7, 0, 1216.66, -1400.02, 1350.06, -1145.35, 23.689),
  5037. (59, 'Market Office Buildings', 'No-one', -1, 0, 0, 1186.35, -1571.68, 1287.63, -1400.83, 13.128),
  5038. (54, 'Verdant Bluffs', 'Michael_Render', -1, 0, 12, 1389.74, -1912.42, 1579.07, -1825.06, 13.738),
  5039. (55, 'Verona Conference Center', 'Lazlow', -1, 0, 0, 1178.08, -1851.79, 1287.19, -1572.88, 13.346),
  5040. (60, 'Verona Beach Mall', 'Lazlow', -1, 0, 0, 1037.93, -1852.07, 1176.37, -1572.74, 13.57),
  5041. (61, 'Big Ammunation', 'Michael_Render', -1, 0, 11, 1350.29, -1437.99, 1454.4, -1241.52, 13.547),
  5042. (62, 'Market Apartments', 'Michael_Render', -1, 0, 12, 1058.82, -1275.96, 1215.67, -1146, 13.771),
  5043. (63, 'Market', 'Michael_Render', -1, 0, 11, 942.601, -1399.89, 1057.8, -1145.99, 13.273),
  5044. (64, 'Mulholland Apartments', 'No-one', -1, 0, 0, 1162.99, -1144.25, 1349.63, -1036.93, 23.656),
  5045. (65, 'Temple Apartments', 'No-one', -1, 0, 0, 963.291, -1144.12, 1162.08, -1039.84, 30.09),
  5046. (66, 'Mulholland Tower', 'No-one', -1, 0, 0, 1162.6, -1039.05, 1345.68, -935.716, 31.747),
  5047. (67, 'Temple Drive', 'No-one', -1, 0, 0, 962.406, -1038.6, 1161.57, -948.443, 30.09),
  5048. (68, 'Graveyard', 'No-one', -1, 0, 0, 806.985, -1129.64, 952.213, -1070.84, 23.828),
  5049. (69, 'Coke Studios', 'No-one', -1, 6, 0, 809.067, -1306.57, 929.188, -1162.36, 15.137),
  5050. (58, 'Market Mall', 'No-one', -1, 0, 0, 1079.57, -1558.85, 1182.16, -1430.69, 29.524),
  5051. (70, 'Marina Market', 'No-one', -1, 0, 0, 918.08, -1571.44, 1057.39, -1401.31, 13.704),
  5052. (71, 'Verona Beach Apartments', 'No-one', -1, 0, 0, 918.079, -1775.31, 1036.8, -1573.21, 13.704),
  5053. (56, 'Verdan Bluffs Businesses', 'No-one', -1, 0, 0, 1291.11, -1909.01, 1388.29, -1733.02, 13.547),
  5054. (72, 'Conference Center', 'No-one', -1, 0, 0, 1182.73, -1851.7, 1288, -1572.84, 13.398),
  5055. (53, 'Verdant Bluffs Weapon Pipeline', 'Michael_Render', -1, 4, 12, 1580.44, -1870.27, 1680.12, -1787.56, 12.974),
  5056. (73, 'Commerce Poison Tip Depot', 'Michael_Render', -1, 2, 12, 1455.4, -1556.03, 1657.58, -1441.3, 13.383),
  5057. (74, 'Commerce Office District', 'Kenny_Phixion', -1, 0, 0, 1658.54, -1606.68, 1820.45, -1450.94, 13.558),
  5058. (75, 'Mulholland Traphouse', 'No-one', -1, 5, 0, 1225.1, -934.756, 1304.62, -851.745, 42.614);
  5059. -- --------------------------------------------------------
  5060. --
  5061. -- Table structure for table `users`
  5062. --
  5063. CREATE TABLE IF NOT EXISTS `users` (
  5064. `uid` int(10) NOT NULL,
  5065. `username` varchar(24) DEFAULT NULL,
  5066. `password` varchar(129) DEFAULT NULL,
  5067. `regdate` datetime DEFAULT NULL,
  5068. `lastlogin` datetime DEFAULT NULL,
  5069. `ip` varchar(16) DEFAULT NULL,
  5070. `setup` tinyint(1) DEFAULT '1',
  5071. `gender` tinyint(1) DEFAULT '1',
  5072. `age` tinyint(3) DEFAULT '18',
  5073. `skin` smallint(3) DEFAULT '299',
  5074. `camera_x` float DEFAULT '0',
  5075. `camera_y` float DEFAULT '0',
  5076. `camera_z` float DEFAULT '0',
  5077. `pos_x` float DEFAULT '0',
  5078. `pos_y` float DEFAULT '0',
  5079. `pos_z` float DEFAULT '0',
  5080. `pos_a` float DEFAULT '0',
  5081. `interior` tinyint(2) DEFAULT '0',
  5082. `world` int(10) DEFAULT '0',
  5083. `cash` int(10) DEFAULT '5000',
  5084. `bank` int(10) DEFAULT '10000',
  5085. `paycheck` int(10) DEFAULT '0',
  5086. `level` int(10) DEFAULT '1',
  5087. `exp` int(10) DEFAULT '0',
  5088. `minutes` tinyint(2) DEFAULT '0',
  5089. `hours` int(10) DEFAULT '0',
  5090. `adminlevel` int(10) DEFAULT '0',
  5091. `adminname` varchar(24) DEFAULT 'None',
  5092. `helperlevel` tinyint(2) DEFAULT '0',
  5093. `health` float DEFAULT '100',
  5094. `armor` float DEFAULT '0',
  5095. `upgradepoints` int(10) DEFAULT '0',
  5096. `warnings` tinyint(3) DEFAULT '0',
  5097. `injured` tinyint(1) DEFAULT '0',
  5098. `hospital` tinyint(1) DEFAULT '0',
  5099. `spawnhealth` float DEFAULT '50',
  5100. `spawnarmor` float DEFAULT '0',
  5101. `jailtype` tinyint(1) DEFAULT '0',
  5102. `jailtime` int(10) DEFAULT '0',
  5103. `newbiemuted` tinyint(1) DEFAULT '0',
  5104. `helpmuted` tinyint(1) DEFAULT '0',
  5105. `admuted` tinyint(1) DEFAULT '0',
  5106. `livemuted` tinyint(1) DEFAULT '0',
  5107. `globalmuted` tinyint(1) DEFAULT '0',
  5108. `reportmuted` tinyint(2) DEFAULT '0',
  5109. `reportwarns` tinyint(2) DEFAULT '0',
  5110. `fightstyle` tinyint(2) DEFAULT '4',
  5111. `locked` tinyint(1) DEFAULT '0',
  5112. `accent` varchar(16) DEFAULT 'None',
  5113. `cookies` int(10) DEFAULT '0',
  5114. `phone` int(10) DEFAULT '0',
  5115. `job` int(10) DEFAULT '-1',
  5116. `secondjob` tinyint(2) DEFAULT '-1',
  5117. `crimes` int(10) DEFAULT '0',
  5118. `arrested` int(10) DEFAULT '0',
  5119. `wantedlevel` tinyint(2) DEFAULT '0',
  5120. `materials` int(10) DEFAULT '0',
  5121. `weed` int(10) DEFAULT '0',
  5122. `cocaine` int(10) DEFAULT '0',
  5123. `meth` int(10) DEFAULT '0',
  5124. `painkillers` int(10) DEFAULT '0',
  5125. `seeds` int(10) DEFAULT '0',
  5126. `ephedrine` int(10) DEFAULT '0',
  5127. `muriaticacid` int(10) DEFAULT '0',
  5128. `bakingsoda` int(10) DEFAULT '0',
  5129. `cigars` int(10) DEFAULT '0',
  5130. `walkietalkie` tinyint(1) DEFAULT '0',
  5131. `channel` int(10) DEFAULT '0',
  5132. `rentinghouse` int(10) DEFAULT '0',
  5133. `spraycans` int(10) DEFAULT '0',
  5134. `boombox` tinyint(1) DEFAULT '0',
  5135. `mp3player` tinyint(1) DEFAULT '0',
  5136. `phonebook` tinyint(1) DEFAULT '0',
  5137. `fishingrod` tinyint(1) DEFAULT '0',
  5138. `fishingbait` int(10) DEFAULT '0',
  5139. `fishweight` int(10) DEFAULT '0',
  5140. `components` int(10) DEFAULT '0',
  5141. `courierskill` int(10) DEFAULT '0',
  5142. `fishingskill` int(10) DEFAULT '0',
  5143. `guardskill` int(10) DEFAULT '0',
  5144. `weaponskill` int(10) DEFAULT '0',
  5145. `mechanicskill` int(10) DEFAULT '0',
  5146. `lawyerskill` int(10) DEFAULT '0',
  5147. `smugglerskill` int(10) DEFAULT '0',
  5148. `toggletextdraws` tinyint(1) DEFAULT '0',
  5149. `toggleooc` tinyint(1) DEFAULT '0',
  5150. `togglephone` tinyint(1) DEFAULT '0',
  5151. `toggleadmin` tinyint(1) DEFAULT '0',
  5152. `togglehelper` tinyint(1) DEFAULT '0',
  5153. `togglenewbie` tinyint(1) DEFAULT '0',
  5154. `togglewt` tinyint(1) DEFAULT '0',
  5155. `toggleradio` tinyint(1) DEFAULT '0',
  5156. `togglevip` tinyint(1) DEFAULT '0',
  5157. `togglemusic` tinyint(1) DEFAULT '0',
  5158. `togglefaction` tinyint(1) DEFAULT '0',
  5159. `togglegang` tinyint(1) DEFAULT '0',
  5160. `togglenews` tinyint(1) DEFAULT '0',
  5161. `toggleglobal` tinyint(1) DEFAULT '1',
  5162. `togglecam` tinyint(1) DEFAULT '0',
  5163. `carlicense` tinyint(1) DEFAULT '0',
  5164. `vippackage` tinyint(2) DEFAULT '0',
  5165. `viptime` int(10) DEFAULT '0',
  5166. `vipcooldown` int(10) DEFAULT '0',
  5167. `weapon_0` tinyint(2) DEFAULT '0',
  5168. `weapon_1` tinyint(2) DEFAULT '0',
  5169. `weapon_2` tinyint(2) DEFAULT '0',
  5170. `weapon_3` tinyint(2) DEFAULT '0',
  5171. `weapon_4` tinyint(2) DEFAULT '0',
  5172. `weapon_5` tinyint(2) DEFAULT '0',
  5173. `weapon_6` tinyint(2) DEFAULT '0',
  5174. `weapon_7` tinyint(2) DEFAULT '0',
  5175. `weapon_8` tinyint(2) DEFAULT '0',
  5176. `weapon_9` tinyint(2) DEFAULT '0',
  5177. `weapon_10` tinyint(2) DEFAULT '0',
  5178. `weapon_11` tinyint(2) DEFAULT '0',
  5179. `weapon_12` tinyint(2) DEFAULT '0',
  5180. `ammo_0` smallint(5) DEFAULT '0',
  5181. `ammo_1` smallint(5) DEFAULT '0',
  5182. `ammo_2` smallint(5) DEFAULT '0',
  5183. `ammo_3` smallint(5) DEFAULT '0',
  5184. `ammo_4` smallint(5) DEFAULT '0',
  5185. `ammo_5` smallint(5) DEFAULT '0',
  5186. `ammo_6` smallint(5) DEFAULT '0',
  5187. `ammo_7` smallint(5) DEFAULT '0',
  5188. `ammo_8` smallint(5) DEFAULT '0',
  5189. `ammo_9` smallint(5) DEFAULT '0',
  5190. `ammo_10` smallint(5) DEFAULT '0',
  5191. `ammo_11` smallint(5) DEFAULT '0',
  5192. `ammo_12` smallint(5) DEFAULT '0',
  5193. `faction` tinyint(2) DEFAULT '-1',
  5194. `gang` tinyint(2) DEFAULT '-1',
  5195. `factionrank` tinyint(2) DEFAULT '0',
  5196. `gangrank` tinyint(2) DEFAULT '0',
  5197. `division` tinyint(2) DEFAULT '-1',
  5198. `contracted` int(10) DEFAULT '0',
  5199. `contractby` varchar(24) DEFAULT 'Nobody',
  5200. `bombs` int(10) DEFAULT '0',
  5201. `completedhits` int(10) DEFAULT '0',
  5202. `failedhits` int(10) DEFAULT '0',
  5203. `reports` int(10) DEFAULT '0',
  5204. `helprequests` int(10) DEFAULT '0',
  5205. `speedometer` tinyint(1) DEFAULT '1',
  5206. `factionmod` tinyint(1) DEFAULT '0',
  5207. `gangmod` tinyint(1) DEFAULT '0',
  5208. `banappealer` tinyint(1) DEFAULT '0',
  5209. `weedplanted` tinyint(1) DEFAULT '0',
  5210. `weedtime` int(10) DEFAULT '0',
  5211. `weedgrams` int(10) DEFAULT '0',
  5212. `weed_x` float DEFAULT '0',
  5213. `weed_y` float DEFAULT '0',
  5214. `weed_z` float DEFAULT '0',
  5215. `weed_a` float DEFAULT '0',
  5216. `inventoryupgrade` int(10) DEFAULT '0',
  5217. `addictupgrade` int(10) DEFAULT '0',
  5218. `traderupgrade` int(10) DEFAULT '0',
  5219. `assetupgrade` int(10) DEFAULT '0',
  5220. `pistolammo` smallint(5) DEFAULT '0',
  5221. `shotgunammo` smallint(5) DEFAULT '0',
  5222. `smgammo` smallint(5) DEFAULT '0',
  5223. `arammo` smallint(5) DEFAULT '0',
  5224. `rifleammo` smallint(5) DEFAULT '0',
  5225. `hpammo` smallint(5) DEFAULT '0',
  5226. `poisonammo` smallint(5) DEFAULT '0',
  5227. `fmjammo` smallint(5) DEFAULT '0',
  5228. `ammotype` tinyint(2) DEFAULT '0',
  5229. `ammoweapon` tinyint(2) DEFAULT '0',
  5230. `dmwarnings` tinyint(2) DEFAULT '0',
  5231. `weaponrestricted` int(10) DEFAULT '0',
  5232. `referral_uid` int(10) DEFAULT '0',
  5233. `refercount` int(10) DEFAULT '0',
  5234. `watch` tinyint(1) DEFAULT '0',
  5235. `gps` tinyint(1) DEFAULT '0',
  5236. `prisonedby` varchar(24) DEFAULT 'No-one',
  5237. `prisonreason` varchar(128) DEFAULT 'None',
  5238. `togglehud` tinyint(1) DEFAULT '1',
  5239. `clothes` smallint(3) DEFAULT '-1',
  5240. `showturfs` tinyint(1) DEFAULT '0',
  5241. `showlands` tinyint(1) DEFAULT '0',
  5242. `watchon` tinyint(1) DEFAULT '0',
  5243. `gpson` tinyint(1) DEFAULT '0',
  5244. `doublexp` int(10) DEFAULT '0',
  5245. `couriercooldown` int(10) DEFAULT '0',
  5246. `pizzacooldown` int(10) DEFAULT '0'
  5247. ) ENGINE=InnoDB AUTO_INCREMENT=589 DEFAULT CHARSET=latin1;
  5248. --
  5249. -- Dumping data for table `users`
  5250. --
  5251. -- --------------------------------------------------------
  5252. --
  5253. -- Table structure for table `vehicles`
  5254. --
  5255. CREATE TABLE IF NOT EXISTS `vehicles` (
  5256. `id` int(10) NOT NULL,
  5257. `ownerid` int(10) DEFAULT '0',
  5258. `owner` varchar(24) DEFAULT 'Nobody',
  5259. `modelid` smallint(3) DEFAULT '0',
  5260. `price` int(10) DEFAULT '0',
  5261. `tickets` int(10) DEFAULT '0',
  5262. `locked` tinyint(1) DEFAULT '0',
  5263. `plate` varchar(32) DEFAULT 'None',
  5264. `fuel` tinyint(3) DEFAULT '100',
  5265. `health` float DEFAULT '1000',
  5266. `pos_x` float DEFAULT '0',
  5267. `pos_y` float DEFAULT '0',
  5268. `pos_z` float DEFAULT '0',
  5269. `pos_a` float DEFAULT '0',
  5270. `color1` smallint(3) DEFAULT '0',
  5271. `color2` smallint(3) DEFAULT '0',
  5272. `paintjob` tinyint(2) DEFAULT '-1',
  5273. `interior` tinyint(2) DEFAULT '0',
  5274. `world` int(10) DEFAULT '0',
  5275. `neon` smallint(5) DEFAULT '0',
  5276. `neonenabled` tinyint(1) DEFAULT '0',
  5277. `trunk` tinyint(1) DEFAULT '0',
  5278. `mod_1` smallint(4) DEFAULT '0',
  5279. `mod_2` smallint(4) DEFAULT '0',
  5280. `mod_3` smallint(4) DEFAULT '0',
  5281. `mod_4` smallint(4) DEFAULT '0',
  5282. `mod_5` smallint(4) DEFAULT '0',
  5283. `mod_6` smallint(4) DEFAULT '0',
  5284. `mod_7` smallint(4) DEFAULT '0',
  5285. `mod_8` smallint(4) DEFAULT '0',
  5286. `mod_9` smallint(4) DEFAULT '0',
  5287. `mod_10` smallint(4) DEFAULT '0',
  5288. `mod_11` smallint(4) DEFAULT '0',
  5289. `mod_12` smallint(4) DEFAULT '0',
  5290. `mod_13` smallint(4) DEFAULT '0',
  5291. `mod_14` smallint(4) DEFAULT '0',
  5292. `cash` int(10) DEFAULT '0',
  5293. `materials` int(10) DEFAULT '0',
  5294. `weed` int(10) DEFAULT '0',
  5295. `cocaine` int(10) DEFAULT '0',
  5296. `meth` int(10) DEFAULT '0',
  5297. `painkillers` int(10) DEFAULT '0',
  5298. `weapon_1` tinyint(2) DEFAULT '0',
  5299. `weapon_2` tinyint(2) DEFAULT '0',
  5300. `weapon_3` tinyint(2) DEFAULT '0',
  5301. `ammo_1` smallint(5) DEFAULT '0',
  5302. `ammo_2` smallint(5) DEFAULT '0',
  5303. `ammo_3` smallint(5) DEFAULT '0',
  5304. `gangid` tinyint(2) DEFAULT '-1',
  5305. `factiontype` tinyint(2) DEFAULT '0',
  5306. `job` tinyint(2) DEFAULT '-1',
  5307. `respawndelay` int(10) DEFAULT '0',
  5308. `pistolammo` smallint(5) DEFAULT '0',
  5309. `shotgunammo` smallint(5) DEFAULT '0',
  5310. `smgammo` smallint(5) DEFAULT '0',
  5311. `arammo` smallint(5) DEFAULT '0',
  5312. `rifleammo` smallint(5) DEFAULT '0',
  5313. `hpammo` smallint(5) DEFAULT '0',
  5314. `poisonammo` smallint(5) DEFAULT '0',
  5315. `fmjammo` smallint(5) DEFAULT '0'
  5316. ) ENGINE=InnoDB AUTO_INCREMENT=203 DEFAULT CHARSET=latin1;
  5317. --
  5318. -- Dumping data for table `vehicles`
  5319. --
  5320. INSERT INTO `vehicles` (`id`, `ownerid`, `owner`, `modelid`, `price`, `tickets`, `locked`, `plate`, `fuel`, `health`, `pos_x`, `pos_y`, `pos_z`, `pos_a`, `color1`, `color2`, `paintjob`, `interior`, `world`, `neon`, `neonenabled`, `trunk`, `mod_1`, `mod_2`, `mod_3`, `mod_4`, `mod_5`, `mod_6`, `mod_7`, `mod_8`, `mod_9`, `mod_10`, `mod_11`, `mod_12`, `mod_13`, `mod_14`, `cash`, `materials`, `weed`, `cocaine`, `meth`, `painkillers`, `weapon_1`, `weapon_2`, `weapon_3`, `ammo_1`, `ammo_2`, `ammo_3`, `gangid`, `factiontype`, `job`, `respawndelay`, `pistolammo`, `shotgunammo`, `smgammo`, `arammo`, `rifleammo`, `hpammo`, `poisonammo`, `fmjammo`) VALUES
  5321. (56, 0, 'Nobody', 596, 0, 0, 0, 'None', 100, 1000, 1591.58, -1710.68, 5.541, 0.958, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5322. (57, 0, 'Nobody', 596, 0, 0, 0, 'None', 100, 1000, 1587.34, -1710.69, 5.612, 358.644, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 30, 0, 0, 0, 0, 0, 0, 0, 0),
  5323. (58, 0, 'Nobody', 596, 0, 0, 0, 'None', 100, 1000, 1583.4, -1710.76, 5.612, 359.423, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5324. (59, 0, 'Nobody', 596, 0, 0, 0, 'None', 100, 1000, 1578.46, -1710.88, 5.609, 359.832, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5325. (60, 0, 'Nobody', 596, 0, 0, 0, 'None', 100, 1000, 1574.35, -1710.98, 5.611, 0.205, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5326. (61, 0, 'Nobody', 596, 0, 0, 0, 'None', 100, 1000, 1570.09, -1711.07, 5.612, 0.512, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5327. (62, 0, 'Nobody', 601, 0, 0, 0, 'None', 100, 1000, 1564.24, -1712.32, 5.729, 0, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5328. (63, 0, 'Nobody', 427, 0, 0, 0, 'None', 100, 1000, 1529.28, -1687.9, 6.01, 271.972, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5329. (64, 0, 'Nobody', 427, 0, 0, 0, 'None', 100, 1000, 1529.05, -1683.8, 5.986, 270.829, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5330. (65, 0, 'Nobody', 523, 0, 0, 0, 'None', 100, 1000, 1586.03, -1680.35, 5.473, 272.256, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5331. (66, 0, 'Nobody', 523, 0, 0, 0, 'None', 100, 1000, 1585.95, -1677.78, 5.467, 275.417, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5332. (67, 0, 'Nobody', 415, 0, 0, 0, 'None', 100, 1000, 278.928, -1535.46, 24.368, 237.213, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 320, 0, 0, 0, 0, 0, 0, 0, 0),
  5333. (68, 0, 'Nobody', 599, 0, 0, 0, 'None', 100, 1000, 1585.76, -1671.82, 6.142, 270.967, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5334. (69, 0, 'Nobody', 560, 0, 0, 0, 'None', 100, 1000, 1530.32, -1643.79, 5.609, 181.899, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5335. (70, 0, 'Nobody', 560, 0, 0, 0, 'None', 100, 1000, 1534.82, -1643.28, 5.606, 179.821, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5336. (71, 156, 'Lui_Mendez', 510, 10000, 0, 1, 'None', 100, 988.796, 1184.06, -1316.52, 13.173, 167.771, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5337. (72, 147, 'Tyler_Huntley', 560, 0, 0, 1, 'None', 100, 1000, 1659.75, -2340.01, 1536.52, 90.373, 0, 0, -1, 3, 2000018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5338. (73, 147, 'Tyler_Huntley', 562, 0, 0, 0, 'None', 98, 300, 1660.19, -2348.44, 1536.46, 90.868, 0, 0, -1, 3, 2000018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5339. (74, 147, 'Tyler_Huntley', 522, 0, 0, 1, 'None', 75, 962.697, 1662.12, -2345.01, 1535.06, 237.723, 0, 0, -1, 3, 2000018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5340. (75, 147, 'Tyler_Huntley', 409, 0, 0, 0, 'None', 98, 993.803, 1490.37, -706.546, 94.543, 213.772, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5341. (76, 147, 'Tyler_Huntley', 444, 0, 0, 0, 'None', 99, 998.293, 1505.14, -691.435, 95.121, 179.131, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5342. (77, 158, 'Franklyn_Menace', 560, 100000, 0, 0, 'None', 0, 1000, 562.397, -1283.85, 17.0007, 0, 0, 0, 127, 0, 0, 0, 0, 0, 1138, 0, 1032, 1026, 0, 1010, 1028, 1077, 0, 1087, 1170, 1140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5343. (78, 156, 'Lui_Mendez', 560, 100000, 0, 1, 'None', 82, 1000, 1188.82, -1313.51, 13.269, 181.171, 0, 0, 2, 0, 0, 18651, 1, 1, 1138, 0, 1032, 1026, 0, 1010, 1028, 1080, 0, 0, 1170, 1140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5344. (79, 0, 'Nobody', 416, 0, 0, 0, 'None', 100, 1000, 1179.36, -1308.53, 13.919, 268.947, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 2, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0),
  5345. (80, 0, 'Nobody', 416, 0, 0, 0, 'None', 100, 1000, 1179.68, -1339.01, 13.967, 272.672, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 2, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0),
  5346. (81, 0, 'Nobody', 407, 0, 0, 0, 'None', 100, 1000, 1566.69, -2176.52, 13.797, 179.921, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 2, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5347. (82, 0, 'Nobody', 407, 0, 0, 0, 'None', 100, 1000, 1572.58, -2176.6, 13.782, 180.213, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 2, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5348. (83, 0, 'Nobody', 416, 0, 0, 0, 'None', 100, 1000, 1596.05, -2174.92, 13.679, 180.686, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 2, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0),
  5349. (84, 0, 'Nobody', 416, 0, 0, 0, 'None', 100, 1000, 1600.69, -2174.73, 13.679, 182.859, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 2, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5350. (85, 0, 'Nobody', 416, 0, 0, 0, 'None', 100, 1000, 1606.27, -2175.65, 13.669, 181.019, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 2, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5351. (86, 0, 'Nobody', 416, 0, 0, 0, 'None', 100, 1000, 2015.33, -1410.04, 17.103, 90.225, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 2, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0),
  5352. (87, 0, 'Nobody', 416, 0, 0, 0, 'None', 100, 1000, 2036.99, -1427.61, 17.105, 178.533, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 2, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0),
  5353. (88, 0, 'Nobody', 560, 0, 0, 0, 'None', 100, 1000, 281.637, -1531.19, 24.311, 233.374, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0),
  5354. (89, 0, 'Nobody', 415, 0, 0, 0, 'None', 100, 1000, 284.937, -1527.36, 24.364, 236.477, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5355. (90, 0, 'Nobody', 415, 0, 0, 0, 'None', 100, 1000, 287.697, -1522.16, 24.29, 234.36, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5356. (91, 0, 'Nobody', 415, 0, 0, 0, 'None', 100, 1000, 291.176, -1517.69, 24.365, 235.576, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5357. (92, 0, 'Nobody', 415, 0, 0, 0, 'None', 100, 1000, 292.843, -1512.39, 24.342, 236.49, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5358. (93, 0, 'Nobody', 415, 0, 0, 0, 'None', 100, 1000, 295.762, -1507.72, 24.426, 237.222, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5359. (94, 0, 'Nobody', 415, 0, 0, 0, 'None', 100, 1000, 299.698, -1503.47, 24.291, 237.593, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5360. (95, 0, 'Nobody', 490, 0, 0, 0, 'None', 100, 1000, 291.37, -1544.47, 24.844, 235.45, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5361. (96, 0, 'Nobody', 490, 0, 0, 0, 'None', 100, 1000, 294.391, -1539.95, 24.844, 235.663, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5362. (97, 0, 'Nobody', 490, 0, 0, 0, 'None', 100, 1000, 297.612, -1535.52, 24.844, 233.431, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5363. (98, 0, 'Nobody', 601, 0, 0, 0, 'None', 100, 1000, 300.676, -1490.74, 24.353, 233.845, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5364. (99, 0, 'Nobody', 528, 0, 0, 0, 'None', 100, 1000, 303.731, -1485.91, 24.579, 239.924, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5365. (100, 0, 'Nobody', 582, 0, 0, 0, 'None', 100, 1000, 307.093, -1481.89, 24.649, 235.17, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 6, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5366. (101, 0, 'Nobody', 582, 0, 0, 0, 'None', 100, 1000, 771.395, -1335.3, 13.588, 180.688, 1, 103, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5367. (102, 0, 'Nobody', 582, 0, 0, 0, 'None', 100, 1000, 766.5, -1335.54, 13.595, 181.351, 1, 103, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5368. (103, 0, 'Nobody', 582, 0, 0, 0, 'None', 100, 1000, 759.39, -1334.88, 13.597, 180.014, 1, 103, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5369. (104, 0, 'Nobody', 488, 0, 0, 0, 'None', 100, 1000, 740.576, -1370.79, 25.848, 0.497, 103, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5370. (105, 0, 'Nobody', 563, 0, 0, 0, 'None', 100, 1000, 1478.53, -2167.88, 35.989, 178.492, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5371. (106, 0, 'Nobody', 563, 0, 0, 0, 'None', 100, 1000, 1540.72, -2166.51, 35.991, 180.93, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5372. (107, 0, 'Nobody', 487, 0, 0, 0, 'None', 100, 1000, 1510.16, -2168.75, 31.867, 179.05, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5373. (108, 0, 'Nobody', 563, 0, 0, 0, 'None', 100, 1000, 1158.95, -1303.14, 32.235, 271.409, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5374. (109, 0, 'Nobody', 563, 0, 0, 0, 'None', 100, 1000, 1159.65, -1320.23, 32.6, 270.737, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5375. (111, 4, 'Jamal_Burrows', 542, 24500, 0, 0, 'Spic', 100, 1000, 557.867, -1283.98, 17.0007, 0, 0, 0, -1, 0, 0, 18647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5376. (130, 0, 'Nobody', 468, 0, 0, 0, 'None', 100, 1000, 2510.59, -1687.34, 13.241, 48.248, 187, 187, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0),
  5377. (131, 2, 'Tyler_Huntley', 560, 0, 0, 1, 'None', 100, 1000, 1659.62, -2340.11, 1536.52, 271.549, 0, 0, -1, 3, 2000018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5378. (132, 2, 'Tyler_Huntley', 562, 0, 0, 0, 'None', 100, 1000, 1659.93, -2348.43, 1536.53, 271.267, 0, 0, -1, 3, 2000018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5379. (133, 2, 'Tyler_Huntley', 522, 0, 0, 0, 'None', 100, 1000, 1662.74, -2345.19, 1535.05, 298.864, 0, 0, -1, 3, 2000018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5380. (134, 2, 'Tyler_Huntley', 409, 0, 0, 0, 'None', 100, 1000, 1462.82, -691.36, 94.548, 266.669, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5381. (135, 2, 'Tyler_Huntley', 444, 0, 0, 0, 'None', 100, 1000, 1509, -695.157, 94.75, 99.758, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5382. (136, 10, 'Franklyn_Menace', 560, 100000, 0, 0, 'None', 98, 486.987, 1330.88, -1098.26, 24.89, 88.727, 6, 6, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5383. (137, 11, 'Lance_Lanvins', 462, 15000, 0, 1, 'None', 28, 998.48, 373.996, -1851.27, 7.248, 166.161, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5384. (138, 0, 'Nobody', 567, 0, 0, 0, 'None', 100, 1000, 2486.93, -1653.57, 13.27, 88.641, 187, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5385. (139, 0, 'Nobody', 468, 0, 0, 0, 'None', 100, 1000, 2026.04, -1403.69, 16.887, 179.052, 187, 187, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5386. (140, 0, 'Nobody', 492, 0, 0, 0, 'None', 100, 1000, 2509.39, -1672.32, 13.21, 348.505, 187, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5387. (141, 0, 'Nobody', 492, 0, 0, 0, 'None', 100, 1000, 2498.12, -1683.72, 13.199, 287.568, 187, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5388. (142, 0, 'Nobody', 578, 0, 0, 0, 'None', 100, 1000, 2473.51, -1695.74, 14.141, 0.323, 187, 187, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5389. (143, 0, 'Nobody', 560, 0, 0, 0, 'None', 100, 1000, 2426.3, -1828.51, 9.256, 71.384, 155, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5390. (144, 0, 'Nobody', 560, 0, 0, 0, 'None', 100, 1000, 1877.85, -2038.87, 13.174, 358.664, 155, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5391. (145, 0, 'Nobody', 578, 0, 0, 0, 'None', 100, 1000, 1850.84, -2057.42, 14.043, 267.865, 155, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5392. (147, 0, 'Nobody', 487, 0, 0, 0, 'None', 100, 1000, 1836.44, -2031.32, 13.797, 179.703, 155, 155, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5393. (148, 0, 'Nobody', 560, 0, 0, 1, 'None', 100, 1000, 1812.85, -1372.72, 14.783, 268.729, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 1026, 0, 1010, 1029, 1079, 0, 0, 1170, 1140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5394. (149, 0, 'Nobody', 560, 0, 0, 1, 'None', 100, 1000, 1812.86, -1365.95, 14.787, 269.747, 0, 3, -1, 0, 0, 0, 0, 0, 1138, 0, 1033, 1031, 0, 1010, 1028, 1080, 1086, 0, 1169, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5395. (150, 0, 'Nobody', 487, 0, 0, 0, 'None', 100, 1000, 1824.6, -1336.5, 14.598, 180.671, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5396. (151, 0, 'Nobody', 487, 0, 0, 1, 'None', 100, 1000, 1729.11, -1344.68, 19.516, 355.343, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5397. (152, 15, 'Tay_Forbes', 510, 10000, 0, 1, 'None', 100, 913.163, 1310.27, -1369.47, 13.164, 307.336, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5398. (153, 113, 'Michael_Render', 522, 0, 0, 1, 'None', 47, 943.585, 1177.9, -1324.06, 13.665, 271.054, 152, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5399. (154, 142, 'Niko_Santo', 510, 10000, 0, 1, 'None', 100, 1000, 552.818, -1284.13, 17.0007, 0, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5400. (155, 132, 'Jordan_Trapz', 510, 10000, 0, 1, 'None', 100, 690.981, 1284.21, -1376.65, 13.067, 214.509, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5401. (156, 159, 'Alom_Trapz', 560, 100000, 0, 1, 'None', 7, 300, 367.762, -2043.78, 7.377, 179.821, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5402. (157, 63, 'Ray_Bronx', 542, 24500, 0, 0, 'None', 0, 1000, 373.414, -2022.06, 7.415, 179.083, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1010, 1019, 1025, 0, 0, 0, 0, 0, 1145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5403. (158, 176, 'Olly_Bronx', 510, 10000, 0, 0, 'None', 100, 632.457, 382.596, -2075.98, 7.441, 358.137, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5404. (160, 45, 'Matthew_D_Fox', 466, 32500, 0, 0, 'None', 97, 871.375, 557.867, -1283.98, 17.0007, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5405. (161, 236, 'Jozshua_fox', 481, 5000, 0, 0, 'None', 100, 1000, 562.397, -1283.85, 17.0007, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5406. (162, 12, 'Lui_Mendez', 560, 100000, 0, 1, 'None', 32, 924, 1212.97, -1320.46, 13.265, 192.086, 0, 0, -1, 0, 0, 18651, 1, 0, 1138, 0, 0, 1031, 0, 1010, 1028, 1080, 0, 1087, 1170, 1140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5407. (163, 262, 'Michael_McHarley', 510, 10000, 0, 1, 'None', 100, 568.655, 393.005, -2066.66, 7.443, 209.902, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5408. (164, 269, 'Amado_Honda', 510, 10000, 0, 1, 'None', 100, 885.426, 386.404, -2073.97, 7.436, 172.913, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5409. (165, 254, 'Diego_Honda', 510, 10000, 0, 1, 'None', 100, 613.323, 649.87, -1715.92, 13.854, 272.475, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5410. (166, 21, 'Darrell_Ford', 477, 50000, 0, 0, 'None', 100, 1000, 557.205, -1281.93, 16.964, 1.754, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5411. (169, 337, 'Simon_Gucci_Sosa', 462, 15000, 0, 0, 'None', 78, 804.913, 562.397, -1283.85, 17.0007, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5412. (170, 32, 'Curtis_Leaf', 498, 80000, 0, 0, 'None', 34, 482.721, 2066.17, -1694.71, 13.583, 269.624, 0, 222, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1009, 0, 0, 0, 1087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5413. (171, 0, 'Nobody', 498, 0, 0, 0, 'None', 100, 1000, -74.644, -1153.82, 1.822, 152.31, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5414. (172, 0, 'Nobody', 498, 0, 0, 0, 'None', 100, 1000, -71.28, -1155.51, 1.82, 152.569, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5415. (173, 0, 'Nobody', 498, 0, 0, 0, 'None', 100, 1000, -68.027, -1157.3, 1.822, 152.966, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5416. (174, 0, 'Nobody', 498, 0, 0, 0, 'None', 100, 1000, -64.365, -1159.11, 1.821, 154.752, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5417. (175, 0, 'Nobody', 498, 0, 0, 0, 'None', 100, 1000, -78.036, -1152.21, 1.819, 152.756, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5418. (176, 181, 'Jayden_Trapz', 560, 100000, 0, 1, 'None', 8, 632.772, 1191.14, -1332.34, 13.185, 1.866, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5419. (177, 64, 'Bench_Freeman', 451, 375000, 0, 1, 'None', 60, 985.593, 1910.55, -1117.33, 25.384, 178.475, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1010, 0, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5420. (178, 361, 'Liam_Maxwell', 510, 10000, 0, 1, 'None', 100, 699.477, 382.167, -1920.41, 10.191, 338.582, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5421. (179, 395, 'Ben_Harper', 481, 5000, 0, 1, 'None', 100, 985.699, 562.397, -1283.85, 17.0007, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5422. (180, 48, 'Pastor_Lee', 498, 80000, 0, 0, 'None', 47, 988.339, 885.597, -1334.43, 13.614, 263.743, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5423. (181, 85, 'Tyrone_Coleman', 510, 10000, 0, 1, 'None', 100, 983.863, 375.313, -2024.97, 7.434, 355.356, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5424. (182, 63, 'Ray_Bronx', 510, 10000, 0, 1, 'None', 100, 1000, 374.216, -2034.87, 7.28, 182.591, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5425. (183, 48, 'Pastor_lee', 448, 20000, 0, 0, 'None', 98, 701, 2095.49, -1798.11, 12.978, 190.765, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5426. (184, 10, 'Franklyn_Menace', 411, 0, 0, 1, 'None', 28, 950.191, 1330.48, -1102.13, 24.485, 91.902, 127, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1010, 0, 1078, 0, 1087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5427. (185, 0, 'Nobody', 490, 0, 0, 0, 'None', 100, 1000, 1521.86, -2211.22, 13.683, 357.691, 1, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 2, -1, 550, 0, 0, 0, 0, 0, 0, 0, 0),
  5428. (186, 0, 'Nobody', 414, 0, 0, 0, 'None', 100, 1000, -91.172, -1146.16, 1.791, 153.631, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5429. (187, 0, 'Nobody', 414, 0, 0, 0, 'None', 100, 1000, -88.381, -1147.52, 1.809, 151.818, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5430. (188, 0, 'Nobody', 414, 0, 0, 0, 'None', 100, 1000, -85.114, -1149.26, 1.802, 156.559, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 500, 0, 0, 0, 0, 0, 0, 0, 0),
  5431. (189, 306, 'Shurban_Turtle', 521, 75000, 0, 1, 'None', 97, 1000, 1182.96, -1327.35, 13.149, 263.906, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5432. (190, 305, 'Nathan_Dextron', 510, 10000, 0, 0, 'None', 100, 1000, 386.625, -2088.2, 7.424, 174.666, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5433. (191, 15, 'Tay_Forbes', 522, 0, 0, 0, 'None', 83, 622.559, 1313.61, -1373.73, 13.201, 303.623, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5434. (192, 263, 'Danny_Delino', 522, 0, 0, 1, 'None', 71, 918.895, 1275.72, -1350.09, 13.347, 7.746, 136, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5435. (193, 263, 'Danny_Delino', 522, 0, 0, 0, 'None', 100, 1000, 1275.72, -1350.09, 13.347, 7.746, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5436. (194, 263, 'Danny_Delino', 522, 0, 0, 0, 'None', 100, 1000, 1275.72, -1350.09, 13.347, 7.746, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5437. (195, 19, 'Blake_Amphibia', 560, 100000, 0, 1, 'Amphibia', 95, 920.073, 1178.28, -1357.36, 13.803, 269.452, 0, 0, 127, 0, 0, 18648, 1, 0, 1138, 0, 1033, 1026, 0, 1010, 1028, 1080, 0, 0, 1169, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5438. (196, 536, 'John_Lehenbast', 510, 10000, 0, 1, 'None', 100, 929.115, -83.231, -1137.61, 0.672, 248.492, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5439. (197, 232, 'Brian_Ozbourne', 521, 75000, 0, 1, 'None', 0, 768.606, 2040.73, -1410.2, 16.736, 100.358, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
  5440. (198, 0, 'Nobody', 560, 0, 0, 1, 'None', 100, 1000, 2009.98, -1130.65, 24.849, 92.297, 171, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5441. (199, 0, 'Nobody', 560, 0, 0, 0, 'None', 100, 1000, 2000.07, -1131.26, 25.117, 86.192, 171, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5442. (200, 0, 'Nobody', 567, 0, 0, 0, 'None', 100, 1000, 2015.48, -1140.66, 24.836, 88.797, 171, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5443. (201, 0, 'Nobody', 566, 0, 0, 0, 'None', 100, 1000, 2003.88, -1140.93, 25.056, 89.224, 171, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 5000, 0, 0, 0, 0, 0, 0, 0, 0),
  5444. (202, 423, 'Aizander_Sage', 510, 10000, 0, 0, 'None', 100, 1000, 552.818, -1284.13, 17.0007, 0, 6, 6, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0);
  5445. -- --------------------------------------------------------
  5446. --
  5447. -- Table structure for table `weapons`
  5448. --
  5449. CREATE TABLE IF NOT EXISTS `weapons` (
  5450. `uid` int(10) DEFAULT NULL,
  5451. `slot` tinyint(2) DEFAULT NULL,
  5452. `weaponid` tinyint(2) DEFAULT NULL,
  5453. `ammo` smallint(5) DEFAULT NULL
  5454. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  5455. --
  5456. -- Indexes for dumped tables
  5457. --
  5458. --
  5459. -- Indexes for table `bans`
  5460. --
  5461. ALTER TABLE `bans`
  5462. ADD PRIMARY KEY (`id`);
  5463. --
  5464. -- Indexes for table `businesses`
  5465. --
  5466. ALTER TABLE `businesses`
  5467. ADD PRIMARY KEY (`id`);
  5468. --
  5469. -- Indexes for table `changes`
  5470. --
  5471. ALTER TABLE `changes`
  5472. ADD UNIQUE KEY `slot` (`slot`);
  5473. --
  5474. -- Indexes for table `charges`
  5475. --
  5476. ALTER TABLE `charges`
  5477. ADD PRIMARY KEY (`id`);
  5478. --
  5479. -- Indexes for table `clothing`
  5480. --
  5481. ALTER TABLE `clothing`
  5482. ADD PRIMARY KEY (`id`);
  5483. --
  5484. -- Indexes for table `divisions`
  5485. --
  5486. ALTER TABLE `divisions`
  5487. ADD UNIQUE KEY `id` (`id`,`divisionid`);
  5488. --
  5489. -- Indexes for table `entrances`
  5490. --
  5491. ALTER TABLE `entrances`
  5492. ADD PRIMARY KEY (`id`);
  5493. --
  5494. -- Indexes for table `factionpay`
  5495. --
  5496. ALTER TABLE `factionpay`
  5497. ADD UNIQUE KEY `id` (`id`,`rank`);
  5498. --
  5499. -- Indexes for table `factionranks`
  5500. --
  5501. ALTER TABLE `factionranks`
  5502. ADD UNIQUE KEY `id` (`id`,`rank`);
  5503. --
  5504. -- Indexes for table `factions`
  5505. --
  5506. ALTER TABLE `factions`
  5507. ADD UNIQUE KEY `id` (`id`);
  5508. --
  5509. -- Indexes for table `factionskins`
  5510. --
  5511. ALTER TABLE `factionskins`
  5512. ADD UNIQUE KEY `id` (`id`,`slot`);
  5513. --
  5514. -- Indexes for table `flags`
  5515. --
  5516. ALTER TABLE `flags`
  5517. ADD PRIMARY KEY (`id`);
  5518. --
  5519. -- Indexes for table `furniture`
  5520. --
  5521. ALTER TABLE `furniture`
  5522. ADD PRIMARY KEY (`id`);
  5523. --
  5524. -- Indexes for table `gangranks`
  5525. --
  5526. ALTER TABLE `gangranks`
  5527. ADD UNIQUE KEY `id` (`id`,`rank`);
  5528. --
  5529. -- Indexes for table `gangs`
  5530. --
  5531. ALTER TABLE `gangs`
  5532. ADD UNIQUE KEY `id` (`id`);
  5533. --
  5534. -- Indexes for table `gangskins`
  5535. --
  5536. ALTER TABLE `gangskins`
  5537. ADD UNIQUE KEY `id` (`id`,`slot`);
  5538. --
  5539. -- Indexes for table `garages`
  5540. --
  5541. ALTER TABLE `garages`
  5542. ADD PRIMARY KEY (`id`);
  5543. --
  5544. -- Indexes for table `houses`
  5545. --
  5546. ALTER TABLE `houses`
  5547. ADD PRIMARY KEY (`id`);
  5548. --
  5549. -- Indexes for table `kills`
  5550. --
  5551. ALTER TABLE `kills`
  5552. ADD PRIMARY KEY (`id`);
  5553. --
  5554. -- Indexes for table `landobjects`
  5555. --
  5556. ALTER TABLE `landobjects`
  5557. ADD PRIMARY KEY (`id`);
  5558. --
  5559. -- Indexes for table `lands`
  5560. --
  5561. ALTER TABLE `lands`
  5562. ADD PRIMARY KEY (`id`);
  5563. --
  5564. -- Indexes for table `log_admin`
  5565. --
  5566. ALTER TABLE `log_admin`
  5567. ADD PRIMARY KEY (`id`);
  5568. --
  5569. -- Indexes for table `log_bans`
  5570. --
  5571. ALTER TABLE `log_bans`
  5572. ADD PRIMARY KEY (`id`);
  5573. --
  5574. -- Indexes for table `log_cheat`
  5575. --
  5576. ALTER TABLE `log_cheat`
  5577. ADD PRIMARY KEY (`id`);
  5578. --
  5579. -- Indexes for table `log_contracts`
  5580. --
  5581. ALTER TABLE `log_contracts`
  5582. ADD PRIMARY KEY (`id`);
  5583. --
  5584. -- Indexes for table `log_faction`
  5585. --
  5586. ALTER TABLE `log_faction`
  5587. ADD PRIMARY KEY (`id`);
  5588. --
  5589. -- Indexes for table `log_gang`
  5590. --
  5591. ALTER TABLE `log_gang`
  5592. ADD PRIMARY KEY (`id`);
  5593. --
  5594. -- Indexes for table `log_give`
  5595. --
  5596. ALTER TABLE `log_give`
  5597. ADD PRIMARY KEY (`id`);
  5598. --
  5599. -- Indexes for table `log_namechanges`
  5600. --
  5601. ALTER TABLE `log_namechanges`
  5602. ADD PRIMARY KEY (`id`);
  5603. --
  5604. -- Indexes for table `log_property`
  5605. --
  5606. ALTER TABLE `log_property`
  5607. ADD PRIMARY KEY (`id`);
  5608. --
  5609. -- Indexes for table `log_punishments`
  5610. --
  5611. ALTER TABLE `log_punishments`
  5612. ADD PRIMARY KEY (`id`);
  5613. --
  5614. -- Indexes for table `log_referrals`
  5615. --
  5616. ALTER TABLE `log_referrals`
  5617. ADD PRIMARY KEY (`id`);
  5618. --
  5619. -- Indexes for table `log_vip`
  5620. --
  5621. ALTER TABLE `log_vip`
  5622. ADD PRIMARY KEY (`id`);
  5623. --
  5624. -- Indexes for table `phonebook`
  5625. --
  5626. ALTER TABLE `phonebook`
  5627. ADD UNIQUE KEY `number` (`number`);
  5628. --
  5629. -- Indexes for table `points`
  5630. --
  5631. ALTER TABLE `points`
  5632. ADD UNIQUE KEY `id` (`id`);
  5633. --
  5634. -- Indexes for table `shots`
  5635. --
  5636. ALTER TABLE `shots`
  5637. ADD PRIMARY KEY (`id`);
  5638. --
  5639. -- Indexes for table `texts`
  5640. --
  5641. ALTER TABLE `texts`
  5642. ADD PRIMARY KEY (`id`);
  5643. --
  5644. -- Indexes for table `turfs`
  5645. --
  5646. ALTER TABLE `turfs`
  5647. ADD UNIQUE KEY `id` (`id`);
  5648. --
  5649. -- Indexes for table `users`
  5650. --
  5651. ALTER TABLE `users`
  5652. ADD PRIMARY KEY (`uid`);
  5653. --
  5654. -- Indexes for table `vehicles`
  5655. --
  5656. ALTER TABLE `vehicles`
  5657. ADD PRIMARY KEY (`id`);
  5658. --
  5659. -- Indexes for table `weapons`
  5660. --
  5661. ALTER TABLE `weapons`
  5662. ADD UNIQUE KEY `uid` (`uid`,`slot`);
  5663. --
  5664. -- AUTO_INCREMENT for dumped tables
  5665. --
  5666. --
  5667. -- AUTO_INCREMENT for table `bans`
  5668. --
  5669. ALTER TABLE `bans`
  5670. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=81;
  5671. --
  5672. -- AUTO_INCREMENT for table `businesses`
  5673. --
  5674. ALTER TABLE `businesses`
  5675. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=173;
  5676. --
  5677. -- AUTO_INCREMENT for table `charges`
  5678. --
  5679. ALTER TABLE `charges`
  5680. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=22;
  5681. --
  5682. -- AUTO_INCREMENT for table `clothing`
  5683. --
  5684. ALTER TABLE `clothing`
  5685. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=75;
  5686. --
  5687. -- AUTO_INCREMENT for table `entrances`
  5688. --
  5689. ALTER TABLE `entrances`
  5690. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=40;
  5691. --
  5692. -- AUTO_INCREMENT for table `flags`
  5693. --
  5694. ALTER TABLE `flags`
  5695. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=42;
  5696. --
  5697. -- AUTO_INCREMENT for table `furniture`
  5698. --
  5699. ALTER TABLE `furniture`
  5700. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=246;
  5701. --
  5702. -- AUTO_INCREMENT for table `garages`
  5703. --
  5704. ALTER TABLE `garages`
  5705. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=19;
  5706. --
  5707. -- AUTO_INCREMENT for table `houses`
  5708. --
  5709. ALTER TABLE `houses`
  5710. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=111;
  5711. --
  5712. -- AUTO_INCREMENT for table `kills`
  5713. --
  5714. ALTER TABLE `kills`
  5715. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=782;
  5716. --
  5717. -- AUTO_INCREMENT for table `landobjects`
  5718. --
  5719. ALTER TABLE `landobjects`
  5720. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=33;
  5721. --
  5722. -- AUTO_INCREMENT for table `lands`
  5723. --
  5724. ALTER TABLE `lands`
  5725. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5;
  5726. --
  5727. -- AUTO_INCREMENT for table `log_admin`
  5728. --
  5729. ALTER TABLE `log_admin`
  5730. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=626;
  5731. --
  5732. -- AUTO_INCREMENT for table `log_bans`
  5733. --
  5734. ALTER TABLE `log_bans`
  5735. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=78;
  5736. --
  5737. -- AUTO_INCREMENT for table `log_cheat`
  5738. --
  5739. ALTER TABLE `log_cheat`
  5740. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=57;
  5741. --
  5742. -- AUTO_INCREMENT for table `log_contracts`
  5743. --
  5744. ALTER TABLE `log_contracts`
  5745. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=30;
  5746. --
  5747. -- AUTO_INCREMENT for table `log_faction`
  5748. --
  5749. ALTER TABLE `log_faction`
  5750. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=249;
  5751. --
  5752. -- AUTO_INCREMENT for table `log_gang`
  5753. --
  5754. ALTER TABLE `log_gang`
  5755. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=424;
  5756. --
  5757. -- AUTO_INCREMENT for table `log_give`
  5758. --
  5759. ALTER TABLE `log_give`
  5760. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=864;
  5761. --
  5762. -- AUTO_INCREMENT for table `log_namechanges`
  5763. --
  5764. ALTER TABLE `log_namechanges`
  5765. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=96;
  5766. --
  5767. -- AUTO_INCREMENT for table `log_property`
  5768. --
  5769. ALTER TABLE `log_property`
  5770. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=126;
  5771. --
  5772. -- AUTO_INCREMENT for table `log_punishments`
  5773. --
  5774. ALTER TABLE `log_punishments`
  5775. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=204;
  5776. --
  5777. -- AUTO_INCREMENT for table `log_referrals`
  5778. --
  5779. ALTER TABLE `log_referrals`
  5780. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=19;
  5781. --
  5782. -- AUTO_INCREMENT for table `log_vip`
  5783. --
  5784. ALTER TABLE `log_vip`
  5785. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=105;
  5786. --
  5787. -- AUTO_INCREMENT for table `shots`
  5788. --
  5789. ALTER TABLE `shots`
  5790. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT;
  5791. --
  5792. -- AUTO_INCREMENT for table `texts`
  5793. --
  5794. ALTER TABLE `texts`
  5795. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=17;
  5796. --
  5797. -- AUTO_INCREMENT for table `users`
  5798. --
  5799. ALTER TABLE `users`
  5800. MODIFY `uid` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=589;
  5801. --
  5802. -- AUTO_INCREMENT for table `vehicles`
  5803. --
  5804. ALTER TABLE `vehicles`
  5805. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=203;
  5806. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  5807. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  5808. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;