5.js 379 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732
  1. var catvm = {};
  2. //框架运行内存
  3. catvm.memory = {
  4. config: {print: false, proxy:false}
  5. }; //默认关闭打印
  6. catvm.memory.htmlelements = {}
  7. catvm.memory.listeners = {}
  8. catvm.memory.PluginArray = {}
  9. catvm.memory.RunElementList = [];
  10. catvm.memory.setTimeout_func = {};
  11. catvm.memory.setInterval_func = {};
  12. catvm.memory.document = {};
  13. //主要用来保护伪造的函数 让其更难被识破
  14. ;;;;
  15. (() => {
  16. "use strict";
  17. const $toString = Function.toString;
  18. const myFunction_toString_symbol = Symbol('('.concat('', ')_', (Math.random() + '').toString(36)));
  19. const myToString = function() {
  20. return typeof this == 'function' && this[myFunction_toString_symbol] || $toString.call(this);
  21. };
  22. function set_native(func, key, value) {
  23. Object.defineProperty(func, key, {
  24. "enumerable": false,
  25. "configurable": true,
  26. "writable": true,
  27. "value": value
  28. })
  29. };
  30. delete Function.prototype['toString']; //删除原型链上的toString
  31. set_native(Function.prototype, "toString", myToString); //自己定义个getter方法
  32. set_native(Function.prototype.toString, myFunction_toString_symbol, "function toString() { [native code] }"); //套个娃 保护一下我们定义的toString 否则就暴露了
  33. this.catvm.safefunction = (func) => {
  34. set_native(func, myFunction_toString_symbol, `function ${myFunction_toString_symbol,func.name || ''}() { [native code] }`);
  35. }; //导出函数到globalThis
  36. }).call(this);
  37. //框架日志功能
  38. catvm.print = {}
  39. catvm.print.open = false;
  40. catvm.memory.print = [];
  41. catvm.print.log = function (logType,target,property,value) {
  42. if (catvm.print.open && catvm.memory.config.print) {
  43. //开始保存日志
  44. // if( catvm.memory.print.length == 111){
  45. // debugger;
  46. // }
  47. catvm.memory.print.push({"类型":logType,"调用者":target,"属性":property,"值":value});
  48. }
  49. }
  50. catvm.print.getall = function () {
  51. console.table(catvm.memory.print,["类型","调用者","属性","值"]);
  52. }
  53. //框架代理功能
  54. catvm.proxy = function(o){
  55. // if(catvm.memory.config.proxy == false){return o};
  56. return new Proxy(o, {
  57. set(target, property, value)
  58. {
  59. catvm.print.log("set",target,property,value);
  60. console.log("set",target,property,value);
  61. return Reflect.set(...arguments);
  62. },
  63. get(target, property, receiver)
  64. {
  65. console.log("get",target,property,target[property]);
  66. catvm.print.log("get",target,property,target[property]);
  67. return target[property];
  68. }
  69. });
  70. }
  71. //更改浏览器的某些参数 常用的
  72. //catvm.memory.Plugin.new({description:"npAliSSOLogin Plugin",filename:"npalissologin.dll",name:"AliSSOLogin plugin",MimeTypes:[{description: "AliSSOLogin",suffixes: "AliSSOLogin",type: "application/npalissologin"},{description: "AliSSOLogin1",suffixes: "AliSSOLogin",type: "application1/npalissologin"}]})
  73. //在此文件下的代码 必须要框架run方法执行后执行
  74. catvm.AddPlugin = function(data){
  75. //{description:"npAliSSOLogin Plugin",filename:"npalissologin.dll",name:"AliSSOLogin plugin",MimeTypes:[{description: "AliSSOLogin",suffixes: "AliSSOLogin",type: "application/npalissologin"},{description: "AliSSOLogin1",suffixes: "AliSSOLogin",type: "application1/npalissologin"}]}
  76. if(catvm.memory.PluginArray.temp == undefined)
  77. {
  78. catvm.memory.PluginArray.temp = []
  79. }
  80. catvm.memory.PluginArray.temp.push(data);
  81. }
  82. catvm.memory.config.proxy=true;
  83. catvm.memory.config.print=true;
  84. catvm.AddPlugin({description:"npAliSSOLogin Plugin",filename:"npalissologin.dll",name:"AliSSOLogin plugin",MimeTypes:[{description: "AliSSOLogin",suffixes: "AliSSOLogin",type: "application/npalissologin"},{description: "AliSSOLogin1",suffixes: "AliSSOLogin",type: "application1/npalissologin"}]});
  85. catvm.AddPlugin({description:"npAliSSOLogin Plugin",filename:"npalissologin1.dll",name:"AliSSOLogin plugin2",MimeTypes:[{description: "AliSSOLogin",suffixes: "AliSSOLogin",type: "application/npalissologin"},{description: "AliSSOLogin1",suffixes: "AliSSOLogin",type: "application1/npalissologin"}]});
  86. ;
  87. var EventTarget =function EventTarget() //构造函数
  88. {
  89. debugger;
  90. }; catvm.safefunction(EventTarget);
  91. Object.defineProperties(EventTarget.prototype , {
  92. [Symbol.toStringTag]: {
  93. value: "EventTarget",
  94. configurable: true
  95. }
  96. });
  97. EventTarget.prototype.addEventListener = function addEventListener(type, callback){
  98. if(!(type in catvm.memory.listeners)) {
  99. catvm.memory.listeners[type] = [];
  100. }
  101. catvm.memory.listeners[type].push(callback);
  102. };catvm.safefunction(EventTarget.prototype.addEventListener); //保护代码
  103. EventTarget.prototype.dispatchEvent = function dispatchEvent(){
  104. debugger;
  105. };catvm.safefunction(EventTarget.prototype.dispatchEvent); //保护代码
  106. EventTarget.prototype.removeEventListener = function removeEventListener(){
  107. debugger;
  108. };catvm.safefunction(EventTarget.prototype.removeEventListener); //保护代码
  109. var WindowProperties = function WindowProperties(){
  110. }; catvm.safefunction(WindowProperties); //保护代码
  111. Object.defineProperties(WindowProperties.prototype , {
  112. [Symbol.toStringTag]: {
  113. value: "WindowProperties",
  114. configurable: true
  115. }
  116. });
  117. WindowProperties.prototype.__proto__ = EventTarget.prototype;
  118. window = this;
  119. var Window = function Window(){
  120. //容易被检测到的 堆栈
  121. throw new TypeError("Illegal constructor");
  122. }; catvm.safefunction(Window);
  123. Object.defineProperties(Window.prototype , {
  124. [Symbol.toStringTag]: {
  125. value: "Window",
  126. configurable: true
  127. }
  128. });
  129. // catvm.memory.setTimeout = setTimeout;
  130. window.setTimeout = function setTimeout(func,time){
  131. if(catvm.memory.setTimeout_func[time] == undefined){
  132. catvm.memory.setTimeout_func[time] = [];
  133. }
  134. catvm.memory.setTimeout_func[time].push(func);
  135. };catvm.safefunction(window.setTimeout);
  136. // catvm.memory.setInterval = setInterval;
  137. window.setInterval = function setInterval(func,time){
  138. if(catvm.memory.setInterval_func[time] == undefined){
  139. catvm.memory.setInterval_func[time] = [];
  140. }
  141. catvm.memory.setInterval_func[time].push(func);
  142. };catvm.safefunction(window.setInterval);
  143. ////
  144. // window.setTimeout = function setTimeout(x,d)
  145. // {
  146. // //x 有可能是方法 也有可能是文本
  147. // // debugger;
  148. // // typeof(x) == "function"?x():undefined;
  149. // // typeof(x) == "string"?eval(x) :undefined;
  150. // //正确应该 生成UUID 并且保存到内存
  151. // debugger;
  152. // if(!catvm.memory.setTimeout_func[d.toString()]){
  153. // catvm.memory.setTimeout_func[d.toString()] = [];
  154. // }
  155. // catvm.memory.setTimeout_func[d.toString()].push(x);
  156. // return 0;
  157. // };catvm.safefunction(window.setTimeout);
  158. // window.setInterval = function setInterval(x,d){
  159. // //x 有可能是方法 也有可能是文本
  160. // // typeof(x) == "function" ? x() : undefined;
  161. // // typeof(x) == "string" ? eval(x) : undefined;
  162. // //正确应该 生成UUID 并且保存到内存
  163. // catvm.memory.setInterval_func[d.toString()] = x
  164. // return 0;
  165. // };catvm.safefunction(window.setInterval);
  166. Window.prototype.PERSISTENT = 1
  167. Window.prototype.TEMPORARY = 0
  168. window.top = window;
  169. window.origin = 'http://epub.cnipa.gov.cn';
  170. window.name = ''
  171. window.open = function open(){debugger;};catvm.safefunction(window.open);
  172. window.webkitRTCPeerConnection = function RTCPeerConnection(){debugger};catvm.safefunction(window.webkitRTCPeerConnection);
  173. //chrome可以参照localStorange
  174. window.chrome = class chrome{};
  175. window.chrome.loadTimes = function loadTimes(){debugger;};catvm.safefunction(window.chrome.loadTimes);
  176. window.chrome.csi = function csi(){debugger;};catvm.safefunction(window.chrome.csi);
  177. window.chrome.app = class app{};
  178. window.chrome.app.InstallState = {
  179. DISABLED: "disabled",
  180. INSTALLED: "installed",
  181. NOT_INSTALLED: "not_installed",
  182. }
  183. window.chrome.app = catvm.proxy(window.chrome.app);
  184. window.chrome.app.InstallState = catvm.proxy(window.chrome.app.InstallState);
  185. window.chrome = catvm.proxy(window.chrome);
  186. window.Element = function Element(){debugger;};catvm.safefunction(window.Element);
  187. window.DeviceOrientationEvent = function DeviceOrientationEvent(){debugger};catvm.safefunction(window.DeviceOrientationEvent);
  188. window.DeviceMotionEvent = function DeviceMotionEvent(){debugger};catvm.safefunction(window.DeviceMotionEvent);
  189. window.XMLHttpRequest = function XMLHttpRequest(){debugger;};catvm.safefunction(window.XMLHttpRequest);
  190. // window.localStorange = class localStorange{}
  191. // window.localStorange.getItem = function getItem(){debugger;};catvm.safefunction(window.localStorange.getItem);
  192. // window.localStorange.setItem = function setItem(){debugger;};catvm.safefunction(window.localStorange.setItem);
  193. // window.localStorange = catvm.proxy(window.localStorange)
  194. //没问题
  195. window.IDBFactory = function IDBFactory(){
  196. debugger;
  197. };catvm.safefunction(window.IDBFactory);
  198. window.IDBFactory.prototype.open = function open(){
  199. debugger;
  200. var open_ = {
  201. error: "",
  202. onblocked: null,
  203. onerror: null,
  204. onsuccess: null,
  205. onupgradeneeded: null,
  206. readyState: "pending",
  207. result: "",
  208. source: null,
  209. transaction: null,
  210. }
  211. return catvm.proxy(open_)
  212. };catvm.safefunction(window.IDBFactory.prototype.open);
  213. window.indexedDB = {};
  214. window.indexedDB.__proto__ = window.IDBFactory.prototype;
  215. window.indexedDB = catvm.proxy(window.indexedDB);
  216. window.DOMParser = function DOMParser(){
  217. debugger;
  218. };catvm.safefunction(window.DOMParser);
  219. //没问题
  220. window.webkitRequestFileSystem = function webkitRequestFileSystem(){
  221. debugger;
  222. };catvm.safefunction(window.webkitRequestFileSystem);
  223. window.clearInterval = function clearInterval(){
  224. debugger;
  225. };catvm.safefunction(window.clearInterval);
  226. window.HTMLFormElement = function HTMLFormElement(){
  227. debugger;
  228. };catvm.safefunction(window.HTMLFormElement);
  229. // Object.defineProperties(HTMLFormElement.prototype , {
  230. // [Symbol.toStringTag]: {
  231. // value: "HTMLFormElement",
  232. // configurable: true
  233. // }
  234. // });
  235. window.HTMLFormElement.prototype.submit = function submit(){
  236. debugger;
  237. };catvm.safefunction(window.HTMLFormElement.prototype.submit);
  238. window.HTMLFormElement.prototype = catvm.proxy(window.HTMLFormElement.prototype)
  239. window.HTMLFormElement = catvm.proxy(window.HTMLFormElement);
  240. window.fetch = function fetch(){
  241. debugger;
  242. };catvm.safefunction(fetch);
  243. window.openDatabase = function openDatabase(){
  244. debugger;
  245. };catvm.safefunction(window.openDatabase);
  246. window.self = window;
  247. window.Request = function Request(){
  248. debugger;
  249. };catvm.safefunction(window.Request);
  250. // window.MutationObserver = function MutationObserver(){
  251. // debugger;
  252. // };catvm.safefunction(window.MutationObserver);
  253. window.webkitResolveLocalFileSystemURL = function webkitResolveLocalFileSystemURL(){
  254. debugger;
  255. };catvm.safefunction(window.webkitResolveLocalFileSystemURL);
  256. //没问题
  257. window.MutationObserver = function MutationObserver(){
  258. debugger;
  259. this.disconnect = function disconnect(){debugger;}
  260. this.observe = function observe(){debugger;}
  261. this.takeRecords = function takeRecords(){debugger;}
  262. return catvm.proxy(this)
  263. };catvm.safefunction(window.MutationObserver);
  264. window.Error = new Proxy(window.Error,{
  265. construct: function (a,s){
  266. res = new a(s)
  267. res.stack = `
  268. Error
  269. at _$e2 (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), <anonymous>:2:20609)
  270. at _$nr (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), <anonymous>:2:26991)
  271. at _$dg (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), <anonymous>:2:22738)
  272. at _$nr (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), <anonymous>:2:26104)
  273. at _$dg (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), <anonymous>:2:22738)
  274. at _$nr (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), <anonymous>:2:24525)
  275. at Array._$dg (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), <anonymous>:2:22738)
  276. at eval (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), <anonymous>:2:158543)
  277. at eval (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), <anonymous>:9:2637)
  278. at eval (<anonymous>)
  279. `
  280. debugger
  281. return res;
  282. }
  283. });
  284. window.addEventListener = function addEventListener(X,func){
  285. debugger;
  286. if(!catvm.memory.listeners[X.toString()]){
  287. catvm.memory.listeners[X.toString()] = [];
  288. }
  289. catvm.memory.listeners[X.toString()].push(func);
  290. };catvm.safefunction(window.addEventListener);
  291. ///////////////
  292. window.defaultStatus = "";
  293. window.onmessage = null;
  294. window.personalbar = window.scrollbars = window.statusbar = window.toolbar = window.locationbar = window.menubar = catvm.proxy({visible: true});
  295. window.devicePixelRatio = 1.25;
  296. window.WebSocket = function WebSocket(){
  297. debugger;
  298. };catvm.safefunction(window.WebSocket);
  299. window.Path2D = function Path2D(){
  300. debugger;
  301. };catvm.safefunction(window.Path2D);
  302. window.SourceBuffer = function SourceBuffer(){
  303. debugger;
  304. };catvm.safefunction(window.SourceBuffer);
  305. window.external = catvm.proxy(class external{});
  306. window.external.IsSearchProviderInstalled = function IsSearchProviderInstalled(){
  307. debugger;
  308. };catvm.safefunction(window.external.IsSearchProviderInstalled);
  309. window.SVGPatternElement = function SVGPatternElement(){
  310. debugger;
  311. };catvm.safefunction(window.SVGPatternElement);
  312. window.CDATASection = function CDATASection(){
  313. debugger;
  314. };catvm.safefunction(window.CDATASection);
  315. window.CloseEvent = function CloseEvent(){
  316. debugger;
  317. };catvm.safefunction(window.CloseEvent);
  318. window.Notification = function Notification(){
  319. debugger;
  320. };catvm.safefunction(window.Notification);
  321. window.HTMLFrameSetElement = function HTMLFrameSetElement(){
  322. debugger;
  323. };catvm.safefunction(window.HTMLFrameSetElement);
  324. window.TextTrackList = function TextTrackList(){
  325. debugger;
  326. };catvm.safefunction(window.TextTrackList);
  327. window.ScreenOrientation = function ScreenOrientation(){
  328. debugger;
  329. };catvm.safefunction(window.ScreenOrientation);
  330. window.SpeechSynthesisUtterance = function SpeechSynthesisUtterance(){
  331. debugger;
  332. };catvm.safefunction(window.SpeechSynthesisUtterance);
  333. window.onerror = null;
  334. window.PerformancePaintTiming = function PerformancePaintTiming(){
  335. debugger;
  336. };catvm.safefunction(window.PerformancePaintTiming);
  337. window.SVGGraphicsElement = function SVGGraphicsElement(){
  338. debugger;
  339. };catvm.safefunction(window.SVGGraphicsElement);
  340. window.MediaEncryptedEvent = function MediaEncryptedEvent(){
  341. debugger;
  342. };catvm.safefunction(window.MediaEncryptedEvent);
  343. window.OffscreenCanvasRenderingContext2D = function OffscreenCanvasRenderingContext2D(){
  344. debugger;
  345. };catvm.safefunction(window.OffscreenCanvasRenderingContext2D);
  346. window.matchMedia = function matchMedia(X){
  347. debugger;
  348. if(X === '(any-pointer: fine )'){
  349. var result = {
  350. matches: true,
  351. media: "(any-pointer: fine)",
  352. onchange: null,
  353. }
  354. return catvm.proxy(result);
  355. }else if(X === '(any-pointer: coarse )'){
  356. var result = {
  357. matches: false,
  358. media: "(any-pointer: coarse)",
  359. onchange: null,
  360. }
  361. return catvm.proxy(result);
  362. }else if(X === '(any-pointer: none )'){
  363. var result = {
  364. matches: false,
  365. media: "(any-pointer: none)",
  366. onchange: null,
  367. }
  368. return catvm.proxy(result);
  369. }else if(X === '(any-pointer )'){
  370. var result = {
  371. matches: true,
  372. media: "(any-pointer)",
  373. onchange: null,
  374. }
  375. return catvm.proxy(result);
  376. }else if(X === '(any-hover: hover )'){
  377. var result = {
  378. matches: true,
  379. media: "(any-hover: hover)",
  380. onchange: null,
  381. }
  382. return catvm.proxy(result);
  383. }else if(X === '(any-hover: on-demand )'){
  384. var result = {
  385. matches: false,
  386. media: "not all",
  387. onchange: null,
  388. }
  389. return catvm.proxy(result);
  390. }else if(X === '(any-hover: none )'){
  391. var result = {
  392. matches: false,
  393. media: "(any-hover: none)",
  394. onchange: null,
  395. }
  396. return catvm.proxy(result);
  397. }else if(X === '(any-hover )'){
  398. var result = {
  399. matches: true,
  400. media: "(any-hover)",
  401. onchange: null,
  402. }
  403. return catvm.proxy(result);
  404. }else if(X === '(color-gamut: srgb )'){
  405. var result = {
  406. matches: true,
  407. media: "(color-gamut: srgb)",
  408. onchange: null,
  409. }
  410. return catvm.proxy(result);
  411. }else if(X === '(color-gamut: p3 )'){
  412. var result = {
  413. matches: false,
  414. media: "(color-gamut: p3)",
  415. onchange: null,
  416. }
  417. return catvm.proxy(result);
  418. }else if(X === '(color-gamut: rec2020 )'){
  419. var result = {
  420. matches: false,
  421. media: "(color-gamut: rec2020)",
  422. onchange: null,
  423. }
  424. return catvm.proxy(result);
  425. }else if(X === '(color-gamut )'){
  426. var result = {
  427. matches: true,
  428. media: "(color-gamut)",
  429. onchange: null,
  430. }
  431. return catvm.proxy(result);
  432. }
  433. return catvm.proxy(result);
  434. };catvm.safefunction(window.matchMedia);
  435. window.BeforeInstallPromptEvent = function BeforeInstallPromptEvent(){
  436. debugger;
  437. };catvm.safefunction(window.BeforeInstallPromptEvent);
  438. window.HTMLInputElement = function HTMLInputElement(){
  439. debugger;
  440. };catvm.safefunction(window.HTMLInputElement);
  441. window.HTMLInputElement = catvm.proxy(window.HTMLInputElement)
  442. window.HTMLAnchorElement = function HTMLAnchorElement(){
  443. debugger;
  444. };catvm.safefunction(window.HTMLAnchorElement);
  445. window.HTMLAnchorElement.prototype = catvm.proxy(window.HTMLAnchorElement.prototype);
  446. window.HTMLAnchorElement = catvm.proxy(window.HTMLAnchorElement);
  447. Window.prototype.__proto__ = WindowProperties.prototype;
  448. window.__proto__ = Window.prototype;
  449. window = catvm.proxy(window)
  450. var Location =function Location() {//构造函数
  451. throw new TypeError("Illegal constructor");
  452. }; catvm.safefunction(Location);
  453. Object.defineProperties(Location.prototype , {
  454. [Symbol.toStringTag]: {
  455. value: "Location",
  456. configurable: false
  457. }
  458. });
  459. ////
  460. location = {};
  461. location.ancestorOrigins = catvm.proxy(class ancestorOrigins{});
  462. location.href = 'http://zxgk.court.gov.cn/';
  463. location.host = 'zxgk.court.gov.cn'; //如果url中包含了:端口号,则就要加上,但是hostname不用加
  464. location.hostname = location.host;
  465. location.protocol = 'http:';
  466. location.port = '';
  467. location.origin = 'http://zxgk.court.gov.cn';
  468. location.pathname = '/'
  469. location.search = "";
  470. location.hash = "";
  471. location.replace = function replace(){
  472. debugger;
  473. };catvm.safefunction(location.replace);
  474. //////////////////////////////////////
  475. location.__proto__ = Location.prototype;
  476. location = catvm.proxy(location);
  477. catvm.memory.navigator = {}
  478. var Navigator =function Navigator() {//构造函数
  479. throw new TypeError("Illegal constructor");
  480. }; catvm.safefunction(Navigator);
  481. Object.defineProperties(Navigator.prototype , {
  482. [Symbol.toStringTag]: {
  483. value: "Navigator",
  484. configurable: true
  485. }
  486. });
  487. ////
  488. navigator = {};
  489. navigator.__proto__ = Navigator.prototype;
  490. Navigator.prototype.appCodeName = 'Mozilla';
  491. Navigator.prototype.appName = 'Netscape';
  492. Navigator.prototype.userAgent = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36';
  493. Navigator.prototype.languages = ['zh-CN'];
  494. Navigator.prototype.platform = 'Win32';
  495. Navigator.prototype.plugins = [];
  496. var NetworkInformation = new(class NetworkInformation{});
  497. NetworkInformation.downlink = 10;
  498. NetworkInformation.effectiveType = "4g";
  499. NetworkInformation.onchange = null;
  500. NetworkInformation.rtt = 150;
  501. NetworkInformation.saveData = false;
  502. Navigator.prototype.connection = catvm.proxy(NetworkInformation);
  503. Navigator.prototype.appVersion = '5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62';
  504. Navigator.prototype.webkitPersistentStorage = class DeprecatedStorageQuota{};
  505. Navigator.prototype.webkitPersistentStorage = catvm.proxy(Navigator.prototype.webkitPersistentStorage);
  506. Navigator.prototype.mimeTypes = {
  507. length:0
  508. }
  509. Navigator.prototype.mimeTypes = catvm.proxy(Navigator.prototype.mimeTypes);
  510. Navigator.prototype.webdriver = false;
  511. catvm.memory.navigator.getwebdriver = function webdriver(){
  512. return false;
  513. };catvm.safefunction(catvm.memory.navigator.getwebdriver);
  514. Object.defineProperty(catvm.memory.navigator.getwebdriver, 'name', {
  515. value: "get webdriver"
  516. });
  517. Object.defineProperty(Navigator.prototype, 'webdriver', {
  518. configurable: true,
  519. enumerable: true,
  520. get: catvm.memory.navigator.getwebdriver
  521. });
  522. Navigator.prototype.hardwareConcurrency = 6;
  523. Navigator.prototype.productSub = '20030107';
  524. Navigator.prototype.product = "Gecko";
  525. Navigator.prototype.doNotTrack = null;
  526. Navigator.prototype.maxTouchPoints = 0;
  527. Navigator.prototype.vibrate = function vibrate(){
  528. debugger;
  529. };catvm.safefunction(Navigator.prototype.vibrate);
  530. Navigator.prototype.language = 'zh-CN';
  531. Navigator.prototype.getBattery = function getBattery(){
  532. var BatteryManager_ = new (function BatteryManager(){});
  533. BatteryManager_.charging = false;
  534. BatteryManager_.chargingTime = Infinity;
  535. BatteryManager_.dischargingTime = Infinity;
  536. BatteryManager_.level = 1;
  537. BatteryManager_.onchargingchange = null;
  538. BatteryManager_.onchargingtimechange = null;
  539. BatteryManager_.ondischargingtimechange = null;
  540. BatteryManager_.onlevelchange = null;
  541. return new Promise((resolve,reject) => {
  542. resolve(BatteryManager_);
  543. })
  544. };catvm.safefunction(Navigator.prototype.getBattery);
  545. //Navigator.prototype.getBattery = catvm.proxy(Navigator.prototype.getBattery);
  546. for (catvm.memory.navigator.temp in Navigator.prototype) {
  547. if(catvm.memory.navigator.temp === "webdriver"){
  548. continue;
  549. }
  550. navigator[catvm.memory.navigator.temp] = Navigator.prototype[catvm.memory.navigator.temp];
  551. Navigator.prototype.__defineGetter__(catvm.memory.navigator.temp, function() {
  552. throw new TypeError("Illegal constructor");
  553. });
  554. }
  555. ////
  556. window.clientInformation = navigator;
  557. navigator = catvm.proxy(navigator);
  558. var History =function History() {//构造函数
  559. throw new TypeError("Illegal constructor");
  560. }; catvm.safefunction(History);
  561. Object.defineProperties(History.prototype , {
  562. [Symbol.toStringTag]: {
  563. value: "History",
  564. configurable: true
  565. }
  566. });
  567. ////
  568. History.prototype.back = function back(){debugger};catvm.safefunction(History.prototype.back);
  569. /////
  570. history = {};
  571. history.__proto__ = History.prototype;
  572. history = catvm.proxy(history);
  573. var Screen =function Screen() {//构造函数
  574. throw new TypeError("Illegal constructor");
  575. }; catvm.safefunction(Screen);
  576. Object.defineProperties(Screen.prototype , {
  577. [Symbol.toStringTag]: {
  578. value: "Screen",
  579. configurable: true
  580. }
  581. });
  582. ////
  583. Screen.prototype.availHeight = 824;
  584. Screen.prototype.availWidth = 1536;
  585. Screen.prototype.availLeft = 0;
  586. Screen.prototype.availTop = 0;
  587. Screen.prototype.colorDepth = 24;
  588. Screen.prototype.height = 864;
  589. Screen.prototype.width = 1536;
  590. Screen.prototype.pixelDepth = 24;
  591. ////
  592. screen = {};
  593. screen.__proto__ = Screen.prototype;
  594. screen = catvm.proxy(screen);
  595. var Storage =function Storage() {//构造函数
  596. throw new TypeError("Illegal constructor");
  597. }; catvm.safefunction(Storage);
  598. Object.defineProperties(Storage.prototype , {
  599. [Symbol.toStringTag]: {
  600. value: "Storage",
  601. configurable: true
  602. }
  603. });
  604. /////
  605. Storage.prototype.length=0;
  606. Storage.prototype.clear=function clear(){
  607. debugger;
  608. var temp = Object.keys(this)
  609. for (var i=0;temp.length>i;i++)
  610. {
  611. delete this[temp[i]];
  612. }
  613. }; catvm.safefunction(Storage.prototype.clear);
  614. Storage.prototype.getItem=function getItem(k){
  615. debugger;
  616. return this[k];
  617. }; catvm.safefunction(Storage.prototype.getItem);
  618. Storage.prototype.key=function key(index){
  619. debugger;
  620. return Object.keys(this)[index]
  621. }; catvm.safefunction(Storage.prototype.key);
  622. Storage.prototype.removeItem=function removeItem(k){
  623. debugger;
  624. delete this[k];
  625. }; catvm.safefunction(Storage.prototype.removeItem);
  626. Storage.prototype.setItem=function setItem(k,v){
  627. debugger;
  628. debugger;
  629. this[k] = v;
  630. }; catvm.safefunction(Storage.prototype.setItem);
  631. ////容易被检测
  632. Storage.prototype.__defineGetter__('length',function(){
  633. return Object.keys(this).length;
  634. })
  635. //////
  636. var localStorage = {
  637. "$_YVTX": "Wq",
  638. "$_YWTU": "1x1u9wsfI.Dr_GUS19l9Omk7l4J_KMlrmg82nIqvd.7",
  639. "_$rc": "256mYX1vwbvl.xgreLtinsZZe1QyRyyY3DYaTvtmwChYpzZAMlFgCSaNPJ9",
  640. "__#classType": "localStorage",
  641. length: 4,
  642. };
  643. localStorage.__proto__ = Storage.prototype;
  644. localStorage = catvm.proxy(localStorage);
  645. var sessionStorage = {
  646. "$_YVTX": "Wq",
  647. "$_YWTU": "1x1u9wsfI.Dr_GUS19l9Omk7l4J_KMlrmg82nIqvd.7",
  648. length: 2
  649. };
  650. sessionStorage.__proto__ = Storage.prototype;
  651. sessionStorage = catvm.proxy(sessionStorage);
  652. catvm.memory.Plugin = {}
  653. var Plugin =function Plugin() {//构造函数
  654. throw new TypeError("Illegal constructor");
  655. }; catvm.safefunction(Plugin);
  656. catvm.memory.Plugin.iterator = function values(){
  657. debugger;
  658. }; catvm.safefunction(catvm.memory.Plugin.iterator);
  659. Object.defineProperties(Plugin.prototype , {
  660. [Symbol.toStringTag]: {
  661. value: "Plugin",
  662. configurable: true
  663. },
  664. [Symbol.iterator]: {
  665. value: catvm.memory.Plugin.iterator,
  666. configurable: true
  667. }
  668. });
  669. ///////////
  670. //////////
  671. catvm.memory.Plugin.new = function (data){
  672. var plugin = {};
  673. plugin.__proto__ = Plugin.prototype;
  674. if(data != undefined){
  675. plugin.description = data.description;
  676. plugin.filename = data.filename;
  677. plugin.name = data.name;
  678. }
  679. return plugin;
  680. }
  681. var Performance = function Performance(){
  682. //容易被检测到的 堆栈
  683. throw new TypeError("Illegal constructor");
  684. }; catvm.safefunction(Performance);
  685. Object.defineProperties(Performance.prototype , {
  686. [Symbol.toStringTag]: {
  687. value: "Performance",
  688. configurable: true
  689. }
  690. });
  691. ////
  692. performance = {};
  693. window.xxxxx = 0;
  694. performance.now = function now(){
  695. if(window.xxxxx == 0){
  696. window.xxxxx++;
  697. return 460272.40000009537;
  698. }else{
  699. return 521235.3000000715
  700. }
  701. };catvm.safefunction(performance.now);
  702. performance.__proto__ = Performance.prototype;
  703. Performance.prototype = function getEntriesByName(){debugger};catvm.safefunction(Performance.prototype);
  704. /////
  705. Performance.prototype.__proto__ = EventTarget.prototype;
  706. performance = catvm.proxy(performance);
  707. var BatteryManager = function BatteryManager(){
  708. //容易被检测到的 堆栈
  709. throw new TypeError("Illegal constructor");
  710. }; catvm.safefunction(BatteryManager);
  711. Object.defineProperties(BatteryManager.prototype , {
  712. [Symbol.toStringTag]: {
  713. value: "BatteryManager",
  714. configurable: true
  715. }
  716. });
  717. ///
  718. BatteryManager.prototype.charging = true;
  719. BatteryManager.prototype.chargingTime = Infinity;
  720. BatteryManager.prototype.dischargingTime = Infinity;
  721. BatteryManager.prototype.level = 1;
  722. BatteryManager.prototype.onchargingchange = null;
  723. BatteryManager.prototype.onchargingtimechange = null;
  724. BatteryManager.prototype.ondischargingtimechange = null;
  725. BatteryManager.prototype.onlevelchange = null;
  726. BatteryManager.prototype.__proto__ = EventTarget.prototype
  727. /////
  728. catvm.memory.navigator = {}
  729. var HTMLDivElement =function HTMLDivElement() {//构造函数
  730. throw new TypeError("Illegal constructor");
  731. }; catvm.safefunction(HTMLDivElement);
  732. Object.defineProperties(HTMLDivElement.prototype , {
  733. [Symbol.toStringTag]: {
  734. value: "HTMLDivElement",
  735. configurable: true
  736. }
  737. });
  738. HTMLDivElement.prototype.getElementsByTagName = function getElementsByTagName(){
  739. debugger
  740. };catvm.safefunction(HTMLDivElement.prototype.getElementsByTagName);
  741. var HTMLMetaElement =function HTMLMetaElement() {//构造函数
  742. throw new TypeError("Illegal constructor");
  743. }; catvm.safefunction(HTMLMetaElement);
  744. Object.defineProperties(HTMLMetaElement.prototype , {
  745. [Symbol.toStringTag]: {
  746. value: "HTMLMetaElement",
  747. configurable: true
  748. }
  749. });
  750. var HTMLHtmlElement =function HTMLHtmlElement() {//构造函数
  751. throw new TypeError("Illegal constructor");
  752. }; catvm.safefunction(HTMLHtmlElement);
  753. Object.defineProperties(HTMLHtmlElement.prototype , {
  754. [Symbol.toStringTag]: {
  755. value: "HTMLHtmlElement",
  756. configurable: true
  757. }
  758. });
  759. catvm.memory.canvas = {};
  760. var CanvasRenderingContext2D =function CanvasRenderingContext2D() {//构造函数
  761. throw new TypeError("Illegal constructor");
  762. }; catvm.safefunction(CanvasRenderingContext2D);
  763. Object.defineProperties(CanvasRenderingContext2D.prototype , {
  764. [Symbol.toStringTag]: {
  765. value: "CanvasRenderingContext2D",
  766. configurable: true
  767. }
  768. });
  769. ///////////////////////////////////////////////////////////////////////////////////////////////
  770. CanvasRenderingContext2D.prototype.rect=function rect(a_,b_,c_,d_){
  771. debugger;
  772. };catvm.safefunction(CanvasRenderingContext2D.prototype.rect);
  773. CanvasRenderingContext2D.prototype.isPointInPath=function isPointInPath(x_,y_,z_){
  774. debugger;
  775. return false;
  776. };catvm.safefunction(CanvasRenderingContext2D.prototype.isPointInPath);
  777. CanvasRenderingContext2D.prototype.fillRect=function fillRect(x, y, width, height){
  778. //绘制一个填充了内容的矩形,填充样式由当前的 fillStyle 决定
  779. //x->矩阵的起始x y->矩阵的起始y width->矩阵的宽度 height->矩阵的高度
  780. debugger;
  781. return undefined;
  782. };catvm.safefunction(CanvasRenderingContext2D.prototype.fillRect);
  783. CanvasRenderingContext2D.prototype.fillText=function fillText(a_,b_,c_){
  784. debugger;
  785. return undefined;
  786. };catvm.safefunction(CanvasRenderingContext2D.prototype.fillText);
  787. CanvasRenderingContext2D.prototype.beginPath=function beginPath(){
  788. debugger;
  789. return undefined;
  790. };catvm.safefunction(CanvasRenderingContext2D.prototype.beginPath);
  791. CanvasRenderingContext2D.prototype.closePath=function closePath(){
  792. debugger;
  793. return undefined;
  794. };catvm.safefunction(CanvasRenderingContext2D.prototype.closePath);
  795. CanvasRenderingContext2D.prototype.fill=function fill(x_){
  796. debugger;
  797. return undefined;
  798. };catvm.safefunction(CanvasRenderingContext2D.prototype.fill);
  799. CanvasRenderingContext2D.prototype.arc=function arc(x_,y_,z_,a_,b_,c_){
  800. debugger;
  801. return undefined;
  802. };catvm.safefunction(CanvasRenderingContext2D.prototype.arc);
  803. CanvasRenderingContext2D.prototype.stroke=function stroke(x_,y_,z_,a_,b_,c_){
  804. debugger;
  805. return undefined;
  806. };catvm.safefunction(CanvasRenderingContext2D.prototype.stroke);
  807. CanvasRenderingContext2D.prototype.strokeRect=function strokeRect(x, y, width, height){
  808. //绘制空心矩阵其
  809. debugger;
  810. return undefined;
  811. };catvm.safefunction(CanvasRenderingContext2D.prototype.strokeRect);
  812. /*
  813. CanvasRenderingContext2D.fillStyle 设置或返回用于填充绘画的颜色、渐变或模式 可以 CanvasRenderingContext2D.fillStyle = 'yellow'
  814. 颜色-color 绘图填充色的css颜色(默认是#000000)
  815. 渐变-gradient 用于填充绘图的渐变对象
  816. 模式-pattern
  817. */
  818. ////////////////////////////////////////////////////////////////////////////////////////////////////////
  819. catvm.memory.canvas.canvasRenderingContext2D = {};
  820. catvm.memory.canvas.canvasRenderingContext2D.__proto__ = CanvasRenderingContext2D.prototype;
  821. catvm.memory.canvas.canvasRenderingContext2D = catvm.proxy(catvm.memory.canvas.canvasRenderingContext2D);
  822. catvm.memory.webgl = {};
  823. var WebGLRenderingContext =function WebGLRenderingContext() {//构造函数
  824. throw new TypeError("Illegal constructor");
  825. }; catvm.safefunction(WebGLRenderingContext);
  826. Object.defineProperties(WebGLRenderingContext.prototype , {
  827. [Symbol.toStringTag]: {
  828. value: "WebGLRenderingContext",
  829. configurable: true
  830. }
  831. });
  832. window.xxxxx = 0;
  833. WebGLRenderingContext.prototype.canvas=catvm.proxy(class canvas{});
  834. WebGLRenderingContext.prototype.canvas.toDataURL = function toDataURL(){
  835. debugger;
  836. return "data:image/png;base64,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";
  837. }
  838. WebGLRenderingContext.prototype.drawingBufferWidth=300;
  839. WebGLRenderingContext.prototype.drawingBufferHeight=150;
  840. WebGLRenderingContext.prototype.DEPTH_BUFFER_BIT=256;
  841. WebGLRenderingContext.prototype.STENCIL_BUFFER_BIT=1024;
  842. WebGLRenderingContext.prototype.COLOR_BUFFER_BIT=16384;
  843. WebGLRenderingContext.prototype.POINTS=0;
  844. WebGLRenderingContext.prototype.LINES=1;
  845. WebGLRenderingContext.prototype.LINE_LOOP=2;
  846. WebGLRenderingContext.prototype.LINE_STRIP=3;
  847. WebGLRenderingContext.prototype.TRIANGLES=4;
  848. WebGLRenderingContext.prototype.TRIANGLE_STRIP=5;
  849. WebGLRenderingContext.prototype.TRIANGLE_FAN=6;
  850. WebGLRenderingContext.prototype.ZERO=0;
  851. WebGLRenderingContext.prototype.ONE=1;
  852. WebGLRenderingContext.prototype.SRC_COLOR=768;
  853. WebGLRenderingContext.prototype.ONE_MINUS_SRC_COLOR=769;
  854. WebGLRenderingContext.prototype.SRC_ALPHA=770;
  855. WebGLRenderingContext.prototype.ONE_MINUS_SRC_ALPHA=771;
  856. WebGLRenderingContext.prototype.DST_ALPHA=772;
  857. WebGLRenderingContext.prototype.ONE_MINUS_DST_ALPHA=773;
  858. WebGLRenderingContext.prototype.DST_COLOR=774;
  859. WebGLRenderingContext.prototype.ONE_MINUS_DST_COLOR=775;
  860. WebGLRenderingContext.prototype.SRC_ALPHA_SATURATE=776;
  861. WebGLRenderingContext.prototype.FUNC_ADD=32774;
  862. WebGLRenderingContext.prototype.BLEND_EQUATION=32777;
  863. WebGLRenderingContext.prototype.BLEND_EQUATION_RGB=32777;
  864. WebGLRenderingContext.prototype.BLEND_EQUATION_ALPHA=34877;
  865. WebGLRenderingContext.prototype.FUNC_SUBTRACT=32778;
  866. WebGLRenderingContext.prototype.FUNC_REVERSE_SUBTRACT=32779;
  867. WebGLRenderingContext.prototype.BLEND_DST_RGB=32968;
  868. WebGLRenderingContext.prototype.BLEND_SRC_RGB=32969;
  869. WebGLRenderingContext.prototype.BLEND_DST_ALPHA=32970;
  870. WebGLRenderingContext.prototype.BLEND_SRC_ALPHA=32971;
  871. WebGLRenderingContext.prototype.CONSTANT_COLOR=32769;
  872. WebGLRenderingContext.prototype.ONE_MINUS_CONSTANT_COLOR=32770;
  873. WebGLRenderingContext.prototype.CONSTANT_ALPHA=32771;
  874. WebGLRenderingContext.prototype.ONE_MINUS_CONSTANT_ALPHA=32772;
  875. WebGLRenderingContext.prototype.BLEND_COLOR=32773;
  876. WebGLRenderingContext.prototype.ARRAY_BUFFER=34962;
  877. WebGLRenderingContext.prototype.ELEMENT_ARRAY_BUFFER=34963;
  878. WebGLRenderingContext.prototype.ARRAY_BUFFER_BINDING=34964;
  879. WebGLRenderingContext.prototype.ELEMENT_ARRAY_BUFFER_BINDING=34965;
  880. WebGLRenderingContext.prototype.STREAM_DRAW=35040;
  881. WebGLRenderingContext.prototype.STATIC_DRAW=35044;
  882. WebGLRenderingContext.prototype.DYNAMIC_DRAW=35048;
  883. WebGLRenderingContext.prototype.BUFFER_SIZE=34660;
  884. WebGLRenderingContext.prototype.BUFFER_USAGE=34661;
  885. WebGLRenderingContext.prototype.CURRENT_VERTEX_ATTRIB=34342;
  886. WebGLRenderingContext.prototype.FRONT=1028;
  887. WebGLRenderingContext.prototype.BACK=1029;
  888. WebGLRenderingContext.prototype.FRONT_AND_BACK=1032;
  889. WebGLRenderingContext.prototype.TEXTURE_2D=3553;
  890. WebGLRenderingContext.prototype.CULL_FACE=2884;
  891. WebGLRenderingContext.prototype.BLEND=3042;
  892. WebGLRenderingContext.prototype.DITHER=3024;
  893. WebGLRenderingContext.prototype.STENCIL_TEST=2960;
  894. WebGLRenderingContext.prototype.DEPTH_TEST=2929;
  895. WebGLRenderingContext.prototype.SCISSOR_TEST=3089;
  896. WebGLRenderingContext.prototype.POLYGON_OFFSET_FILL=32823;
  897. WebGLRenderingContext.prototype.SAMPLE_ALPHA_TO_COVERAGE=32926;
  898. WebGLRenderingContext.prototype.SAMPLE_COVERAGE=32928;
  899. WebGLRenderingContext.prototype.NO_ERROR=0;
  900. WebGLRenderingContext.prototype.INVALID_ENUM=1280;
  901. WebGLRenderingContext.prototype.INVALID_VALUE=1281;
  902. WebGLRenderingContext.prototype.INVALID_OPERATION=1282;
  903. WebGLRenderingContext.prototype.OUT_OF_MEMORY=1285;
  904. WebGLRenderingContext.prototype.CW=2304;
  905. WebGLRenderingContext.prototype.CCW=2305;
  906. WebGLRenderingContext.prototype.LINE_WIDTH=2849;
  907. WebGLRenderingContext.prototype.ALIASED_POINT_SIZE_RANGE=33901;
  908. WebGLRenderingContext.prototype.ALIASED_LINE_WIDTH_RANGE=33902;
  909. WebGLRenderingContext.prototype.CULL_FACE_MODE=2885;
  910. WebGLRenderingContext.prototype.FRONT_FACE=2886;
  911. WebGLRenderingContext.prototype.DEPTH_RANGE=2928;
  912. WebGLRenderingContext.prototype.DEPTH_WRITEMASK=2930;
  913. WebGLRenderingContext.prototype.DEPTH_CLEAR_VALUE=2931;
  914. WebGLRenderingContext.prototype.DEPTH_FUNC=2932;
  915. WebGLRenderingContext.prototype.STENCIL_CLEAR_VALUE=2961;
  916. WebGLRenderingContext.prototype.STENCIL_FUNC=2962;
  917. WebGLRenderingContext.prototype.STENCIL_FAIL=2964;
  918. WebGLRenderingContext.prototype.STENCIL_PASS_DEPTH_FAIL=2965;
  919. WebGLRenderingContext.prototype.STENCIL_PASS_DEPTH_PASS=2966;
  920. WebGLRenderingContext.prototype.STENCIL_REF=2967;
  921. WebGLRenderingContext.prototype.STENCIL_VALUE_MASK=2963;
  922. WebGLRenderingContext.prototype.STENCIL_WRITEMASK=2968;
  923. WebGLRenderingContext.prototype.STENCIL_BACK_FUNC=34816;
  924. WebGLRenderingContext.prototype.STENCIL_BACK_FAIL=34817;
  925. WebGLRenderingContext.prototype.STENCIL_BACK_PASS_DEPTH_FAIL=34818;
  926. WebGLRenderingContext.prototype.STENCIL_BACK_PASS_DEPTH_PASS=34819;
  927. WebGLRenderingContext.prototype.STENCIL_BACK_REF=36003;
  928. WebGLRenderingContext.prototype.STENCIL_BACK_VALUE_MASK=36004;
  929. WebGLRenderingContext.prototype.STENCIL_BACK_WRITEMASK=36005;
  930. WebGLRenderingContext.prototype.VIEWPORT=2978;
  931. WebGLRenderingContext.prototype.SCISSOR_BOX=3088;
  932. WebGLRenderingContext.prototype.COLOR_CLEAR_VALUE=3106;
  933. WebGLRenderingContext.prototype.COLOR_WRITEMASK=3107;
  934. WebGLRenderingContext.prototype.UNPACK_ALIGNMENT=3317;
  935. WebGLRenderingContext.prototype.PACK_ALIGNMENT=3333;
  936. WebGLRenderingContext.prototype.MAX_TEXTURE_SIZE=3379;
  937. WebGLRenderingContext.prototype.MAX_VIEWPORT_DIMS=3386;
  938. WebGLRenderingContext.prototype.SUBPIXEL_BITS=3408;
  939. WebGLRenderingContext.prototype.RED_BITS=3410;
  940. WebGLRenderingContext.prototype.GREEN_BITS=3411;
  941. WebGLRenderingContext.prototype.BLUE_BITS=3412;
  942. WebGLRenderingContext.prototype.ALPHA_BITS=3413;
  943. WebGLRenderingContext.prototype.DEPTH_BITS=3414;
  944. WebGLRenderingContext.prototype.STENCIL_BITS=3415;
  945. WebGLRenderingContext.prototype.POLYGON_OFFSET_UNITS=10752;
  946. WebGLRenderingContext.prototype.POLYGON_OFFSET_FACTOR=32824;
  947. WebGLRenderingContext.prototype.TEXTURE_BINDING_2D=32873;
  948. WebGLRenderingContext.prototype.SAMPLE_BUFFERS=32936;
  949. WebGLRenderingContext.prototype.SAMPLES=32937;
  950. WebGLRenderingContext.prototype.SAMPLE_COVERAGE_VALUE=32938;
  951. WebGLRenderingContext.prototype.SAMPLE_COVERAGE_INVERT=32939;
  952. WebGLRenderingContext.prototype.COMPRESSED_TEXTURE_FORMATS=34467;
  953. WebGLRenderingContext.prototype.DONT_CARE=4352;
  954. WebGLRenderingContext.prototype.FASTEST=4353;
  955. WebGLRenderingContext.prototype.NICEST=4354;
  956. WebGLRenderingContext.prototype.GENERATE_MIPMAP_HINT=33170;
  957. WebGLRenderingContext.prototype.BYTE=5120;
  958. WebGLRenderingContext.prototype.UNSIGNED_BYTE=5121;
  959. WebGLRenderingContext.prototype.SHORT=5122;
  960. WebGLRenderingContext.prototype.UNSIGNED_SHORT=5123;
  961. WebGLRenderingContext.prototype.INT=5124;
  962. WebGLRenderingContext.prototype.UNSIGNED_INT=5125;
  963. WebGLRenderingContext.prototype.FLOAT=5126;
  964. WebGLRenderingContext.prototype.DEPTH_COMPONENT=6402;
  965. WebGLRenderingContext.prototype.ALPHA=6406;
  966. WebGLRenderingContext.prototype.RGB=6407;
  967. WebGLRenderingContext.prototype.RGBA=6408;
  968. WebGLRenderingContext.prototype.LUMINANCE=6409;
  969. WebGLRenderingContext.prototype.LUMINANCE_ALPHA=6410;
  970. WebGLRenderingContext.prototype.UNSIGNED_SHORT_4_4_4_4=32819;
  971. WebGLRenderingContext.prototype.UNSIGNED_SHORT_5_5_5_1=32820;
  972. WebGLRenderingContext.prototype.UNSIGNED_SHORT_5_6_5=33635;
  973. WebGLRenderingContext.prototype.FRAGMENT_SHADER=35632;
  974. WebGLRenderingContext.prototype.VERTEX_SHADER=35633;
  975. WebGLRenderingContext.prototype.MAX_VERTEX_ATTRIBS=34921;
  976. WebGLRenderingContext.prototype.MAX_VERTEX_UNIFORM_VECTORS=36347;
  977. WebGLRenderingContext.prototype.MAX_VARYING_VECTORS=36348;
  978. WebGLRenderingContext.prototype.MAX_COMBINED_TEXTURE_IMAGE_UNITS=35661;
  979. WebGLRenderingContext.prototype.MAX_VERTEX_TEXTURE_IMAGE_UNITS=35660;
  980. WebGLRenderingContext.prototype.MAX_TEXTURE_IMAGE_UNITS=34930;
  981. WebGLRenderingContext.prototype.MAX_FRAGMENT_UNIFORM_VECTORS=36349;
  982. WebGLRenderingContext.prototype.SHADER_TYPE=35663;
  983. WebGLRenderingContext.prototype.DELETE_STATUS=35712;
  984. WebGLRenderingContext.prototype.LINK_STATUS=35714;
  985. WebGLRenderingContext.prototype.VALIDATE_STATUS=35715;
  986. WebGLRenderingContext.prototype.ATTACHED_SHADERS=35717;
  987. WebGLRenderingContext.prototype.ACTIVE_UNIFORMS=35718;
  988. WebGLRenderingContext.prototype.ACTIVE_ATTRIBUTES=35721;
  989. WebGLRenderingContext.prototype.SHADING_LANGUAGE_VERSION=35724;
  990. WebGLRenderingContext.prototype.CURRENT_PROGRAM=35725;
  991. WebGLRenderingContext.prototype.NEVER=512;
  992. WebGLRenderingContext.prototype.LESS=513;
  993. WebGLRenderingContext.prototype.EQUAL=514;
  994. WebGLRenderingContext.prototype.LEQUAL=515;
  995. WebGLRenderingContext.prototype.GREATER=516;
  996. WebGLRenderingContext.prototype.NOTEQUAL=517;
  997. WebGLRenderingContext.prototype.GEQUAL=518;
  998. WebGLRenderingContext.prototype.ALWAYS=519;
  999. WebGLRenderingContext.prototype.KEEP=7680;
  1000. WebGLRenderingContext.prototype.REPLACE=7681;
  1001. WebGLRenderingContext.prototype.INCR=7682;
  1002. WebGLRenderingContext.prototype.DECR=7683;
  1003. WebGLRenderingContext.prototype.INVERT=5386;
  1004. WebGLRenderingContext.prototype.INCR_WRAP=34055;
  1005. WebGLRenderingContext.prototype.DECR_WRAP=34056;
  1006. WebGLRenderingContext.prototype.VENDOR=7936;
  1007. WebGLRenderingContext.prototype.RENDERER=7937;
  1008. WebGLRenderingContext.prototype.VERSION=7938;
  1009. WebGLRenderingContext.prototype.NEAREST=9728;
  1010. WebGLRenderingContext.prototype.LINEAR=9729;
  1011. WebGLRenderingContext.prototype.NEAREST_MIPMAP_NEAREST=9984;
  1012. WebGLRenderingContext.prototype.LINEAR_MIPMAP_NEAREST=9985;
  1013. WebGLRenderingContext.prototype.NEAREST_MIPMAP_LINEAR=9986;
  1014. WebGLRenderingContext.prototype.LINEAR_MIPMAP_LINEAR=9987;
  1015. WebGLRenderingContext.prototype.TEXTURE_MAG_FILTER=10240;
  1016. WebGLRenderingContext.prototype.TEXTURE_MIN_FILTER=10241;
  1017. WebGLRenderingContext.prototype.TEXTURE_WRAP_S=10242;
  1018. WebGLRenderingContext.prototype.TEXTURE_WRAP_T=10243;
  1019. WebGLRenderingContext.prototype.TEXTURE=5890;
  1020. WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP=34067;
  1021. WebGLRenderingContext.prototype.TEXTURE_BINDING_CUBE_MAP=34068;
  1022. WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_POSITIVE_X=34069;
  1023. WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_NEGATIVE_X=34070;
  1024. WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_POSITIVE_Y=34071;
  1025. WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_NEGATIVE_Y=34072;
  1026. WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_POSITIVE_Z=34073;
  1027. WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_NEGATIVE_Z=34074;
  1028. WebGLRenderingContext.prototype.MAX_CUBE_MAP_TEXTURE_SIZE=34076;
  1029. WebGLRenderingContext.prototype.TEXTURE0=33984;
  1030. WebGLRenderingContext.prototype.TEXTURE1=33985;
  1031. WebGLRenderingContext.prototype.TEXTURE2=33986;
  1032. WebGLRenderingContext.prototype.TEXTURE3=33987;
  1033. WebGLRenderingContext.prototype.TEXTURE4=33988;
  1034. WebGLRenderingContext.prototype.TEXTURE5=33989;
  1035. WebGLRenderingContext.prototype.TEXTURE6=33990;
  1036. WebGLRenderingContext.prototype.TEXTURE7=33991;
  1037. WebGLRenderingContext.prototype.TEXTURE8=33992;
  1038. WebGLRenderingContext.prototype.TEXTURE9=33993;
  1039. WebGLRenderingContext.prototype.TEXTURE10=33994;
  1040. WebGLRenderingContext.prototype.TEXTURE11=33995;
  1041. WebGLRenderingContext.prototype.TEXTURE12=33996;
  1042. WebGLRenderingContext.prototype.TEXTURE13=33997;
  1043. WebGLRenderingContext.prototype.TEXTURE14=33998;
  1044. WebGLRenderingContext.prototype.TEXTURE15=33999;
  1045. WebGLRenderingContext.prototype.TEXTURE16=34000;
  1046. WebGLRenderingContext.prototype.TEXTURE17=34001;
  1047. WebGLRenderingContext.prototype.TEXTURE18=34002;
  1048. WebGLRenderingContext.prototype.TEXTURE19=34003;
  1049. WebGLRenderingContext.prototype.TEXTURE20=34004;
  1050. WebGLRenderingContext.prototype.TEXTURE21=34005;
  1051. WebGLRenderingContext.prototype.TEXTURE22=34006;
  1052. WebGLRenderingContext.prototype.TEXTURE23=34007;
  1053. WebGLRenderingContext.prototype.TEXTURE24=34008;
  1054. WebGLRenderingContext.prototype.TEXTURE25=34009;
  1055. WebGLRenderingContext.prototype.TEXTURE26=34010;
  1056. WebGLRenderingContext.prototype.TEXTURE27=34011;
  1057. WebGLRenderingContext.prototype.TEXTURE28=34012;
  1058. WebGLRenderingContext.prototype.TEXTURE29=34013;
  1059. WebGLRenderingContext.prototype.TEXTURE30=34014;
  1060. WebGLRenderingContext.prototype.TEXTURE31=34015;
  1061. WebGLRenderingContext.prototype.ACTIVE_TEXTURE=34016;
  1062. WebGLRenderingContext.prototype.REPEAT=10497;
  1063. WebGLRenderingContext.prototype.CLAMP_TO_EDGE=33071;
  1064. WebGLRenderingContext.prototype.MIRRORED_REPEAT=33648;
  1065. WebGLRenderingContext.prototype.FLOAT_VEC2=35664;
  1066. WebGLRenderingContext.prototype.FLOAT_VEC3=35665;
  1067. WebGLRenderingContext.prototype.FLOAT_VEC4=35666;
  1068. WebGLRenderingContext.prototype.INT_VEC2=35667;
  1069. WebGLRenderingContext.prototype.INT_VEC3=35668;
  1070. WebGLRenderingContext.prototype.INT_VEC4=35669;
  1071. WebGLRenderingContext.prototype.BOOL=35670;
  1072. WebGLRenderingContext.prototype.BOOL_VEC2=35671;
  1073. WebGLRenderingContext.prototype.BOOL_VEC3=35672;
  1074. WebGLRenderingContext.prototype.BOOL_VEC4=35673;
  1075. WebGLRenderingContext.prototype.FLOAT_MAT2=35674;
  1076. WebGLRenderingContext.prototype.FLOAT_MAT3=35675;
  1077. WebGLRenderingContext.prototype.FLOAT_MAT4=35676;
  1078. WebGLRenderingContext.prototype.SAMPLER_2D=35678;
  1079. WebGLRenderingContext.prototype.SAMPLER_CUBE=35680;
  1080. WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_ENABLED=34338;
  1081. WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_SIZE=34339;
  1082. WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_STRIDE=34340;
  1083. WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_TYPE=34341;
  1084. WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_NORMALIZED=34922;
  1085. WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_POINTER=34373;
  1086. WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_BUFFER_BINDING=34975;
  1087. WebGLRenderingContext.prototype.IMPLEMENTATION_COLOR_READ_TYPE=35738;
  1088. WebGLRenderingContext.prototype.IMPLEMENTATION_COLOR_READ_FORMAT=35739;
  1089. WebGLRenderingContext.prototype.COMPILE_STATUS=35713;
  1090. WebGLRenderingContext.prototype.LOW_FLOAT=36336;
  1091. WebGLRenderingContext.prototype.MEDIUM_FLOAT=36337;
  1092. WebGLRenderingContext.prototype.HIGH_FLOAT=36338;
  1093. WebGLRenderingContext.prototype.LOW_INT=36339;
  1094. WebGLRenderingContext.prototype.MEDIUM_INT=36340;
  1095. WebGLRenderingContext.prototype.HIGH_INT=36341;
  1096. WebGLRenderingContext.prototype.FRAMEBUFFER=36160;
  1097. WebGLRenderingContext.prototype.RENDERBUFFER=36161;
  1098. WebGLRenderingContext.prototype.RGBA4=32854;
  1099. WebGLRenderingContext.prototype.RGB5_A1=32855;
  1100. WebGLRenderingContext.prototype.RGB565=36194;
  1101. WebGLRenderingContext.prototype.DEPTH_COMPONENT16=33189;
  1102. WebGLRenderingContext.prototype.STENCIL_INDEX8=36168;
  1103. WebGLRenderingContext.prototype.DEPTH_STENCIL=34041;
  1104. WebGLRenderingContext.prototype.RENDERBUFFER_WIDTH=36162;
  1105. WebGLRenderingContext.prototype.RENDERBUFFER_HEIGHT=36163;
  1106. WebGLRenderingContext.prototype.RENDERBUFFER_INTERNAL_FORMAT=36164;
  1107. WebGLRenderingContext.prototype.RENDERBUFFER_RED_SIZE=36176;
  1108. WebGLRenderingContext.prototype.RENDERBUFFER_GREEN_SIZE=36177;
  1109. WebGLRenderingContext.prototype.RENDERBUFFER_BLUE_SIZE=36178;
  1110. WebGLRenderingContext.prototype.RENDERBUFFER_ALPHA_SIZE=36179;
  1111. WebGLRenderingContext.prototype.RENDERBUFFER_DEPTH_SIZE=36180;
  1112. WebGLRenderingContext.prototype.RENDERBUFFER_STENCIL_SIZE=36181;
  1113. WebGLRenderingContext.prototype.FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE=36048;
  1114. WebGLRenderingContext.prototype.FRAMEBUFFER_ATTACHMENT_OBJECT_NAME=36049;
  1115. WebGLRenderingContext.prototype.FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL=36050;
  1116. WebGLRenderingContext.prototype.FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE=36051;
  1117. WebGLRenderingContext.prototype.COLOR_ATTACHMENT0=36064;
  1118. WebGLRenderingContext.prototype.DEPTH_ATTACHMENT=36096;
  1119. WebGLRenderingContext.prototype.STENCIL_ATTACHMENT=36128;
  1120. WebGLRenderingContext.prototype.DEPTH_STENCIL_ATTACHMENT=33306;
  1121. WebGLRenderingContext.prototype.NONE=0;
  1122. WebGLRenderingContext.prototype.FRAMEBUFFER_COMPLETE=36053;
  1123. WebGLRenderingContext.prototype.FRAMEBUFFER_INCOMPLETE_ATTACHMENT=36054;
  1124. WebGLRenderingContext.prototype.FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT=36055;
  1125. WebGLRenderingContext.prototype.FRAMEBUFFER_INCOMPLETE_DIMENSIONS=36057;
  1126. WebGLRenderingContext.prototype.FRAMEBUFFER_UNSUPPORTED=36061;
  1127. WebGLRenderingContext.prototype.FRAMEBUFFER_BINDING=36006;
  1128. WebGLRenderingContext.prototype.RENDERBUFFER_BINDING=36007;
  1129. WebGLRenderingContext.prototype.MAX_RENDERBUFFER_SIZE=34024;
  1130. WebGLRenderingContext.prototype.INVALID_FRAMEBUFFER_OPERATION=1286;
  1131. WebGLRenderingContext.prototype.UNPACK_FLIP_Y_WEBGL=37440;
  1132. WebGLRenderingContext.prototype.UNPACK_PREMULTIPLY_ALPHA_WEBGL=37441;
  1133. WebGLRenderingContext.prototype.CONTEXT_LOST_WEBGL=37442;
  1134. WebGLRenderingContext.prototype.UNPACK_COLORSPACE_CONVERSION_WEBGL=37443;
  1135. WebGLRenderingContext.prototype.BROWSER_DEFAULT_WEBGL=37444;
  1136. WebGLRenderingContext.prototype.activeTexture=function activeTexture(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.activeTexture);
  1137. WebGLRenderingContext.prototype.attachShader=function attachShader(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.attachShader);
  1138. WebGLRenderingContext.prototype.bindAttribLocation=function bindAttribLocation(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bindAttribLocation);
  1139. WebGLRenderingContext.prototype.bindRenderbuffer=function bindRenderbuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bindRenderbuffer);
  1140. WebGLRenderingContext.prototype.blendColor=function blendColor(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.blendColor);
  1141. WebGLRenderingContext.prototype.blendEquation=function blendEquation(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.blendEquation);
  1142. WebGLRenderingContext.prototype.blendEquationSeparate = function blendEquationSeparate(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.blendEquationSeparate);
  1143. WebGLRenderingContext.prototype.blendFunc=function blendFunc(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.blendFunc);
  1144. WebGLRenderingContext.prototype.blendFuncSeparate=function blendFuncSeparate(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.blendFuncSeparate);
  1145. WebGLRenderingContext.prototype.bufferData=function bufferData(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bufferData);
  1146. WebGLRenderingContext.prototype.bufferSubData=function bufferSubData(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bufferSubData);
  1147. WebGLRenderingContext.prototype.checkFramebufferStatus=function checkFramebufferStatus(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.checkFramebufferStatus);
  1148. WebGLRenderingContext.prototype.compileShader=function compileShader(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.compileShader);
  1149. WebGLRenderingContext.prototype.compressedTexImage2D=function compressedTexImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.compressedTexImage2D);
  1150. WebGLRenderingContext.prototype.compressedTexSubImage2D=function compressedTexSubImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.compressedTexSubImage2D);
  1151. WebGLRenderingContext.prototype.copyTexImage2D=function copyTexImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.copyTexImage2D);
  1152. WebGLRenderingContext.prototype.copyTexSubImage2D=function copyTexSubImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.copyTexSubImage2D);
  1153. WebGLRenderingContext.prototype.createBuffer=function createBuffer(){
  1154. debugger;
  1155. var WebGLBuffer = class WebGLBuffer{}
  1156. return catvm.proxy(WebGLBuffer);
  1157. }; catvm.safefunction(WebGLRenderingContext.prototype.createBuffer);
  1158. WebGLRenderingContext.prototype.createFramebuffer=function createFramebuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.createFramebuffer);
  1159. WebGLRenderingContext.prototype.createProgram=function createProgram(){
  1160. debugger;
  1161. if(window.xxxxx == 0){
  1162. window.xxxxx++;
  1163. return class create01{};
  1164. }else{
  1165. debugger;
  1166. return class create02{};
  1167. }
  1168. }; catvm.safefunction(WebGLRenderingContext.prototype.createProgram);
  1169. WebGLRenderingContext.prototype.createRenderbuffer=function createRenderbuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.createRenderbuffer);
  1170. window.ywbywbywb = 0;
  1171. WebGLRenderingContext.prototype.createShader=function createShader(){
  1172. debugger;
  1173. if(window.ywbywbywb === 0){
  1174. window.ywbywbywb++;
  1175. return class Shader01{}
  1176. }else{
  1177. return class Shader02{}
  1178. }
  1179. }; catvm.safefunction(WebGLRenderingContext.prototype.createShader);
  1180. WebGLRenderingContext.prototype.createTexture=function createTexture(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.createTexture);
  1181. WebGLRenderingContext.prototype.cullFace=function cullFace(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.cullFace);
  1182. WebGLRenderingContext.prototype.deleteBuffer=function deleteBuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteBuffer);
  1183. WebGLRenderingContext.prototype.deleteFramebuffer=function deleteFramebuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteFramebuffer);
  1184. WebGLRenderingContext.prototype.deleteProgram=function deleteProgram(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteProgram);
  1185. WebGLRenderingContext.prototype.deleteRenderbuffer=function deleteRenderbuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteRenderbuffer);
  1186. WebGLRenderingContext.prototype.deleteShader=function deleteShader(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteShader);
  1187. WebGLRenderingContext.prototype.deleteTexture=function deleteTexture(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteTexture);
  1188. WebGLRenderingContext.prototype.depthFunc=function depthFunc(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.depthFunc);
  1189. WebGLRenderingContext.prototype.depthMask=function depthMask(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.depthMask);
  1190. WebGLRenderingContext.prototype.depthRange=function depthRange(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.depthRange);
  1191. WebGLRenderingContext.prototype.detachShader=function detachShader(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.detachShader);
  1192. WebGLRenderingContext.prototype.disable=function disable(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.disable);
  1193. WebGLRenderingContext.prototype.enable=function enable(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.enable);
  1194. WebGLRenderingContext.prototype.finish=function finish(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.finish);
  1195. WebGLRenderingContext.prototype.flush=function flush(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.flush);
  1196. WebGLRenderingContext.prototype.framebufferRenderbuffer=function framebufferRenderbuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.framebufferRenderbuffer);
  1197. WebGLRenderingContext.prototype.framebufferTexture2D=function framebufferTexture2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.framebufferTexture2D);
  1198. WebGLRenderingContext.prototype.frontFace=function frontFace(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.frontFace);
  1199. WebGLRenderingContext.prototype.generateMipmap=function generateMipmap(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.generateMipmap);
  1200. WebGLRenderingContext.prototype.getActiveAttrib=function getActiveAttrib(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getActiveAttrib);
  1201. WebGLRenderingContext.prototype.getActiveUniform=function getActiveUniform(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getActiveUniform);
  1202. WebGLRenderingContext.prototype.getAttachedShaders=function getAttachedShaders(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getAttachedShaders);
  1203. WebGLRenderingContext.prototype.getAttribLocation=function getAttribLocation(){debugger;return 0;}; catvm.safefunction(WebGLRenderingContext.prototype.getAttribLocation);
  1204. WebGLRenderingContext.prototype.getBufferParameter=function getBufferParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getBufferParameter);
  1205. WebGLRenderingContext.prototype.getContextAttributes=function getContextAttributes(){
  1206. debugger;
  1207. return {
  1208. alpha: true,
  1209. antialias: true,
  1210. depth: true,
  1211. desynchronized: false,
  1212. failIfMajorPerformanceCaveat: false,
  1213. powerPreference: "default",
  1214. premultipliedAlpha: true,
  1215. preserveDrawingBuffer: false,
  1216. stencil: false,
  1217. xrCompatible: false
  1218. }
  1219. }; catvm.safefunction(WebGLRenderingContext.prototype.getContextAttributes);
  1220. WebGLRenderingContext.prototype.getError=function getError(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getError);
  1221. WebGLRenderingContext.prototype.getExtension=function getExtension(){
  1222. debugger;
  1223. return catvm.proxy(class WebGLDebugRendererInfo{})
  1224. }; catvm.safefunction(WebGLRenderingContext.prototype.getExtension);
  1225. WebGLRenderingContext.prototype.getFramebufferAttachmentParameter=function getFramebufferAttachmentParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getFramebufferAttachmentParameter);
  1226. WebGLRenderingContext.prototype.getParameter=function getParameter(a){
  1227. debugger;
  1228. if(a === 37445){
  1229. debugger;
  1230. return "Google Inc. (Intel)"
  1231. }else if(a === 37446){
  1232. debugger;
  1233. return "ANGLE (Intel, Intel(R) UHD Graphics 630 Direct3D11 vs_5_0 ps_5_0, D3D11-30.0.101.1340)"
  1234. }else if(a === 7937){
  1235. debugger;
  1236. return 'WebKit WebGL'
  1237. }else if(a === 35724){
  1238. debugger;
  1239. return "WebGL GLSL ES 1.0 (OpenGL ES GLSL ES 1.0 Chromium)"
  1240. }else if(a === 7936){
  1241. debugger;
  1242. return "WebKit"
  1243. }else if(a === 7938){
  1244. debugger;
  1245. return "WebGL 1.0 (OpenGL ES 2.0 Chromium)"
  1246. }
  1247. }; catvm.safefunction(WebGLRenderingContext.prototype.getParameter);
  1248. WebGLRenderingContext.prototype.getProgramInfoLog=function getProgramInfoLog(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getProgramInfoLog);
  1249. WebGLRenderingContext.prototype.getProgramParameter=function getProgramParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getProgramParameter);
  1250. WebGLRenderingContext.prototype.getRenderbufferParameter=function getRenderbufferParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getRenderbufferParameter);
  1251. WebGLRenderingContext.prototype.getShaderInfoLog=function getShaderInfoLog(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getShaderInfoLog);
  1252. WebGLRenderingContext.prototype.getShaderParameter=function getShaderParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getShaderParameter);
  1253. WebGLRenderingContext.prototype.getShaderPrecisionFormat=function getShaderPrecisionFormat(X,Y){
  1254. debugger;
  1255. if(X===35633){
  1256. if( Y===36338 || Y===36337 || Y===36336 ){
  1257. var WebGLShaderPrecisionFormat = {
  1258. precision: 23,
  1259. rangeMax: 127,
  1260. rangeMin: 127,
  1261. }
  1262. return catvm.proxy(WebGLShaderPrecisionFormat);
  1263. }else if( Y===36341 || Y===36340 || Y===36339 ){
  1264. var WebGLShaderPrecisionFormat = {
  1265. precision: 0,
  1266. rangeMax: 30,
  1267. rangeMin: 31,
  1268. }
  1269. return catvm.proxy(WebGLShaderPrecisionFormat);
  1270. }
  1271. }else if(X===35632){
  1272. if( Y===36338 || Y===36337 || Y===36336 ){
  1273. var WebGLShaderPrecisionFormat = {
  1274. precision: 23,
  1275. rangeMax: 127,
  1276. rangeMin: 127,
  1277. }
  1278. return catvm.proxy(WebGLShaderPrecisionFormat);
  1279. }else if( Y===36341 || Y===36340 || Y===36339 ){
  1280. var WebGLShaderPrecisionFormat = {
  1281. precision: 0,
  1282. rangeMax: 30,
  1283. rangeMin: 31,
  1284. }
  1285. return catvm.proxy(WebGLShaderPrecisionFormat);
  1286. }
  1287. }
  1288. }; catvm.safefunction(WebGLRenderingContext.prototype.getShaderPrecisionFormat);
  1289. WebGLRenderingContext.prototype.getShaderSource=function getShaderSource(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getShaderSource);
  1290. WebGLRenderingContext.prototype.getSupportedExtensions=function getSupportedExtensions(){
  1291. debugger;
  1292. return [
  1293. "ANGLE_instanced_arrays",
  1294. "EXT_blend_minmax",
  1295. "EXT_color_buffer_half_float",
  1296. "EXT_disjoint_timer_query",
  1297. "EXT_float_blend",
  1298. "EXT_frag_depth",
  1299. "EXT_shader_texture_lod",
  1300. "EXT_texture_compression_bptc",
  1301. "EXT_texture_compression_rgtc",
  1302. "EXT_texture_filter_anisotropic",
  1303. "WEBKIT_EXT_texture_filter_anisotropic",
  1304. "EXT_sRGB",
  1305. "KHR_parallel_shader_compile",
  1306. "OES_element_index_uint",
  1307. "OES_fbo_render_mipmap",
  1308. "OES_standard_derivatives",
  1309. "OES_texture_float",
  1310. "OES_texture_float_linear",
  1311. "OES_texture_half_float",
  1312. "OES_texture_half_float_linear",
  1313. "OES_vertex_array_object",
  1314. "WEBGL_color_buffer_float",
  1315. "WEBGL_compressed_texture_s3tc",
  1316. "WEBKIT_WEBGL_compressed_texture_s3tc",
  1317. "WEBGL_compressed_texture_s3tc_srgb",
  1318. "WEBGL_debug_renderer_info",
  1319. "WEBGL_debug_shaders",
  1320. "WEBGL_depth_texture",
  1321. "WEBKIT_WEBGL_depth_texture",
  1322. "WEBGL_draw_buffers",
  1323. "WEBGL_lose_context",
  1324. "WEBKIT_WEBGL_lose_context",
  1325. "WEBGL_multi_draw"
  1326. ]
  1327. }; catvm.safefunction(WebGLRenderingContext.prototype.getSupportedExtensions);
  1328. WebGLRenderingContext.prototype.getTexParameter=function getTexParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getTexParameter);
  1329. WebGLRenderingContext.prototype.getUniform=function getUniform(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getUniform);
  1330. WebGLRenderingContext.prototype.getUniformLocation=function getUniformLocation(){
  1331. debugger;
  1332. return class getUniformLocation{};
  1333. }; catvm.safefunction(WebGLRenderingContext.prototype.getUniformLocation);
  1334. WebGLRenderingContext.prototype.getVertexAttrib=function getVertexAttrib(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getVertexAttrib);
  1335. WebGLRenderingContext.prototype.getVertexAttribOffset=function getVertexAttribOffset(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getVertexAttribOffset);
  1336. WebGLRenderingContext.prototype.hint=function hint(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.hint);
  1337. WebGLRenderingContext.prototype.isBuffer=function isBuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isBuffer);
  1338. WebGLRenderingContext.prototype.isContextLost=function isContextLost(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isContextLost);
  1339. WebGLRenderingContext.prototype.isEnabled=function isEnabled(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isEnabled);
  1340. WebGLRenderingContext.prototype.isFramebuffer=function isFramebuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isFramebuffer);
  1341. WebGLRenderingContext.prototype.isProgram=function isProgram(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isProgram);
  1342. WebGLRenderingContext.prototype.isRenderbuffer=function isRenderbuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isRenderbuffer);
  1343. WebGLRenderingContext.prototype.isShader=function isShader(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isShader);
  1344. WebGLRenderingContext.prototype.isTexture=function isTexture(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isTexture);
  1345. WebGLRenderingContext.prototype.lineWidth=function lineWidth(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.lineWidth);
  1346. WebGLRenderingContext.prototype.linkProgram=function linkProgram(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.linkProgram);
  1347. WebGLRenderingContext.prototype.pixelStorei=function pixelStorei(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.pixelStorei);
  1348. WebGLRenderingContext.prototype.polygonOffset=function polygonOffset(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.polygonOffset);
  1349. WebGLRenderingContext.prototype.readPixels=function readPixels(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.readPixels);
  1350. WebGLRenderingContext.prototype.renderbufferStorage=function renderbufferStorage(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.renderbufferStorage);
  1351. WebGLRenderingContext.prototype.sampleCoverage=function sampleCoverage(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.sampleCoverage);
  1352. WebGLRenderingContext.prototype.shaderSource=function shaderSource(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.shaderSource);
  1353. WebGLRenderingContext.prototype.stencilFunc=function stencilFunc(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilFunc);
  1354. WebGLRenderingContext.prototype.stencilFuncSeparate=function stencilFuncSeparate(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilFuncSeparate);
  1355. WebGLRenderingContext.prototype.stencilMask=function stencilMask(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilMask);
  1356. WebGLRenderingContext.prototype.stencilMaskSeparate=function stencilMaskSeparate(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilMaskSeparate);
  1357. WebGLRenderingContext.prototype.stencilOp=function stencilOp(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilOp);
  1358. WebGLRenderingContext.prototype.stencilOpSeparate=function stencilOpSeparate(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilOpSeparate);
  1359. WebGLRenderingContext.prototype.texImage2D=function texImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.texImage2D);
  1360. WebGLRenderingContext.prototype.texParameterf=function texParameterf(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.texParameterf);
  1361. WebGLRenderingContext.prototype.texParameteri=function texParameteri(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.texParameteri);
  1362. WebGLRenderingContext.prototype.texSubImage2D=function texSubImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.texSubImage2D);
  1363. WebGLRenderingContext.prototype.uniform1fv=function uniform1fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform1fv);
  1364. WebGLRenderingContext.prototype.uniform1iv=function uniform1iv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform1iv);
  1365. WebGLRenderingContext.prototype.uniform2fv=function uniform2fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform2fv);
  1366. WebGLRenderingContext.prototype.uniform2iv=function uniform2iv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform2iv);
  1367. WebGLRenderingContext.prototype.uniform3fv=function uniform3fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform3fv);
  1368. WebGLRenderingContext.prototype.uniform3iv=function uniform3iv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform3iv);
  1369. WebGLRenderingContext.prototype.uniform4fv=function uniform4fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform4fv);
  1370. WebGLRenderingContext.prototype.uniform4iv=function uniform4iv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform4iv);
  1371. WebGLRenderingContext.prototype.uniformMatrix2fv=function uniformMatrix2fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniformMatrix2fv);
  1372. WebGLRenderingContext.prototype.uniformMatrix3fv=function uniformMatrix3fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniformMatrix3fv);
  1373. WebGLRenderingContext.prototype.uniformMatrix4fv=function uniformMatrix4fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniformMatrix4fv);
  1374. WebGLRenderingContext.prototype.useProgram=function useProgram(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.useProgram);
  1375. WebGLRenderingContext.prototype.validateProgram=function validateProgram(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.validateProgram);
  1376. WebGLRenderingContext.prototype.vertexAttrib1fv=function vertexAttrib1fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib1fv);
  1377. WebGLRenderingContext.prototype.vertexAttrib2fv=function vertexAttrib2fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib2fv);
  1378. WebGLRenderingContext.prototype.vertexAttrib3fv=function vertexAttrib3fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib3fv);
  1379. WebGLRenderingContext.prototype.vertexAttrib4fv=function vertexAttrib4fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib4fv);
  1380. WebGLRenderingContext.prototype.vertexAttribPointer=function vertexAttribPointer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttribPointer);
  1381. WebGLRenderingContext.prototype.bindBuffer=function bindBuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bindBuffer);
  1382. WebGLRenderingContext.prototype.bindFramebuffer=function bindFramebuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bindFramebuffer);
  1383. WebGLRenderingContext.prototype.bindTexture=function bindTexture(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bindTexture);
  1384. WebGLRenderingContext.prototype.clear=function clear(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.clear);
  1385. WebGLRenderingContext.prototype.clearColor=function clearColor(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.clearColor);
  1386. WebGLRenderingContext.prototype.clearDepth=function clearDepth(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.clearDepth);
  1387. WebGLRenderingContext.prototype.clearStencil=function clearStencil(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.clearStencil);
  1388. WebGLRenderingContext.prototype.colorMask=function colorMask(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.colorMask);
  1389. WebGLRenderingContext.prototype.disableVertexAttribArray=function disableVertexAttribArray(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.disableVertexAttribArray);
  1390. WebGLRenderingContext.prototype.drawArrays=function drawArrays(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.drawArrays);
  1391. WebGLRenderingContext.prototype.drawElements=function drawElements(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.drawElements);
  1392. WebGLRenderingContext.prototype.enableVertexAttribArray=function enableVertexAttribArray(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.enableVertexAttribArray);
  1393. WebGLRenderingContext.prototype.scissor=function scissor(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.scissor);
  1394. WebGLRenderingContext.prototype.uniform1f=function uniform1f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform1f);
  1395. WebGLRenderingContext.prototype.uniform1i=function uniform1i(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform1i);
  1396. WebGLRenderingContext.prototype.uniform2f=function uniform2f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform2f);
  1397. WebGLRenderingContext.prototype.uniform2i=function uniform2i(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform2i);
  1398. WebGLRenderingContext.prototype.uniform3f=function uniform3f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform3f);
  1399. WebGLRenderingContext.prototype.uniform3i=function uniform3i(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform3i);
  1400. WebGLRenderingContext.prototype.uniform4f=function uniform4f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform4f);
  1401. WebGLRenderingContext.prototype.uniform4i=function uniform4i(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform4i);
  1402. WebGLRenderingContext.prototype.vertexAttrib1f=function vertexAttrib1f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib1f);
  1403. WebGLRenderingContext.prototype.vertexAttrib2f=function vertexAttrib2f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib2f);
  1404. WebGLRenderingContext.prototype.vertexAttrib3f=function vertexAttrib3f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib3f);
  1405. WebGLRenderingContext.prototype.vertexAttrib4f=function vertexAttrib4f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib4f);
  1406. WebGLRenderingContext.prototype.viewport=function viewport(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.viewport);
  1407. WebGLRenderingContext.prototype.makeXRCompatible=function makeXRCompatible(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.makeXRCompatible);
  1408. catvm.memory.webgl = {};
  1409. catvm.memory.webgl.__proto__ = WebGLRenderingContext.prototype;
  1410. catvm.memory.webgl = catvm.proxy(catvm.memory.webgl);
  1411. var Document = function Document(){
  1412. }; catvm.safefunction(Document);
  1413. Object.defineProperties(Document.prototype , {
  1414. [Symbol.toStringTag]: {
  1415. value: "Document",
  1416. configurable: true
  1417. }
  1418. });
  1419. document = {};
  1420. document.__proto__ = Document.prototype;
  1421. //////
  1422. document.characterSet = 'UTF-8'
  1423. document.charset = 'UTF-8'
  1424. //没问题
  1425. document.getElementById = function getElementById(id){
  1426. debugger;
  1427. return null;
  1428. };catvm.safefunction(document.getElementById);
  1429. //没问题
  1430. document.addEventListener = function addEventListener(type,listener,options,useCapture){
  1431. debugger;
  1432. if(!catvm.memory.document[type]){
  1433. catvm.memory.document[type] = [];
  1434. }
  1435. catvm.memory.document[type].push(listener);
  1436. return undefined;
  1437. };catvm.safefunction(document.addEventListener);
  1438. document.exitFullscreen = function exitFullscreen(){debugger;};catvm.safefunction(document.exitFullscreen);
  1439. window.xxx = 0;
  1440. //没问题
  1441. document.createElement = function createElement(X){
  1442. debugger;
  1443. if(X === "div"){
  1444. var div = class div{};
  1445. div.getElementsByTagName = function(){
  1446. var i = class i{};
  1447. i.length = 0;
  1448. return catvm.proxy(i);
  1449. };catvm.safefunction(div.getElementsByTagName);
  1450. div.style = {
  1451. "accentColor": "",
  1452. "additiveSymbols": "",
  1453. "alignContent": "",
  1454. "alignItems": "",
  1455. "alignSelf": "",
  1456. "alignmentBaseline": "",
  1457. "all": "",
  1458. "animation": "",
  1459. "animationDelay": "",
  1460. "animationDirection": "",
  1461. "animationDuration": "",
  1462. "animationFillMode": "",
  1463. "animationIterationCount": "",
  1464. "animationName": "",
  1465. "animationPlayState": "",
  1466. "animationTimingFunction": "",
  1467. "appRegion": "",
  1468. "appearance": "",
  1469. "ascentOverride": "",
  1470. "aspectRatio": "",
  1471. "backdropFilter": "",
  1472. "backfaceVisibility": "",
  1473. "background": "",
  1474. "backgroundAttachment": "",
  1475. "backgroundBlendMode": "",
  1476. "backgroundClip": "",
  1477. "backgroundColor": "",
  1478. "backgroundImage": "",
  1479. "backgroundOrigin": "",
  1480. "backgroundPosition": "",
  1481. "backgroundPositionX": "",
  1482. "backgroundPositionY": "",
  1483. "backgroundRepeat": "",
  1484. "backgroundRepeatX": "",
  1485. "backgroundRepeatY": "",
  1486. "backgroundSize": "",
  1487. "baselineShift": "",
  1488. "blockSize": "",
  1489. "border": "",
  1490. "borderBlock": "",
  1491. "borderBlockColor": "",
  1492. "borderBlockEnd": "",
  1493. "borderBlockEndColor": "",
  1494. "borderBlockEndStyle": "",
  1495. "borderBlockEndWidth": "",
  1496. "borderBlockStart": "",
  1497. "borderBlockStartColor": "",
  1498. "borderBlockStartStyle": "",
  1499. "borderBlockStartWidth": "",
  1500. "borderBlockStyle": "",
  1501. "borderBlockWidth": "",
  1502. "borderBottom": "",
  1503. "borderBottomColor": "",
  1504. "borderBottomLeftRadius": "",
  1505. "borderBottomRightRadius": "",
  1506. "borderBottomStyle": "",
  1507. "borderBottomWidth": "",
  1508. "borderCollapse": "",
  1509. "borderColor": "",
  1510. "borderEndEndRadius": "",
  1511. "borderEndStartRadius": "",
  1512. "borderImage": "",
  1513. "borderImageOutset": "",
  1514. "borderImageRepeat": "",
  1515. "borderImageSlice": "",
  1516. "borderImageSource": "",
  1517. "borderImageWidth": "",
  1518. "borderInline": "",
  1519. "borderInlineColor": "",
  1520. "borderInlineEnd": "",
  1521. "borderInlineEndColor": "",
  1522. "borderInlineEndStyle": "",
  1523. "borderInlineEndWidth": "",
  1524. "borderInlineStart": "",
  1525. "borderInlineStartColor": "",
  1526. "borderInlineStartStyle": "",
  1527. "borderInlineStartWidth": "",
  1528. "borderInlineStyle": "",
  1529. "borderInlineWidth": "",
  1530. "borderLeft": "",
  1531. "borderLeftColor": "",
  1532. "borderLeftStyle": "",
  1533. "borderLeftWidth": "",
  1534. "borderRadius": "",
  1535. "borderRight": "",
  1536. "borderRightColor": "",
  1537. "borderRightStyle": "",
  1538. "borderRightWidth": "",
  1539. "borderSpacing": "",
  1540. "borderStartEndRadius": "",
  1541. "borderStartStartRadius": "",
  1542. "borderStyle": "",
  1543. "borderTop": "",
  1544. "borderTopColor": "",
  1545. "borderTopLeftRadius": "",
  1546. "borderTopRightRadius": "",
  1547. "borderTopStyle": "",
  1548. "borderTopWidth": "",
  1549. "borderWidth": "",
  1550. "bottom": "",
  1551. "boxShadow": "",
  1552. "boxSizing": "",
  1553. "breakAfter": "",
  1554. "breakBefore": "",
  1555. "breakInside": "",
  1556. "bufferedRendering": "",
  1557. "captionSide": "",
  1558. "caretColor": "",
  1559. "clear": "",
  1560. "clip": "",
  1561. "clipPath": "",
  1562. "clipRule": "",
  1563. "color": "",
  1564. "colorInterpolation": "",
  1565. "colorInterpolationFilters": "",
  1566. "colorRendering": "",
  1567. "colorScheme": "",
  1568. "columnCount": "",
  1569. "columnFill": "",
  1570. "columnGap": "",
  1571. "columnRule": "",
  1572. "columnRuleColor": "",
  1573. "columnRuleStyle": "",
  1574. "columnRuleWidth": "",
  1575. "columnSpan": "",
  1576. "columnWidth": "",
  1577. "columns": "",
  1578. "contain": "",
  1579. "containIntrinsicBlockSize": "",
  1580. "containIntrinsicHeight": "",
  1581. "containIntrinsicInlineSize": "",
  1582. "containIntrinsicSize": "",
  1583. "containIntrinsicWidth": "",
  1584. "content": "",
  1585. "contentVisibility": "",
  1586. "counterIncrement": "",
  1587. "counterReset": "",
  1588. "counterSet": "",
  1589. "cursor": "",
  1590. "cx": "",
  1591. "cy": "",
  1592. "d": "",
  1593. "descentOverride": "",
  1594. "direction": "",
  1595. "display": "",
  1596. "dominantBaseline": "",
  1597. "emptyCells": "",
  1598. "fallback": "",
  1599. "fill": "",
  1600. "fillOpacity": "",
  1601. "fillRule": "",
  1602. "filter": "",
  1603. "flex": "",
  1604. "flexBasis": "",
  1605. "flexDirection": "",
  1606. "flexFlow": "",
  1607. "flexGrow": "",
  1608. "flexShrink": "",
  1609. "flexWrap": "",
  1610. "float": "",
  1611. "floodColor": "",
  1612. "floodOpacity": "",
  1613. "font": "",
  1614. "fontDisplay": "",
  1615. "fontFamily": "",
  1616. "fontFeatureSettings": "",
  1617. "fontKerning": "",
  1618. "fontOpticalSizing": "",
  1619. "fontSize": "",
  1620. "fontStretch": "",
  1621. "fontStyle": "",
  1622. "fontVariant": "",
  1623. "fontVariantCaps": "",
  1624. "fontVariantEastAsian": "",
  1625. "fontVariantLigatures": "",
  1626. "fontVariantNumeric": "",
  1627. "fontVariationSettings": "",
  1628. "fontWeight": "",
  1629. "forcedColorAdjust": "",
  1630. "gap": "",
  1631. "grid": "",
  1632. "gridArea": "",
  1633. "gridAutoColumns": "",
  1634. "gridAutoFlow": "",
  1635. "gridAutoRows": "",
  1636. "gridColumn": "",
  1637. "gridColumnEnd": "",
  1638. "gridColumnGap": "",
  1639. "gridColumnStart": "",
  1640. "gridGap": "",
  1641. "gridRow": "",
  1642. "gridRowEnd": "",
  1643. "gridRowGap": "",
  1644. "gridRowStart": "",
  1645. "gridTemplate": "",
  1646. "gridTemplateAreas": "",
  1647. "gridTemplateColumns": "",
  1648. "gridTemplateRows": "",
  1649. "height": "",
  1650. "hyphens": "",
  1651. "imageOrientation": "",
  1652. "imageRendering": "",
  1653. "inherits": "",
  1654. "initialValue": "",
  1655. "inlineSize": "",
  1656. "inset": "",
  1657. "insetBlock": "",
  1658. "insetBlockEnd": "",
  1659. "insetBlockStart": "",
  1660. "insetInline": "",
  1661. "insetInlineEnd": "",
  1662. "insetInlineStart": "",
  1663. "isolation": "",
  1664. "justifyContent": "",
  1665. "justifyItems": "",
  1666. "justifySelf": "",
  1667. "left": "",
  1668. "letterSpacing": "",
  1669. "lightingColor": "",
  1670. "lineBreak": "",
  1671. "lineGapOverride": "",
  1672. "lineHeight": "",
  1673. "listStyle": "",
  1674. "listStyleImage": "",
  1675. "listStylePosition": "",
  1676. "listStyleType": "",
  1677. "margin": "",
  1678. "marginBlock": "",
  1679. "marginBlockEnd": "",
  1680. "marginBlockStart": "",
  1681. "marginBottom": "",
  1682. "marginInline": "",
  1683. "marginInlineEnd": "",
  1684. "marginInlineStart": "",
  1685. "marginLeft": "",
  1686. "marginRight": "",
  1687. "marginTop": "",
  1688. "marker": "",
  1689. "markerEnd": "",
  1690. "markerMid": "",
  1691. "markerStart": "",
  1692. "mask": "",
  1693. "maskType": "",
  1694. "maxBlockSize": "",
  1695. "maxHeight": "",
  1696. "maxInlineSize": "",
  1697. "maxWidth": "",
  1698. "maxZoom": "",
  1699. "minBlockSize": "",
  1700. "minHeight": "",
  1701. "minInlineSize": "",
  1702. "minWidth": "",
  1703. "minZoom": "",
  1704. "mixBlendMode": "",
  1705. "negative": "",
  1706. "objectFit": "",
  1707. "objectPosition": "",
  1708. "offset": "",
  1709. "offsetDistance": "",
  1710. "offsetPath": "",
  1711. "offsetRotate": "",
  1712. "opacity": "",
  1713. "order": "",
  1714. "orientation": "",
  1715. "orphans": "",
  1716. "outline": "",
  1717. "outlineColor": "",
  1718. "outlineOffset": "",
  1719. "outlineStyle": "",
  1720. "outlineWidth": "",
  1721. "overflow": "",
  1722. "overflowAnchor": "",
  1723. "overflowClipMargin": "",
  1724. "overflowWrap": "",
  1725. "overflowX": "",
  1726. "overflowY": "",
  1727. "overscrollBehavior": "",
  1728. "overscrollBehaviorBlock": "",
  1729. "overscrollBehaviorInline": "",
  1730. "overscrollBehaviorX": "",
  1731. "overscrollBehaviorY": "",
  1732. "pad": "",
  1733. "padding": "",
  1734. "paddingBlock": "",
  1735. "paddingBlockEnd": "",
  1736. "paddingBlockStart": "",
  1737. "paddingBottom": "",
  1738. "paddingInline": "",
  1739. "paddingInlineEnd": "",
  1740. "paddingInlineStart": "",
  1741. "paddingLeft": "",
  1742. "paddingRight": "",
  1743. "paddingTop": "",
  1744. "page": "",
  1745. "pageBreakAfter": "",
  1746. "pageBreakBefore": "",
  1747. "pageBreakInside": "",
  1748. "pageOrientation": "",
  1749. "paintOrder": "",
  1750. "perspective": "",
  1751. "perspectiveOrigin": "",
  1752. "placeContent": "",
  1753. "placeItems": "",
  1754. "placeSelf": "",
  1755. "pointerEvents": "",
  1756. "position": "",
  1757. "prefix": "",
  1758. "quotes": "",
  1759. "r": "",
  1760. "range": "",
  1761. "resize": "",
  1762. "right": "",
  1763. "rowGap": "",
  1764. "rubyPosition": "",
  1765. "rx": "",
  1766. "ry": "",
  1767. "scrollBehavior": "",
  1768. "scrollMargin": "",
  1769. "scrollMarginBlock": "",
  1770. "scrollMarginBlockEnd": "",
  1771. "scrollMarginBlockStart": "",
  1772. "scrollMarginBottom": "",
  1773. "scrollMarginInline": "",
  1774. "scrollMarginInlineEnd": "",
  1775. "scrollMarginInlineStart": "",
  1776. "scrollMarginLeft": "",
  1777. "scrollMarginRight": "",
  1778. "scrollMarginTop": "",
  1779. "scrollPadding": "",
  1780. "scrollPaddingBlock": "",
  1781. "scrollPaddingBlockEnd": "",
  1782. "scrollPaddingBlockStart": "",
  1783. "scrollPaddingBottom": "",
  1784. "scrollPaddingInline": "",
  1785. "scrollPaddingInlineEnd": "",
  1786. "scrollPaddingInlineStart": "",
  1787. "scrollPaddingLeft": "",
  1788. "scrollPaddingRight": "",
  1789. "scrollPaddingTop": "",
  1790. "scrollSnapAlign": "",
  1791. "scrollSnapStop": "",
  1792. "scrollSnapType": "",
  1793. "scrollbarGutter": "",
  1794. "shapeImageThreshold": "",
  1795. "shapeMargin": "",
  1796. "shapeOutside": "",
  1797. "shapeRendering": "",
  1798. "size": "",
  1799. "sizeAdjust": "",
  1800. "speak": "",
  1801. "speakAs": "",
  1802. "src": "",
  1803. "stopColor": "",
  1804. "stopOpacity": "",
  1805. "stroke": "",
  1806. "strokeDasharray": "",
  1807. "strokeDashoffset": "",
  1808. "strokeLinecap": "",
  1809. "strokeLinejoin": "",
  1810. "strokeMiterlimit": "",
  1811. "strokeOpacity": "",
  1812. "strokeWidth": "",
  1813. "suffix": "",
  1814. "symbols": "",
  1815. "syntax": "",
  1816. "system": "",
  1817. "tabSize": "",
  1818. "tableLayout": "",
  1819. "textAlign": "",
  1820. "textAlignLast": "",
  1821. "textAnchor": "",
  1822. "textCombineUpright": "",
  1823. "textDecoration": "",
  1824. "textDecorationColor": "",
  1825. "textDecorationLine": "",
  1826. "textDecorationSkipInk": "",
  1827. "textDecorationStyle": "",
  1828. "textDecorationThickness": "",
  1829. "textIndent": "",
  1830. "textOrientation": "",
  1831. "textOverflow": "",
  1832. "textRendering": "",
  1833. "textShadow": "",
  1834. "textSizeAdjust": "",
  1835. "textTransform": "",
  1836. "textUnderlineOffset": "",
  1837. "textUnderlinePosition": "",
  1838. "top": "",
  1839. "touchAction": "",
  1840. "transform": "",
  1841. "transformBox": "",
  1842. "transformOrigin": "",
  1843. "transformStyle": "",
  1844. "transition": "",
  1845. "transitionDelay": "",
  1846. "transitionDuration": "",
  1847. "transitionProperty": "",
  1848. "transitionTimingFunction": "",
  1849. "unicodeBidi": "",
  1850. "unicodeRange": "",
  1851. "userSelect": "",
  1852. "userZoom": "",
  1853. "vectorEffect": "",
  1854. "verticalAlign": "",
  1855. "visibility": "",
  1856. "webkitAlignContent": "",
  1857. "webkitAlignItems": "",
  1858. "webkitAlignSelf": "",
  1859. "webkitAnimation": "",
  1860. "webkitAnimationDelay": "",
  1861. "webkitAnimationDirection": "",
  1862. "webkitAnimationDuration": "",
  1863. "webkitAnimationFillMode": "",
  1864. "webkitAnimationIterationCount": "",
  1865. "webkitAnimationName": "",
  1866. "webkitAnimationPlayState": "",
  1867. "webkitAnimationTimingFunction": "",
  1868. "webkitAppRegion": "",
  1869. "webkitAppearance": "",
  1870. "webkitBackfaceVisibility": "",
  1871. "webkitBackgroundClip": "",
  1872. "webkitBackgroundOrigin": "",
  1873. "webkitBackgroundSize": "",
  1874. "webkitBorderAfter": "",
  1875. "webkitBorderAfterColor": "",
  1876. "webkitBorderAfterStyle": "",
  1877. "webkitBorderAfterWidth": "",
  1878. "webkitBorderBefore": "",
  1879. "webkitBorderBeforeColor": "",
  1880. "webkitBorderBeforeStyle": "",
  1881. "webkitBorderBeforeWidth": "",
  1882. "webkitBorderBottomLeftRadius": "",
  1883. "webkitBorderBottomRightRadius": "",
  1884. "webkitBorderEnd": "",
  1885. "webkitBorderEndColor": "",
  1886. "webkitBorderEndStyle": "",
  1887. "webkitBorderEndWidth": "",
  1888. "webkitBorderHorizontalSpacing": "",
  1889. "webkitBorderImage": "",
  1890. "webkitBorderRadius": "",
  1891. "webkitBorderStart": "",
  1892. "webkitBorderStartColor": "",
  1893. "webkitBorderStartStyle": "",
  1894. "webkitBorderStartWidth": "",
  1895. "webkitBorderTopLeftRadius": "",
  1896. "webkitBorderTopRightRadius": "",
  1897. "webkitBorderVerticalSpacing": "",
  1898. "webkitBoxAlign": "",
  1899. "webkitBoxDecorationBreak": "",
  1900. "webkitBoxDirection": "",
  1901. "webkitBoxFlex": "",
  1902. "webkitBoxOrdinalGroup": "",
  1903. "webkitBoxOrient": "",
  1904. "webkitBoxPack": "",
  1905. "webkitBoxReflect": "",
  1906. "webkitBoxShadow": "",
  1907. "webkitBoxSizing": "",
  1908. "webkitClipPath": "",
  1909. "webkitColumnBreakAfter": "",
  1910. "webkitColumnBreakBefore": "",
  1911. "webkitColumnBreakInside": "",
  1912. "webkitColumnCount": "",
  1913. "webkitColumnGap": "",
  1914. "webkitColumnRule": "",
  1915. "webkitColumnRuleColor": "",
  1916. "webkitColumnRuleStyle": "",
  1917. "webkitColumnRuleWidth": "",
  1918. "webkitColumnSpan": "",
  1919. "webkitColumnWidth": "",
  1920. "webkitColumns": "",
  1921. "webkitFilter": "",
  1922. "webkitFlex": "",
  1923. "webkitFlexBasis": "",
  1924. "webkitFlexDirection": "",
  1925. "webkitFlexFlow": "",
  1926. "webkitFlexGrow": "",
  1927. "webkitFlexShrink": "",
  1928. "webkitFlexWrap": "",
  1929. "webkitFontFeatureSettings": "",
  1930. "webkitFontSmoothing": "",
  1931. "webkitHighlight": "",
  1932. "webkitHyphenateCharacter": "",
  1933. "webkitJustifyContent": "",
  1934. "webkitLineBreak": "",
  1935. "webkitLineClamp": "",
  1936. "webkitLocale": "",
  1937. "webkitLogicalHeight": "",
  1938. "webkitLogicalWidth": "",
  1939. "webkitMarginAfter": "",
  1940. "webkitMarginBefore": "",
  1941. "webkitMarginEnd": "",
  1942. "webkitMarginStart": "",
  1943. "webkitMask": "",
  1944. "webkitMaskBoxImage": "",
  1945. "webkitMaskBoxImageOutset": "",
  1946. "webkitMaskBoxImageRepeat": "",
  1947. "webkitMaskBoxImageSlice": "",
  1948. "webkitMaskBoxImageSource": "",
  1949. "webkitMaskBoxImageWidth": "",
  1950. "webkitMaskClip": "",
  1951. "webkitMaskComposite": "",
  1952. "webkitMaskImage": "",
  1953. "webkitMaskOrigin": "",
  1954. "webkitMaskPosition": "",
  1955. "webkitMaskPositionX": "",
  1956. "webkitMaskPositionY": "",
  1957. "webkitMaskRepeat": "",
  1958. "webkitMaskRepeatX": "",
  1959. "webkitMaskRepeatY": "",
  1960. "webkitMaskSize": "",
  1961. "webkitMaxLogicalHeight": "",
  1962. "webkitMaxLogicalWidth": "",
  1963. "webkitMinLogicalHeight": "",
  1964. "webkitMinLogicalWidth": "",
  1965. "webkitOpacity": "",
  1966. "webkitOrder": "",
  1967. "webkitPaddingAfter": "",
  1968. "webkitPaddingBefore": "",
  1969. "webkitPaddingEnd": "",
  1970. "webkitPaddingStart": "",
  1971. "webkitPerspective": "",
  1972. "webkitPerspectiveOrigin": "",
  1973. "webkitPerspectiveOriginX": "",
  1974. "webkitPerspectiveOriginY": "",
  1975. "webkitPrintColorAdjust": "",
  1976. "webkitRtlOrdering": "",
  1977. "webkitRubyPosition": "",
  1978. "webkitShapeImageThreshold": "",
  1979. "webkitShapeMargin": "",
  1980. "webkitShapeOutside": "",
  1981. "webkitTapHighlightColor": "",
  1982. "webkitTextCombine": "",
  1983. "webkitTextDecorationsInEffect": "",
  1984. "webkitTextEmphasis": "",
  1985. "webkitTextEmphasisColor": "",
  1986. "webkitTextEmphasisPosition": "",
  1987. "webkitTextEmphasisStyle": "",
  1988. "webkitTextFillColor": "",
  1989. "webkitTextOrientation": "",
  1990. "webkitTextSecurity": "",
  1991. "webkitTextSizeAdjust": "",
  1992. "webkitTextStroke": "",
  1993. "webkitTextStrokeColor": "",
  1994. "webkitTextStrokeWidth": "",
  1995. "webkitTransform": "",
  1996. "webkitTransformOrigin": "",
  1997. "webkitTransformOriginX": "",
  1998. "webkitTransformOriginY": "",
  1999. "webkitTransformOriginZ": "",
  2000. "webkitTransformStyle": "",
  2001. "webkitTransition": "",
  2002. "webkitTransitionDelay": "",
  2003. "webkitTransitionDuration": "",
  2004. "webkitTransitionProperty": "",
  2005. "webkitTransitionTimingFunction": "",
  2006. "webkitUserDrag": "",
  2007. "webkitUserModify": "",
  2008. "webkitUserSelect": "",
  2009. "webkitWritingMode": "",
  2010. "whiteSpace": "",
  2011. "widows": "",
  2012. "width": "",
  2013. "willChange": "",
  2014. "wordBreak": "",
  2015. "wordSpacing": "",
  2016. "wordWrap": "",
  2017. "writingMode": "",
  2018. "x": "",
  2019. "y": "",
  2020. "zIndex": "",
  2021. "zoom": ""
  2022. }
  2023. var div_span = class div_span{};
  2024. div_span.length = 1;
  2025. div_span[0] = catvm.proxy(class span{});
  2026. div_span[0].style = {
  2027. "0": "font-family",
  2028. "1": "font-size",
  2029. "accentColor": "",
  2030. "additiveSymbols": "",
  2031. "alignContent": "",
  2032. "alignItems": "",
  2033. "alignSelf": "",
  2034. "alignmentBaseline": "",
  2035. "all": "",
  2036. "animation": "",
  2037. "animationDelay": "",
  2038. "animationDirection": "",
  2039. "animationDuration": "",
  2040. "animationFillMode": "",
  2041. "animationIterationCount": "",
  2042. "animationName": "",
  2043. "animationPlayState": "",
  2044. "animationTimingFunction": "",
  2045. "appRegion": "",
  2046. "appearance": "",
  2047. "ascentOverride": "",
  2048. "aspectRatio": "",
  2049. "backdropFilter": "",
  2050. "backfaceVisibility": "",
  2051. "background": "",
  2052. "backgroundAttachment": "",
  2053. "backgroundBlendMode": "",
  2054. "backgroundClip": "",
  2055. "backgroundColor": "",
  2056. "backgroundImage": "",
  2057. "backgroundOrigin": "",
  2058. "backgroundPosition": "",
  2059. "backgroundPositionX": "",
  2060. "backgroundPositionY": "",
  2061. "backgroundRepeat": "",
  2062. "backgroundRepeatX": "",
  2063. "backgroundRepeatY": "",
  2064. "backgroundSize": "",
  2065. "baselineShift": "",
  2066. "blockSize": "",
  2067. "border": "",
  2068. "borderBlock": "",
  2069. "borderBlockColor": "",
  2070. "borderBlockEnd": "",
  2071. "borderBlockEndColor": "",
  2072. "borderBlockEndStyle": "",
  2073. "borderBlockEndWidth": "",
  2074. "borderBlockStart": "",
  2075. "borderBlockStartColor": "",
  2076. "borderBlockStartStyle": "",
  2077. "borderBlockStartWidth": "",
  2078. "borderBlockStyle": "",
  2079. "borderBlockWidth": "",
  2080. "borderBottom": "",
  2081. "borderBottomColor": "",
  2082. "borderBottomLeftRadius": "",
  2083. "borderBottomRightRadius": "",
  2084. "borderBottomStyle": "",
  2085. "borderBottomWidth": "",
  2086. "borderCollapse": "",
  2087. "borderColor": "",
  2088. "borderEndEndRadius": "",
  2089. "borderEndStartRadius": "",
  2090. "borderImage": "",
  2091. "borderImageOutset": "",
  2092. "borderImageRepeat": "",
  2093. "borderImageSlice": "",
  2094. "borderImageSource": "",
  2095. "borderImageWidth": "",
  2096. "borderInline": "",
  2097. "borderInlineColor": "",
  2098. "borderInlineEnd": "",
  2099. "borderInlineEndColor": "",
  2100. "borderInlineEndStyle": "",
  2101. "borderInlineEndWidth": "",
  2102. "borderInlineStart": "",
  2103. "borderInlineStartColor": "",
  2104. "borderInlineStartStyle": "",
  2105. "borderInlineStartWidth": "",
  2106. "borderInlineStyle": "",
  2107. "borderInlineWidth": "",
  2108. "borderLeft": "",
  2109. "borderLeftColor": "",
  2110. "borderLeftStyle": "",
  2111. "borderLeftWidth": "",
  2112. "borderRadius": "",
  2113. "borderRight": "",
  2114. "borderRightColor": "",
  2115. "borderRightStyle": "",
  2116. "borderRightWidth": "",
  2117. "borderSpacing": "",
  2118. "borderStartEndRadius": "",
  2119. "borderStartStartRadius": "",
  2120. "borderStyle": "",
  2121. "borderTop": "",
  2122. "borderTopColor": "",
  2123. "borderTopLeftRadius": "",
  2124. "borderTopRightRadius": "",
  2125. "borderTopStyle": "",
  2126. "borderTopWidth": "",
  2127. "borderWidth": "",
  2128. "bottom": "",
  2129. "boxShadow": "",
  2130. "boxSizing": "",
  2131. "breakAfter": "",
  2132. "breakBefore": "",
  2133. "breakInside": "",
  2134. "bufferedRendering": "",
  2135. "captionSide": "",
  2136. "caretColor": "",
  2137. "clear": "",
  2138. "clip": "",
  2139. "clipPath": "",
  2140. "clipRule": "",
  2141. "color": "",
  2142. "colorInterpolation": "",
  2143. "colorInterpolationFilters": "",
  2144. "colorRendering": "",
  2145. "colorScheme": "",
  2146. "columnCount": "",
  2147. "columnFill": "",
  2148. "columnGap": "",
  2149. "columnRule": "",
  2150. "columnRuleColor": "",
  2151. "columnRuleStyle": "",
  2152. "columnRuleWidth": "",
  2153. "columnSpan": "",
  2154. "columnWidth": "",
  2155. "columns": "",
  2156. "contain": "",
  2157. "containIntrinsicBlockSize": "",
  2158. "containIntrinsicHeight": "",
  2159. "containIntrinsicInlineSize": "",
  2160. "containIntrinsicSize": "",
  2161. "containIntrinsicWidth": "",
  2162. "content": "",
  2163. "contentVisibility": "",
  2164. "counterIncrement": "",
  2165. "counterReset": "",
  2166. "counterSet": "",
  2167. "cursor": "",
  2168. "cx": "",
  2169. "cy": "",
  2170. "d": "",
  2171. "descentOverride": "",
  2172. "direction": "",
  2173. "display": "",
  2174. "dominantBaseline": "",
  2175. "emptyCells": "",
  2176. "fallback": "",
  2177. "fill": "",
  2178. "fillOpacity": "",
  2179. "fillRule": "",
  2180. "filter": "",
  2181. "flex": "",
  2182. "flexBasis": "",
  2183. "flexDirection": "",
  2184. "flexFlow": "",
  2185. "flexGrow": "",
  2186. "flexShrink": "",
  2187. "flexWrap": "",
  2188. "float": "",
  2189. "floodColor": "",
  2190. "floodOpacity": "",
  2191. "font": "",
  2192. "fontDisplay": "",
  2193. "fontFamily": "mmllii",
  2194. "fontFeatureSettings": "",
  2195. "fontKerning": "",
  2196. "fontOpticalSizing": "",
  2197. "fontSize": "114px",
  2198. "fontStretch": "",
  2199. "fontStyle": "",
  2200. "fontVariant": "",
  2201. "fontVariantCaps": "",
  2202. "fontVariantEastAsian": "",
  2203. "fontVariantLigatures": "",
  2204. "fontVariantNumeric": "",
  2205. "fontVariationSettings": "",
  2206. "fontWeight": "",
  2207. "forcedColorAdjust": "",
  2208. "gap": "",
  2209. "grid": "",
  2210. "gridArea": "",
  2211. "gridAutoColumns": "",
  2212. "gridAutoFlow": "",
  2213. "gridAutoRows": "",
  2214. "gridColumn": "",
  2215. "gridColumnEnd": "",
  2216. "gridColumnGap": "",
  2217. "gridColumnStart": "",
  2218. "gridGap": "",
  2219. "gridRow": "",
  2220. "gridRowEnd": "",
  2221. "gridRowGap": "",
  2222. "gridRowStart": "",
  2223. "gridTemplate": "",
  2224. "gridTemplateAreas": "",
  2225. "gridTemplateColumns": "",
  2226. "gridTemplateRows": "",
  2227. "height": "",
  2228. "hyphens": "",
  2229. "imageOrientation": "",
  2230. "imageRendering": "",
  2231. "inherits": "",
  2232. "initialValue": "",
  2233. "inlineSize": "",
  2234. "inset": "",
  2235. "insetBlock": "",
  2236. "insetBlockEnd": "",
  2237. "insetBlockStart": "",
  2238. "insetInline": "",
  2239. "insetInlineEnd": "",
  2240. "insetInlineStart": "",
  2241. "isolation": "",
  2242. "justifyContent": "",
  2243. "justifyItems": "",
  2244. "justifySelf": "",
  2245. "left": "",
  2246. "letterSpacing": "",
  2247. "lightingColor": "",
  2248. "lineBreak": "",
  2249. "lineGapOverride": "",
  2250. "lineHeight": "",
  2251. "listStyle": "",
  2252. "listStyleImage": "",
  2253. "listStylePosition": "",
  2254. "listStyleType": "",
  2255. "margin": "",
  2256. "marginBlock": "",
  2257. "marginBlockEnd": "",
  2258. "marginBlockStart": "",
  2259. "marginBottom": "",
  2260. "marginInline": "",
  2261. "marginInlineEnd": "",
  2262. "marginInlineStart": "",
  2263. "marginLeft": "",
  2264. "marginRight": "",
  2265. "marginTop": "",
  2266. "marker": "",
  2267. "markerEnd": "",
  2268. "markerMid": "",
  2269. "markerStart": "",
  2270. "mask": "",
  2271. "maskType": "",
  2272. "maxBlockSize": "",
  2273. "maxHeight": "",
  2274. "maxInlineSize": "",
  2275. "maxWidth": "",
  2276. "maxZoom": "",
  2277. "minBlockSize": "",
  2278. "minHeight": "",
  2279. "minInlineSize": "",
  2280. "minWidth": "",
  2281. "minZoom": "",
  2282. "mixBlendMode": "",
  2283. "negative": "",
  2284. "objectFit": "",
  2285. "objectPosition": "",
  2286. "offset": "",
  2287. "offsetDistance": "",
  2288. "offsetPath": "",
  2289. "offsetRotate": "",
  2290. "opacity": "",
  2291. "order": "",
  2292. "orientation": "",
  2293. "orphans": "",
  2294. "outline": "",
  2295. "outlineColor": "",
  2296. "outlineOffset": "",
  2297. "outlineStyle": "",
  2298. "outlineWidth": "",
  2299. "overflow": "",
  2300. "overflowAnchor": "",
  2301. "overflowClipMargin": "",
  2302. "overflowWrap": "",
  2303. "overflowX": "",
  2304. "overflowY": "",
  2305. "overscrollBehavior": "",
  2306. "overscrollBehaviorBlock": "",
  2307. "overscrollBehaviorInline": "",
  2308. "overscrollBehaviorX": "",
  2309. "overscrollBehaviorY": "",
  2310. "pad": "",
  2311. "padding": "",
  2312. "paddingBlock": "",
  2313. "paddingBlockEnd": "",
  2314. "paddingBlockStart": "",
  2315. "paddingBottom": "",
  2316. "paddingInline": "",
  2317. "paddingInlineEnd": "",
  2318. "paddingInlineStart": "",
  2319. "paddingLeft": "",
  2320. "paddingRight": "",
  2321. "paddingTop": "",
  2322. "page": "",
  2323. "pageBreakAfter": "",
  2324. "pageBreakBefore": "",
  2325. "pageBreakInside": "",
  2326. "pageOrientation": "",
  2327. "paintOrder": "",
  2328. "perspective": "",
  2329. "perspectiveOrigin": "",
  2330. "placeContent": "",
  2331. "placeItems": "",
  2332. "placeSelf": "",
  2333. "pointerEvents": "",
  2334. "position": "",
  2335. "prefix": "",
  2336. "quotes": "",
  2337. "r": "",
  2338. "range": "",
  2339. "resize": "",
  2340. "right": "",
  2341. "rowGap": "",
  2342. "rubyPosition": "",
  2343. "rx": "",
  2344. "ry": "",
  2345. "scrollBehavior": "",
  2346. "scrollMargin": "",
  2347. "scrollMarginBlock": "",
  2348. "scrollMarginBlockEnd": "",
  2349. "scrollMarginBlockStart": "",
  2350. "scrollMarginBottom": "",
  2351. "scrollMarginInline": "",
  2352. "scrollMarginInlineEnd": "",
  2353. "scrollMarginInlineStart": "",
  2354. "scrollMarginLeft": "",
  2355. "scrollMarginRight": "",
  2356. "scrollMarginTop": "",
  2357. "scrollPadding": "",
  2358. "scrollPaddingBlock": "",
  2359. "scrollPaddingBlockEnd": "",
  2360. "scrollPaddingBlockStart": "",
  2361. "scrollPaddingBottom": "",
  2362. "scrollPaddingInline": "",
  2363. "scrollPaddingInlineEnd": "",
  2364. "scrollPaddingInlineStart": "",
  2365. "scrollPaddingLeft": "",
  2366. "scrollPaddingRight": "",
  2367. "scrollPaddingTop": "",
  2368. "scrollSnapAlign": "",
  2369. "scrollSnapStop": "",
  2370. "scrollSnapType": "",
  2371. "scrollbarGutter": "",
  2372. "shapeImageThreshold": "",
  2373. "shapeMargin": "",
  2374. "shapeOutside": "",
  2375. "shapeRendering": "",
  2376. "size": "",
  2377. "sizeAdjust": "",
  2378. "speak": "",
  2379. "speakAs": "",
  2380. "src": "",
  2381. "stopColor": "",
  2382. "stopOpacity": "",
  2383. "stroke": "",
  2384. "strokeDasharray": "",
  2385. "strokeDashoffset": "",
  2386. "strokeLinecap": "",
  2387. "strokeLinejoin": "",
  2388. "strokeMiterlimit": "",
  2389. "strokeOpacity": "",
  2390. "strokeWidth": "",
  2391. "suffix": "",
  2392. "symbols": "",
  2393. "syntax": "",
  2394. "system": "",
  2395. "tabSize": "",
  2396. "tableLayout": "",
  2397. "textAlign": "",
  2398. "textAlignLast": "",
  2399. "textAnchor": "",
  2400. "textCombineUpright": "",
  2401. "textDecoration": "",
  2402. "textDecorationColor": "",
  2403. "textDecorationLine": "",
  2404. "textDecorationSkipInk": "",
  2405. "textDecorationStyle": "",
  2406. "textDecorationThickness": "",
  2407. "textIndent": "",
  2408. "textOrientation": "",
  2409. "textOverflow": "",
  2410. "textRendering": "",
  2411. "textShadow": "",
  2412. "textSizeAdjust": "",
  2413. "textTransform": "",
  2414. "textUnderlineOffset": "",
  2415. "textUnderlinePosition": "",
  2416. "top": "",
  2417. "touchAction": "",
  2418. "transform": "",
  2419. "transformBox": "",
  2420. "transformOrigin": "",
  2421. "transformStyle": "",
  2422. "transition": "",
  2423. "transitionDelay": "",
  2424. "transitionDuration": "",
  2425. "transitionProperty": "",
  2426. "transitionTimingFunction": "",
  2427. "unicodeBidi": "",
  2428. "unicodeRange": "",
  2429. "userSelect": "",
  2430. "userZoom": "",
  2431. "vectorEffect": "",
  2432. "verticalAlign": "",
  2433. "visibility": "",
  2434. "webkitAlignContent": "",
  2435. "webkitAlignItems": "",
  2436. "webkitAlignSelf": "",
  2437. "webkitAnimation": "",
  2438. "webkitAnimationDelay": "",
  2439. "webkitAnimationDirection": "",
  2440. "webkitAnimationDuration": "",
  2441. "webkitAnimationFillMode": "",
  2442. "webkitAnimationIterationCount": "",
  2443. "webkitAnimationName": "",
  2444. "webkitAnimationPlayState": "",
  2445. "webkitAnimationTimingFunction": "",
  2446. "webkitAppRegion": "",
  2447. "webkitAppearance": "",
  2448. "webkitBackfaceVisibility": "",
  2449. "webkitBackgroundClip": "",
  2450. "webkitBackgroundOrigin": "",
  2451. "webkitBackgroundSize": "",
  2452. "webkitBorderAfter": "",
  2453. "webkitBorderAfterColor": "",
  2454. "webkitBorderAfterStyle": "",
  2455. "webkitBorderAfterWidth": "",
  2456. "webkitBorderBefore": "",
  2457. "webkitBorderBeforeColor": "",
  2458. "webkitBorderBeforeStyle": "",
  2459. "webkitBorderBeforeWidth": "",
  2460. "webkitBorderBottomLeftRadius": "",
  2461. "webkitBorderBottomRightRadius": "",
  2462. "webkitBorderEnd": "",
  2463. "webkitBorderEndColor": "",
  2464. "webkitBorderEndStyle": "",
  2465. "webkitBorderEndWidth": "",
  2466. "webkitBorderHorizontalSpacing": "",
  2467. "webkitBorderImage": "",
  2468. "webkitBorderRadius": "",
  2469. "webkitBorderStart": "",
  2470. "webkitBorderStartColor": "",
  2471. "webkitBorderStartStyle": "",
  2472. "webkitBorderStartWidth": "",
  2473. "webkitBorderTopLeftRadius": "",
  2474. "webkitBorderTopRightRadius": "",
  2475. "webkitBorderVerticalSpacing": "",
  2476. "webkitBoxAlign": "",
  2477. "webkitBoxDecorationBreak": "",
  2478. "webkitBoxDirection": "",
  2479. "webkitBoxFlex": "",
  2480. "webkitBoxOrdinalGroup": "",
  2481. "webkitBoxOrient": "",
  2482. "webkitBoxPack": "",
  2483. "webkitBoxReflect": "",
  2484. "webkitBoxShadow": "",
  2485. "webkitBoxSizing": "",
  2486. "webkitClipPath": "",
  2487. "webkitColumnBreakAfter": "",
  2488. "webkitColumnBreakBefore": "",
  2489. "webkitColumnBreakInside": "",
  2490. "webkitColumnCount": "",
  2491. "webkitColumnGap": "",
  2492. "webkitColumnRule": "",
  2493. "webkitColumnRuleColor": "",
  2494. "webkitColumnRuleStyle": "",
  2495. "webkitColumnRuleWidth": "",
  2496. "webkitColumnSpan": "",
  2497. "webkitColumnWidth": "",
  2498. "webkitColumns": "",
  2499. "webkitFilter": "",
  2500. "webkitFlex": "",
  2501. "webkitFlexBasis": "",
  2502. "webkitFlexDirection": "",
  2503. "webkitFlexFlow": "",
  2504. "webkitFlexGrow": "",
  2505. "webkitFlexShrink": "",
  2506. "webkitFlexWrap": "",
  2507. "webkitFontFeatureSettings": "",
  2508. "webkitFontSmoothing": "",
  2509. "webkitHighlight": "",
  2510. "webkitHyphenateCharacter": "",
  2511. "webkitJustifyContent": "",
  2512. "webkitLineBreak": "",
  2513. "webkitLineClamp": "",
  2514. "webkitLocale": "",
  2515. "webkitLogicalHeight": "",
  2516. "webkitLogicalWidth": "",
  2517. "webkitMarginAfter": "",
  2518. "webkitMarginBefore": "",
  2519. "webkitMarginEnd": "",
  2520. "webkitMarginStart": "",
  2521. "webkitMask": "",
  2522. "webkitMaskBoxImage": "",
  2523. "webkitMaskBoxImageOutset": "",
  2524. "webkitMaskBoxImageRepeat": "",
  2525. "webkitMaskBoxImageSlice": "",
  2526. "webkitMaskBoxImageSource": "",
  2527. "webkitMaskBoxImageWidth": "",
  2528. "webkitMaskClip": "",
  2529. "webkitMaskComposite": "",
  2530. "webkitMaskImage": "",
  2531. "webkitMaskOrigin": "",
  2532. "webkitMaskPosition": "",
  2533. "webkitMaskPositionX": "",
  2534. "webkitMaskPositionY": "",
  2535. "webkitMaskRepeat": "",
  2536. "webkitMaskRepeatX": "",
  2537. "webkitMaskRepeatY": "",
  2538. "webkitMaskSize": "",
  2539. "webkitMaxLogicalHeight": "",
  2540. "webkitMaxLogicalWidth": "",
  2541. "webkitMinLogicalHeight": "",
  2542. "webkitMinLogicalWidth": "",
  2543. "webkitOpacity": "",
  2544. "webkitOrder": "",
  2545. "webkitPaddingAfter": "",
  2546. "webkitPaddingBefore": "",
  2547. "webkitPaddingEnd": "",
  2548. "webkitPaddingStart": "",
  2549. "webkitPerspective": "",
  2550. "webkitPerspectiveOrigin": "",
  2551. "webkitPerspectiveOriginX": "",
  2552. "webkitPerspectiveOriginY": "",
  2553. "webkitPrintColorAdjust": "",
  2554. "webkitRtlOrdering": "",
  2555. "webkitRubyPosition": "",
  2556. "webkitShapeImageThreshold": "",
  2557. "webkitShapeMargin": "",
  2558. "webkitShapeOutside": "",
  2559. "webkitTapHighlightColor": "",
  2560. "webkitTextCombine": "",
  2561. "webkitTextDecorationsInEffect": "",
  2562. "webkitTextEmphasis": "",
  2563. "webkitTextEmphasisColor": "",
  2564. "webkitTextEmphasisPosition": "",
  2565. "webkitTextEmphasisStyle": "",
  2566. "webkitTextFillColor": "",
  2567. "webkitTextOrientation": "",
  2568. "webkitTextSecurity": "",
  2569. "webkitTextSizeAdjust": "",
  2570. "webkitTextStroke": "",
  2571. "webkitTextStrokeColor": "",
  2572. "webkitTextStrokeWidth": "",
  2573. "webkitTransform": "",
  2574. "webkitTransformOrigin": "",
  2575. "webkitTransformOriginX": "",
  2576. "webkitTransformOriginY": "",
  2577. "webkitTransformOriginZ": "",
  2578. "webkitTransformStyle": "",
  2579. "webkitTransition": "",
  2580. "webkitTransitionDelay": "",
  2581. "webkitTransitionDuration": "",
  2582. "webkitTransitionProperty": "",
  2583. "webkitTransitionTimingFunction": "",
  2584. "webkitUserDrag": "",
  2585. "webkitUserModify": "",
  2586. "webkitUserSelect": "",
  2587. "webkitWritingMode": "",
  2588. "whiteSpace": "",
  2589. "widows": "",
  2590. "width": "",
  2591. "willChange": "",
  2592. "wordBreak": "",
  2593. "wordSpacing": "",
  2594. "wordWrap": "",
  2595. "writingMode": "",
  2596. "x": "",
  2597. "y": "",
  2598. "zIndex": "",
  2599. "zoom": ""
  2600. }
  2601. div_span[0].offsetHeight = 0;
  2602. div_span[0].offsetWidth = 0;
  2603. div_span[0].__defineGetter__("offsetHeight",function(){
  2604. if(this.style.fontFamily === "SimHei" || this.style.fontFamily === "SimSun" || this.style.fontFamily === "NSimSun" || this.style.fontFamily === "FangSong" || this.style.fontFamily === "KaiTi"){
  2605. return 114
  2606. }
  2607. if(this.style.fontFamily === this.style.fontFamily === "FangSongGB2312"||this.style.fontFamily === "KaiTiGB2312"||this.style.fontFamily === "Microsoft YaHei"||this.style.fontFamily === "Hiragino Sans GB"||this.style.fontFamily === "STHeiti Light"||this.style.fontFamily === "STHeiti"){
  2608. return 150;
  2609. }
  2610. if(this.style.fontFamily === this.style.fontFamily === "STKaiti"||this.style.fontFamily === "STSong"||this.style.fontFamily === "STFangsong"){
  2611. return 128;
  2612. }
  2613. return 0;
  2614. })
  2615. div_span[0].__defineGetter__("offsetWidth",function(){
  2616. if(this.style.fontFamily === "SimHei" || this.style.fontFamily === "SimSun" || this.style.fontFamily === "NSimSun" || this.style.fontFamily === "FangSong" || this.style.fontFamily === "KaiTi"){
  2617. return 912;
  2618. }
  2619. if(this.style.fontFamily === this.style.fontFamily === "FangSongGB2312"||this.style.fontFamily === "KaiTiGB2312"||this.style.fontFamily === "Microsoft YaHei"||this.style.fontFamily === "Hiragino Sans GB"||this.style.fontFamily === "STHeiti Light"||this.style.fontFamily === "STHeiti"||""){
  2620. return 1326;
  2621. }
  2622. if(this.style.fontFamily === this.style.fontFamily === "STKaiti"||this.style.fontFamily === "STSong"||this.style.fontFamily === "STFangsong"){
  2623. return 1098;
  2624. }
  2625. return 0;
  2626. })
  2627. div_span = catvm.proxy(div_span);
  2628. div.children = div_span;
  2629. return catvm.proxy(div);
  2630. }else if(X === "canvas"){
  2631. if(window.xxx === 0){
  2632. window.xxx++ ;
  2633. let canvas_2d = class canvas_2d{};
  2634. canvas_2d.getContext = function getContext(X){
  2635. debugger;
  2636. if(X=='2d'){
  2637. return catvm.memory.canvas.canvasRenderingContext2D;
  2638. }
  2639. };catvm.safefunction(canvas_2d.getContext);
  2640. canvas_2d.toDataURL = function toDataURL(){
  2641. debugger;
  2642. return "data:image/png;base64,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";
  2643. };catvm.safefunction(canvas_2d.toDataURL);
  2644. return catvm.proxy(canvas_2d);
  2645. }else{
  2646. let canvas_webgl = class canvas_webgl{};
  2647. canvas_webgl.getContext = function getContext(X){
  2648. debugger;
  2649. if(X=="webgl" || X=="experimental-webgl"){
  2650. debugger;
  2651. return catvm.memory.webgl;
  2652. }
  2653. };catvm.safefunction(canvas_webgl.getContext);
  2654. canvas_webgl.toDataURL = function toDataURL(){
  2655. debugger;
  2656. return "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAACWCAYAAABkW7XSAAAAAXNSR0IArs4c6QAADTZJREFUeF7tnV2IXVcVx9eeO4NIEQURLcUvVGrBolIVoQ/ePCgUBYUiUlBQFBTUhxaKgsLci4o+qIiICoqIioKIH+iD+tAZFVSMdGISMzqJTezYWBM02GqCTcmRfT8yN3fO/Tofe6+1929ec87Za/3/q7/uve7e5zjhDwVQAAWMKOCMxEmYKIACKCAAiyJAARQwowDAMmMVgaIACgAsagAFUMCMAgDLjFUEigIoALCoARRAATMKACwzVhEoCqAAwKIGUAAFzCgAsMxYRaAogAIAixpAARQwowDAMmMVgaIACgAsagAFUMCMAgDLjFUEigIoALCogcYVuFpId12k65z0Gn84D8xaAYCVtf3tJD8C1paIHHFOttsZhafmqADAytH1lnO+VsiWE+mKyLZzcqTl4Xh8RgoArIzMDpXqBLD8kH2WhqGUT38cgJW+x8EzvFZIMVVYQCu4C2kOCLDS9DVaVr5/1ZHBknD6j35WNFfSGRhgpeOlikyuFtLriGyWFBb9LBUO2Q4CYNn2T130Txaytea3NJRHxtJQnWO2AgJYtvxSH+2ThRRrIvM+FgC01LuoN0CApdcbc5H5/pWTwQxr7tdNnOPjJ+bMVRIwwFJiRAphLAss9mel4HacHABWHN2THPXqaMPoohnWKHmWhklWQbtJAax29c3q6VdH+6+WBJbXBmhlVSH1kwVY9TXkCSJyZXjgebD/agVgCf0symcVBQDWKmpx7UwFqgKLfhZFtYoCAGsVtbh2pgJPjPpXq86w6GdRVKsoALBWUYtr2wIW/SxqaykFANZSMnHRIgX+N7FhdJUe1uRz6WctUpl/B1jUQG0FfP9qbWLDaFVg0c+qbUXyDwBYyVvcfoJXRucHx6CqASyWhu3bZXoEgGXaPh3BNwwsoKXDVpVRACyVttgK6sqof9XQDGuQPP0sWzUQKlqAFUrpRMd5fLRh1MOqSWCxCz7RgqmZFsCqKWDut/+3kN6ayGYLwGJpmHtxleQPsCiKWgpcnjjw3PAMaxwX5w1rOZTWzQArLT+DZ3N54sBzS8CinxXcVb0DAiy93qiPzPevxh+caGlJyCxLfRWEDRBghdU7qdECAot+VlKVUz0ZgFVdu+zv/M/EBydanmEx08q+2oYCACwKobICEYBFP6uyW2ncCLDS8DF4FpcK6W5MnR9sq+k+lRy/GgZ3W8+AAEuPF6YiiQgs+lmmKqXZYAFWs3pm87THSg48B5ph0c/KpsoOJwqwMja/TuoKgEU/q46BRu8FWEaNix32YyUHngPPsFgaxi6CCOMDrAiiWx/S96/8htHprQwRgAW0rBfTivEDrBUF43KRS4X0OiUHniMBy1tyxDnZxpv0FQBY6XvceIa+fyUyeC3yDa+UiQgs+lmNu6zzgQBLpy+qo/r3jAPPMYHF+7NUl0xjwQGsxqTM40G+f+U/ODH+/uAkpCIDi35WBiUIsDIwuckUlQOLflaTZit8FsBSaIrmkC7NOfCsYIY1kI73wWuuoHqxAax6+mV396WpD6YqWxKO/eC8YaKVCbASNbaNtC5OfHBCaQ9rMm2g1UYRRH4mwIpsgKXhjQGLfpal4loyVoC1pFBcJvKviQ9OGJhh0c9KsGgBVoKmtpWSRWCxP6utaojzXIAVR3eTo/5zwYFnLb8SlohLP8tkxR0OGmAlYmTbafj+ld8wOu84jmJg0c9qu0ACPR9gBRLa+jAXJ17YN2srg3JgbTsnR6z7kHv8ACv3Clgy/wSA5TNlabik31ovA1hanVEW18WJ/pXRGdZYUaClrLZWCQdgraJWptf+fWLDqOEe1qR7vD/LaC0DLKPGhQz7H4X01iZe2Gd8huWlo58VsoAaHAtgNShmqo+6MLFhNJEZFv0so8UKsIwaFzLsC1Mv7EtghkU/K2QBNTgWwGpQzBQf5ftX/oMTk0dxEgKWt4x+lqHCBViGzIoRagbAop8Vo7AqjgmwKgqXy22PlrywL7EZFv0sQ8UMsAyZFSPUTIAFtGIUV4UxAVYF0XK5Zb+Q7sbo/GDCPazrdvJqZf2VDbD0exQtwv2r0t1YGx54zgFY4mTbrXHeMFrBLTEwwFpCpFwvOf/EAFaDD6ZmASxvdCF99xTp5eq59rwBlnaHIsZ3/nKGwBpD6yagFbH0Zg4NsDS6oiSm849LUbazPcFfCQ8p7p42mFTyp0wBTFFmiJZw9i9Jt+PKX9iXA7AG5w2fQT9LSz2O4wBY2hxREs/+Rel1nGzmOsMa2OD7Wc9iaaikJAdhACxNbiiK5fwF2ZLha5Elq6b7tAfXpO9uBlpaShNgaXFCWRyPPCLFrE95ZbIkvO6Iu4X/sWspT4ClxQlFceyfle5a58YDz9lsayj3Yds9j36WhhIFWBpcUBbDAFhTb2jIHFgifmn4IpaGsUsVYMV2QOH4+6eH+69YEk6Z46F1K9CKWbIAK6b6Ssfe/9Nw/xXAOmyQeyn9rJhlC7Biqq9w7LMnpLs+2n8FsEoN2nYvo58Vq3QBVizllY57dke66yUHnrPvYU365ZeGr2RpGKOEAVYM1RWP+fCDg18HDx14BlhTpvlNpXcArdClDLBCK658vId/B7CWtci9hn7Wslo1dR3AakrJRJ7z19+UH3hmhlVisF8a3sksK2TpA6yQaisf6+yvhvuvFn17MLed7nNt89B6HdAKVdoAK5TSBsY5t32wHGRbwwqG+X7WEaC1gmKVLwVYlaVL78ZzD8iWm3HgmSXhHL/9LOv1ACvEfxEAK4TKRsY497PZB54B1gwTPazuAlahShxghVJa+TinfyzdjTkHngFWybaGNwKq0GUNsEIrrnS8v/xo+MK+WbvbAdbION+vejOgilXGACuW8srGfegH8w88Zw8sv/S7G1DFLluAFdsBJeM/9L35B56zBZafUb0VUCkpU3bqajEiZhynv3PwwQmWhBNLv3sAVcy6LBubGZY2RyLEc/qb0u0sOPCczQzLL/3eAagilOFSQwKspWRK+6Iz35CttdH+q2xnWNek71127wJWmqsdYGl2J1BsZ75W/oXnbN6H5ftU7wZUgcqt1jAAq5Z89m/e/Yp0N5Y4P5jkktAv/94LqCxVMcCy5FYLse5+KUNgeVC9H1C1UE6tPxJgtS6x7gH2vnCwHFzmLQyL3uQwnompLCy/9PsgoNJdkfOjU1lXlgW1Fvve5zIAlgfVvYDKWm2yrSEFxxrOYe8zBy/sS26G5Zd+9wOqhksm6uOYYUWVP+7gu5+Ubqdz8MK+ZIDlZ1QfAlRxq6ud0QFWO7qaeOruJ4YHnsd9KfPAKkZ7qT4CrEwUYIUgAVYF0VK5Ze9jsiWjL+Qs20xf9rrgheWXf5uAKpXanJVH8LpKXVBL+f1588YX9pmcYTnpux6gslR3dWIFWHXUM3zv7keHH5xYdUOoohlW330cUBkuwUqhA6xKstm/6Y8flt761Av7TMywfEP9U4DKfgVWywBgVdPN/F279x9+YZ9qYHlQfRpQmS+8mgkArJoCWr19977DL+xTCqy++yygslpnTccNsJpW1MDzTnxAuusl779SBqy++zygMlBOQUMEWEHl1jHYAFjFcMOouqb7eC/VF4GVjmrRFQXA0uVHkGhOve/gC8/KgNV3XwZUQYrA6CAAy6hxdcI+9R51wOq7rwKqOp7mci/AysXpUZ4n3indNXdwfjDqDMv/8vd1QJVZCdZKF2DVks/ezSfergBYHlTfAlT2qid+xAArvgdBIzh5j2w5N9jlLhGa7n33bUAV1PDEBgNYiRm6KJ2TbzvoXwUDlp9RfRdQLfKGf1+sAMBarFFSV5y8+8YDz632sDyovg+okiqgyMkArMgGhBx+5y3DD07U+XzXMoefnUh/MHv7IbAK6W8OYwGsHFwe5fiHN0mvI7LZJrBEpL/xE0CVUVkFTRVgBZU77mDH7zp84LmpJaEU0n/qTwFVXIfTHx1gpe/x9QyPv+Hwgee6wPLLv5t+DqgyKqOoqQKsqPKHG3ynK91OyYHnqsDyS7+nPwCowjnISF4BgJVJHQyAVXLgeVVg+aXfM38JqDIpG3VpAix1lrQT0LE7Dz6YWqXpXhTSf/avAVU77vDUZRUAWMsqZfy6Y6+tBizfo7r5t4DKuP3JhA+wkrFydiI7r5Kum3HgedaS0C/9/F6qW34PrDIoETMpAiwzVlUPdOcVqwHLw+r5xwBVdcW5sy0FAFZbyip67s7tsw88T/Wz+i88DqgUWUcoUwoArAxKYue2+cDyfaqXnAJUGZSC+RQBlnkLFyewc2v5gWe/9LttD1AtVpArtCgAsLQ40VIcR18s3fWpA8+FSP/2M4CqJcl5bIsKAKwWxdXw6KMvkN766MCzX/q9/Byg0uALMVRTAGBV083MXQ8+V7aKQn5xx98AlRnTCHSmAgAr8eI4+hzpvfpRYJW4zdmkB7CysZpEUcC+AgDLvodkgALZKACwsrGaRFHAvgIAy76HZIAC2SgAsLKxmkRRwL4CAMu+h2SAAtkoALCysZpEUcC+Av8HwhAmtT6LhaYAAAAASUVORK5CYII="
  2657. }
  2658. return catvm.proxy(canvas_webgl);
  2659. }
  2660. }else if(X=="video"){
  2661. let video = class video{};
  2662. video.canPlayType = function(X){
  2663. if(X === 'video/ogg; codecs="theora"'){
  2664. return 'probably';
  2665. }else if(X === 'video/mp4; codecs="avc1.42E01E"'){
  2666. return 'probably';
  2667. }else if(X === 'video/webm; codecs="vp8, vorbis"'){
  2668. return 'probably';
  2669. }else if(X === 'video/mp4; codecs="mp4v.20.8, mp4a.40.2"'){
  2670. return "";
  2671. }else if(X === 'video/mp4; codecs="mp4v.20.240, mp4a.40.2"'){
  2672. return "";
  2673. }else if(X === 'video/x-matroska; codecs="theora, vorbis"'){
  2674. return "";
  2675. }
  2676. };catvm.safefunction(video.canPlayType);
  2677. return catvm.proxy(video);
  2678. }else if(X=="audio"){
  2679. let audio = class audio{};
  2680. audio.canPlayType = function(X){
  2681. if(X === 'audio/ogg; codecs=\"vorbis\"'){
  2682. return 'probably';
  2683. }else if(X === 'audio/wav; codecs="1"'){
  2684. return 'probably';
  2685. }else if(X === 'audio/mpeg;'){
  2686. return 'probably';
  2687. }else if(X === 'audio/x-m4a;audio/aac;'){
  2688. return 'maybe';
  2689. }
  2690. };catvm.safefunction(audio.canPlayType);
  2691. return catvm.proxy(audio);
  2692. }else if(X==="a"){
  2693. var a = new(class a{});
  2694. a.protocol = "http:";
  2695. a.pathname = "/shixin/checkyzm";
  2696. a.hostname = "zxgk.court.gov.cn";
  2697. a.search = "?captchaId="+window.captchaId+"&pCode="+window.Code+"";
  2698. a.hash = "";
  2699. a.port = "";
  2700. return catvm.proxy(a);
  2701. }else if(X === "form"){
  2702. var form = class form{};
  2703. form.__proto__ = HTMLFormElement.prototype;
  2704. return catvm.proxy(form);
  2705. }
  2706. };catvm.safefunction(document.createElement);
  2707. window.zhiyuan = 1;
  2708. //没问题
  2709. document.getElementsByTagName = function getElementsByTagName(name){ //返回HTMLCollection
  2710. if(name === "base"){
  2711. var result = {
  2712. length: 0
  2713. }
  2714. return catvm.proxy(result);
  2715. }else if(name === "script" && window.zhiyuan === 1){
  2716. window.zhiyuan++;
  2717. var script01 = class script01{};
  2718. script01.getAttribute = function getAttribute(X){
  2719. if(X === "r"){
  2720. return "m"
  2721. }
  2722. debugger;
  2723. return null;
  2724. };catvm.safefunction(script01.getAttribute);
  2725. script01.parentElement = class script01_parentElement{};
  2726. script01.parentElement.removeChild = function removeChild(){
  2727. debugger;
  2728. };catvm.safefunction(script01.parentElement.removeChild);
  2729. script01.parentElement = catvm.proxy(script01.parentElement);
  2730. script01 = catvm.proxy(script01);
  2731. var script02 = class script02{};
  2732. script02.getAttribute = function getAttribute(X){
  2733. if(X === "r"){
  2734. return "m"
  2735. }
  2736. debugger;
  2737. return null;
  2738. };catvm.safefunction(script02.getAttribute);
  2739. script02.parentElement = class script02_parentElement{};
  2740. script02.parentElement.removeChild = function removeChild(){
  2741. debugger;
  2742. };catvm.safefunction(script02.parentElement.removeChild);
  2743. script02.parentElement = catvm.proxy(script02.parentElement);
  2744. script02 = catvm.proxy(script02);
  2745. return catvm.proxy({
  2746. 0: script01,
  2747. 1: script02,
  2748. length: 2,
  2749. })
  2750. }else if(name === "meta"){
  2751. var meta01 = class meta01{};
  2752. meta01.getAttribute = function(X){
  2753. return null;
  2754. };catvm.safefunction(meta01.getAttribute);
  2755. meta01 = catvm.proxy(meta01);
  2756. var meta02 = class meta02{};
  2757. meta02.getAttribute = function(X){
  2758. return null;
  2759. };catvm.safefunction(meta02.getAttribute);
  2760. meta02 = catvm.proxy(meta02);
  2761. var meta03 = class meta03{};
  2762. meta03.getAttribute = function(X){
  2763. return null;
  2764. };catvm.safefunction(meta03.getAttribute);
  2765. meta03 = catvm.proxy(meta03);
  2766. var meta04 = class meta04{};
  2767. meta04.getAttribute = function(X){
  2768. return null;
  2769. };catvm.safefunction(meta04.getAttribute);
  2770. meta04 = catvm.proxy(meta04);
  2771. var meta05 = class meta05{};
  2772. meta05.getAttribute = function(X){
  2773. return null;
  2774. };catvm.safefunction(meta05.getAttribute);
  2775. meta05 = catvm.proxy(meta05);
  2776. var meta06 = class meta06{};
  2777. meta06.getAttribute = function(X){
  2778. return null;
  2779. };catvm.safefunction(meta06.getAttribute);
  2780. meta06 = catvm.proxy(meta06);
  2781. var meta07 = class meta07{};
  2782. meta07.content = "5gupwXmXa2QhRWdyTUEJCHOn8albdGtGwdaCTdRTlhZ.vQidWm8lUa9HZ5VwAJV3";
  2783. meta07.getAttribute = function(X){
  2784. debugger;
  2785. if(X === "r"){
  2786. return "m"
  2787. }
  2788. return null;
  2789. };catvm.safefunction(meta07.getAttribute);
  2790. meta07.parentNode = class meta07_parentNode{};
  2791. meta07.parentNode.removeChild = function removeChild(){
  2792. debugger;
  2793. };catvm.safefunction(meta07.parentNode.removeChild);
  2794. meta07.parentNode = catvm.proxy(meta07.parentNode);
  2795. meta07 = catvm.proxy(meta07);
  2796. return catvm.proxy({
  2797. 0: meta01,
  2798. 1: meta02,
  2799. 2: meta03,
  2800. 3: meta04,
  2801. 4: meta05,
  2802. 5: meta06,
  2803. 6: meta07,
  2804. length: 7
  2805. })
  2806. }else if(name === "script" && window.zhiyuan === 2){
  2807. var script0 = catvm.proxy(class script0{});
  2808. script0.getAttribute = function(X){
  2809. if(X=="r"){
  2810. return null;
  2811. }
  2812. debugger;
  2813. };catvm.safefunction(script0.getAttribute);
  2814. var script1 = catvm.proxy(class script1{});
  2815. script1.getAttribute = function(X){
  2816. if(X=="r"){
  2817. return null;
  2818. }
  2819. debugger;
  2820. };catvm.safefunction(script1.getAttribute);
  2821. var script2 = catvm.proxy(class script2{});
  2822. script2.getAttribute = function(X){
  2823. if(X=="r"){
  2824. return null;
  2825. }
  2826. debugger;
  2827. };catvm.safefunction(script2.getAttribute);
  2828. var script3 = catvm.proxy(class script3{});
  2829. script3.getAttribute = function(X){
  2830. if(X=="r"){
  2831. return null;
  2832. }
  2833. debugger;
  2834. };catvm.safefunction(script3.getAttribute);
  2835. var script4 = catvm.proxy(class script4{});
  2836. script4.getAttribute = function(X){
  2837. if(X=="r"){
  2838. return null;
  2839. }
  2840. debugger;
  2841. };catvm.safefunction(script4.getAttribute);
  2842. var script5 = catvm.proxy(class script5{});
  2843. script5.getAttribute = function(X){
  2844. if(X=="r"){
  2845. return null;
  2846. }
  2847. debugger;
  2848. };catvm.safefunction(script5.getAttribute);
  2849. var script6 = catvm.proxy(class script6{});
  2850. script6.getAttribute = function(X){
  2851. if(X=="r"){
  2852. return null;
  2853. }
  2854. debugger;
  2855. };catvm.safefunction(script6.getAttribute);
  2856. var script7 = catvm.proxy(class script7{});
  2857. script7.getAttribute = function(X){
  2858. if(X=="r"){
  2859. return null;
  2860. }
  2861. debugger;
  2862. };catvm.safefunction(script7.getAttribute);
  2863. var script8 = catvm.proxy(class script8{});
  2864. script8.getAttribute = function(X){
  2865. if(X=="r"){
  2866. return null;
  2867. }
  2868. debugger;
  2869. };catvm.safefunction(script8.getAttribute);
  2870. var script9 = catvm.proxy(class script9{});
  2871. script9.getAttribute = function(X){
  2872. if(X=="r"){
  2873. return null;
  2874. }
  2875. debugger;
  2876. };catvm.safefunction(script9.getAttribute);
  2877. var script10 = catvm.proxy(class script10{});
  2878. script10.getAttribute = function(X){
  2879. if(X=="r"){
  2880. return null;
  2881. }
  2882. debugger;
  2883. };catvm.safefunction(script10.getAttribute);
  2884. var script11 = catvm.proxy(class script11{});
  2885. script11.getAttribute = function(X){
  2886. if(X=="r"){
  2887. return null;
  2888. }
  2889. debugger;
  2890. };catvm.safefunction(script11.getAttribute);
  2891. var script12 = catvm.proxy(class script12{});
  2892. script12.getAttribute = function(X){
  2893. if(X=="r"){
  2894. return null;
  2895. }
  2896. debugger;
  2897. };catvm.safefunction(script12.getAttribute);
  2898. var script13 = catvm.proxy(class script13{});
  2899. script13.getAttribute = function(X){
  2900. if(X=="r"){
  2901. return null;
  2902. }
  2903. debugger;
  2904. };catvm.safefunction(script13.getAttribute);
  2905. var script14 = catvm.proxy(class script14{});
  2906. script14.getAttribute = function(X){
  2907. debugger;
  2908. if(X=="r"){
  2909. return null;
  2910. }
  2911. debugger;
  2912. };catvm.safefunction(script14.getAttribute);
  2913. var script = {
  2914. 0 : script0,
  2915. 1 : script1,
  2916. 2 : script2,
  2917. 3 : script3,
  2918. 4 : script4,
  2919. 5 : script5,
  2920. 6 : script6,
  2921. 7 : script7,
  2922. 8 : script8,
  2923. 9 : script9,
  2924. 10 : script10,
  2925. 11 : script11,
  2926. 12 : script12,
  2927. 13 : script13,
  2928. 14 : script14,
  2929. length: 15
  2930. }
  2931. return catvm.proxy(script);
  2932. }
  2933. };catvm.safefunction(document.getElementsByTagName);
  2934. var html = class html{};
  2935. html.onresize = null;
  2936. html.style = {
  2937. "accentColor": "",
  2938. "additiveSymbols": "",
  2939. "alignContent": "",
  2940. "alignItems": "",
  2941. "alignSelf": "",
  2942. "alignmentBaseline": "",
  2943. "all": "",
  2944. "animation": "",
  2945. "animationDelay": "",
  2946. "animationDirection": "",
  2947. "animationDuration": "",
  2948. "animationFillMode": "",
  2949. "animationIterationCount": "",
  2950. "animationName": "",
  2951. "animationPlayState": "",
  2952. "animationTimingFunction": "",
  2953. "appRegion": "",
  2954. "appearance": "",
  2955. "ascentOverride": "",
  2956. "aspectRatio": "",
  2957. "backdropFilter": "",
  2958. "backfaceVisibility": "",
  2959. "background": "",
  2960. "backgroundAttachment": "",
  2961. "backgroundBlendMode": "",
  2962. "backgroundClip": "",
  2963. "backgroundColor": "",
  2964. "backgroundImage": "",
  2965. "backgroundOrigin": "",
  2966. "backgroundPosition": "",
  2967. "backgroundPositionX": "",
  2968. "backgroundPositionY": "",
  2969. "backgroundRepeat": "",
  2970. "backgroundRepeatX": "",
  2971. "backgroundRepeatY": "",
  2972. "backgroundSize": "",
  2973. "baselineShift": "",
  2974. "blockSize": "",
  2975. "border": "",
  2976. "borderBlock": "",
  2977. "borderBlockColor": "",
  2978. "borderBlockEnd": "",
  2979. "borderBlockEndColor": "",
  2980. "borderBlockEndStyle": "",
  2981. "borderBlockEndWidth": "",
  2982. "borderBlockStart": "",
  2983. "borderBlockStartColor": "",
  2984. "borderBlockStartStyle": "",
  2985. "borderBlockStartWidth": "",
  2986. "borderBlockStyle": "",
  2987. "borderBlockWidth": "",
  2988. "borderBottom": "",
  2989. "borderBottomColor": "",
  2990. "borderBottomLeftRadius": "",
  2991. "borderBottomRightRadius": "",
  2992. "borderBottomStyle": "",
  2993. "borderBottomWidth": "",
  2994. "borderCollapse": "",
  2995. "borderColor": "",
  2996. "borderEndEndRadius": "",
  2997. "borderEndStartRadius": "",
  2998. "borderImage": "",
  2999. "borderImageOutset": "",
  3000. "borderImageRepeat": "",
  3001. "borderImageSlice": "",
  3002. "borderImageSource": "",
  3003. "borderImageWidth": "",
  3004. "borderInline": "",
  3005. "borderInlineColor": "",
  3006. "borderInlineEnd": "",
  3007. "borderInlineEndColor": "",
  3008. "borderInlineEndStyle": "",
  3009. "borderInlineEndWidth": "",
  3010. "borderInlineStart": "",
  3011. "borderInlineStartColor": "",
  3012. "borderInlineStartStyle": "",
  3013. "borderInlineStartWidth": "",
  3014. "borderInlineStyle": "",
  3015. "borderInlineWidth": "",
  3016. "borderLeft": "",
  3017. "borderLeftColor": "",
  3018. "borderLeftStyle": "",
  3019. "borderLeftWidth": "",
  3020. "borderRadius": "",
  3021. "borderRight": "",
  3022. "borderRightColor": "",
  3023. "borderRightStyle": "",
  3024. "borderRightWidth": "",
  3025. "borderSpacing": "",
  3026. "borderStartEndRadius": "",
  3027. "borderStartStartRadius": "",
  3028. "borderStyle": "",
  3029. "borderTop": "",
  3030. "borderTopColor": "",
  3031. "borderTopLeftRadius": "",
  3032. "borderTopRightRadius": "",
  3033. "borderTopStyle": "",
  3034. "borderTopWidth": "",
  3035. "borderWidth": "",
  3036. "bottom": "",
  3037. "boxShadow": "",
  3038. "boxSizing": "",
  3039. "breakAfter": "",
  3040. "breakBefore": "",
  3041. "breakInside": "",
  3042. "bufferedRendering": "",
  3043. "captionSide": "",
  3044. "caretColor": "",
  3045. "clear": "",
  3046. "clip": "",
  3047. "clipPath": "",
  3048. "clipRule": "",
  3049. "color": "",
  3050. "colorInterpolation": "",
  3051. "colorInterpolationFilters": "",
  3052. "colorRendering": "",
  3053. "colorScheme": "",
  3054. "columnCount": "",
  3055. "columnFill": "",
  3056. "columnGap": "",
  3057. "columnRule": "",
  3058. "columnRuleColor": "",
  3059. "columnRuleStyle": "",
  3060. "columnRuleWidth": "",
  3061. "columnSpan": "",
  3062. "columnWidth": "",
  3063. "columns": "",
  3064. "contain": "",
  3065. "containIntrinsicBlockSize": "",
  3066. "containIntrinsicHeight": "",
  3067. "containIntrinsicInlineSize": "",
  3068. "containIntrinsicSize": "",
  3069. "containIntrinsicWidth": "",
  3070. "content": "",
  3071. "contentVisibility": "",
  3072. "counterIncrement": "",
  3073. "counterReset": "",
  3074. "counterSet": "",
  3075. "cursor": "",
  3076. "cx": "",
  3077. "cy": "",
  3078. "d": "",
  3079. "descentOverride": "",
  3080. "direction": "",
  3081. "display": "",
  3082. "dominantBaseline": "",
  3083. "emptyCells": "",
  3084. "fallback": "",
  3085. "fill": "",
  3086. "fillOpacity": "",
  3087. "fillRule": "",
  3088. "filter": "",
  3089. "flex": "",
  3090. "flexBasis": "",
  3091. "flexDirection": "",
  3092. "flexFlow": "",
  3093. "flexGrow": "",
  3094. "flexShrink": "",
  3095. "flexWrap": "",
  3096. "float": "",
  3097. "floodColor": "",
  3098. "floodOpacity": "",
  3099. "font": "",
  3100. "fontDisplay": "",
  3101. "fontFamily": "",
  3102. "fontFeatureSettings": "",
  3103. "fontKerning": "",
  3104. "fontOpticalSizing": "",
  3105. "fontSize": "",
  3106. "fontStretch": "",
  3107. "fontStyle": "",
  3108. "fontVariant": "",
  3109. "fontVariantCaps": "",
  3110. "fontVariantEastAsian": "",
  3111. "fontVariantLigatures": "",
  3112. "fontVariantNumeric": "",
  3113. "fontVariationSettings": "",
  3114. "fontWeight": "",
  3115. "forcedColorAdjust": "",
  3116. "gap": "",
  3117. "grid": "",
  3118. "gridArea": "",
  3119. "gridAutoColumns": "",
  3120. "gridAutoFlow": "",
  3121. "gridAutoRows": "",
  3122. "gridColumn": "",
  3123. "gridColumnEnd": "",
  3124. "gridColumnGap": "",
  3125. "gridColumnStart": "",
  3126. "gridGap": "",
  3127. "gridRow": "",
  3128. "gridRowEnd": "",
  3129. "gridRowGap": "",
  3130. "gridRowStart": "",
  3131. "gridTemplate": "",
  3132. "gridTemplateAreas": "",
  3133. "gridTemplateColumns": "",
  3134. "gridTemplateRows": "",
  3135. "height": "",
  3136. "hyphens": "",
  3137. "imageOrientation": "",
  3138. "imageRendering": "",
  3139. "inherits": "",
  3140. "initialValue": "",
  3141. "inlineSize": "",
  3142. "inset": "",
  3143. "insetBlock": "",
  3144. "insetBlockEnd": "",
  3145. "insetBlockStart": "",
  3146. "insetInline": "",
  3147. "insetInlineEnd": "",
  3148. "insetInlineStart": "",
  3149. "isolation": "",
  3150. "justifyContent": "",
  3151. "justifyItems": "",
  3152. "justifySelf": "",
  3153. "left": "",
  3154. "letterSpacing": "",
  3155. "lightingColor": "",
  3156. "lineBreak": "",
  3157. "lineGapOverride": "",
  3158. "lineHeight": "",
  3159. "listStyle": "",
  3160. "listStyleImage": "",
  3161. "listStylePosition": "",
  3162. "listStyleType": "",
  3163. "margin": "",
  3164. "marginBlock": "",
  3165. "marginBlockEnd": "",
  3166. "marginBlockStart": "",
  3167. "marginBottom": "",
  3168. "marginInline": "",
  3169. "marginInlineEnd": "",
  3170. "marginInlineStart": "",
  3171. "marginLeft": "",
  3172. "marginRight": "",
  3173. "marginTop": "",
  3174. "marker": "",
  3175. "markerEnd": "",
  3176. "markerMid": "",
  3177. "markerStart": "",
  3178. "mask": "",
  3179. "maskType": "",
  3180. "maxBlockSize": "",
  3181. "maxHeight": "",
  3182. "maxInlineSize": "",
  3183. "maxWidth": "",
  3184. "maxZoom": "",
  3185. "minBlockSize": "",
  3186. "minHeight": "",
  3187. "minInlineSize": "",
  3188. "minWidth": "",
  3189. "minZoom": "",
  3190. "mixBlendMode": "",
  3191. "negative": "",
  3192. "objectFit": "",
  3193. "objectPosition": "",
  3194. "offset": "",
  3195. "offsetDistance": "",
  3196. "offsetPath": "",
  3197. "offsetRotate": "",
  3198. "opacity": "",
  3199. "order": "",
  3200. "orientation": "",
  3201. "orphans": "",
  3202. "outline": "",
  3203. "outlineColor": "",
  3204. "outlineOffset": "",
  3205. "outlineStyle": "",
  3206. "outlineWidth": "",
  3207. "overflow": "",
  3208. "overflowAnchor": "",
  3209. "overflowClipMargin": "",
  3210. "overflowWrap": "",
  3211. "overflowX": "",
  3212. "overflowY": "",
  3213. "overscrollBehavior": "",
  3214. "overscrollBehaviorBlock": "",
  3215. "overscrollBehaviorInline": "",
  3216. "overscrollBehaviorX": "",
  3217. "overscrollBehaviorY": "",
  3218. "pad": "",
  3219. "padding": "",
  3220. "paddingBlock": "",
  3221. "paddingBlockEnd": "",
  3222. "paddingBlockStart": "",
  3223. "paddingBottom": "",
  3224. "paddingInline": "",
  3225. "paddingInlineEnd": "",
  3226. "paddingInlineStart": "",
  3227. "paddingLeft": "",
  3228. "paddingRight": "",
  3229. "paddingTop": "",
  3230. "page": "",
  3231. "pageBreakAfter": "",
  3232. "pageBreakBefore": "",
  3233. "pageBreakInside": "",
  3234. "pageOrientation": "",
  3235. "paintOrder": "",
  3236. "perspective": "",
  3237. "perspectiveOrigin": "",
  3238. "placeContent": "",
  3239. "placeItems": "",
  3240. "placeSelf": "",
  3241. "pointerEvents": "",
  3242. "position": "",
  3243. "prefix": "",
  3244. "quotes": "",
  3245. "r": "",
  3246. "range": "",
  3247. "resize": "",
  3248. "right": "",
  3249. "rowGap": "",
  3250. "rubyPosition": "",
  3251. "rx": "",
  3252. "ry": "",
  3253. "scrollBehavior": "",
  3254. "scrollMargin": "",
  3255. "scrollMarginBlock": "",
  3256. "scrollMarginBlockEnd": "",
  3257. "scrollMarginBlockStart": "",
  3258. "scrollMarginBottom": "",
  3259. "scrollMarginInline": "",
  3260. "scrollMarginInlineEnd": "",
  3261. "scrollMarginInlineStart": "",
  3262. "scrollMarginLeft": "",
  3263. "scrollMarginRight": "",
  3264. "scrollMarginTop": "",
  3265. "scrollPadding": "",
  3266. "scrollPaddingBlock": "",
  3267. "scrollPaddingBlockEnd": "",
  3268. "scrollPaddingBlockStart": "",
  3269. "scrollPaddingBottom": "",
  3270. "scrollPaddingInline": "",
  3271. "scrollPaddingInlineEnd": "",
  3272. "scrollPaddingInlineStart": "",
  3273. "scrollPaddingLeft": "",
  3274. "scrollPaddingRight": "",
  3275. "scrollPaddingTop": "",
  3276. "scrollSnapAlign": "",
  3277. "scrollSnapStop": "",
  3278. "scrollSnapType": "",
  3279. "scrollbarGutter": "",
  3280. "shapeImageThreshold": "",
  3281. "shapeMargin": "",
  3282. "shapeOutside": "",
  3283. "shapeRendering": "",
  3284. "size": "",
  3285. "sizeAdjust": "",
  3286. "speak": "",
  3287. "speakAs": "",
  3288. "src": "",
  3289. "stopColor": "",
  3290. "stopOpacity": "",
  3291. "stroke": "",
  3292. "strokeDasharray": "",
  3293. "strokeDashoffset": "",
  3294. "strokeLinecap": "",
  3295. "strokeLinejoin": "",
  3296. "strokeMiterlimit": "",
  3297. "strokeOpacity": "",
  3298. "strokeWidth": "",
  3299. "suffix": "",
  3300. "symbols": "",
  3301. "syntax": "",
  3302. "system": "",
  3303. "tabSize": "",
  3304. "tableLayout": "",
  3305. "textAlign": "",
  3306. "textAlignLast": "",
  3307. "textAnchor": "",
  3308. "textCombineUpright": "",
  3309. "textDecoration": "",
  3310. "textDecorationColor": "",
  3311. "textDecorationLine": "",
  3312. "textDecorationSkipInk": "",
  3313. "textDecorationStyle": "",
  3314. "textDecorationThickness": "",
  3315. "textIndent": "",
  3316. "textOrientation": "",
  3317. "textOverflow": "",
  3318. "textRendering": "",
  3319. "textShadow": "",
  3320. "textSizeAdjust": "",
  3321. "textTransform": "",
  3322. "textUnderlineOffset": "",
  3323. "textUnderlinePosition": "",
  3324. "top": "",
  3325. "touchAction": "",
  3326. "transform": "",
  3327. "transformBox": "",
  3328. "transformOrigin": "",
  3329. "transformStyle": "",
  3330. "transition": "",
  3331. "transitionDelay": "",
  3332. "transitionDuration": "",
  3333. "transitionProperty": "",
  3334. "transitionTimingFunction": "",
  3335. "unicodeBidi": "",
  3336. "unicodeRange": "",
  3337. "userSelect": "",
  3338. "userZoom": "",
  3339. "vectorEffect": "",
  3340. "verticalAlign": "",
  3341. "visibility": "",
  3342. "webkitAlignContent": "",
  3343. "webkitAlignItems": "",
  3344. "webkitAlignSelf": "",
  3345. "webkitAnimation": "",
  3346. "webkitAnimationDelay": "",
  3347. "webkitAnimationDirection": "",
  3348. "webkitAnimationDuration": "",
  3349. "webkitAnimationFillMode": "",
  3350. "webkitAnimationIterationCount": "",
  3351. "webkitAnimationName": "",
  3352. "webkitAnimationPlayState": "",
  3353. "webkitAnimationTimingFunction": "",
  3354. "webkitAppRegion": "",
  3355. "webkitAppearance": "",
  3356. "webkitBackfaceVisibility": "",
  3357. "webkitBackgroundClip": "",
  3358. "webkitBackgroundOrigin": "",
  3359. "webkitBackgroundSize": "",
  3360. "webkitBorderAfter": "",
  3361. "webkitBorderAfterColor": "",
  3362. "webkitBorderAfterStyle": "",
  3363. "webkitBorderAfterWidth": "",
  3364. "webkitBorderBefore": "",
  3365. "webkitBorderBeforeColor": "",
  3366. "webkitBorderBeforeStyle": "",
  3367. "webkitBorderBeforeWidth": "",
  3368. "webkitBorderBottomLeftRadius": "",
  3369. "webkitBorderBottomRightRadius": "",
  3370. "webkitBorderEnd": "",
  3371. "webkitBorderEndColor": "",
  3372. "webkitBorderEndStyle": "",
  3373. "webkitBorderEndWidth": "",
  3374. "webkitBorderHorizontalSpacing": "",
  3375. "webkitBorderImage": "",
  3376. "webkitBorderRadius": "",
  3377. "webkitBorderStart": "",
  3378. "webkitBorderStartColor": "",
  3379. "webkitBorderStartStyle": "",
  3380. "webkitBorderStartWidth": "",
  3381. "webkitBorderTopLeftRadius": "",
  3382. "webkitBorderTopRightRadius": "",
  3383. "webkitBorderVerticalSpacing": "",
  3384. "webkitBoxAlign": "",
  3385. "webkitBoxDecorationBreak": "",
  3386. "webkitBoxDirection": "",
  3387. "webkitBoxFlex": "",
  3388. "webkitBoxOrdinalGroup": "",
  3389. "webkitBoxOrient": "",
  3390. "webkitBoxPack": "",
  3391. "webkitBoxReflect": "",
  3392. "webkitBoxShadow": "",
  3393. "webkitBoxSizing": "",
  3394. "webkitClipPath": "",
  3395. "webkitColumnBreakAfter": "",
  3396. "webkitColumnBreakBefore": "",
  3397. "webkitColumnBreakInside": "",
  3398. "webkitColumnCount": "",
  3399. "webkitColumnGap": "",
  3400. "webkitColumnRule": "",
  3401. "webkitColumnRuleColor": "",
  3402. "webkitColumnRuleStyle": "",
  3403. "webkitColumnRuleWidth": "",
  3404. "webkitColumnSpan": "",
  3405. "webkitColumnWidth": "",
  3406. "webkitColumns": "",
  3407. "webkitFilter": "",
  3408. "webkitFlex": "",
  3409. "webkitFlexBasis": "",
  3410. "webkitFlexDirection": "",
  3411. "webkitFlexFlow": "",
  3412. "webkitFlexGrow": "",
  3413. "webkitFlexShrink": "",
  3414. "webkitFlexWrap": "",
  3415. "webkitFontFeatureSettings": "",
  3416. "webkitFontSmoothing": "",
  3417. "webkitHighlight": "",
  3418. "webkitHyphenateCharacter": "",
  3419. "webkitJustifyContent": "",
  3420. "webkitLineBreak": "",
  3421. "webkitLineClamp": "",
  3422. "webkitLocale": "",
  3423. "webkitLogicalHeight": "",
  3424. "webkitLogicalWidth": "",
  3425. "webkitMarginAfter": "",
  3426. "webkitMarginBefore": "",
  3427. "webkitMarginEnd": "",
  3428. "webkitMarginStart": "",
  3429. "webkitMask": "",
  3430. "webkitMaskBoxImage": "",
  3431. "webkitMaskBoxImageOutset": "",
  3432. "webkitMaskBoxImageRepeat": "",
  3433. "webkitMaskBoxImageSlice": "",
  3434. "webkitMaskBoxImageSource": "",
  3435. "webkitMaskBoxImageWidth": "",
  3436. "webkitMaskClip": "",
  3437. "webkitMaskComposite": "",
  3438. "webkitMaskImage": "",
  3439. "webkitMaskOrigin": "",
  3440. "webkitMaskPosition": "",
  3441. "webkitMaskPositionX": "",
  3442. "webkitMaskPositionY": "",
  3443. "webkitMaskRepeat": "",
  3444. "webkitMaskRepeatX": "",
  3445. "webkitMaskRepeatY": "",
  3446. "webkitMaskSize": "",
  3447. "webkitMaxLogicalHeight": "",
  3448. "webkitMaxLogicalWidth": "",
  3449. "webkitMinLogicalHeight": "",
  3450. "webkitMinLogicalWidth": "",
  3451. "webkitOpacity": "",
  3452. "webkitOrder": "",
  3453. "webkitPaddingAfter": "",
  3454. "webkitPaddingBefore": "",
  3455. "webkitPaddingEnd": "",
  3456. "webkitPaddingStart": "",
  3457. "webkitPerspective": "",
  3458. "webkitPerspectiveOrigin": "",
  3459. "webkitPerspectiveOriginX": "",
  3460. "webkitPerspectiveOriginY": "",
  3461. "webkitPrintColorAdjust": "",
  3462. "webkitRtlOrdering": "",
  3463. "webkitRubyPosition": "",
  3464. "webkitShapeImageThreshold": "",
  3465. "webkitShapeMargin": "",
  3466. "webkitShapeOutside": "",
  3467. "webkitTapHighlightColor": "",
  3468. "webkitTextCombine": "",
  3469. "webkitTextDecorationsInEffect": "",
  3470. "webkitTextEmphasis": "",
  3471. "webkitTextEmphasisColor": "",
  3472. "webkitTextEmphasisPosition": "",
  3473. "webkitTextEmphasisStyle": "",
  3474. "webkitTextFillColor": "",
  3475. "webkitTextOrientation": "",
  3476. "webkitTextSecurity": "",
  3477. "webkitTextSizeAdjust": "",
  3478. "webkitTextStroke": "",
  3479. "webkitTextStrokeColor": "",
  3480. "webkitTextStrokeWidth": "",
  3481. "webkitTransform": "",
  3482. "webkitTransformOrigin": "",
  3483. "webkitTransformOriginX": "",
  3484. "webkitTransformOriginY": "",
  3485. "webkitTransformOriginZ": "",
  3486. "webkitTransformStyle": "",
  3487. "webkitTransition": "",
  3488. "webkitTransitionDelay": "",
  3489. "webkitTransitionDuration": "",
  3490. "webkitTransitionProperty": "",
  3491. "webkitTransitionTimingFunction": "",
  3492. "webkitUserDrag": "",
  3493. "webkitUserModify": "",
  3494. "webkitUserSelect": "",
  3495. "webkitWritingMode": "",
  3496. "whiteSpace": "",
  3497. "widows": "",
  3498. "width": "",
  3499. "willChange": "",
  3500. "wordBreak": "",
  3501. "wordSpacing": "",
  3502. "wordWrap": "",
  3503. "writingMode": "",
  3504. "x": "",
  3505. "y": "",
  3506. "zIndex": "",
  3507. "zoom": ""
  3508. }
  3509. html.style = catvm.proxy(html.style);
  3510. catvm.memory.html = {};
  3511. html.addEventListener = function addEventListener(type,func){
  3512. debugger;
  3513. if(!catvm.memory.html[type]){
  3514. catvm.memory.html[type] = [];
  3515. }
  3516. catvm.memory.html[type].push(func);
  3517. return undefined;
  3518. };catvm.safefunction(html.addEventListener);
  3519. //没问题
  3520. html.getAttribute = function getAttribute(){
  3521. debugger;
  3522. return null
  3523. };catvm.safefunction(html.getAttribute);
  3524. document.scrollingElement = html;
  3525. document.documentElement = catvm.proxy(html)
  3526. document.body = class body{};
  3527. document.body.removeChild = function removeChild(){
  3528. debugger;
  3529. };catvm.safefunction(document.body.removeChild);
  3530. document.body.appendChild = function appendChild(){
  3531. debugger;
  3532. };catvm.safefunction(document.body.appendChild);
  3533. document.body = catvm.proxy(document.body);
  3534. document.body.tagName = 'BODY';
  3535. document.body.getAttribute = function getAttribute(){
  3536. debugger;
  3537. };catvm.safefunction(document.body.getAttribute);
  3538. document.body.style = {
  3539. "accentColor": "",
  3540. "additiveSymbols": "",
  3541. "alignContent": "",
  3542. "alignItems": "",
  3543. "alignSelf": "",
  3544. "alignmentBaseline": "",
  3545. "all": "",
  3546. "animation": "",
  3547. "animationDelay": "",
  3548. "animationDirection": "",
  3549. "animationDuration": "",
  3550. "animationFillMode": "",
  3551. "animationIterationCount": "",
  3552. "animationName": "",
  3553. "animationPlayState": "",
  3554. "animationTimingFunction": "",
  3555. "appRegion": "",
  3556. "appearance": "",
  3557. "ascentOverride": "",
  3558. "aspectRatio": "",
  3559. "backdropFilter": "",
  3560. "backfaceVisibility": "",
  3561. "background": "",
  3562. "backgroundAttachment": "",
  3563. "backgroundBlendMode": "",
  3564. "backgroundClip": "",
  3565. "backgroundColor": "",
  3566. "backgroundImage": "",
  3567. "backgroundOrigin": "",
  3568. "backgroundPosition": "",
  3569. "backgroundPositionX": "",
  3570. "backgroundPositionY": "",
  3571. "backgroundRepeat": "",
  3572. "backgroundRepeatX": "",
  3573. "backgroundRepeatY": "",
  3574. "backgroundSize": "",
  3575. "baselineShift": "",
  3576. "blockSize": "",
  3577. "border": "",
  3578. "borderBlock": "",
  3579. "borderBlockColor": "",
  3580. "borderBlockEnd": "",
  3581. "borderBlockEndColor": "",
  3582. "borderBlockEndStyle": "",
  3583. "borderBlockEndWidth": "",
  3584. "borderBlockStart": "",
  3585. "borderBlockStartColor": "",
  3586. "borderBlockStartStyle": "",
  3587. "borderBlockStartWidth": "",
  3588. "borderBlockStyle": "",
  3589. "borderBlockWidth": "",
  3590. "borderBottom": "",
  3591. "borderBottomColor": "",
  3592. "borderBottomLeftRadius": "",
  3593. "borderBottomRightRadius": "",
  3594. "borderBottomStyle": "",
  3595. "borderBottomWidth": "",
  3596. "borderCollapse": "",
  3597. "borderColor": "",
  3598. "borderEndEndRadius": "",
  3599. "borderEndStartRadius": "",
  3600. "borderImage": "",
  3601. "borderImageOutset": "",
  3602. "borderImageRepeat": "",
  3603. "borderImageSlice": "",
  3604. "borderImageSource": "",
  3605. "borderImageWidth": "",
  3606. "borderInline": "",
  3607. "borderInlineColor": "",
  3608. "borderInlineEnd": "",
  3609. "borderInlineEndColor": "",
  3610. "borderInlineEndStyle": "",
  3611. "borderInlineEndWidth": "",
  3612. "borderInlineStart": "",
  3613. "borderInlineStartColor": "",
  3614. "borderInlineStartStyle": "",
  3615. "borderInlineStartWidth": "",
  3616. "borderInlineStyle": "",
  3617. "borderInlineWidth": "",
  3618. "borderLeft": "",
  3619. "borderLeftColor": "",
  3620. "borderLeftStyle": "",
  3621. "borderLeftWidth": "",
  3622. "borderRadius": "",
  3623. "borderRight": "",
  3624. "borderRightColor": "",
  3625. "borderRightStyle": "",
  3626. "borderRightWidth": "",
  3627. "borderSpacing": "",
  3628. "borderStartEndRadius": "",
  3629. "borderStartStartRadius": "",
  3630. "borderStyle": "",
  3631. "borderTop": "",
  3632. "borderTopColor": "",
  3633. "borderTopLeftRadius": "",
  3634. "borderTopRightRadius": "",
  3635. "borderTopStyle": "",
  3636. "borderTopWidth": "",
  3637. "borderWidth": "",
  3638. "bottom": "",
  3639. "boxShadow": "",
  3640. "boxSizing": "",
  3641. "breakAfter": "",
  3642. "breakBefore": "",
  3643. "breakInside": "",
  3644. "bufferedRendering": "",
  3645. "captionSide": "",
  3646. "caretColor": "",
  3647. "clear": "",
  3648. "clip": "",
  3649. "clipPath": "",
  3650. "clipRule": "",
  3651. "color": "",
  3652. "colorInterpolation": "",
  3653. "colorInterpolationFilters": "",
  3654. "colorRendering": "",
  3655. "colorScheme": "",
  3656. "columnCount": "",
  3657. "columnFill": "",
  3658. "columnGap": "",
  3659. "columnRule": "",
  3660. "columnRuleColor": "",
  3661. "columnRuleStyle": "",
  3662. "columnRuleWidth": "",
  3663. "columnSpan": "",
  3664. "columnWidth": "",
  3665. "columns": "",
  3666. "contain": "",
  3667. "containIntrinsicBlockSize": "",
  3668. "containIntrinsicHeight": "",
  3669. "containIntrinsicInlineSize": "",
  3670. "containIntrinsicSize": "",
  3671. "containIntrinsicWidth": "",
  3672. "content": "",
  3673. "contentVisibility": "",
  3674. "counterIncrement": "",
  3675. "counterReset": "",
  3676. "counterSet": "",
  3677. "cursor": "",
  3678. "cx": "",
  3679. "cy": "",
  3680. "d": "",
  3681. "descentOverride": "",
  3682. "direction": "",
  3683. "display": "",
  3684. "dominantBaseline": "",
  3685. "emptyCells": "",
  3686. "fallback": "",
  3687. "fill": "",
  3688. "fillOpacity": "",
  3689. "fillRule": "",
  3690. "filter": "",
  3691. "flex": "",
  3692. "flexBasis": "",
  3693. "flexDirection": "",
  3694. "flexFlow": "",
  3695. "flexGrow": "",
  3696. "flexShrink": "",
  3697. "flexWrap": "",
  3698. "float": "",
  3699. "floodColor": "",
  3700. "floodOpacity": "",
  3701. "font": "",
  3702. "fontDisplay": "",
  3703. "fontFamily": "",
  3704. "fontFeatureSettings": "",
  3705. "fontKerning": "",
  3706. "fontOpticalSizing": "",
  3707. "fontSize": "",
  3708. "fontStretch": "",
  3709. "fontStyle": "",
  3710. "fontVariant": "",
  3711. "fontVariantCaps": "",
  3712. "fontVariantEastAsian": "",
  3713. "fontVariantLigatures": "",
  3714. "fontVariantNumeric": "",
  3715. "fontVariationSettings": "",
  3716. "fontWeight": "",
  3717. "forcedColorAdjust": "",
  3718. "gap": "",
  3719. "grid": "",
  3720. "gridArea": "",
  3721. "gridAutoColumns": "",
  3722. "gridAutoFlow": "",
  3723. "gridAutoRows": "",
  3724. "gridColumn": "",
  3725. "gridColumnEnd": "",
  3726. "gridColumnGap": "",
  3727. "gridColumnStart": "",
  3728. "gridGap": "",
  3729. "gridRow": "",
  3730. "gridRowEnd": "",
  3731. "gridRowGap": "",
  3732. "gridRowStart": "",
  3733. "gridTemplate": "",
  3734. "gridTemplateAreas": "",
  3735. "gridTemplateColumns": "",
  3736. "gridTemplateRows": "",
  3737. "height": "",
  3738. "hyphens": "",
  3739. "imageOrientation": "",
  3740. "imageRendering": "",
  3741. "inherits": "",
  3742. "initialValue": "",
  3743. "inlineSize": "",
  3744. "inset": "",
  3745. "insetBlock": "",
  3746. "insetBlockEnd": "",
  3747. "insetBlockStart": "",
  3748. "insetInline": "",
  3749. "insetInlineEnd": "",
  3750. "insetInlineStart": "",
  3751. "isolation": "",
  3752. "justifyContent": "",
  3753. "justifyItems": "",
  3754. "justifySelf": "",
  3755. "left": "",
  3756. "letterSpacing": "",
  3757. "lightingColor": "",
  3758. "lineBreak": "",
  3759. "lineGapOverride": "",
  3760. "lineHeight": "",
  3761. "listStyle": "",
  3762. "listStyleImage": "",
  3763. "listStylePosition": "",
  3764. "listStyleType": "",
  3765. "margin": "",
  3766. "marginBlock": "",
  3767. "marginBlockEnd": "",
  3768. "marginBlockStart": "",
  3769. "marginBottom": "",
  3770. "marginInline": "",
  3771. "marginInlineEnd": "",
  3772. "marginInlineStart": "",
  3773. "marginLeft": "",
  3774. "marginRight": "",
  3775. "marginTop": "",
  3776. "marker": "",
  3777. "markerEnd": "",
  3778. "markerMid": "",
  3779. "markerStart": "",
  3780. "mask": "",
  3781. "maskType": "",
  3782. "maxBlockSize": "",
  3783. "maxHeight": "",
  3784. "maxInlineSize": "",
  3785. "maxWidth": "",
  3786. "maxZoom": "",
  3787. "minBlockSize": "",
  3788. "minHeight": "",
  3789. "minInlineSize": "",
  3790. "minWidth": "",
  3791. "minZoom": "",
  3792. "mixBlendMode": "",
  3793. "negative": "",
  3794. "objectFit": "",
  3795. "objectPosition": "",
  3796. "offset": "",
  3797. "offsetDistance": "",
  3798. "offsetPath": "",
  3799. "offsetRotate": "",
  3800. "opacity": "",
  3801. "order": "",
  3802. "orientation": "",
  3803. "orphans": "",
  3804. "outline": "",
  3805. "outlineColor": "",
  3806. "outlineOffset": "",
  3807. "outlineStyle": "",
  3808. "outlineWidth": "",
  3809. "overflow": "",
  3810. "overflowAnchor": "",
  3811. "overflowClipMargin": "",
  3812. "overflowWrap": "",
  3813. "overflowX": "",
  3814. "overflowY": "",
  3815. "overscrollBehavior": "",
  3816. "overscrollBehaviorBlock": "",
  3817. "overscrollBehaviorInline": "",
  3818. "overscrollBehaviorX": "",
  3819. "overscrollBehaviorY": "",
  3820. "pad": "",
  3821. "padding": "",
  3822. "paddingBlock": "",
  3823. "paddingBlockEnd": "",
  3824. "paddingBlockStart": "",
  3825. "paddingBottom": "",
  3826. "paddingInline": "",
  3827. "paddingInlineEnd": "",
  3828. "paddingInlineStart": "",
  3829. "paddingLeft": "",
  3830. "paddingRight": "",
  3831. "paddingTop": "",
  3832. "page": "",
  3833. "pageBreakAfter": "",
  3834. "pageBreakBefore": "",
  3835. "pageBreakInside": "",
  3836. "pageOrientation": "",
  3837. "paintOrder": "",
  3838. "perspective": "",
  3839. "perspectiveOrigin": "",
  3840. "placeContent": "",
  3841. "placeItems": "",
  3842. "placeSelf": "",
  3843. "pointerEvents": "",
  3844. "position": "",
  3845. "prefix": "",
  3846. "quotes": "",
  3847. "r": "",
  3848. "range": "",
  3849. "resize": "",
  3850. "right": "",
  3851. "rowGap": "",
  3852. "rubyPosition": "",
  3853. "rx": "",
  3854. "ry": "",
  3855. "scrollBehavior": "",
  3856. "scrollMargin": "",
  3857. "scrollMarginBlock": "",
  3858. "scrollMarginBlockEnd": "",
  3859. "scrollMarginBlockStart": "",
  3860. "scrollMarginBottom": "",
  3861. "scrollMarginInline": "",
  3862. "scrollMarginInlineEnd": "",
  3863. "scrollMarginInlineStart": "",
  3864. "scrollMarginLeft": "",
  3865. "scrollMarginRight": "",
  3866. "scrollMarginTop": "",
  3867. "scrollPadding": "",
  3868. "scrollPaddingBlock": "",
  3869. "scrollPaddingBlockEnd": "",
  3870. "scrollPaddingBlockStart": "",
  3871. "scrollPaddingBottom": "",
  3872. "scrollPaddingInline": "",
  3873. "scrollPaddingInlineEnd": "",
  3874. "scrollPaddingInlineStart": "",
  3875. "scrollPaddingLeft": "",
  3876. "scrollPaddingRight": "",
  3877. "scrollPaddingTop": "",
  3878. "scrollSnapAlign": "",
  3879. "scrollSnapStop": "",
  3880. "scrollSnapType": "",
  3881. "scrollbarGutter": "",
  3882. "shapeImageThreshold": "",
  3883. "shapeMargin": "",
  3884. "shapeOutside": "",
  3885. "shapeRendering": "",
  3886. "size": "",
  3887. "sizeAdjust": "",
  3888. "speak": "",
  3889. "speakAs": "",
  3890. "src": "",
  3891. "stopColor": "",
  3892. "stopOpacity": "",
  3893. "stroke": "",
  3894. "strokeDasharray": "",
  3895. "strokeDashoffset": "",
  3896. "strokeLinecap": "",
  3897. "strokeLinejoin": "",
  3898. "strokeMiterlimit": "",
  3899. "strokeOpacity": "",
  3900. "strokeWidth": "",
  3901. "suffix": "",
  3902. "symbols": "",
  3903. "syntax": "",
  3904. "system": "",
  3905. "tabSize": "",
  3906. "tableLayout": "",
  3907. "textAlign": "",
  3908. "textAlignLast": "",
  3909. "textAnchor": "",
  3910. "textCombineUpright": "",
  3911. "textDecoration": "",
  3912. "textDecorationColor": "",
  3913. "textDecorationLine": "",
  3914. "textDecorationSkipInk": "",
  3915. "textDecorationStyle": "",
  3916. "textDecorationThickness": "",
  3917. "textIndent": "",
  3918. "textOrientation": "",
  3919. "textOverflow": "",
  3920. "textRendering": "",
  3921. "textShadow": "",
  3922. "textSizeAdjust": "",
  3923. "textTransform": "",
  3924. "textUnderlineOffset": "",
  3925. "textUnderlinePosition": "",
  3926. "top": "",
  3927. "touchAction": "",
  3928. "transform": "",
  3929. "transformBox": "",
  3930. "transformOrigin": "",
  3931. "transformStyle": "",
  3932. "transition": "",
  3933. "transitionDelay": "",
  3934. "transitionDuration": "",
  3935. "transitionProperty": "",
  3936. "transitionTimingFunction": "",
  3937. "unicodeBidi": "",
  3938. "unicodeRange": "",
  3939. "userSelect": "",
  3940. "userZoom": "",
  3941. "vectorEffect": "",
  3942. "verticalAlign": "",
  3943. "visibility": "",
  3944. "webkitAlignContent": "",
  3945. "webkitAlignItems": "",
  3946. "webkitAlignSelf": "",
  3947. "webkitAnimation": "",
  3948. "webkitAnimationDelay": "",
  3949. "webkitAnimationDirection": "",
  3950. "webkitAnimationDuration": "",
  3951. "webkitAnimationFillMode": "",
  3952. "webkitAnimationIterationCount": "",
  3953. "webkitAnimationName": "",
  3954. "webkitAnimationPlayState": "",
  3955. "webkitAnimationTimingFunction": "",
  3956. "webkitAppRegion": "",
  3957. "webkitAppearance": "",
  3958. "webkitBackfaceVisibility": "",
  3959. "webkitBackgroundClip": "",
  3960. "webkitBackgroundOrigin": "",
  3961. "webkitBackgroundSize": "",
  3962. "webkitBorderAfter": "",
  3963. "webkitBorderAfterColor": "",
  3964. "webkitBorderAfterStyle": "",
  3965. "webkitBorderAfterWidth": "",
  3966. "webkitBorderBefore": "",
  3967. "webkitBorderBeforeColor": "",
  3968. "webkitBorderBeforeStyle": "",
  3969. "webkitBorderBeforeWidth": "",
  3970. "webkitBorderBottomLeftRadius": "",
  3971. "webkitBorderBottomRightRadius": "",
  3972. "webkitBorderEnd": "",
  3973. "webkitBorderEndColor": "",
  3974. "webkitBorderEndStyle": "",
  3975. "webkitBorderEndWidth": "",
  3976. "webkitBorderHorizontalSpacing": "",
  3977. "webkitBorderImage": "",
  3978. "webkitBorderRadius": "",
  3979. "webkitBorderStart": "",
  3980. "webkitBorderStartColor": "",
  3981. "webkitBorderStartStyle": "",
  3982. "webkitBorderStartWidth": "",
  3983. "webkitBorderTopLeftRadius": "",
  3984. "webkitBorderTopRightRadius": "",
  3985. "webkitBorderVerticalSpacing": "",
  3986. "webkitBoxAlign": "",
  3987. "webkitBoxDecorationBreak": "",
  3988. "webkitBoxDirection": "",
  3989. "webkitBoxFlex": "",
  3990. "webkitBoxOrdinalGroup": "",
  3991. "webkitBoxOrient": "",
  3992. "webkitBoxPack": "",
  3993. "webkitBoxReflect": "",
  3994. "webkitBoxShadow": "",
  3995. "webkitBoxSizing": "",
  3996. "webkitClipPath": "",
  3997. "webkitColumnBreakAfter": "",
  3998. "webkitColumnBreakBefore": "",
  3999. "webkitColumnBreakInside": "",
  4000. "webkitColumnCount": "",
  4001. "webkitColumnGap": "",
  4002. "webkitColumnRule": "",
  4003. "webkitColumnRuleColor": "",
  4004. "webkitColumnRuleStyle": "",
  4005. "webkitColumnRuleWidth": "",
  4006. "webkitColumnSpan": "",
  4007. "webkitColumnWidth": "",
  4008. "webkitColumns": "",
  4009. "webkitFilter": "",
  4010. "webkitFlex": "",
  4011. "webkitFlexBasis": "",
  4012. "webkitFlexDirection": "",
  4013. "webkitFlexFlow": "",
  4014. "webkitFlexGrow": "",
  4015. "webkitFlexShrink": "",
  4016. "webkitFlexWrap": "",
  4017. "webkitFontFeatureSettings": "",
  4018. "webkitFontSmoothing": "",
  4019. "webkitHighlight": "",
  4020. "webkitHyphenateCharacter": "",
  4021. "webkitJustifyContent": "",
  4022. "webkitLineBreak": "",
  4023. "webkitLineClamp": "",
  4024. "webkitLocale": "",
  4025. "webkitLogicalHeight": "",
  4026. "webkitLogicalWidth": "",
  4027. "webkitMarginAfter": "",
  4028. "webkitMarginBefore": "",
  4029. "webkitMarginEnd": "",
  4030. "webkitMarginStart": "",
  4031. "webkitMask": "",
  4032. "webkitMaskBoxImage": "",
  4033. "webkitMaskBoxImageOutset": "",
  4034. "webkitMaskBoxImageRepeat": "",
  4035. "webkitMaskBoxImageSlice": "",
  4036. "webkitMaskBoxImageSource": "",
  4037. "webkitMaskBoxImageWidth": "",
  4038. "webkitMaskClip": "",
  4039. "webkitMaskComposite": "",
  4040. "webkitMaskImage": "",
  4041. "webkitMaskOrigin": "",
  4042. "webkitMaskPosition": "",
  4043. "webkitMaskPositionX": "",
  4044. "webkitMaskPositionY": "",
  4045. "webkitMaskRepeat": "",
  4046. "webkitMaskRepeatX": "",
  4047. "webkitMaskRepeatY": "",
  4048. "webkitMaskSize": "",
  4049. "webkitMaxLogicalHeight": "",
  4050. "webkitMaxLogicalWidth": "",
  4051. "webkitMinLogicalHeight": "",
  4052. "webkitMinLogicalWidth": "",
  4053. "webkitOpacity": "",
  4054. "webkitOrder": "",
  4055. "webkitPaddingAfter": "",
  4056. "webkitPaddingBefore": "",
  4057. "webkitPaddingEnd": "",
  4058. "webkitPaddingStart": "",
  4059. "webkitPerspective": "",
  4060. "webkitPerspectiveOrigin": "",
  4061. "webkitPerspectiveOriginX": "",
  4062. "webkitPerspectiveOriginY": "",
  4063. "webkitPrintColorAdjust": "",
  4064. "webkitRtlOrdering": "",
  4065. "webkitRubyPosition": "",
  4066. "webkitShapeImageThreshold": "",
  4067. "webkitShapeMargin": "",
  4068. "webkitShapeOutside": "",
  4069. "webkitTapHighlightColor": "",
  4070. "webkitTextCombine": "",
  4071. "webkitTextDecorationsInEffect": "",
  4072. "webkitTextEmphasis": "",
  4073. "webkitTextEmphasisColor": "",
  4074. "webkitTextEmphasisPosition": "",
  4075. "webkitTextEmphasisStyle": "",
  4076. "webkitTextFillColor": "",
  4077. "webkitTextOrientation": "",
  4078. "webkitTextSecurity": "",
  4079. "webkitTextSizeAdjust": "",
  4080. "webkitTextStroke": "",
  4081. "webkitTextStrokeColor": "",
  4082. "webkitTextStrokeWidth": "",
  4083. "webkitTransform": "",
  4084. "webkitTransformOrigin": "",
  4085. "webkitTransformOriginX": "",
  4086. "webkitTransformOriginY": "",
  4087. "webkitTransformOriginZ": "",
  4088. "webkitTransformStyle": "",
  4089. "webkitTransition": "",
  4090. "webkitTransitionDelay": "",
  4091. "webkitTransitionDuration": "",
  4092. "webkitTransitionProperty": "",
  4093. "webkitTransitionTimingFunction": "",
  4094. "webkitUserDrag": "",
  4095. "webkitUserModify": "",
  4096. "webkitUserSelect": "",
  4097. "webkitWritingMode": "",
  4098. "whiteSpace": "",
  4099. "widows": "",
  4100. "width": "",
  4101. "willChange": "",
  4102. "wordBreak": "",
  4103. "wordSpacing": "",
  4104. "wordWrap": "",
  4105. "writingMode": "",
  4106. "x": "",
  4107. "y": "",
  4108. "zIndex": "",
  4109. "zoom": ""
  4110. }
  4111. document.body.style = catvm.proxy(document.body.style);
  4112. document.body.onmouseenter = null;
  4113. document.onmousemove = null;
  4114. document.visibilityState = 'visible';
  4115. document.createEvent = function createEvent(){
  4116. debugger;
  4117. };catvm.safefunction(document.createEvent);
  4118. document.onselectionchange = null;
  4119. document.documentElement.__proto__ = HTMLHtmlElement.prototype;
  4120. document.cookie = 'WEB=20111132; wIlwQR28aVgbT=GMJN1aFzEg1u26fLHaZvmrlRSp1r_6hF6dWuOzbbRiWuzjKTC_EEJVsiSK2SYnwfcNm6kPJ3KxkMdU_j6SpXlByvhor2Iixjl53F7ZGPrBVf24BsdgdjssR0d1VFDAJubmtLGqHAVKzYM6KGH.SZcwfiHpb9OrbAqYVF5t1EL74KPbRXjOJBc3iAjb0vLeL2c9hkJLP66Eh8BNQkQ85zxMHLL7UuhkXO0kblN2KV3m9EmLTlINOyVArpqQwnzZPTD4R8EG7xOTgIwF1aaHVPS60Ui3t0GUQK43sRTng5ZVWAE.EQPGoRWlqYS9IQkE6_grHcEA5DGmpZPAuPyLv19IVq4hiBv5D1thBEHuEK3Z0m4UpptGcs3ayjTsQSYTYAlKTwQWK8aocbi3TxDKrXGkGp12OnPf39D76hAzaG.aQ';
  4121. //////
  4122. document = catvm.proxy(document)
  4123. catvm.print.open=true;
  4124. debugger;
  4125. HTMLFormElement.prototype.submit = function submit(){
  4126. debugger;
  4127. };catvm.safefunction(HTMLFormElement.prototype.submit);
  4128. XMLHttpRequest.prototype.open = function open(){
  4129. debugger;
  4130. window.ywb = arguments[1];
  4131. };catvm.safefunction(XMLHttpRequest.prototype.open);
  4132. XMLHttpRequest.prototype.send = function send(){
  4133. debugger;
  4134. };catvm.safefunction(XMLHttpRequest.prototype.send);
  4135. delete window.VMError;
  4136. delete window.Buffer;
  4137. $_ts = window['$_ts'];
  4138. if (!$_ts)
  4139. $_ts = {};
  4140. $_ts.nsd = 57064;
  4141. $_ts.cd = "qtlZrpAlEOqlirGmxGqarsqciqQbqrgFcc3XofLxxGqaqkqriqQIrAVEtf7bqkqDWqQgrn3qWqVaqf3oxGqaqkqriqQarGVxrr7EqkqcWqWgrn3qWqlarOGocqqarkqmiqQaqGVtrrgaqr33rsqDqaGbqkqlWqVgrn3XofLhWqWgDqAaqAVhrrLatkG3qn3qWqAarsGoWqqgDqVRruG3rkqlr1jFqsVSqGVSHRLO3zIXHqCJLHWV2xqybY8knkavV06ijI9vhm.AWzju6ulkrAEoraPTq0m881YcF_xXM0yYJUJg0Oq4HKRmwChnFuzlEkTQR5eBMn27Qbz2zbTCFKg.FUuCMne.wCz.xIpCMC2I8Pzv4CeBKqGoN2oQA9rjwoxuWjJrJCp2RoTPLsxEIC06MkkHilw7V09a1HSWiD2uVmmzn62912p5ROhHJOm.RkJD3z2PpCGysCYEuKzcp9GSUOonikLCYsJ1VIpF3sTpp19gjCx23DQCtKHNiDYQMbYdQdrpQCx_An9gjCx23DQCtKHNilqSFvYBUQJMYYRqMuSfTuYvwvVTRvPziCL5FTZT3ImY3OSzMC0ybGWkrkEorOnFlbzSwvQeij9nJsVTWslSLk7urAACJbOZRb3mqs3SiyLxWOV_Jk35LuWuHAEkWubOJAWY11zjAbeA3nH3BN4_4a5n8aEUau0UT_5jytqi9y9qrGQmqqQNTdgbH3fEZyTfwV4dpoSPlO6OCVM1oTh2Je61gem1rFKFcu30WuECij90qaAura0g.kV0HsE0JkbBqaWmqGQocR7uqaATrAZ5gcePRDl.RbsLhCxCMnzbIdWB3KpNtCYL4PefFoE.RKk0hCqN3KR2xI2aQc2fwol25KSXtKm6wnU53vQNRbz.xIy73c2bFoW2dbSGI1yPICnCRbSShbm.FhR2MC3X3KfvzbY7Q1yfFDIXhCpf3czG3HaBRoZX3DebzbzBw1yBw6bCF6wbhby9R.RjMKaXMb2BzbNzwPyXwDFCFUqNFDRTxIruRc2LwCxXzb2aFba.MKO73PeNFCV.RIY9hCfOwnz9ZCQBFoEutCsj3PeLJb3.RiLahCfn3cz9ZUVBFDTOtCsTw1eLFCL.RiNuhCfSMPz9_bR9tKT2M1UT3o7NMKrGxIYB312zFCE2eUw2tUx5t6vO3ceT36A.8ITXh6YnFPzy_vqBwUxut6v5R1eTQvJdx8NzRc2nMbA2_bejtUx03nU.FbVNQ6Jdx8fPh6wBt6YLeneSFop2t6BdRce6R6A.85y2h6wOw1z_e1eaRCg.wDdPh6rn3nz0IBaBQoJ2t6pa_1e6Roq.QCOGh6w7Rczu3HS2h6mzwUY7eoQBQUNut66XR1euQKW.I52ah6JSQczdgbQBQbTf31UzMDYOWczaRiaBwDfOt6rL4ce0wUl.ICB6h6zTMnzdR89B8C2SInzS_KZBIKe.t6iC8KNThbR63.RuMCSSQnzG_bEBQKYet6vy3vWNRCN.cRLkrTLbKDgxv2avK9WoqTF5x63mr2GOYXZkqsQ0raV5.G";
  4142. if ($_ts.lcd)
  4143. $_ts.lcd();
  4144. (function(_$ak, _$a1) {
  4145. var _$_W = 0;
  4146. function _$m7() {
  4147. var _$_i = [28];
  4148. Array.prototype.push.apply(_$_i, arguments);
  4149. return _$hP.apply(this, _$_i);
  4150. }
  4151. function _$nx(_$fF) {
  4152. return _$m7;
  4153. function _$m7() {
  4154. _$fF = 0x3d3f * (_$fF & 0xFFFF) + 0x269ec3;
  4155. return _$fF;
  4156. }
  4157. }
  4158. function _$cs(_$m7, _$__) {
  4159. var _$hC, _$bS, _$lK;
  4160. !_$__ ? _$__ = _$fb : 0,
  4161. _$hC = _$m7.length;
  4162. while (_$hC > 1)
  4163. _$hC--,
  4164. _$lK = _$__() % _$hC,
  4165. _$bS = _$m7[_$hC],
  4166. _$m7[_$hC] = _$m7[_$lK],
  4167. _$m7[_$lK] = _$bS;
  4168. function _$fb() {
  4169. return Math.floor(_$aT() * 0xFFFFFFFF);
  4170. }
  4171. }
  4172. var _$__, _$$u, _$aD, _$$K, _$_c, _$ii, _$aT, _$$a, _$kB;
  4173. var _$ju, _$fq, _$je = _$_W, _$a0 = _$a1[0];
  4174. while (1) {
  4175. _$fq = _$a0[_$je++];
  4176. if (_$fq < 12) {
  4177. if (_$fq < 4) {
  4178. if (_$fq === 0) {
  4179. _$kB = _$$K['$_ts'];
  4180. } else if (_$fq === 1) {
  4181. _$ju = _$kB;
  4182. } else if (_$fq === 2) {
  4183. _$kB = _$$K['$_ts'] = {};
  4184. } else {
  4185. !_$ju ? _$je += 2 : 0;
  4186. }
  4187. } else if (_$fq < 8) {
  4188. if (_$fq === 4) {
  4189. _$kB.lcd = _$m7;
  4190. } else if (_$fq === 5) {
  4191. _$ju = !_$$a;
  4192. } else if (_$fq === 6) {
  4193. _$hP(28);
  4194. } else {
  4195. !_$ju ? _$je += 0 : 0;
  4196. }
  4197. } else {
  4198. if (_$fq === 8) {
  4199. _$je += 2;
  4200. } else if (_$fq === 9) {
  4201. _$$K = window,
  4202. _$_c = String,
  4203. _$ii = Array,
  4204. _$__ = document,
  4205. _$aT = Math.random,
  4206. _$$a = Date;
  4207. } else if (_$fq === 10) {
  4208. return;
  4209. } else {
  4210. _$$u = [4, 16, 64, 256, 1024, 4096, 16384, 65536];
  4211. }
  4212. }
  4213. } else
  4214. ;
  4215. }
  4216. function _$hP(_$iy, _$nb, _$gy) {
  4217. function _$kQ() {
  4218. return _$aC.charCodeAt(_$_O++);
  4219. }
  4220. function _$bY(_$m7, _$__) {
  4221. var _$hC, _$bS;
  4222. _$hC = _$m7.length,
  4223. _$hC -= 1;
  4224. for (_$bS = 0; _$bS < _$hC; _$bS += 2)
  4225. _$__.push(_$_Y[_$m7[_$bS]], _$l2[_$m7[_$bS + 1]]);
  4226. _$__.push(_$_Y[_$m7[_$hC]]);
  4227. }
  4228. var _$m7, _$__, _$hC, _$bS, _$lK, _$fb, _$_W, _$je, _$ju, _$_i, _$fq, _$a0, _$$S, _$bZ, _$iX, _$l2, _$dV, _$aC, _$jf, _$_O, _$f5, _$i5, _$_Y;
  4229. var _$_I, _$nB, _$jv = _$iy, _$et = _$a1[1];
  4230. while (1) {
  4231. _$nB = _$et[_$jv++];
  4232. if (_$nB < 95) {
  4233. if (_$nB < 64) {
  4234. if (_$nB < 16) {
  4235. if (_$nB < 4) {
  4236. if (_$nB === 0) {
  4237. _$kB.scj = [];
  4238. } else if (_$nB === 1) {
  4239. _$ju = 0;
  4240. } else if (_$nB === 2) {
  4241. _$hC[5] = _$hP(26) - _$m7;
  4242. } else {
  4243. _$_I = !_$bZ;
  4244. }
  4245. } else if (_$nB < 8) {
  4246. if (_$nB === 4) {
  4247. _$hC[6] = "";
  4248. } else if (_$nB === 5) {
  4249. !_$_I ? _$jv += -27 : 0;
  4250. } else if (_$nB === 6) {
  4251. !_$_I ? _$jv += 1 : 0;
  4252. } else {
  4253. !_$_I ? _$jv += 2 : 0;
  4254. }
  4255. } else if (_$nB < 12) {
  4256. if (_$nB === 8) {
  4257. _$f5 = _$kQ();
  4258. } else if (_$nB === 9) {
  4259. !_$_I ? _$jv += -18 : 0;
  4260. } else if (_$nB === 10) {
  4261. _$dV = _$kB.aebi = [];
  4262. } else {
  4263. _$_I = !_$_i;
  4264. }
  4265. } else {
  4266. if (_$nB === 12) {
  4267. _$_I = !_$_Y;
  4268. } else if (_$nB === 13) {
  4269. _$kB.cp = _$hC;
  4270. } else if (_$nB === 14) {
  4271. _$bS = _$kQ();
  4272. } else {
  4273. _$lK = 0;
  4274. }
  4275. }
  4276. } else if (_$nB < 32) {
  4277. if (_$nB < 20) {
  4278. if (_$nB === 16) {
  4279. _$je = _$kQ() * 55295 + _$kQ();
  4280. } else if (_$nB === 17) {
  4281. !_$_I ? _$jv += 70 : 0;
  4282. } else if (_$nB === 18) {
  4283. _$lK++;
  4284. } else {
  4285. for (_$ju = 0; _$ju < _$a0.length; _$ju += 100) {
  4286. _$$S += _$a0.charCodeAt(_$ju);
  4287. }
  4288. }
  4289. } else if (_$nB < 24) {
  4290. if (_$nB === 20) {
  4291. _$m7 = _$__.call(_$$K, _$nb);
  4292. } else if (_$nB === 21) {
  4293. _$_I = _$$K.execScript;
  4294. } else if (_$nB === 22) {
  4295. _$_W = _$kQ();
  4296. } else {
  4297. _$lK = _$kQ();
  4298. }
  4299. } else if (_$nB < 28) {
  4300. if (_$nB === 24) {
  4301. _$_I = !_$_O;
  4302. } else if (_$nB === 25) {
  4303. _$i5 = _$kQ();
  4304. } else if (_$nB === 26) {
  4305. _$_I = _$nb === undefined || _$nb === "";
  4306. } else {
  4307. _$__ = _$$K.eval;
  4308. }
  4309. } else {
  4310. if (_$nB === 28) {
  4311. _$_I = _$bS % 10 != 0 || !_$hC;
  4312. } else if (_$nB === 29) {
  4313. _$_I = !_$m7;
  4314. } else if (_$nB === 30) {
  4315. _$a0 = _$_i.join('');
  4316. } else {
  4317. _$ju++;
  4318. }
  4319. }
  4320. } else if (_$nB < 48) {
  4321. if (_$nB < 36) {
  4322. if (_$nB === 32) {
  4323. _$fq = '\n\n\n\n\n';
  4324. } else if (_$nB === 33) {
  4325. _$cs(_$__, _$gy);
  4326. } else if (_$nB === 34) {
  4327. !_$_I ? _$jv += 11 : 0;
  4328. } else {
  4329. _$_i.push('}}}}}}}}}}'.substr(_$_W - 1));
  4330. }
  4331. } else if (_$nB < 40) {
  4332. if (_$nB === 36) {
  4333. _$m7 = _$hP(26);
  4334. } else if (_$nB === 37) {
  4335. _$__ = [];
  4336. } else if (_$nB === 38) {
  4337. _$hC++;
  4338. } else {
  4339. !_$_I ? _$jv += 3 : 0;
  4340. }
  4341. } else if (_$nB < 44) {
  4342. if (_$nB === 40) {
  4343. _$j9(21, _$ju, _$_i);
  4344. } else if (_$nB === 41) {
  4345. _$fb = _$kQ();
  4346. } else if (_$nB === 42) {
  4347. _$hC = 0,
  4348. _$bS = 0;
  4349. } else {
  4350. _$j9(9, _$_i);
  4351. }
  4352. } else {
  4353. if (_$nB === 44) {
  4354. _$hC[2] = "g2+3,`,,.`/`.,3.301,30`,.*`3`,//`0//-/`+3`,`+2`+,`,*31+/+`2`0*`0*.2**`+3,`+**`,*`3,`./`0`-1`+,0`3*`.,3.301,3/`.*`,*+`*(*+`,+`0-`+1`/2`+,1`0.`2,`+***`0//-0`+-`,/0`3-`20`*(/`+*`-.`--`1`.`-`[+`-,`-+`+0`-*`+*,.`.2`,1`+/`,**`,.`+,2`++`+-.,+11,2`+-.,+11,1`+*****`+.`/3`31`//,30`//`,*.2`33`2*`,02.-/.//`+0-2-`/0`1,`,*.1`[+**`-3`-,102`,1+1--212`,/-+*++`20.*****`.-`-/`,.2`[*(*+`,****`+,*`,2`++,`+02.-**3`,0`,0/..-/103`-**`.*30*`.0`,*-`*(2`13`*(0`*(.`+02.-**2`+-+*1,`,2-`/+,`+0.`1/`/+`,-`[*(3`+2*`,/1`+*,`0//-1`+,,`/0-,*`/1`/***`,3`02`23`0/`,***`/,`*(,0`,.**3/31*2`+1-,/2.+3-`+*.2/1/`-322,3,-2.`+/+2/**,.3`*(3`-****`/****`*(,`[,`-0*`.*,-,--.+1`[*(,`[*(,0`-,2/-11/,*`+/**`[+2*`+**+`[1`*(+`[.`,/0,-2-+*,`---1/0/32.`,/.`/*23`+2/311/-3-`,/,`[3*`+0111,+/`*(-/`--3/.0312,`*(2+-,0./.-`+/013`+2**`+/2`+-0`+-3`+-.`+.*`+,3`+--`+//`+.,`+./`+0*";
  4355. } else if (_$nB === 45) {
  4356. _$l2 = _$hP(0, 1003, _$nx(_$__));
  4357. } else if (_$nB === 46) {
  4358. _$jf = _$aC.length;
  4359. } else {
  4360. _$hP(94, _$a0);
  4361. }
  4362. }
  4363. } else {
  4364. if (_$nB < 52) {
  4365. if (_$nB === 48) {
  4366. _$hC[4] = _$hP(26) - _$m7;
  4367. } else if (_$nB === 49) {
  4368. !_$_I ? _$jv += -50 : 0;
  4369. } else if (_$nB === 50) {
  4370. _$aC = "ķñȦȧñम\x00催,ā=ā[ā(āā.ā;ā],ā);ā?ā),ā(){return ā<ā){var ā+ā[11]](ā=0,ā;}function ā=0;ā]=ā[ --ā !ā(){ā++ ]=ā:ā[ ++ā&&ā>>ā&ā(),ā+=ā.push(ā= !ā):ā[27]](ā=(ā++ )ā);}function ā||ā!==ā=[],ā=new ā){ā(){var ā===ā!=āfunction ā[35]];ā)ā));ā[0],ā-ā&& !ā?(ā>ā>>>ā&&(ā){return ā;return ā<=āreturn ā*ā();ā[1],ā|| !ā[6],ā][ā&&( !ā;for(ā[12][ā[6]),ā[27]]((ā<<ā++ ){ā[12]](ā==ā-=ā;function ā){if(ā={},ā):(ā||(ā[9];ā++ ]=(ā/ā[2],ā[35]],ā[43]]==ā:0,ā[6]]^ā[35]]===ā[13])&ā++ ]<<ā^ā[2][ā[47],ā>=ā):0,ā[52])&ā,0,ā[47];ā];if(ā]):ā);return ā[10][ā++ ;ā in ā[59])&ā[3],ā,true);ā)return ā(){return +ā){}ā+1],ā({ā))&&ā[4],ā);if(ā))|| !ā= !(ā[14]][ā;}ā=1;ā](ā||( !ā++ ),ā:1,ā=0;for(ā|=ā)):ā<0?ā[9]),ā=[];for(ā});ā]===ā;}}function ā[50]](ā.y-ā[35]]>ā+=1,ā[49]](ā; ++ā.length;ā.x-ā(107)-ā[13]),ā=[ā[52]&ā++ ],ā[19][ā=((ā[2]](ā[13]&ā[13];ā];}function ā[35]]-ā]],ā=0:ā];ā))||ā.slice(ā[52]||ā&& !(ā=( !ā){ typeof ā);}ā=true,ā()[ā);function ā[9],ā[9]?ā=this.ā(0);ā[24][ā.x*ā[13])|ā++ ,ā+=1:0;ā.y*ā[52];ā(107);āreturn;ātry{ā;if(ā){}}function ā[10]](ā[21],ā[25],ā[12]](0,ā ++ā=0;if(ā=1,ā[35]]/ā]|ā[15][ā[15];ā; typeof ā[18][ā++ ):ā()),ā=[];ā-- ,ā[1]?ā[57])<<ā[5],ā[63]+ā[23]](ā[(ā[59]^ā[32],ā.x)+(āfor(ā[52])|(ā[3];ā[29]]((ātry{if(ā;)ā[30])<<ā[7];ā+=2:0;ā|| !(ā[21]](ā)?ā===0?(ā);}catch(ā%ā[4];ā));}function ā[0];ā[61]](ā-1],ā[49];ā[43]]=ā[47]^((ā[17];ā[67],ā[12]](0),ā();if(ā[1]+ā[43];ā[48])]))&ā[52]);ā+1])):ā[21]][ā[13]);ā.y),ā)){ā);}}function ā[6]);}function ā);for(ā[39];ā=0;while(ā[6]]<<ā]=(ā[17]),ā)),ā[3]+ā[25];ā-=3,ā[35]]-1;ā[46]](ā[13]^ā[13],ā){return(ā.length,ā=false,ā[2]=ā[2])&ā=0:0,ā[9]&&ā]^=ā)|0,ā[2];ā]=68,ā[47]),ā[35]]%ā]]:ā;if( !ā[13]);}function ā].ā)+ā)%ā)&ā[47]+ā+=4:0;ā[27]=ā[35]]+ā[71],ā.join('');}function ā,this.ā]);ā[16]](ā+=1;ā-=2,ā[59])|(ā], !ā[18];ā[4]=ā[9]],ā[48],ā[63]))+ā[57]](ā[59]]^ā]):(ā+1)%ā>0;ā('');ā+=(ā[78]](ā[50],ā[4]&&ā[10];ā[95]);}function ā[38],ā()?ā[17]+ā))return ā[27]));ā[89]](ā[55]);}function ā[1];ā[5];ā[5]+ā[75]);}function ā[24],ā[63],ā[22]][ā++ ];else if((ā[((ā[80]+ā.x+ā(107),ā);else if(ā[80]);}function ā;try{ā};function ā.x,ā[36]=ā[9]);}function ā[30]);}function ā);while(ā])):ā[31],ā[10]);ā[12];ā(114,ā,{ā[40]),ā[19]?ā?0:ā+1]&ā[6]][ā[15]];ā)||(ā=false:0,ā[2]];ā[56]](ā[13])),ā[12]];ā[7]:0,ā[7]?ā[33]](null,ā[35]]),ā[6]);ā[6])|ā]!==ā())in ā[27]]({ā)===ā[6]:0,ā[48])<<ā[93],ā[1]);ā[17]);ā.x),ā[6]?ā[6];ā;){ā[70],ā[43]);ā[2]+ā= !( !ā[52]),ā[62]][ā):0;return ā]<ā]:ā))ā[76]](ā[86]);}function ā[47]?ā[23],ā[27];ā[23][ā():0,ā,'');}function ā[49]||ā];}}function ā):0;for(ā[30]),ā);else return ā[25]),ā[323](ā[21])|(ā]),ā++ )if(ā!=null?(ā[29][ā:0;ā[27]](((ā>0||ā[0]^ā[0][ā[8]][ā.split('');for(ā]=\"\",ā[48]](ā.y)/(ā[1]];ā[35]];for(ā[7]]=ā[48]?ā();}function ā[89]);}function ā[45]](ā[58]](ā[21];return ā.charCodeAt(ā>0?ā);}}catch(ā[68]);}function ā[75]:0,ā[63]);}function ā<<1^(ā:0;return ā[33]?ā[8]);ā[50]+ā]>=ā[37],ā)&&ā[47])],ā[9]?(ā()*ā+1]=ā];}catch(ā[0]<=ā):0):ā[87]]([ā[28]),ā();for(ā();return ā[51]);return ā[4]),ā.z;ā[6]]]^ā)try{if(ā[49])return[ā(1,0),ā+(ā[11])|((ā(42,ā[113]^ā[4];for(ā[4]));ā]);}function ā)):0;if(ā[9]|ā[61]](0,ā[9]*ā[65]&&ā[1]>ā[1]=ā[21]];ā[40],ā[1][ā&& !( !ā[1]^ā[87]);}function ā(65,ā[84]),ā[43]]==0?ā[24];ā[20];ā[36]&&ā[56]];}catch(ā[5]);return ā[3]);return ā||0,ā[27]];ā+2])):ā[37]],ā[6])):ā[47])|(ā[36]](ā[79]][ā[24]](ā>0)for(ā[36]];ā;return[ā[70]),ā[79]];ā++ ):0):0;ā(){return[ā[84],ā[31]);ā()];ā:(ā].apply(ā[43]);}function ā)?(ā[14]);}function ā[17]):0,ā?1:ā[68]]=ā]()):ā[79],ā[52]);}function ā]=1,ā[59],ā[32]=ā[32];ā[48]);ā[63]),ā[24]);}function ā[52]^ā.y;ā, ++ā):0;}function ā[73]);}function ā[59]]<<ā[10]),ā[31]+ā[12],ā[66]);}function ā[7]&&ā[91]);}function ā[19];ā[92]);}function ā[40];return ā[0];return ā-((ā[10]);}ā[24]),ā[62];return ā[54]);return ā[41]](0,ā+=9;ā[21]);return ā[27]|| !ā[90]),ā[15]](ā(20,ā)if(ā){this.ā[46]];ā[47];for(ā[47])),ā)==ā};ā)):0;return ā[10]];ā[52]][ā[14]||(ā[29]],ā>>>0),ā[3]=ā[25]=ā[50]];ā[17]]==ā>=0;ā[46]+ā[3][ā[62],ā[9],( ++ā]=79,ā+=7:0;ā=null,ā.split(''),ā()?(ā)<<ā[71];return ā++ ):0,ā]=48,ā(1,ā[55]];ā){return[ā+=3:0;ā)!==true?(ā(134);ā[17]*(ā[16];return ā]);else if(ā.apply(ā+=1:0,ā=2;ā];}return ā[5])+ā[27]||ā[5]),ā[48]);}function ā+=0:0;ā.x&&ā[35]]>=ā[1]),ā];}ā+=5;ā});return;function ā)try{ā]]):ā>>(ā[34],ā]!=ā[34]+ā[325](ā[2]||ā[35]]);}}function ā[74],ā<=16?(ā|=1;ā[2]?ā[2]^ā+1},ā[0]&&ā());ā]]]=ā[16]);}function ā[30]];ā]]=ā[43]]==1&&ā,1,ā]^ā[34])this.ā]);return ā+((ā]>ā]&ā]-ā]+ā]*ā)(ā)*ā)-ā)/ā[20]];ā){return((ā[20]](ā[6],(ā[76]],ā)[ā){}function ā+=-4;ā[93]);}function ā[43],ā(){this.ā[30])[0],ā[70]);}function ā[1])return[];ā[12]);ā[12])&ā[27]&&ā+=13;ā.y))*ā[35],ā,false);}function ā[94];for(ā;if( typeof ā.apply(null,ā[48];while(ā[35]](ā[6];return ā=null;ā++ ];}function ā+=-9;ā[46]][ā[13](ā[52]?ā[16];ā[0]);ā[52],ā-1),ā[87]](ā={};for(ā[10]);}function ā[1]=[ā[11]]();ā[23]]((ā[51]);}function ā[47]||ā[44]](ā[(((ā.y))),ā[13]](ā[13])return ā[46])*ā<=34?(ā)>1?ā-1+ā[51]?ā[0]);}function ā[92]+ā[10]]()));ā()][ā<=46?(ā[5]=ā[0]=ā[71]);}function ā[4].ā[67]](ā|| !( !ā=null, !this.ā[7]][ā[61],ā+2]=ā[48]]^ā[65]?ā[34]);return ā[48]]=ā+=4;ā(9,ā[9]]&ā[9]]=ā,true);}function ā[4]](ā[4]];ā]/ā+=68:0;ā()):ā[85]);}function ā[7]);}function ā[35]];while(ā():0;}function ā[18]);ā<=26?(ā[45]],ā[36]]||ā+=3;ā[41]+ā[49]?ā=[[],[],[],[],[]],ā[49],ā){return[(ā[41]][ā]++ :ā[69]](ā]++ ,ā[61]),ā[61])&ā[11]](this,ā.substr(ā)|(ā);}}}catch(ā[35]]:0,ā[5]);else if(ā[47]]){ā[74]?(ā]=Number(ā[35]='';ā)for(ā[47]+1)continue;if(ā[39]);return ā[42]];ā[84]])return ā[143],ā[49];for(ā[83]);}function ā[33]+ā[14],ā[33],ā!==null&&( typeof ā)||[];else return ā[14]>ā[0]=this,ā[14]=ā[14];ā[33]=ā[50]>ā[50];ā:'\\\\u'+ā[21]||ā[39]);}function ā[3]]();}function ā-52:0):ā[59]);}function ā[20],ā[1].concat([arguments]),ā[2])|(ā[2];}catch(ā+=60:0;ā[47]]()[ā.x!=ā){try{ā='href';ā[74]),ā[79]);}function ā[10],ā[74]);ā[10]=ā<=96?(ā]):( --ā=true;ā):0);else{switch(ā.x?(ā===252?ā[48])):ā<=92?(ā[29]);}ā[38]=ā[48])),ā[34];return ā<=55?ā():ā[84]===ā()%ā[77]+ā[148],ā[77],ā[17],ā[30];ā[144],ā=true:0:0;return ā[20]),ā[17]?ā[15]||ā[17]:ā[20]);ā>=40&&ā[56]],this[ā<=48?ā[0]);else if(ā[1][2]))&&ā[9];else return 0;}ā]);}ā+=-24:0;ā[22]];ā[65]),ā[13]]){ā[48]& -ā)):0,ā[93]];ā++ ])>>>0;}function ā+=98:0;ā;break;}}ā+1));ā>1)ā[3]);else{ā(364);ā()?this.ā+1))[ā[91]),ā[124]?ā[1][2]==ā()):0;}}function ā[86]](ā[1][0];ā[88]);ā[4]){ā))return[true,ā[47]);ā,'');}else return'';}function ā[32]===ā[0];}function ā[7]|| !(ā[88]),ā))return false;ā[14]));ā(85);ā<=12?ā+=107:0;ā[47]?(ā[46];return ā<=85)debugger;else ā[4]);ā[11]||( !ā[35]]<=ā[55]&&ā);}return ā[13];}for(ā[3]);else if(ā[10]]();return ā+=190:0;ā+=-92:0;ā[50]; ++ā[17]:0):ā= ++ā-- )ā[67]+ā=false;for(ā=Array.prototype.slice.call(arguments,1);ā; !ā[0])return;try{ā[57]);ā[43]];ā+=-51;ā<=83)ā?0:0,ā[54])+ā[35]]];function ā[34])));return this;}function ā[21]);if(ā>>>1)):(ā[10]))||ā+1));}}function ā=1;}}if(( !ā<=10?(ā[29]]==ā<<1)+1,ā[52])+1,ā='#';ā++ )==='1',ā]-- ;else if(ā!==''){if(ā-=1):0;return[ā=window;ā[17]];ā[17]]=ā))&& !ā<=14?(ā[153]?(ā[27]]||ā[6]]&&ā[1]);else if(ā[49]){ā++ :0;}return ā):0;}catch(ā[3]===ā[92]?ā[36]);ā[58]?(ā=this;try{ā[35]]&&ā>>>0);}}function ā[71]](ā[1][0]));ā[40]&&ā='protocol';ā[36])[ā>=92?ā;else if((ā[30])[1];return ā])):(ā[30]=ā<=18?(ā[49]),ā));}else ā=0, !ā[94]);return ā[3]=(ā];}if(ā+1],16));return ā<=65?(ā[1][0]===ā&= ~(ā[48];for(ā<=61?(ā[35]]-1];ā++ );}function ā[23]]({name:ā>=97&&ā[90]]||ā+=21:0;ā[80]),ā++ :0;return ā[0]=(ā[3]=[ā;while(ā=0:0;break;default:break;}ā[42];return ā[2]);else if(ā!==''?ā(352,ā[331]();ā[25])];}function ā[75]](ā[8]]||ā+=11:0;ā[37]=ā[9]^ā[0];for(ā=unescape;ā[45])!==ā[12]);return ā[9]+ā[9]:ā|=1:0,ā[1]:0,ā.y>0?ā[84]);}function ā[44]+ā+='r2mKa'.length,ā[48]^ā.fromCharCode(255));return[];}function ā[60]][ā];return[ā[20];return ā[1])return((ā-=4)ā[42])return 1;else if(ā[48]/ā[83],ā[22]);return ā[60]]-ā[83];ā[48];ā++ )this.ā+1,ā[28]](ā=0):ā],0),ā=[], !ā+=78:0;ā})):0,ā[24]=ā[76];}}return ā[24]);return ā[21];}return ā[2]);ā});return ā[5]&&( !ā[9]]),ā));function ā[159]*(ā+=-108:0;ā[33]](ā[6])|((ā[0]!==0?(ā[3])];}function ā[22]](ā[35]]);return ā[32]](ā[35]];)ā[38]='';ā[86]?(ā[2])+ā[26]);return +(ā.x==ā[64]],ā[9]:0,ā[2]]={};ā[85]),ā<=87?(ā+=-3;ā[64]);}ā[80]);ā=0;}ā[5]=null;ā=true;}}if(ā-1]),ā[63]]=ā[20]);return ā[85]]);break;}ā<=86?(ā+1)];}function ā[21]],ā[47]:0,ā[37]][ā[4]=2,ā[43])continue;ā=0):0;break;case 3:ā[21]]=ā[83]:0):ā<=59?ā[9])|(ā[138],ā[93]]!=ā[71]);return ā[48]?( !ā);}else{ā[28].ā=[];if(ā[21])!==ā,true);}ā[28],ā[58]));for(ā<=82?(ā].y-ā.y);}function ā[6])),ā]+this.ā[27]](this.ā[18]);}function ā[37]];ā[1]===0||ā),this.ā[35]]];}function ā,0);if( !ā[123]<=ā[32]](\"\");ā={'\\b':'\\\\b','\\t':'\\\\t','\\n':'\\\\n','\\f':'\\\\f','\\r':'\\\\r','\"':'\\\\\"','\\\\':'\\\\\\\\'};return ā(){return(ā<=80?(ā.charAt(0)==='~'?ā+=111:0;ā[37]]);ā[24]][ā,1):ā[8]&ā[35]]<=1)return ā.x<ā[25]]?ā.x;ā[26]],ā[25]](ā[9]||ā[14]);return +(ā[31]),ā[56]);}function ā[40])?(ā[4]);if(ā):0;ā())!==ā,'');}ā[330]();ā[73]),ā(95);ā>1){for(ā[121];for(ā[43])):ā++ )try{ā[86])==ā[35]]===0;ā],0)!==ā[14]);ā[6]];if(ā(22,ā[14]),ā[12]))&&ā){ !ā!=true)?ā[40],{keyPath:ā[23]);ā[94];ā[77]);}function ā<=53?(ā==null?ā[16])==ā,false);}return null;}function ā))(ā+=-431:0;ā[13])+ā[2];return ā]]+1:0;for(ā);case'number':return ā<=57?(ā<=9?(ā[23]){ā[30]])/ā[13])^ā[19]?(ā,0)===\" \")ā[12]](0);}function ā|| typeof(ā.x),0<=ā))[ā[55]]+ā<=69?ā[332]();ā[24]&&(ā[1]+(new ā[47]);for(ā=true;break;}}ā[83]]);ā[10]&& !ā()==1?ā<=49?(ā++ ]= ~ā[47]);}function ā[26];return +(ā[1]=arguments,ā[19]|| !ā[23]|| !ā=false;}function ā[92]);if(ā[48];return ā[17]];}function ā=0):0;break;case 2:ā[45]])/ā[7]||ā++ ]= !ā[13]);for(ā[68]]-ā[68]],ā[43]]==1?(ā[68]](ā,0);return ā[89]),ā<=3?ā[65]),'');}function ā[79]?ā].x-ā||1,ā[12]?(ā= delete ā[17])[0],ā<=67?ā+=-72:0;ā[21]?(ā>=127?ā[85]],this[ā[48]),ā[50]<=ā<=11?ā[32]?ā[48]):ā]))return true;return false;}ā++ ;break;}ā[87]:0,ā[4]);else if(ā++ :ā[5]||ā[3]]();function ā[17]);}function ā||0);ā>0?(ā+=-121:0;ā.y<ā[36]+ā-=1):0,ā)|( ~ā.y+ā.y,ā[77]),ā[63]);}ā[23];return ā[36]))||ā<=104?(ā[35]||ā[56],ā(){return((ā);}if(ā.length===3)return new ā[54];return ā[2]]=ā[33]?(ā[39],ā[39]+ā[53];return +(ā[52]-ā];for(ā[17]&& !(ā<=102?(ā;}else return ā)return;try{ā))):0):0;}catch(ā[73]](new ā<=0)return;ā.lastIndexOf('/'),ā[72]);return ā<92?(ā){if( !ā[12]=ā[32]?(ā[91],ā<=100?(ā[50]](this.ā[35]];}function ā[17])[0];}function ā[25]],ā[26]&&ā[18])])|0,ā+=37;ā);}else{return;}}catch(ā++ ]=false:ā[72]?ā==0?ā[99],ā=true;if(ā[52]));return ā+=39:0;ā[40])?ā[35]);}function ā()]()[ā<=95){if(ā-- ):ā[18]));ā[19]+ā++ ]=[]:ā[146]?ā.length===6)return new ā[20]===ā[52]-(ā<=68?ā[52]!==0?ā]===\"..\"?ā+=203:0;ā,' ')),ā){return false;}}function ā<=37?(ā]+=ā[68],(ā[9]):ā[47]]||ā[11]);ā[9])+ā[52]?(ā<<(ā+=-188:0;ā<=7?(ā:0},ā(117));if(ā+1]);ā[4]]||ā<=5?(ā<=33?(ā[72]];ā[49])>>>0;}function ā+1]-ā[4];return ā(460,ā[9]);}ā[6]],ā[0]=[],ā>>=1,ā[21]];}function ā+1]=(ā[65]]^ā[52])){ā<=28?āreturn{ā[60]);for(ā<=27?ā)===0)return ā[131],ā))return\"\";for(āreturn(ā+=-338:0;ā; --ā[11]&& !ā=false;if(ā[73]?(ā[94]],\"; \");for(ā[130]^(ā[96],ā+=204:0;ā[11]&&ā.x)*(ā[115]^ā='pathname';ā[51]&&(ā<=41?(ā[18]);return;}ā[72];return ā[85]]==0&&ā<=89)(ā[71]](new ā[65];ā[46]);ā[59]),ā=[0,1,ā[14]]=new ā[17]), !ā[59]);ā[9]:(ā,[{\"0\":0,\"1\":13,\"2\":31,\"3\":54}],ā)/(ā(57,ā[61]);}function ā[36]&& !(ā<=45?(ā[94]),ā(109)))return ā<=103?ā[14]];ā[2]]?ā+=24:0;ā();}return ā.y==ā[56]]=ā){this[ā])):0;return ā++ );return ā[2]][ā){return(new ā[53];if(ā[87],ā[83]:0):0,ā);case'object':if( !ā[35]&&ā), !ā>>>1));ā<=47?ā(193,ā[88]]=ā[105])^ā[16])return((ā[88]];ā.y)return true;return false;}function ā+1));else return\"\";}return\"\";}function ā[40]);}function ā){for(ā[69]+ā=[],this.ā[1]);return ā+2);for(ā[24]));ā[24]||ā[54]]=ā.y);break;case 1:case 2:ā+=5:0;ā+=-179:0;ā(0,ā='';do ā[19])))return null;ā]==ā[35]]>1)ā+=9:0;ā[81]]!=ā++ ;for(ā[93]);return ā[49];return ā[90];ā[52]],ā[10]]=ā+=384:0;ā]!==null&&ā[9];while(ā+=289:0;ā[10]][ā[6])<<ā)):0;}}function ā]=[ā.PI-ā.length===7)return new ā[29]];ā;'use strict',ā]||1)ā[18]);if(ā===0)return[];return ā<arguments.length;ā++ ;break;}if(ā[21]+ā[25]?ā[35]]-1];return ā[7]:ā[7]=ā[74]),'');}function ā[43])return[ā=window.$_ts;ā[17]]);break;case 5:case 6:ā[25][ā[66]?ā[11]];ā)];}function ā+'')[ā[81],ā<=31?ā[12]|| !ā[3]^ā[61]);if(ā:0});function ā,0)-ā[35]]+1),ā]]===ā[35]]){ā+=17;ā[94]]=ā[6]}),ā<=88)ā[157]],this.ā){}}return{ā[51])<<ā[24]));}function ā[6]];}ā<=23?ā[35]]);ā(186));ā[1][1]&&ā.length===0)return new ā[2]===ā<=56?(ā[141]],this.ā[328]());ā[29]][ā[1], !ā[156],ā[77]]=ā[35];try{ā[35]]-1,ā[26]]){ā[43]]||ā[43]]);switch(ā+1);}function ā[51])):0,ā[14]&& !ā+=54:0;ā[1][1]&& !ā[36]);}function ā[13])ā= typeof(ā[13]+ā[13]-ā[13]/ā= typeof ā<=21?(ā=true):0,ā.cp;ā<=71?ā+=56:0;ā++ ])>>>0;else return ā[35]]?(ā.length=0,ā=1<<ā[6])===0;ā&& ! !(ā[74]),\"\");ā[67]),ā[91]]/ā<=29?(ā<=78?(ā[64]);}function ā:0):(ā<=79)ā[4]++ :ā[86]);ā-1].x,ā[1]++ :ā();}else{for(ā=String;ā<=70?(ā[90]];ā[19]&&ā-1]===\"..\"?(ā[18]+ā[35]]>0?ā[101]?ā<=76?(ā[35]]>0;ā[25]);return ā=0; !ā<=32?(ā[6]]];return[ā[65]))&&( !ā[89]);return ā;switch( typeof ā<=72?(ā[0]){for(ā[13]|0),this.ā], typeof ā[0])return true;else try{ā[91]])return ā<=74?(ā[18]),ā[18])/ā=Array;ā));else{ā[11]]();}function ā]<<ā]<=ā[86]+ā[8]);}ā[6]^ā<=25?ā[86]?ā[56]),ā+=-334:0;ā[15]&&( !ā[62]);return +(ā[116])||(ā[0]=arguments,ā[18]){ā];while(ā[2]?(ā[108],ā=[0,0,0,0],ā[78]?ā:false;ā:0))/ā[13];}ā+=-145:0;ā<=51?ā[47])===0){ā[34]);ā(109);for(ā++ ;}if(ā[0]];}}}function ā-30:0):0,ā[78]);return ā]='\"':ā[100];ā[100]?ā[127],ā[6]<<(ā,0);for(ā[26]);ā[68]])),ā]>>ā[26]),ā[43]]){case 0:case 3:case 4:ā[4]?(āreturn false;ā[95]);return ā[147]);}}function ā.charCodeAt(0)-97;for(ā[12]]||ā[77]],this.y=ā[84]](ā<=97?(ā[46]]&&ā={'tests':ā]):0;return ā+=83:0;ā[2]):ā<=93?(ā[1]);}function ā[117])):ā+=-6;ā=parseInt;ā):0;if( !ā[3].concat([ā))continue;else if(ā(207,1);ā[18]&&( !ā[91]]&&(ā[25]);}}function ā[11]))&& !ā[13]]||ā()]){ā[58],ā[36]||ā[22]),ā]-=ā-1; ++ā[1])+ā[54]);}function ā)):(ā++ ]={}:ā.y<0?ā<=63)ā;}if( !ā[52]]&&ā[57]+ā[57],ā[1][2]))|| !ā===0)return'';ā)):0):0,ā[7],ā[13])));ā[118]);}function ā]();}catch(ā[27]]){ā){}}return[false,null];}ā+2]));}else ā[1][0]))&&ā[53];ā<=7?ā.x||ā[128],ā[35]?( !ā[58]);}ā<=24?ā)return false;return ā+1];if(ā[90]+ā-1;}else(ā[43]]){case 0:case 3:case 4:case 1:case 2:return true;default:return false;}}function ā[34]=ā<=87){if(ā[11]));ā[42],ā[63]);return ā[25]&&ā[94]];ā[27]](0);while(ā[91]]();else return ā[46]);}function ā[9])));ā[64]);if(ā[74]+ā[33]),ā[19])return false;return true;}function ā.x)+ā,'\\n'));}function ā[44]);}function ā[70]]=ā[78],ā[25]);}function ā[47])):0,ā[78]+ā[95])||[];return[];}function ā(){}function ā[64]),ā[78]:ā+=-90:0;ā[151])/ā]:(ā-1].y),ā[41],'');ā[7]||(ā[6]);else if(ā;}return'';}function ā[6]&ā];return[0,ā[52]);if(ā()];if(ā[73]](ā[13]&&ā[70]+ā<=17?(ā<=19?(ā=':';ā+=186:0;ā[82]),ā[66]];ā.split(ā<=13?(ā]));}function ā++ ]=null;}ā[72]](ā[1][2]||ā[38]);}function ā+=-85;ā[43])+ā[43]?(ā+=-5;ā[0]]():ā[50];return ā<127?(ā++ ])&ā[6]));}function ā)return[true,ā[46];while(ā<=68?(ā[43]){ā(159);ā[0][1]?ā[66]][ā.substr(0,ā)){if(ā(72);}catch(ā===1)return ā<=62?(ā){}return false;}function ā='on'+ā):0):0):0;}catch(ā<=64?(ā[30]][ā<=60?(ā]]],ā++ ];}ā[18]||ā[1]];}function ā[89]):0,ā=[];for(;ā=Error;ā[76])!==ā[62]+ā+3],ā,true);}if(ā[35];}for(ā+3]=ā[36]|| !( !ā[16]=ā[35]]<ā<=66?(ā[16]?ā[12]](0),this.ā[35]]:ā;}return ā[47]):ā[35]]*ā[91]]());}}function ā]='';}ā[61]](),ā[83]);ā[123]&&ā<<1,ā,true);}}}catch(ā<=75?ā[24];case'boolean':case'null':return ā='//';ā[71]];ā[21])],ā[57]]){ā(18);ā?0:1))+ā[48])return 0;for(ā[1]];try{ā<<1^ā[76])return ā[87]),ā[53])|(ā[37]);}function ā[53];return ā[63]]:\"{}\");ā)return true;}function ā[2]]&& !(ā[79]);return ā[12]||( !ā]===0?(ā):0;return[ā[56]);return ā);}finally{ā[2]=(ā=0^ā;}}catch(ā[329]());ā[14])==ā[12]],'\\n');ā[24]);if((ā.substr(1)):0;return ā(new ā]?ā[78]);}function ā[74]];ā]%ā(){if(ā[19]===ā+=341:0;ā).ā[47])?(ā++ ]=true:ā(){ typeof(ā){this.x=ā(156);ā<=81?ā[77]](ā[53]);}ā[77]];ā[22]]||ā[57]]-ā[57]],ā[87]+ā[7]/(ā[49]];}function ā++ <ā]):0):0;return ā[57]]=ā[87]<ā();else if(ā[35]]);if(ā[57]];ā++ ):0;for(ā[4]=(ā<=98?( --ā[76]];ā[68]]),ā<=43?ā[15]);}function ā.length=39;ā[47]],this[ā-1]===ā[81]]+ā[112],ā().concat(ā[9]);return ā[30]]===ā[91]);return ā[2]),(ā[35]]));}}function ā={};if(ā[2];}}}function ā[96])),ā));for(ā[89]],ā,0)):0;}function ā[89]];ā[96]));ā[154],ā);else return[];}function ā]='\\'':ā(65,0,ā[47]):0,ā[47]*ā[47]/ā[47]-ā[83]],ā[26],ā++ ]=((ā[43]?ā[68]]))),ā[61]);}ā[28]];ā[53]](ā.length;return{ā=Object;ā[88]+ā=encodeURIComponent;ā[88],ā[9];break;}ā(96);ā[35]]-1)return ā[6]);return ā[43]:0):0,ā[28]?ā[28]=ā[28]:ā+=-18:0;ā[67]<=ā<=83?(ā){return;}ā[23]=ā[23]?ā[23];ā[23]+ā=String.fromCharCode,ā+=31:0;ā+=96){ā[27],ā[149];for(ā)|ā(77);}catch(ā[3])),ā[27][ā[60]?ā[87]);}ā.reverse();return ā[103];for(ā==0||ā<=35?ā='/';ā(67);ā[60])return((ā[25]:0,ā<=19?ā.id;if(ā[4])==ā=1:0;}else ā=0;}function ā,1)===ā[67]);}ā<=99?ā[64],ā[64]+ā+=220:0;ā.length-2;ā[35]+ā[4])return((ā[12]||(ā[31];}catch(ā[1]||ā[19]&& !(ā):0;}}}}function ā[32]));ā[56]],ā<=50?(ā[28]);}function ā<=54?(ā]instanceof ā+=12;ā]);}else if(ā);return;}ā);}}ā<=84)(ā<=58?(ā+=6;ā.length===5)return new ā[47])>ā[15]=ā()){if(ā<=52?(ā))continue;ā():0;return ā='port';ā.charAt(ā[3]);}catch(ā[75];ā[11]]()/ā[75],ā[11]=ā[11];ā[75]+ā+=65:0;ā[52]);return ā)):0;}function ā&= ~(1|ā[56]);}ā+=67:0;ā++ ];if((ā[9]]=(ā[6])):(ā.push(parseInt(ā='hostname';ā[68];return ā[85]]=ā<=1?(ā(201,ā[30])?ā):0;}return ā[9],unique:false});}function ā===1?ā+=-7;ā[60]]){ā[82];return ā+=299:0;ā[18]=ā[74]]/ā= -ā[20]])return ā+=-82:0;ā,''];return[ā,this[ā++ ;}return null;}function ā-1)*ā[15]);ā,true),ā[0].y):0,ā[51]);}ā[137],ā[4]?ā,value:ā&1;ā[1]=(ā(216);ā[0]++ :ā<=105?(ā[92]),ā[46])<<ā[60],1];ā[12]](0);for(ā[105]):0):0,ā[28])!==ā[92]);ā-1){ā)return false;ā<=2?(ā[88])[0],ā.y)*(ā[38]){ā<=94?ā[3]++ :ā(114);ā<=101?(ā<=8?(ā[35]])===ā<=38?ā[7]?(ā[13]];ā[7])+ā[3]);ā));if(ā[32]||(ā[7]);ā.length===8)return new ā[73]](\"id\",ā[57],{},ā[4]===0?(ā[38]),ā[1][0]||(ā[1])return;ā[92]||ā)!=ā<=90){ā[95]+ā[95],ā[1];if(ā[13]]^ā[13]][ā){case'string':return ā[95]]||ā[69];return ā[31]=ā[58]){ā[81]);}function ā)return false;else if(ā+=313:0;ā(6,ā<=36?(ā[2]++ :ā[67]);}function ā]in ā[48]};if(ā[72]]();}function ā[21]),ā[60]),ā+=-227:0;ā[19]||ā<=6?(ā[42]]('');ā==null?(ā[18],ā+=-221:0;ā<=0?(ā[42]]('\\x00')+ā)return;ā<=30?(ā+=1)ā,1):(ā[46]),ā[48]:1]^ā[13])|(ā[17]]();ā-=2)ā<=4?(ā[84];return +(ā-1,ā-1;ā[51];ā[48]);return ā)return[ā[25]&&( !ā,0)===ā(131);āreturn new ā[13];}function ā[1]===ā[23]&& !(ā===0||(ā[9]), !ā,this.x=ā[29]], !ā[79]),ā[9]];}return[0,0];}function ā[25]];ā){try{if(ā[80],0);if(ā[40]]),ā[92]^ā.y));}function ā(172);ā++ ):0;}ā().getTime(),ā;else return ā.length===2)return new ā[36]||( !ā[0]),(ā[42])return ā[50]]!==ā[8])];for(ā[45]);}ā)? !ā[150]?(ā^=ā[63]]?ā)>0?(ā[2]);}function ā[35];return ā]>>>ā[44]:0):ā.length-4;ā[8]?ā[8];ā[1])==ā[85]]==0){ā<=44?(ā:0;}catch(ā)0;else{if(ā<=42?(ā[29]+ā(){return new ā[61];ā[25]]||ā<=40?(ā<=39?ā[8]));ā[7]((ā[22]+ā[2]&&ā={ā[0]+ā=Function;ā==0){ā[22];ā[22]=ā[90]]*ā[10]])){ā[9]]:0):0;return ā[26]+ā+=49:0;ā[4]+ā){switch(ā[26]:ā);}while(ā[5]++ ;for(ā++ ]));return ā[4].cp;ā[2])if(ā+2],ā+=-84:0;ā[1],1));if(ā===250?ā[33]](this,ā)|0;}}ā[4]=1,ā+96));}ā[10])|((ā[31]];ā[20]];if(ā[30]];for(ā[25]in ā+=-139:0;ā[31]],ā[3]&&ā[1][1]|| !ā[72]](),ā.length===4)return new ā)return 0;ā[60]);}ā+=-54:0;ā[39]],ā[0]]?ā[48]],ā[9]&&(ā[5]|| !ā[0]],ā[48]]&ā[65]];ā[0].x,ā[19]);ā(arguments[ā+=2;ā[8]];ā+=2)ā[55]<=ā[9]){ā>0&&ā[32]&&(ā[4]&& !(ā+2])):(ā]='\\\\':0;return ā[9]];ā[9])if(ā]&=ā[94]);}function ā]&&ā[49]]=ā[49]];ā+=-189:0;ā[20]+( ++ā[47]],ā[97]===ā[19]=ā[56]:0):ā+=292:0;ā[25]));ā,this.y=ā[83]](0);return ā[4]],ā=this,ā+=8:0;ā=Math;ā[1]);for(ā[60]](ā[49]);}function ā<<1)|(ā===''))&&ā[26]]);}else if(ā++ );ā)): !ā()){ā=0;return{ā[42]);return ā[29]);return ā=\"\",ā[83]]===ā[1]),(ā(58);ā+=-6:0;ā[6]);}ā()).ā())/ā[35]]-1){ā<=91){if(ā[9]=1;ā))|(ā[95]),ā[18])while(ā(109)+ā[13];return ā[6]];return(ā[85]+ā[5]);}function ā+=64:0;ā[0]>>>0;}function ā&& typeof ā[41]);}function ā[42]);}function ā[31]);}function ā!=null)return ā[103],ā<=24?(ā[39]](ā[14]|| !ā[60])===0)return ā-=1:0,ā[1]:null;ā[85]);return ā[13]-(ā[31]);if(ā===251?ā[17]);}ā[0][0]&& !ā[4]=0,ā=false;ā<=22?(ā[152],ā[82]],ā[82]);}function ā[1];function ā):0, typeof ā[0])+ā[9]](ā).split(ā=1:0;ā<=20?(ā]|=ā+1),ā[11]);}function ā[58]];ā[45],ā[45]];ā(111);return ā.y||ā<=15?ā={};}ā=Date;ā.charCodeAt?ā[16]),ā={};for(;ā[52]&&ā(34);ā));return ā.length===1)return new ā[10]]){ā){case 0:ā[88]);}function ā[6];}function ā++ :0;}function ā[59]]]^ā]);}return ā<=73?(ā[19]),ā[49]+ā+=349:0;ā[82],ā[82]+ā)?0:ā=1):0;break;case 1:ā(136,ā[47]];ā[78]){ā[9]);continue;}}ā&1)?(ā[8]);}function ā>0)ā[1]?(ā[324](ā<=77?(ā[80]);return ā+=-22:0;ā[57]);}function ā[43]));ā[3]);}ā[41]];ā)||ā[34])));ā]: ++ā[41]](ā[17])[1]||'';return ā[40]],ā[17],0);for(\x00遾(\"r2mKa0\\x00\\x00\\x00[Ƙ\\x00Y[76451'%_\\nS$08L +0\\x008M 10@\\x00 00$\\x000\\x0058N0\\x0081P8T0\\x0088V0\\x008W0\\x008Y:ƒ 0\\x00  +0\\r\\x008 0 +02\\x008 0 +0<\\x008 0 +0 \\x008 0 +0L\\x008 0 8 00\\x008 0 +0\\r\\x008 +00\\x008 +(¢\\x008 +0 \\x008$ . 30]\\x00 +0w\\x00-\\x00\\x00· 7 +0.\\x00 +0 \\x008 +0\\r\\x00I2  +09\\x00 +0\\x008 +0 \\x00` +(ª\\x004 +01\\x008 0\\x007 A 0\\x00  +0\\r\\x00I`< 0\\x00  8 0 R 30H\\x00 +0+\\x0052 0\\x00 +0k\\x00 0 +0<\\x008 0 +07\\x00 0\\x00 +0 \\x00 2\\x00\\x00\\x00 &\\x00'%\\n.<+÷ K΁8  48S΁ +09\\x00'8 +0A\\x00'8F +0&\\x00'8G +0]\\x00'8E +0\\x00'8 +0 \\x0015)4 +0.\\x00*8m  30 \\x00 30X\\x008 30#\\x00\\x00 +0 \\x00 \\x000\\x00\\x008<0\\x008=0\\x008>0\\x008?0\\x008@0\\x008A0 \\x008B0\\n\\x008C0 \\x008D<\\x00 +08\\x00*8  30 \\x00 30\\x008</8\\x00\\x00\\x00Ž/8&b80\\x008 +0/\\x00418&87“8 +0\\x008&\\x00 30#\\x00\\x004@&\\x00 30#\\x00\\x008 +04\\x00 +04\\x008@8&\\x00\\x00g +04\\x002M&\\x00\\x00\\x00 \\x00[0\\x008 I=8&\\x00 8\\x00&\\x00ˆ8\\x0018180\\x0084#18\\x00 +0/\\x008.+\\x0018.$7* ;\\x00\\\"G\\x00\\x00\\x00/1\\\"81\\\"862;\\x00 30 \\x00688\\\"\\x00\\x00\\x00 +0 \\x002LLN8MML 8N\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x00$$$ $\\n$ $ $\\r$$$$$$\\x00\\x00 R 301\\x00&\\x005 +0\\r\\x00@\\x00\\x00\\x00\\x00\\x00´/80\\x008 +0\\r\\x004\\r870\\x00L80\\x00\\x00 +0+\\x00!0M 80\\x000\\x00\\n 8<0N\\n80\\x008 +0\\r\\x0043\\x000\\x004 \\x00f8\\x00 +0\\x00  +0\\x0087=\\x00\\x00 ²&\\x00k8\\x000\\x008&\\x00G\\x00 +0\\r\\x00R&\\x00G\\x00T8&\\x00 30 \\x00&\\x00 30 \\x0058\\x00$18&\\x00)–08/80\\x008 +0U\\x004@&\\x00G\\x008&\\x00G\\x008 +0\\r\\x00RT8&\\x00 30 \\x00827J\\x00\\x00\\x00, . 30\\x00\\x00\\x008 . 10$\\x00\\x008 . 10R\\x00\\x008&\\x00'%\\n.<+ +06\\x000' 8\\\"$\\\" $\\\"$\\\"$\\\"\\x00\\x00\\x00o6j6 30\\x00\\x008O 30,\\x00\\x008 30N\\x00\\x008G0#8  +0\\x00\\x00#8$\\\"< 30,\\x00 \\x008 30N\\x00 8< . 30\\x00\\x00 8\\x000$X0\\x00\\\"80(8\\x00?8.?  30!\\x00\\x00\\x00\\x00!$X0\\x00\\x000\\x00\\x005.?8  30!\\x00\\x00\\x00\\x00\\n\\x00\\\"\\\"\\x00\\x00E +0'\\x008?Ē&\\x00\\\"8 00B\\x00\\x00 00B\\x00\\x00 )0\\x00X\\n +0%\\x00%< +0j\\x00%\\x00\\x00\\x00#6:+ . 10R\\x00 \\x008 . 10R\\x00\\x00 30\\n\\x00 8\\x00\\x00ƒ 48&\\x00 30\\x00=D&\\\"8&\\x00\\\"8(8\\x00& & 30<\\x00\\x00 *& 30<\\x00& 30<\\x00\\x005.?8</&\\x00#& & 30<\\x00\\x00 *& 30<\\x00&\\x00#& 30<\\x00\\x005.?8&\\x00#&\\x00#8:9\\r.P:6 30!\\x00\\x00/&\\x00!&!\\r.B:±&& 305\\x00\\x00D& 305\\x00\\x00 . 106\\x00\\x00]& 305\\x00\\x00 10<\\x00 10\\x00\\x00 306\\x00-<& 305\\x00\\x00 10\\x00\\x00 306\\x008<_&:?&\\x00 305\\x00\\x00&\\x00 305\\x00\\x00 10<\\x00 10\\x00\\x00 306\\x00-<' . 106\\x00' 306\\x00>`>58<& 305\\x00 . 106\\x00' 306\\x00>`86 30!\\x00\\x00/&\\x00!&!8 . -05\\x00 \\x008\\x00\\x006 30W\\x00 \\x005 30W\\x00 \\n\\x00&\\x00 -0\\\"\\x00\\r8\\\"&\\x00 306\\x00\\r\\x00\\x00ã&\\x00 30#\\x00\\x000\\x00C6W\\x00+< 30/\\x008&\\x00`³&\\x006V\\\"\\r8 . /0\\x008 . )0D\\x00'6 305\\x00\\x00>56 30\\x00\\x00>6 10\\x00\\x00>n8 J -0K\\x00''6KͿ>§>΂>Ϳ'6 20J\\x00\\x00>§>΂>ʊ'6 B0\\n\\x00\\x00>§>΂>ͪ'6 30+\\x00\\x00>§>΂>+'6 )0=\\x00\\x00>§>΂>ȝ-W\\x00<6W\\x00\\x00\\x00 20B\\x00\\x00\\x00\\x00 . 10$\\x00\\x00 . 10$\\x00 \\x008\\x00j&\\\"8&\\x00\\\"8(8\\x00&& 10C\\x00\\x00 00!\\x00X & 30<\\x00\\x00 *& 30<\\x00& 30<\\x00\\x005.?8&\\x00&\\\"88.#\\x00\\x00Y&\\x00&O0\\x008&\\x00 30#\\x00\\x004=3333&\\x00\\x0080\\x00\\x000\\x00?Ē< 10P\\x00(8 30\\x00&57J\\x00\\x00J&\\x00N&\\x00\\\"8&\\x005&\\x009&\\x003V•80\\x00\\x000\\x000\\x00&\\x000\\x00&\\x00\\\"\\x00\\x00  +0P\\x00#&\\x00 +0\\x00\\\"\\x00\\x00  +0P\\x00#&\\x000\\\"\\x00\\x00 &\\x000\\x00\\\"\\x00\\x00\\x00  +0F\\x00#8 <9\\r \\x00 +0=\\x00=:c/ 00Y\\x00! 50\\x00! B0\\x00! 20A\\x00! /0\\x00! 20R\\x00! -0H\\x00! -0P\\x00! )0\\x00! )0L\\x00! )0Y\\x00! )0F\\x00! /0D\\x00! 50W\\x00!8 . 30\\x00 \\x008\\x00D0\\x0086 30#\\x00\\x004&\\x006\\x00X &\\x00<\\\"Q+& &\\x00&<&\\x00<\\x00\\x00©  30 \\x00&\\x00& 30#\\x00\\x008 30#\\x00\\x00 +04\\x004 +0 \\x00 10]\\x00&()?Ē3Tii+8&A0\\x00* A&A*3 +0/\\x00 20*\\x00&A -0\\x00A?ͼ&()  +0 \\x00#:?Ē2 +0 \\x00 10]\\x00&()?Ē\\x00\\x00s< 30/\\x008&\\x00`\\r&\\x00&V\\\"\\r<R&*& +0:\\x00=?&\\x00Œ 30#\\x00\\x0086C) +00\\x00 60 \\x00 20\\x00&()  +0 \\x00#:?Ē&\\x00\\x00\\x00ʠ&\\x00 30\\x00& 30\\x00\\x008&\\x00 10\\x00& 10\\x00\\x008&\\x00 30Q\\x00j8&\\x00 -0\\x00&\\x00J>8&\\x00 30\\x00\\x00 10;\\x00= h& 307\\x00\\x00 30#\\x00\\x000\\x00  +0\\x00\\x00#K&\\x00 307\\x00& 307\\x00\\x00& 30\\x00\\x00&\\x00JV\\\"83$$&\\x00 30\\x00 ^ 10\\x00&\\x00 307\\x00\\x0058&\\x00 30\\x00j8+&\\x00 30\\x00& 30\\x00\\x008&\\x008?Ē=ƍ& 30\\x00\\x00 4=9 & 30\\x00\\x00?Ē=9& 30\\x00\\x00 306\\x00=ţ& 307\\x00\\x00& 30\\x00\\x00=8& 307\\x00\\x00 30#\\x00\\x000\\x00  +0\\x00\\x00#IJ&\\x00 307\\x00& 307\\x00\\x00& 30\\x00\\x00&\\x00JV\\\"8&\\x00 30\\x00&\\x00 307\\x00\\x008& 003\\x00 /0$\\x0058& 30\\x00\\x00 4=9 & 30\\x00\\x00?Ē=* 30-\\x00 60[\\x005 +01\\x00*9 30-\\x00 10Z\\x005 +01\\x00*  . 50\\x00\\x00A\\x00 /0H\\x00&\\x00 307\\x00\\x00 10Z\\x008 30L\\x00 /0\\x005 30#\\x00\\x000\\x00= &\\x00 30Q\\x008<U . 30\\x00\\x00K . 30\\x00 )0\\x008 60V\\x008 /0\\x00&\\x00 307\\x00\\x00\\n 60N\\x00\\x00 60%\\x00\\x000\\x00= &\\x00 30Q\\x008+3&\\x00 307\\x00& 307\\x00\\x0083&\\x00 30\\x00& 30\\x00\\x0083&\\x00 30Q\\x00& 30Q\\x00\\x008\\x00\\x00Ā 30\\x008/ /0%\\x00!8/ -0X\\x00! 30\\x00!8&\\x0010\\x008 30#\\x00\\x004}&\\x00\\x00 &\\x00\\x00\\x00&\\x00\\x00 W\\x00 30\\x00=&\\x00\\x00\\x00 10;\\x00=)3\\\"\\\"\\\"&\\x00 30\\x00& 30\\x00\\x008&\\x00 307\\x00& 307\\x00\\x008<&\\x00&\\x00\\x00\\x0087Š0\\x008 30#\\x00\\x0047&\\x00\\x00 &\\x00\\x00\\x00&\\x00\\x00 &\\x00&\\x00\\x00\\x0087D\\x00\\x00\\x00©/ 00 \\x00! 00\\x00! 50#\\x00! 003\\x00! )0J\\x00! )0*\\x00! 000\\x00! 10E\\x00! 20L\\x00! -0<\\x00! 00K\\x00! /0;\\x00!80\\x008 30#\\x00\\x004K\\x008&7&\\x008&(&\\x00  30 \\x005&\\x00\\x008&\\x00  30 \\x005&\\x00\\x0087X\\x00 \\x00\\x00³K#c\\x00R;;\\x00\\r8<E;;\\x000\\x00\\x0058<3;;\\x000\\x00\\x000\\x008<;;\\x000\\x00\\x000\\x000\\x00\\\\8<\\x00;\\x00 00\\x00=+;\\x00 30\\x00; 30\\x00\\x0083;\\x00 30\\x00; 30\\x00\\x008;\\x00 000\\x00=9 ;\\x00 10E\\x00= ;\\x000\\x00\\x008.8\\x00\\x00\\x00k&Ze3``` 10\\x00=9 307\\x00=\\n&\\x00?Ē8<B 30\\x00=\\n&\\x000\\x008<. 50T\\x00= &\\x00j8<&\\x00 303\\x00=< &\\x00&\\x008\\x00\\x00\\x00Ï$X&\\x00&0\\x00\\x008..&\\x00&0\\x00\\\"8.J&0&\\x00J(8&\\x00& 30#\\x00\\x00 +00\\x00a&0\\x00<8.1&\\x00&)\\\"&\\x001& 30;\\x00\\x00 30\\x00  & 30;\\x00 \\x008&  30!\\x00&&<M& 30#\\x00\\x00 +0\\x00=%& 30,\\x00&0\\x00\\x00&0\\x00&\\x001&0\\x00&0\\x00B<& 30,\\x00&0\\x00\\x00&0\\x00&\\x001\\\\\\x00;\\x00 30;\\x00\\x00;\\x00 30;\\x00\\x00 30 \\x00;\\x00\\n\\x00\\x00^$X&\\x00J&\\x005.78& 00 \\x00 10\\x00\\x00-&\\x00&)\\\"&0\\x00&\\x00J&0\\x00\\x005.?8&  30!\\x00&&-<& 30N\\x00&0\\x00\\x00\\n\\x00\\x00\\x00Ž'88/8.M?Ē8.8&\\x00)\\\"&\\x00,\\\" 30,\\x008 30N\\x008 20T\\x00 )0\\x00Y8 20$\\x00 20+\\x00Y8&\\x00 30&\\x008&\\x00 30\\x00\\x00 30\\x00  &\\x00 30\\x008E8\\\"6;\\x00P\\\"8;\\x00 30&\\x0068;\\x00 30\\x00\\x00 30\\x00 \\r;\\x00 30\\x0068\\x00\\x006;\\x00P\\\"\\x00\\x00h6 30\\x00;\\x00 30\\x00\\x0086:6;\\x00)\\\"8\\\"6 30\\x00\\x005  +0\\x00\\x00#6 30\\x00\\x00 30 \\x006&\\x00-<6 30\\x00\\x00 30 \\x00\\x00&\\x00-\\x00\\x00}6 30\\x00;\\x00 30\\x00\\x0086 30\\x00\\x00 +0/\\x00=6:6;\\x00)\\\"8\\\"6 30&\\x00\\x009  +0\\x00\\x00#6 30&\\x00\\x00 30 \\x006&\\x00&[<6 30&\\x00\\x00 30 \\x00\\x00&\\x00&[\\x00\\x00\\x00\\x00ħ3jjj . 30\\\"\\x00\\x00 30\\x00  . 30R\\x008 . 103\\x00\\x00 . 103\\x00\\x00 30\\x00\\x00 30\\x00\\x00. . 30R\\x00\\x00 30\\x00\\x00 30\\x00 \\x008 . 30R\\x00\\x00 30\\x00\\x00 30'\\x00 8 . 30\\x00\\x0083,, . 30\\x00\\x00\\x00 30\\x00 . 30R\\x00\\x008 . 30\\x00\\x00\\x00 30\\x00\\x008 . 30\\x00\\x00\\x00 30\\x00\\x00 30,\\x00 8 . 30\\x00\\x00\\x00 30\\x00\\x00 30N\\x00 8 . 103\\x00\\x00 . 103\\x00\\x00 30\\x00\\x00 30\\x00\\x00. . 30\\x00\\x00\\x00 30\\x00\\x00 30\\x00 8 . 30\\x00\\x00\\x00 30\\x00\\x00 30'\\x00 8\\x00ƒ\\x008\\x00\\\"8\\x008.:\\x00/8.M\\x00?Ē8.88 30&\\x00 \\x008 30E\\x00 8 30\\x00 8 10\\x00 8 10\\x00 8 300\\x00 8 10\\x00 8\\x00)\\\"\\x00,\\\"\\x00f6 30\\x00\\x00 30\\x00\\x008\\x00 30\\x00\\x000=8\\\"\\x00 30\\x00\\x00 +0/\\x00=6:6\\x00)\\\"8\\\"6 30&\\x00\\x006 30&\\x00\\x00 30 \\x006\\n\\x00\\x0058\\\"6 30\\x00\\x00 30\\x00\\x0086 30E\\x00\\x006 30E\\x00\\x00 30 \\x006\\n\\x00\\x00F6 30\\x00\\x00 30\\x00\\x0086:6\\x00)\\\"8\\\"6 30\\x00\\x006 30\\x00\\x00 30 \\x006&\\x00-\\x00\\x006 10\\x00\\x006 10\\x00\\x00 30 \\x006\\n\\x00\\x00B6 30\\x00\\x00 30\\x00\\x0086 30\\x00\\x00 30\\x00\\x0086 10\\x00\\x006 10\\x00\\x00 30 \\x006\\n\\x00\\x00B6 30\\x00\\x00 30\\x00\\x0086 30\\x00\\x00 30\\x00\\x0086 300\\x00\\x006 300\\x00\\x00 30 \\x006\\n\\x00\\x00 6 10\\x00\\x006 10\\x00\\x00 30 \\x006&\\x00-\\x00\\x00\\x00“ . 30\\\"\\x00\\x00 30\\x00=+3\\x00 . 30\\\"\\x00\\x008.K\\x00 . 30\\\"\\x00\\x008.K\\x008\\x00K 10\\x00 \\x008\\x00K 300\\x00 8\\x00K 30\\x00 8\\x00K 30E\\x00 8\\x00K 10\\x00 8\\x00K 30;\\x00 8\\x00K 10\\x00 8\\x006 10\\x00\\x006 10\\x00\\x00 30 \\x006\\n\\x00\\x006 300\\x00\\x006 300\\x00\\x00 30 \\x006\\n\\x00\\x006 30\\x00\\x006 30\\x00\\x00 30 \\x006\\n\\x00\\x006 30E\\x00\\x006 30E\\x00\\x00 30 \\x006\\n\\x00\\x006 10\\x00\\x006 10\\x00\\x00 30 \\x006\\n\\x00\\x006 30;\\x00\\x006 30;\\x00\\x00 30 \\x006\\n\\x00\\x006 10\\x00\\x006 10\\x00\\x00 30 \\x006\\n\\x00\\x00\\x00•\\x00:: . 30\\\"\\x00\\x00 30\\x00\\x00 30\\x00\\x00 30!\\x00\\x00-+0\\x008\\x008 . 30\\\"\\x00\\x00 30\\x00\\x00 30\\x00\\x00 30 \\x00\\x00:0\\x00\\x000\\x00_'8 30Z\\x000\\x00\\x008 30\\x008 10\\x008\\x00M 30\\x00\\n!6 30\\x00\\x00 30\\x00\\x0086 30 \\x006&\\x00-\\x00\\x00\\x00¬\\x00:: . 30\\\"\\x00\\x00 30\\x00\\x00 30'\\x00\\x00 30!\\x00\\x00-+0\\x008\\x00M 30#\\x00\\x004q\\x00M\\x008 30Z\\x00\\x000\\x00\\x00= 30\\x00\\x000\\x00=B . 30\\\"\\x00\\x00 30\\x00\\x00 30'\\x00\\x00 30 \\x00\\x00:0\\x00\\x00 10\\x00\\x000\\x00_\\x00M 30=\\x000-+7€\\x00\\x00\\x00\\x00:P\\\"\\x00\\x00\\x00\\x00:P\\\"\\x00\\x00\\x00^0\\x008\\x008:8 30\\x000\\x00\\x000\\x00['8 30Z\\x000\\x00\\x008 30\\x008 10\\x008\\x00M 30\\x00\\n6 30 \\x006&\\x00-\\x00\\x00\\x00p\\x00:80\\x008\\x00M 30#\\x00\\x004U\\x00M\\x008 30Z\\x00\\x000\\x00\\x00= 30\\x00\\x000\\x00=& 30'\\x000\\x00\\x00 10\\x00\\x00-\\x00M 30=\\x000-+7d\\x00\\x00Ž +0 \\x0015)4&\\x00\\\"\\n=&&:&\\x00C/8&:&& 30\\x00=9 & 60(\\x00=9 & 304\\x00=;?Ē&8 +06\\x000\\x00' 8& 30#\\x00\\x00C< 30/\\x00&& +00\\x00V*8&\\x00\\x00 \\x00)&\\x008 $' >&\\x00(?7PB\\nA*Ĝ3DEE;\\x00 30\\x00 ?Ē2W\\x00; +0'\\x00# . /0\\x00;\\x0058W\\x00;\\x00e8\\\";\\x006-8W\\x00+ +0\\x00\\r6j=9 6L +0/\\x00+6\\\" +6N8;\\x00:8;90\\x008W +02\\x00%W  +0\\x00\\x00# +0<\\x00%W 30#\\x00\\x000\\x00J \\x00 \\x00 +0\\r\\x00Cn868.N  +06\\x00#:n86 30\\x008.\\\"< +0h\\x00%W118\\\"\\n6;6\\n0P)(8W\\x00\\x00\\x00\\r6&\\x006\\nV\\\"\\x00\\x006\\n 4*\\x00\\x00¯&\\x00 30\\x00\\x008  30 \\x00&\\x00.581\\\" 500\\x00 G0#  +0\\x00\\x00#6 6L +0\\x0046\\\" U66\\x008.*<F 4=9j=9?Ē= 306\\x008 306\\x00=&\\x008?Ē=9  10;\\x00=  \\x008.*?Ē\\x00\\x00<1\\\"G0#  +0\\x00\\x00#6 6L +0\\x0046\\\" \\x008.*\\x00\\x0066\\x00\\x00\\x00\\x00\\x00J +0\\x00*8 30 \\x00A 30\\x00B 30\\x00B812 , 30<\\x00\\x00$< . 10K\\x00,F+\\x00' +0 \\x00O +09\\x0040\\x00);&\\x00;\\x00)9&\\x00;)m\\x00\\x00\\x00   +09\\x00/1\\\"!., \\x00\\x00\\x00B , 30\\x00 10\\x0058 10:\\x0068 , 30<\\x00\\x00 30\\x00\\n 30\\x00 30&\\x00 \\x00Y8\\x00S\\x00 30\\x00\\x00:9\\x00 30\\x00\\x00 60\\x00=9\\x00 30\\x00\\x00 /0!\\x00=(6 10B\\x00\\x00 30 \\x006\\n6 30\\x006 30&\\x00jY8\\x00\\x00\\x00 +0\\x00'8Q1>8R +0&\\x00\\r\\x00\\x00\\n1>QR\\x00\\x00\\x00C )0<\\x00@ /09\\x00881? 10\\x00\\x00 30\\x00= 50\\x002&\\x00'%@\\n.< \\x008\\r+\\x00Q +0=\\x00*8 30\\x00`@ 10\\\\\\x008\\\"< @ 60&\\x008\\\"$\\\" 1\\\" 8\\\"H)\\\" \\x008\\r\\x000&\\x0081\\\" 8;\\x0005.!81g0P 86)\\\"\\x00\\x00D$\\\"\\n +0 \\x00\\r , 30C\\x006iF , 10&\\x006iF , 10W\\x006iF6 +(¤\\x00)8\\x00\\x00 +0+\\x00\\r\\x00\\x00'&\\x00 30U\\x00\\x008 +02\\x00=9 +0&\\x00= +0\\x00\\r\\x00\\x00 +0/\\x00\\r\\x00\\x00 +00\\x00\\r\\x00\\x005 +0\\x00'8&\\x000&\\x000C&\\x0008Q&\\x00&8R< 8Q1>8R\\x00\\x00$3 . 00\\x00\\x00 . 10\\x00\\x00= , 30^\\x0068\\x00\\x00Ë3ÆÆÆ . 00\\x00\\x00 . 10\\x00\\x00=³  30 \\x00 , 30^\\x00\\x006 +01\\x00=8\\x00V8 )0;\\x00 10 \\x00\\r +0@\\x00\\n , 30^\\x006 00(\\x00 00.\\x00\\r8:9$ \\x00: , 30^\\x00\\x00 30#\\x00\\x0009 .1C\\x00 60,\\x00\\x00+0 )0\\x00)  +0 \\x00#:  +0'\\x00# . 60E\\x00 )0\\x00\\n<\\x00\\x00\\x00./8 R 30\\x00Q5)= R 30\\x00R5)=S)f\\x00\\x00L3EEE6‹8  30#\\x00\\x000\\x00+1g\\\"8U'W0W&ŽH'\\x00\\x00j&\\x00 +0S\\x00 81P8 00(\\x00V 00.\\x00\\r8  30 \\x0066 30#\\x00\\x000 10\\\\\\x00= 50\\x0020 +0\\x00' 50\\x002\\x00\\x00?Ē\\x00\\x00& , 30^\\x00&\\x00 30/\\x00&1\\\" 50)\\x00E\\\"\\r8\\x00\\x00”&9?Ē8S . 30\\x00\\x008 102\\x00\\x008:\\\" 10\\x00\\x00 30\\x00=\\n 30S\\x008< 30K\\x008  30 \\x00&\\x00 30\\x000\\x008:0 )S 30#\\x00\\x008 +0Y\\x0040\\x00 30X\\x002S2S\\x00\\x00\\x00\\x00\\x00<S6  30 \\x00S 30X\\x0080\\x008 30#\\x00\\x004&\\x00\\x00=7\\x00\\x00*&\\x00&\\x00 30#\\x00\\x00 +04\\x00@0\\x00*&\\x0078\\x00&\\x0068\\x00&\\x00\\x00\\x00Æ08& \\x00:(&\\\"8 30#\\x00\\x00& 30#\\x00\\x004\\r +0 \\x0088&8&\\x00:/8\\x00/!8&\\x00)T +0 \\x008)T& 30#\\x00\\x00 +04\\x00a & +04\\x00,l&1oŠ)T&8E8/8)=)7&\\n&8N\\x00\\x00G&\\x00k8&&‘8:  30 \\x00 +0/\\x005E8UW* \\x00\\x00.&\\x00&!8 c80* +0 \\x00*+I\\x00\\x003&\\x00&&&P$8$u\\x00\\x00 Í&\\x00&!8:+c80* +0 \\x00*+I8I8I81o‡8 +04\\x00,l +0 \\x00!8&U¥Kc8I80\\x008  & 30#\\x00\\x004'3 & \\x008\\n\\nO U\\n\\n.F 74R\\x00\\x00\\r\\x00Œ/8\\n/8 '%E<!,8 $ . 10K\\x00,F  ¤ œ   & ¦ : › 8 ; ™ 2 Ÿ ž   ¢ 3 ?6\\n 30\\r\\x006 580\\x008 30#\\x00\\x004\\r\\x00h.%70\\r6 +0$\\x00)8\\x00\\x00B$\\\" 6\\n 30\\r\\x006 580\\x008 30#\\x00\\x004\\x00@8 4 $7&$u\\x00\\x00 6\\n 30\\x00&\\x00\\n\\x00\\x00 6 30\\x00&\\x00\\n\\x00\\x00 6 1Pb)—\\x00\\x00&&6 30\\r\\x00/&!58<6 8&\\x00\\\"\\x00\\x00¡/80\\x008& 30#\\x00\\x004ˆ&\\x0084&\\x00#r3mmmj8)0\\x00  00\\x00O;8:1/8\\n.; 30#\\x00\\x00)0\\x00 ) 00\\x00O,@ 30#\\x00\\x00O)9)T7•\\x00\\x00f , 30L\\x00 10\\x0058 30#\\x00\\x00080\\x00a5\\x00 308\\x00 00\\x005 005\\x00=\\x00 -0:\\x00\\x00 30 \\x00\\x00\\nX< +0 \\x0015)4\\x00\\x00\\x00\\x00&\\x00'%@\\n.<+\\x00\\x00\\x00( +00\\x00'0\\x008  +0%\\x00# +0:\\x008')A\\x00\\x00\\x00\\x00V +0 \\x00t80\\x00t8?$1?8 30 \\x00 10\\x00\\x00 10F\\x00 10L\\x00\\x00B8 )<¶1? 30@\\x00\\x00 30\\x00h0\\x0081? 30Y\\x00\\x008&\\x00 30\\x00h0\\x008=m .1C\\x008 30\\x00\\x008  30 \\x00 10\\x00 +01\\x00*99  30 \\x00&\\x00 30\\x00 +01\\x00 \\n 30?\\x002\\x00< 30\\x002\\x00D 30/\\x001P2\\x001? 10 \\x00&\\x00\\n\\x00\\x00– , 30\\x00 10*\\x0058 30I\\x00 10C\\x00 /0)\\x00- 50O\\x00&\\x008 , 30\\x00 10M\\x0058 30 \\x00<8 10G\\x00&8 30\\x00\\n08.- 30>\\x00\\x00 101\\x00 10 \\x008 , 30<\\x00\\x00 30\\x00\\n 10^\\x00h\\x00\\x00\\x00u&\\x00e8j L +0 \\x00=9L0=9\\nL +0/\\x00=C&/?Ē 9\\nC 30\\x00=D=//<C<0\\x000\\x000P)(&\\x00\\x00\\x00\\nė$X&\\x00N8&\\x00\\\":8&\\x006 +0\\r\\x00% +0%\\x00% +0j\\x00AH +0 \\x008& +0%\\x00#0%,8ša¡£E8&:1188& +0h\\x00#:?Ē8<?Ē8&&&Pr8  .! 0#P 8< 30/\\x008 30?\\x008?Ē8 &\\x00L +0 \\x00=&\\x00G2 a&\\x00/2 ' (< 30/\\x00'&A\\x00\\x00(&\\x00 40\\x00&&Pr8   +0/\\x00.! 8\\x00\\x001˜8&\\x00& 4/!P#\\x00\\x00Æ&\\x00:&\\x00&\\x00 O 30Y\\x00\\x00 30 \\x0005= &:< 30/\\x008&\\x00 30.\\x00 30?\\x0058\\x00/80\\x008&\\x00 30#\\x00\\x004>&\\x00\\x008M?Ē 30)\\x00 30#\\x00\\x0058<  30\\x00\\n7K+82\\r 30\\x002\\n 30*\\x00 30?\\x005\\x00\\x003ŠŠŠ&\\x00?Ē=&\\x00& =9& 4=9 & 10V\\x00 &\\x00e8&j=&\\x00&L +0/\\x00a&.&D=6 30 \\x00&N&\\\"&/\\\\8&L0=< 30 \\x00&G&.\\x00\\x00/&\\x00\\\"$&\\x00\\\":8,8&\\x00Ca&\\x00/&\\x00C\\x00\\x00#&\\x0008+8AA<\\x00<\\x00\\x00\\x00 &\\x00:<­\\x00\\x0061P8T8T<T7T +0\\x00#0\\x00d1¨ +(¦\\x00 +0\\x00 \\x00\\x00\\x00%'8&\\x00' +0 \\x00O04 +0 \\x00)%;\\n.E+6\\\"\\x00\\x00>&\\x00 30\\x006 +0x\\x00*\\r6 +05\\x00*\\r6 +03\\x00*\\r6 +02\\x00*\\r_\\x00\\x00\\x00Œ&\\x00 \\x008.\\x00&\\x00 8.&\\x00 8.&\\x00 8.\\n&\\x00 8.&\\x00 8.&\\x00 8.&\\x00 8.&\\x00 8.&\\x00 8.&\\x00 \\n8.\\r&\\x00 8.&\\x00 8.&\\x00 \\r8. &\\x00 8.&\\x00 8.&\\x00 8.&\\x00 8. &\\x00 8.&\\x00 8.$&\\x00 +0 \\x0040&\\x000\\\"&\\x00 +0 \\x00\\\"\\x00\\x00&\\x00 +0 \\x0040&\\x00&\\x000\\\" \\x00\\x000\\x00808&\\x004\\n2Q\\x00\\x00 +0\\x008\\x00 +00\\x008 .j&\\x00\\x00\\x00 ,0\\x00<0\\x00\\x00 , 30\\x00 30P\\x005 +0r\\x00< +0=\\x00\\x00\\x00 \\x00: . 30O\\x00\\x00: +0\\x00 +0b\\x00\\x00\\x00U08\\x00 +0 \\x008 +00\\x008 .1C\\x00 30\\x00\\x00 30\\x00\\\"&\\x00&&& && +0 \\x00 +0/\\x00\\\"&\\x00&& \\x00\\x00 +0=\\x00\\\" +0\\x00\\x00\\x00 +0\\x00\\\" +00\\x00\\\" +0 \\x00 \\x00\\x00 +0\\x00\\\" +00\\x00I\\x00\\x00 +09\\x00\\\" +0/\\x00\\x00\\x00 +04\\x00\\\" +0/\\x00\\\"0\\x00\\\"\\x00\\x00% +0\\x008\\x00 +00\\x008 . 10\\x00\\x00j&\\x00\\x00\\x00 . 10\\x00\\x00 +0=\\x00<0\\x00\\x00 , 30\\x00 10*\\x005 +0r\\x00< +0=\\x00\\x00\\x00 \\x00: . /0.\\x00\\x00: +0\\x00 +0b\\x00\\x00\\x00X08\\x00 +0 \\x008 +00\\x008 .1C\\x00 30\\x00\\x00 30\\x00%&\\x00&&& && +0 \\x00 +0/\\x00\\\"&\\x00&\\x00&& \\x00\\x00 +0\\x008\\x00 +0=\\x008&\\\"&\\x00\\x00\\x00 +0\\x00\\\" +00\\x00\\\" +0 \\x00  +0\\x00\\x00\\x00 +0\\x00\\\" +0/\\x00I\\x00\\x00 +09\\x00\\\" +0\\x00\\x00\\x00$ +04\\x00\\\" +0/\\x00\\\"0\\x00\\\"0 +0\\x00#\\x00\\x00\\x00 \\x00!&\\x00' +0&\\x00O04 +0_\\x00)%;\\n.E+ \\x00: 10\\x00;8\\\"$\\\"\\x00\\x00P \\x00+0\\x008&\\x00 30#\\x00\\x008&\\x00)96\\r0%&\\x006)f1\\\"8 +0 \\x00%&\\x00)m&\\x008\\x00\\x00 . 10U\\x00 )0\\x00?Ē&\\x00[\\x00\\x00* . 00\\x00\\x00\\r . 00\\x00\\x008<3  -0)\\x00S8\\x00\\x00/?Ē83\\\"\\\"\\\" . 00\\\"\\x00\\x00\\r . 00\\\"\\x00\\x008< 50@\\x00S8\\x00\\x00\\x00p 10\\x00;8\\\"6: +0n\\x00*8\\\"6\\r0 10\\x006,@31\\\"88\\\"0 10\\x00,@ . 50\\x00 \\x008 . 50\\x00\\x00 . 50\\x00h\\x00\\x00P . 10U\\x00\\x00+ . 50\\x00\\x00 60!\\x008'808/8 . 10U\\x00 \\x008 . /0I\\x00 8 . 20 \\x00 8 \\\"\\x00Æ6:9 , 30\\x00 20X\\x0058\\\"6 30>\\x00\\x00 /0S\\x00 -0!\\x008 , 30%\\x00\\x00 30\\x006\\n?Έ\\\"G /04\\x00\\x00V 10 \\x00\\r8'8 20^\\x00&\\x008 108\\x00&8 -0*\\x0086&866 10:\\x00 )0,\\x00 ^ 30T\\x0058<6 30\\x00\\n6 10:\\x00 B0\\x008\\x00\\x00 ^ 30T\\x00658/8\\\"\\x00\\x006&\\x00\\x008 &6&\\x00^\\x00\\x00&\\x008\\\"0 10\\x00&\\x00,@ +0\\r\\x00\\r\\x00\\x00\\x00 &&\\x00%\\x00\\x00\\x00¨V+8V0\\x00)A K\\x00K8‰ 10\\x00\\x008:+ 30\\n\\x00\\r8  30 \\x00?΃8 10=\\x00\\r8?Ē=  30#\\x00\\x000\\x00  10=\\x00\\r8  30 \\x00 )0\\x00 +01\\x00 9\\n )0A\\x00M9 /0\\x00=8V\\x00\\x00\\x00n . 10\\x00\\x00 30G\\x00 . 10\\x00\\x00 30H\\x00\\r +0'\\x00 58&\\x00 30\\r\\x001>°58\\x000\\x008&\\x00 30#\\x00\\x004\\r&\\x00g7 +0 \\x0015)4&\\x008&\\x00\\x00\\x00\\nü&\\x00 30 \\x000\\x0058 30#\\x00\\x00 +0\\x004+ 10=\\x00\\r80\\x008 30#\\x00\\x0084 Gg 30#\\x00\\x00 +0/\\x0081> 30 \\x005ª0\\x00\\x008W8W 30 \\x000\\x008 +(«\\x00 . 20-\\x00 )0S\\x0058I 50[\\x00 8  30#\\x00\\x0080\\x0084 G\\x00T8 +0\\r\\x00 )4\\x00\\x00\\x0000\\x0081®8$\\r&\\x00' +0.\\x00O040\\x00)%@;\\n.E+$\\\"\\n$\\\"$\\\" $\\\" $\\\"\\x00\\x00q0 +0\\x00'd/ 10\\\"\\x00! 10T\\x00! 10?\\x00! 30C\\x00! 00\\x00! 00F\\x00! 10&\\x00! 10W\\x00! 10M\\x00! 50\\x00!80\\x008 30#\\x00\\x004 ,\\x006 ,F7\\x00\\x00»6: +0-\\x00*8 +0,\\x00*8 %\\x00 30\\n\\x00\\rE80\\x008 L 30\\x00\\x00 30\\n\\x00\\x00 30!\\x001¶58 30#\\x00\\x00 +0\\x00IH8 30)\\x00 E8M +0\\x00#8\\\" +0 \\x0015)4 +0/\\x006)4&\\x00 )=&\\x00W)=&\\x006)j&\\x006)j\\x00\\x007 K΀80\\x00 +0X\\x009 0\\x00 +(§\\x00\\r \\x00:9 \\x00 +0+\\x0000)4\\x00\\x001? 30@\\x00\\x00 60S\\x00M:\\n O8. ,8O\\x00\\x00 . 10O\\x001²58698\\\"\\x00\\x00U\\x00\\x00!\\x00V8$\\\"69\\r\\x00V +0\\x008\\\"\\x00\\x00#0 +0\\x00'6 +0|\\x00)86 +(©\\x00)8\\x00\\x000 +0\\x00' 6 +0M\\x00)8\\x00\\x00\\x00r \\x008\\\"/6!6!6! \\\\!8 \\r \\x00 \\x00 +0\\r\\x00C: 30\\x00 . 10\\x00\\x00\\n/80\\x008 30#\\x00\\x004\\x008 30\\n\\x00\\rE8Q,\\x00E3@@@0\\x0086 30#\\x00\\x004-6\\x008 30\\n\\x00\\rE86\\x00 8\\\"Q;\\x00\\x00\\x00 \\x008X\\x00\\x00(61\\\"<1\\\\\\\"8\\\"69 \\x000\\x00A::8\\\"\\x00\\n 4Y\\\"8\\\"\\x00\\x00v0 +0\\x00'i S . 10O\\x00\\x00)\\\" L . /0O\\x00\\x00)\\\" \\x00:9 \\x00 +0\\r\\x00 A . 00\\x00\\x00)\\\" ¬ . 30]\\x00\\x00)\\\"$\\\"6 \\x00 49 \\x00 +0\\r\\x0060\\x00)A\\x00\\x00\\n ,8. O8,\\x00\\x00I3DDD $ 30!\\x00&\\x00581¯(8&\\x00 303\\x00 9  30\\x005:9 & 4*&\\x00& 8\\\"\\x00\\x00\\x000 +0\\x00' \\x00\\x00$1\\\\;\\x008 +0w\\x0060\\x00)A1\\\\\\\"\\x00\\x00\\x00KZ 4*Z333 . 30\\x001p8 .1C\\x001q\\x0081«\\x0081©\\x008 4 YZ\\x00\\x00 \\x00@0\\x008?Ē80\\x0080\\x0080\\x0080\\x008&\\x00' +00\\x00O040\\x00)%@;\\n.E+E \\x00:$\\\"$\\\" , 30\\x00\\x00! ,1µ6 ,F ,1´6 ,F ,1³6 ,F . 00\\x006,F\\x00\\x00 $\\\"$\\\" $\\\"\\x00\\x007$\\\" $\\\"&\\x00Y)9&\\x006)v&\\x006)v&\\x006)9&\\x006)=&\\x006)f\\x00\\x00\\n +0%\\x000)4\\x00\\x00 &\\x00&\\x00 4 \\x00\\x00:  30 \\x00& 30\\x0080\\x008& 30#\\x00\\x004&\\x00&\\x00\\x00 4 07\\\"\\x00\\x00! .1§\\\"0 .Z\\r1±M0\\x00\\x000\\x00&\\x00)\\\"\\n\\x00\\x00\\\" 8&\\x000)4 +0>\\x00#Y+<&8Y\\x00\\x00\\x00ú \\x00% ,1¹\\x009 ,1·\\x0008\\\" +0>\\x00 +03\\x00)\\\"\\n+0\\x0081s81¿81Ã8/1À!1Â!!8 .1i\\x008 .1»\\x008 .1Æ\\x008\\n1½8 1Å8 ::\\n . 50E\\x00\\x00::1 30-\\x00 -0#\\x0050\\x00 +0>\\x00 +0m\\x00)\\\"\\n   10\\x00 59\\n \\n 10\\x00 5 +0>\\x00 +0E\\x00)\\\"\\n3\\r$08\\\" +0>\\x00 +03\\x00)\\\"\\n\\r\\x00Į .6\\\"8 ,6\\\"80\\x008 .1¼\\x0086\\x00\\r6\\x0008 .1C\\x008 30\\x00\\x008 30$\\x001†(58\\n\\n\\n0\\x00H +0z\\x0041\\\"\\r68 <1\\\"\\r6\\x008 9996\\x009 8\\\"6+ , Z- 0\\x00\\x00 60P\\x00=  30$\\x001¸5 , \\x001¾\\x0008\\\"+0\\x008  6 30#\\x00\\x004# , 30%\\x00\\x00 308\\x006 \\x00508\\\"+ 71108\\\"ą J 002\\x0066 J 002\\x006 -0%\\x00\\x0068F 10G\\x001Á(8 309\\x00\\x00 303\\x00= 30\\x00 309\\x00\\x00 30\\n\\x00\\r5:<Ž6 30$\\x001Ä5:~6 30$\\x001†(580\\x00H +0z\\x00a6 30$\\x001º(580\\x00H +0\\x00a6 30$\\x001Ê(580\\x00H +0 \\x00a\\x00\\x00\\x00\\x00\\x00 \\x0081Ó\\x00\\x00\\x00\\x00\\x00D8'8 \\x001b818 303\\x00\\x00N\\n 10\\x0081\\\" :\\x003 K\\x00\\x00/ , 30:\\x001È51Ñ81Ç8 .\\\"9 ,\\\"\\x00\\x00i0\\x008 -0 \\x00K8  30 \\x00 20\\\\\\x00 30\\x0080\\x008 30#\\x00\\x004\\x00\\x00 4 0R%7'1 K 0 +0.\\x00R%\\x00\\x00† .1C\\x0081y\\x0081d81Y8 30\\x00\\x00 30\\x00\\x00E8\\\"8\\\" . 10O\\x00\\x00 30\\n\\x00\\r 30#\\x00\\x008\\\" \\x008\\\"< \\x008\\\"<\\x001\\\"8\\\"\\x00\\x00\\x00֎3εεε .1C\\x008 30\\x00\\x0081Ö\\x00 4 ¾1‚%1Ð%1x% .1Ë\\\" +09\\x00\\\" <•  30 \\x00 10\\x00 +01\\x00* 1…\\\" <t .1Õ\\\" +0 \\x00\\\" <^ .1Î\\\" +04\\x00\\\" <H .1Ï\\\"0\\\" <5 .1Í\\\"9  30 \\x001É +01\\x00* +0\\x00\\\" < +00\\x00\\\" + \\x008 +0\\x00a31Ò)\\\"\\n +0+\\x00a . 10\\r\\x00\\x00: .1\\x009 .1„\\x0008 .1Ô\\\" .1Ì\\\"1Ù +0/\\x00)\\\"\\n . 10\\r\\x00\\x00:081å\\x00Ś1ß0)4 .1Ú\\\" +0\\x00\\\" <  30 \\x001Ý +01\\x00  +0\\x00\\\" <n  30 \\x001æ +01\\x00  +0/\\x00\\\" <M .1]\\x00\\r .1]\\x00 10V\\x00=\\n1Þ .1]\\x009  30 \\x001à +01\\x00* +0>\\x001â)\\\"\\n<0\\\" .1G\\x00 .1G\\x001ä\\x00:˜ .1G\\x001ã\\x00:<‰ .1{\\x00 4  . 10\\x00\\x001{\\x00 4  .1á\\x00: .1Ø\\x00: +0;\\x00\\\" <P .1€\\x00 .1×\\x00:<= . 30\\x00\\x001Ü\\x00 .1Û\\x00:<$ . 30\\x00\\x001é\\x00 . 30\\x00\\x001ñ\\x00<08\\\"1| , 30%\\x00\\x00 30>\\x00\\x00 1ó +0 \\x00)\\\"\\n .1ô\\\" +09\\x00\\\" < .1ç\\\" +04\\x00\\\" <y .1ï\\\" +0\\n\\x00\\\" <c  30 \\x00 10\\x00 +01\\x00* 1…\\\" <B .1G\\x00\\r .1G\\x001ë\\\" +0]\\x00\\\" < .1}\\x00\\r .1}\\x001ö\\\" +0;\\x00\\\" .1Z\\x0081z\\x00 1x +00\\x00)\\\"\\n .1í\\x00 4 1‚%191õ% .1ð\\\" +0>\\x00 +05\\x00)\\\"\\n<Ƴ .1è\\\" +0>\\x00 +0-\\x00)\\\"\\n<Ƙ .1ì\\\" +0>\\x001ò)\\\"\\n<ſ .1ê\\\" +0>\\x00 +0,\\x00)\\\"\\n<Ť1\\\" +0>\\x00 +02\\x00)\\\"\\n<Ŏ .1î\\\" .1ü\\x00< +0>\\x00 +0U\\x00)\\\"\\n<ĩ6 +0>\\x00 +03\\x00)\\\"\\n<Ĕ .1€\\x00 .1Ą\\x00: +0>\\x00 +0\\x00)\\\"\\n<ó .1ÿ\\x009 .1ø\\x00 +0>\\x001Ă)\\\"\\n<Õ1÷( 30\\x0059 1Ā\\x00 #= +0>\\x00 +0O\\x00)\\\"\\n<©1\\\" +0>\\x00 +0\\x00)\\\"\\n<“1\\\" +0>\\x001ý)\\\"\\n<1\\\" +0>\\x001w)\\\"\\n<k .1ā\\x00 .1þ\\x00 .1ú\\x00 +0>\\x00 +07\\x00)\\\"\\n<C .1û\\\" +0>\\x001Ć)\\\"\\n<*1ù . +0>\\x001[)\\\"\\n<1\\\" +0>\\x00 +0}\\x00)\\\"\\n \\x00\\\"\\x00\\n&\\x001ă%\\x00\\x00 +0>\\x00&\\x00)\\\"\\n +09\\x00\\r\\x00\\x00 Ǯ080\\x008&\\x00 30#\\x00\\x004Ǘ&\\x00\\x008 00*\\x00 30+\\x00\\x00‚ 30\\x00\\x00 10'\\x00\\x00 10X\\x00\\r 30<\\x00  50\\x00\\x001ą +0K\\x00\\\"+<I 50\\x00\\x00 /0\\x00 30\\x00\\x00 107\\x00\\x00 208\\x00( 30\\x00 30\\x00\\x00 107\\x00\\x005\\n +0 \\x00\\\"+<ĸ 006\\x00 30+\\x00\\x00Ĩ0\\x008 00,\\x00\\x00 30#\\x00\\x004Đ 00,\\x00\\x00\\x008 50=\\x00\\x00ð 10'\\x00\\x00 10X\\x00\\r8 30F\\x004 308\\x00 30>\\x0058 )0B\\x00( 30\\x005\\n +0 \\x00\\\"+<  10\\x00– , 30%\\x00\\x00 308\\x001ć5 10\\x00 -0\\x00( 30\\x00 107\\x00\\x005\\n +0v\\x00\\\"+ 30_\\x00\\x00 30_\\x00\\x00 30#\\x00\\x00 +0$\\x0049 )0U\\x00( 30\\x00 30_\\x00\\x0059 -00\\x00( 30\\x00 30_\\x00\\x0051w\\\"7ģ7Ǥ\\x00\\x00\\n¯ .1č\\x008 .1ċ\\x008 .1i\\x008 .1ď\\x008  303\\x008  303\\x008:: +0>\\x00 +0K\\x00)\\\"\\n::I68'8  00*\\x008 006\\x008 60)\\x008 20K\\x00 , 30%\\x00\\x009 , 30<\\x00\\x00 -\\x00\\x00C .1Ė\\x008 1Ĉ\\\"8 . 30,\\x00\\x00 30\\n\\x00\\r 30-\\x001ĕ5089\\x00\\x00X J )0>\\x00\\x008 .1Č\\x00 4* .1Ē\\x00 4* .1Ĕ\\x00 4* . 10\\x00\\x00 . 10\\x00\\x00 30\\n\\x00\\r 30-\\x001ē508\\x00\\x00:33331\\\"\\r-1ĉL1b81ĐL1b81ĎL1b8:\\x00\\x00\\x00Ē \\x008 83Āăă .1C\\x008 .1ƒ\\x001~\\x001đ( 30\\x001~\\x005: .1ƒ .1Ċ\\x000_<»1| , 30%\\x00\\x00 30>\\x00\\x00/ . 10\\r\\x00\\x00 30,\\x00 30(\\x0058 300\\x008 10\\x008<x .1Z\\x00\\n .1Z\\x001z\\x00A37:: . 10\\x00\\x00 30#\\x00\\x00$<\\\" . 10\\x00\\x0008Sɍ . 10\\x00\\x00 50\\x001ĥ\\n$$<# . 10\\r\\x00\\x00: .1\\x009 .1„\\x00$<$$\\x00W\\x00\\x00\\x00W\\x00\\x00\\x00\\x00.  +0%\\x00#$ . /0 \\x00\\x008 30\\x00 \\x008 10:\\x001ġ8\\x00 +0>\\x00 +0\\x00)\\\"\\n +0 \\x00\\r\\x00\\x00\\x00\\x00&\\x00'0\\x00O040\\x00)%@;\\n.E+ < 00\\x00;8\\\" 00I\\x00;8\\\" 00\\x00;8\\\" 00;\\x00;8\\\" 10Q\\x00;8\\\"\\x00\\x006\\r0\\x00)A\\x00\\x00…0\\x008&\\x00 30#\\x00\\x008&\\x00)96\\r0%&\\x006)76 +0 \\x00%&\\x006)76 +0/\\x00%&\\x006)76 +0\\r\\x00%&\\x006)76 +02\\x00%&\\x006)7&\\x008\\x00\\x00ˆ \\x00 +0\\r\\x00~66/8\\\"/1p!1Ĝ!1Ġ!1ě!1Ħ!1Ę!1Ģ!1ģ!1Ě!1ę!1ĝ!1ė!1Ĥ!80\\x008 30#\\x00\\x004\\\"3\\x00F<6 30\\x00\\x00\\n7/6\\x00\\x00.&: 50\\x008&\\x00&\\x00Q8\\\" +0\\x00 00;\\x006,@\\x00\\x00\\x00Ɋ . 60;\\x0068 \\x00§ , 30\\x00 30F\\x0058 30M\\x001Ğ8 , 30<\\x00\\x00 30\\x00\\n , 30:\\x00 50,\\x0058 10A\\x00\\x00K/808 10A\\x00\\x00 B0\\x00\\x004 30\\x00 10A\\x005\\n7, \\n 30 \\x00 30\\x00?·)\\\" , 30<\\x00\\x00 30 \\x00\\n<Ɠ19‡ , 30\\x00 30F\\x0058 +0\\x00*8 30I\\x00?Ά 001\\x00- 30M\\x00 50I\\x00C -0>\\x00A 30\\x00C 60\\x008 , 30<\\x00\\x00 30\\x00\\n0\\x0088 . 30]\\x00 \\x00 +0\\x008 <ć3ĂĂĂ\\x00ğ8\\n1ĭ8  1Ī 30.\\x00 30X\\x0058 , 30\\x00 30F\\x0058 30>\\x00\\x00 101\\x00 10 \\x008 30M\\x001Ĩ8 , 30<\\x00\\x00 30\\x00\\n 00T\\x00\\x000\\x00\\x008\\r\\r 00\\x00\\x008\\r 00&\\x00\\x0080\\x008 30#\\x00\\x004A\\r 30>\\x00\\x00 20U\\x00 \\x008\\r 00\\x00\\x00*9 \\r 00&\\x00\\x00*\\n 30\\x00 \\x00\\nQN \\n 30 \\x00\\n 30X\\x00?΅)\\\" , 30<\\x00\\x00 30 \\x00\\n\\x00…3>>> , 30:\\x00C58 10(\\x00\\x00 303\\x00= 10(\\x00 -0@\\x005 10(\\x00\\\"8\\\"\\\"76961[0  30 \\x00 .6 - , 30:\\x00 001\\x005 , 30<\\x00\\x00 30 \\x006\\n\\x00\\x00æ3ááá , 30\\x00 10\\x0058 10!\\x00\\x00 10[\\x00 +0:\\x008 10J\\x001[8 10!\\x00?ͽ58 30\\x008 50 \\x00?~8 20\\x00 60 \\x008 10H\\x00 /0 \\x008 B0 \\x000\\x000\\x00 +0\\x00 +05\\x00_ 10H\\x00 -0 \\x008 007\\x00 +00\\x00 +04\\x00[ 10H\\x00 20!\\x008 007\\x00 +0\\x00 +0\\n\\x00[ 00N\\x00\\rQ\\x00\\x00\\x00̎3233 , 30\\x00 10\\x0058 10!\\x00 60\\x0059 10!\\x00 50R\\x0058+3ʽʽʽ/8 60\\x008 60]\\x008  20/\\x00\\r8\\n -0&\\x00 00\\x00\\x00\\n- . )0\\x00/ +(£\\x00! +0o\\x00!0\\x00! +0f\\x00! +(¥\\x00!0\\x00!0\\x00! +(¡\\x00!0\\x00!8  -0^\\x00 00\\x00\\x00  -0L\\x00\\x00[\\n 00\\\\\\x00 +00\\x008\\n 00 \\x00 +00\\x008 )0+\\x00\\r8  00A\\x00 00%\\x00\\x0058\\r 50\\x00\\r- 10I\\x00\\r\\n 00A\\x00 00_\\x00\\x0058 50\\x00 - 10I\\x00\\n 50\\x00 \\r- 50\\x00 - 50\\x00 \\n -0\\x00 \\n 00\\x00 20 \\x00 B0\\x008 009\\x00 -0A\\x00 -0E\\x008 -0J\\x00 -0Q\\x00\\x00\\n )0-\\x00 00\\x00\\x00\\n 00\\\\\\x00\\x00 )0/\\x00\\x000:0\\x000\\x00_ -0\\x00 009\\x00\\x0000[ 204\\x00 B0\\x00\\x000\\x00\\n 00 \\x00\\x00[ 10\\x00\\x00j* 30\\x00 10\\x00\\x00 00N\\x00\\r\\n$ 00'\\x00\\x00µ/ 00%\\x00\\x00! 00_\\x00\\x00!8/ )0.\\x00\\x00! 60:\\x00\\x00! 20\\x00\\x00! 50Q\\x00\\x00! 50%\\x00\\x00! /0\\x00\\x00!80\\x008 30#\\x00\\x004S0\\x008 30#\\x00\\x004< 00'\\x00\\x00\\x008 30\\x00 20\\x00\\x00 /06\\x00\\x00 20E\\x00\\x00[7I7` \\n 30 \\x00 30\\x00Q_&\\x00ZY  30 \\x005=I&\\x00\\x00 30\\x00;6 50D\\x00&\\x00\\x0058 4*\\\" 304\\x00= +(¨\\x00a: 6 30\\x00\\n\\x00\\x00M6 50B\\x00\\r80\\x008 30#\\x00\\x004.\\x0086 60\\x00586 30\\x00\\n\\\"7;\\x00\\x00\\x00ì . 60\\x00\\x00 20<\\x00\\x00 20\\x00\\r8/ 00=\\x00\\x00 4 \\n 00=\\x00\\x00<?Ē! 00\\x00\\x00 4 \\n 00\\x00\\x00<?Ē! 00:\\x00\\x00 4 \\n 00:\\x00\\x00<?Ē! 00D\\x00\\x00 4 \\n 00D\\x00\\x00<?Ē! 00\\x00\\x00 4 \\n 00\\x00\\x00<?Ē! 00\\x00\\x00 4 \\n 00\\x00\\x00<?Ē! 10>\\x00\\x00 4 \\n 10>\\x00\\x00<?Ē! 00-\\x00\\x00 4 \\n 00-\\x00\\x00<?Ē!\\x00\\x00\\x00в/8 .1C\\x008 30\\x001Ķ\\x00\\n 30\\x001Į\\x00\\n 30\\x001ĩ\\x00\\n 30\\x001y\\x00\\n 30\\x001ij\\x00\\n 30\\x001ı\\x00\\n 30\\x001ĵ\\x00\\n \\x001b8 30\\x00\\n 30\\x001\\\"\\n 1b8 30\\x00\\n3 \\n1\\\"\\n8 ?Ē8  30\\x00 \\n/8 /01\\x008 , 30\\x00 )0@\\x0058\\r\\r\\r 30V\\x00\\x00 \\r 30V\\x00\\x00_? 30.\\x00 10\\x00580\\x008 30#\\x00\\x004 30\\x00\\r 30V\\x00\\x005\\n7) 30\\x00 \\n/8 )0$\\x008 , 30\\x00 50'\\x0058 30V\\x00\\x00  30V\\x00\\x00_? 30.\\x00 10\\x00580\\x008 30#\\x00\\x004 30\\x00 30V\\x00\\x005\\n7) 30\\x00\\n . 30B\\x00\\x00 . 30B\\x00\\x00_œ/8 60H\\x00 30.\\x00 10\\x00580\\x008 30#\\x00\\x004< 30\\x00 . 30B\\x00 20,\\x00?ͻ\\x00 \\n?;\\x00<?Ē?΄5 10,\\x00\\x00\\n7I 30\\x00\\n/8 -0\\x00 30.\\x00 10\\x00580\\x008 30#\\x00\\x004< 30\\x00 . 30B\\x00 -0\\x00?ͻ\\x00 \\n?;\\x00<?Ē?΄5 10,\\x00\\x00\\n7I 30\\x00\\n/8 )0\\x00 30.\\x00 10\\x00580\\x008 30#\\x00\\x004< 30\\x00 . 30B\\x00 20\\x00\\x00?ͻ\\x00 \\n?;\\x00<?Ē?΄5 10,\\x00\\x00\\n7I 30\\x00\\n6 30\\x006N\\n 1b8 30\\x00\\n6 30\\x006N\\n6 30\\x006N\\n 1b8 30\\x00\\n 30\\x001s\\n1\\x0091ī\\x009 .1\\x00::8 30\\x00\\n 30\\x001Ĵ\\n1ħ8  30 \\x00 30\\x0080\\x008 30#\\x00\\x004 30\\x00\\x000<0\\x00\\n7+ \\n 30 \\x00 30\\x00Q$3&\\x00&\\\"9&&\\x009 &\\x00 10\\x00&5\\x00\\x00\\\\  30 \\x00&\\x00 30\\\\\\x008 .80\\x008 30#\\x00\\x0004\\x00\\\"8:Q* 30#\\x00\\x000\\x00\\\"\\x00\\x00\\r3&\\x00&\\x00j\\x00\\x00w/86 501\\x00\\x008`0\\x008 30#\\x00\\x004N\\x008 \\n 30 \\x00/ 30 \\x00\\x00! 105\\x00\\x00! 20\\x00\\x00! 50-\\x00\\x00! 30\\x008 30\\x00\\n7[\\x00\\x00g/861q\\x008R0\\x008 30#\\x00\\x004@\\x008 30\\x00 \\n 30 \\x00/ 30+\\x00\\x00! )0\\x00\\x00! 105\\x00\\x00! 30\\x00\\n7M\\x00\\x00l0\\x00861d\\x00 30\\x00  61d\\x008<61Y\\x00 30\\x00 \\n61Y\\x0083 , -0\\x00 60Q\\x00\\n88 )0N\\x00 .8/!!!\\x00\\x00}/83LL 60^\\x00S 30\\x00 00 \\x00\\x00\\n 30\\x00 60\\x00\\x00\\n 30\\x00 105\\x00\\x00\\n 30\\x00 )0\\x00\\x00\\n3  . /0#\\x00 /0&\\x00F 30\\x00 00 \\x00\\x00\\n\\x00\\x00 Ǧ6:?Ē/8 .1į\\x008 30\\x001D\\x00\\n .1İ\\x008 30\\x001D\\x00\\n .1IJ\\x008 30\\x001D\\x00\\n .1Ĭ\\x008 30\\x001D\\x00\\n .1ĺ\\x008 30\\x001D\\x00\\n .1ĸ\\x008 30\\x001D\\x00\\n 30\\x00 .1Ĺ\\x00\\n .1C\\x008  30\\x00 30\\x00\\x00\\n 30\\x00 1”\\x00\\n 1”\\x001Ľ\\x00\\n 30\\x00 1’\\x00\\r 1’\\x00 30\\n\\x00\\r\\n 30\\x00 1‰\\x00\\r 1‰\\x00 30\\n\\x00\\r\\n 30\\x00 1Ł\\x00\\n .1ļ\\x008\\n 30\\x00\\n1Ŀ\\x00\\n 30\\x00\\n1Ļ\\x00\\n 30\\x00\\n1ķ\\x00\\n 30\\x00\\n1ŀ\\x00\\n 30\\x00\\n1ľ\\x00\\n 30\\x00\\n 10J\\x00\\x00\\n 30\\x00\\n 10[\\x00\\x00\\n 30\\x00\\n1ł\\x00\\n6 30*\\x00 30\\x005Q8\\\"6\\x00\\x00«6:$\\\"6:1\\\"8\\\" +0\\x00 00I\\x006,@6:1\\\" 8\\\" +0\\x00 00\\x006,@6:96:9 00\\x00;:N1\\\" 8\\\"1\\\" 8\\\" +0\\x00 00\\x006,@ +0\\x00 10Q\\x006,@666 +0\\x00 00\\x000,@\\x00\\x00\\x00\\x00\",ìëíîǷȞïð\x00kãäåæçèéêşŠšŢţŤťŦŧŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽžſƀƁƂƃƄƅƆƇƈƉƊƋƌƍƎƏƐƑƒƓƔƕƖƗƘƙƚƛƜƝƞƟƠơƢƣƤƥƦƧƨƩƪƫƬƭƮƯưƱƲƳƴƵƶƷƸƹƺƻƼƽƾƿǀǁ(µ$¶&·º¸eĆg¹kºm»r¼uȾÉÆÊÉ×ÑØÔّیÜ{Ý}ހ߅óƔ[Ò(³ê+Óy3Kº¾uròòñS¾`6»òòñ]Íò“5 ™ƒ&òYUáò–o•òFH<òÐ\ròaXœò›cò”Ü z&òY} ð¬&òYeÝò¯v&ސ\x00òëMÕòòò|=òÉ9òQ.lòq¦&Þs£òª¾ BTòñ_ - &òYï:ò{×Pò„àòÖ°ò¥ã¾V/òòñÌòµŠò´…¾OËCòòñ#¹&ނ ÅÂ&òY1ò橾ێTòÁñ;dò†Çhòjâòb¾^2Tò7ñí ¨ &òYtòÔ!‰òx¡4òÈk wÑ&òY‡«òRZäòʟ$ò½î 0&òYéÀ&ÞÄ*ò'~¶ò˜>ò\nÚ¾šˆTòÎñ‘Ïò—Gn&Þi)ògDòJ\\¾ØI€òòñìÙò‹LN&Þç ò’§¸?E¿¼¤Æp\"@8,&Œ­žf%A³®±·èW¢måß Ĺ.ñ\r\x00 \x00\n\x00 \x00 \x00\rĈ\n)Šʨ ظ \rz\r \r0 ƫ\r\n ̺ Ӡ  \x00 Ω  ̎ ξ ڴ  \x00 ҭ  ا\n  :şʛ\n%ò\rɂݱĠó\r\x00 \x00\nƞ\nބ\nȺ\nࠡ \n\n\nq\nƼ :Ġô\r\x00 \x00\nƞ\nࡐ\nȺ\nϤ \n\n\nq\nƼ\nے\nە\nࡶ\nˉ :Ġõ\r\x00 \x00\nɂ „\n\n Ž\n࢙ ޲\nɾ\nεşʛ %öNnñࣳš݂ƕūȔŨğƢŨڍŨɏƕƢ÷ƐŬߺŬٺƕū،ŨțƐƕżñūљƢŨȻũɏżƢ óŬ؍I.\n õŬȚ ƩóŧڥƐƩū࣑ƩƐ oóŭڈ\r óŬ˘ õŭՌ òūࣘ ôūʯ óŬƧ òŬʐ óūܘm.ƃŦ࡬ūƷƩũ̮ŪࠣƃƩ% ôŪǿø óũ̏ ñŪœƧòũĒơòŪުƧơƩòŨҡżòũ׼ƩżƢŪɥŪӋƃŬڃūࡍƢƃ ôŮһ òũʯ òŬݰm. ñũȌ ñŧȘƕóŮDžƧŪऑũ޴ƕƧ ôŮܭùƩūîũëƧòŪհƩƧ!ơòũžżôŭ۾ơż\" ôŬʻ# òūٗ$ƕôŬȦżóūȤƕż% óŭ̦m.& óūȘ'ƐóũزƧõŪDŽƐƧ( ôŨƅ) òũࣔ* óŭ˘+ƐôŪǁƢôŬˌƐƢ,ƃòūऐƕóŪࣁƃƕ-ơòŬүƢòŦЊơƢ%. òŪɘ/oôŭࢊ‘.0ƧóŬ࠴ƃũܝŬҏƧƃ%1 òŬӶ2 òŭĖ3ƃóŬࠝƕòŧडƃƕ4ƧòŭٓżŧӻŪӏƧż5żŬżūëƐóŪǧżƐ6Ɛñũ˪ơõũݙƐơ7ƧòŬȓƃóũبƧƃ8ơõũǠżòŭǦơż9 òŭࡆU.: òūư; ôŭɘ<ƢóŭǁƃõŭܶƢƃ=żôūɗƃòūؔżƃ%> òŬŒ? óŭø@ ôŬĖA óŮɲB òŭऊCoôŭȞa.DƐũϜūȇơŭ֖ūɅƐơE õŬưF òŬŃG õŨĸHƢóŭśƩôũȡƢƩI òŪʫú õŪƅJ õũլKƕñūڐƢòŪЩƕƢL òūथm.û õūޏMƩŭʼnũȄżŬۑŨԛƩżN òūɲO óũǽP ôūࢸQƩŮĀũtƕôũȤƩƕRƕõŭɜƧŪݓŭࠁƕƧS óŬȑTƃóŮࠎƕŪޅŭڳƃƕü ôŪԝy.U ôūƧV òŪōW ñŧࢤXƕòŨ̓ƧŧٴūѴƕƧY óŭŃZ òūǞ[ƃôũίƩôūˌƃƩ\\ƧõŧЏƐóŨȡƧƐ]ƃõū˪ƕóū׷ƃƕ^żóūǴƩôūࠧżƩyy._ ñŮࡌ`ƃòūȓƢťʼnŮȜƃƢýoñŭȚaơóŪ۳ƃôŬǧơƃb óŭŒcơôūѥƃñŭDŽơƃdƩôّƢŦʼnŨƪƩƢe óŭ܊fƐñŬסƢŮϖŪțƐƢg ôŭВI.h ñŨʐi óŭࠊj ñŬȖkƐóūȦżũऔŭӔƐż%l õũڀm òŪȑn òŬ࣮þ òūणo ôūƮp óŭӆa.q ôŬȌr òŬϛs òūڭtƕŭݥŮƇƃòŨٻƕƃuƕòũȋƩóŪβƕƩv óũ̌w òŭƧx òūĿyƃŬłŭɩƕñŨࣣƃƕzoòŨȞI.{ õŭǞ| õŬѬ} òŬҎÿoôŬђ~ ñŪ۵ ôŬ˂€ òūʌƢòŪڄơŭěŭɅƢơ‚ õŪࣸƒ ñūࣧU.„ ôūœ… óŨǿ†oóŬڋ‡ơŨʼŧȄƢõŮϕơƢˆoóū˽‰żũƵŧŖƩŧނŭȠżƩŠ òŭȖ‹ óŪь òŬك ôũޭ‘.Ž õũŒƧñūƒơŪࡡūӇƧơƐõŨՏơŭڠŧԽƐơ‘żóŬёƩôūۺżƩ’Ƨòŭ؅ơŪծūϢƧơ“ƐòūFơūӓŭ̩Ɛơ”żŨͶūĵƃòŭࣀżƃ•ƃũ࣓ŧŖƕūȻŭȜƃƕ– ôũĖĀoòūٰm.—oñūō˜ ñŬƮ™żõŨ‘ƧóŪրżƧšơòũߕżŭżŬ۶ơż› ôū˙œƕū࡙ŬаƃóŮϨƕƃżŨłŧųƃŨިŬցżƃž óŨĿŸ õũʫ  óŪݿm.¡ ôŪ̚¢ òũࣚ£ òŬǽ¤ ñŬץāƕòŨՃƩòŭЙƕƩ¥ òŭजĂƕôŪ͑żòŮѐƕż%¦ƩũĀŭųƢòūӟƩƢ§ƕŨłŧųƩõūضƕƩ¨ óŬݎU.©oóŭƅª óũ˂«ƃóŮ̵ƢŪٞŨȠƃƢ¬ òŨōă ôŮи­ơôŭӅƃŬƵŨχơƃĄ óŧࠄ® ôŬĿ¯ ôŪĸ° òŨߌÉ.± ôũ׎² òũœ³ óũʌ´ ñũĸą ôŨʻ9ƠťŒęŢ࠭ć ƞťԡĈ+\x00ƞťНİťЌťΫźEťŦࢲŦźŦʈŦ˞źĹ%½\r\x00 \x00\nť_źÂťƒťԲ  ť/ I\n eĭ\n\x00ļƁť\n\x00ťɨĉ+\x00\x00 \x00\n„  Ţú I D\n\n ޙ\n$–छŢԳ΄գ ۝yʅ.Ċ\r\x00 \x00\n\x00 Ä,ťÊīaź˃æQź˃æĉÇ ܁Ţˤ\nťƣ  \nØ # 7ŢѻÏ ] ڵŢ࣒ ]Ţԙċ\x00\x00 \x00\n*ťՓť—\x00 \x00\nPۄ\x00Ũˆ\x00 ãČ\x00\r \x00\n ťƣ\n\n \nƕ\n†۸č\x00\r D j0  š¾\r\x00 \x00\n\x00 ťV )Šù\n\n \n$ ƀť\x00\n\nŢ̈ & 6Ţݣ \nƨź­ť\x00\n \nź­ť\x00\ngźhť ƋĎ\r\x00 \x00\n\x00 \x00 źÂť\x00Ũ֒ťщD z ť/ I\n e\nťɛŢ࢛ Ɓť\ncރ ƞŧ˄ \x00ŢڜŢҰ  ;Ţѹ ſŧJ ĘƁť\n\x00Ţच Ũײ ɔźhťƋ¿\rչ\x00ĎŔ-nź֟ť%ď\r\x00 \x00\n\x00 \x00 \x00\rࣂ į\x00ťþ ťZŢª ϙ\n ƜťĄťȟ \nťV\n ܰť߷\n ױ\n Ɵ ܧ  Ø\n ԃ ß\n Ɵ Æ ޻\nťå ࠜ\nťå ࠤރ ӹ\n †ťΞ ß\n Ɵ Æ\nťå ч i\rźhť\n\x00ťȟť׳\rťĻƲ\rĐ\r\x00 \x00\n\x00 \x00 \x00\rťV \n ť۟Ţ_\r)Š Ŕ 0  ”\r\nS 7ŢkŢA\r\nS 7ŢbŢA\r\nS 7Ţ[ŢA\r\n Ţʞ\rđ˥7ŢkŢʇ7ŢbŢʇ7Ţ[ŢAŢֶǯ.Ē\r(ŀgࣖē+\x00ƒŮ࡜ƒũࢀ*ź•ťu'ŮӪ'Ũč'Ŭ۲ڙÀ+ƞŦѣť؃ƞŦşťٿȞƴĔ\r\x00 ʚ-ťʑ„  ť/ $ť\"ƀť\x00 आĕ\r\x00 \x00\nį\x00ťߟ źƉť\x00ťҔ 'ŢΚ\nźƉť\x00ť܆\n,Ţƌ\n Ƹ ťݘź•ťƁť\x00 ΆĖ\rŎĕgČ\x00źޢ Ԇė+\x00\x00 \x00\nƒťƄŪɗû ť֭ BťŤťڂ  ΏźɯźƾŢϺĮ \x00ť׻Į \x00ťպ\nś gğ \x00\nЯ߇Á\r·'Ɲ́,ťމťࡪωĬaśբ4Ƙ4Ž Ƙėޟğ\x00ѰĘ+ıŢ΃ȩƱƱŦ߃ƱŦʆ̂ƪŦˡŦڎę\x00\x00 \r\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00ť܎ \nŦࡰ\nŦށ Ę  2\r ߼ *ģł\nƋƋ ÿ eڷδ\r˶ \rť/I\reťۘŢ˷ࢅΝ Ķּ\nɠ)Ʀєťȧ͙ƽ٨ӿ.Ě\x00\x00 \r\n\x00 \x00 \x00\r\x00\nę\x00\x00 u\n؂ ıŢ֨ * źÂť \x00ťࣥ ťŠŢࢢ ηūङ\r)ƦźÅť ࡸ\rťȧļźɦ ЫĊʉťͯ ࠮źɦ ˯ۃěʅŢݟ;ŢؕŢо;ŢֵĜćŢ࢚;Ţ٥ĝ\r\x00 \x00\nƀťнěԫ  ť/ I\nƀť\x00 uě\nधĜ\nšŢࢫ\nšŢӿ\nšŢ̬\nىŢ͜\nnź•ťźÅťc իĞ\x00\x00 \r\n·'ťǖ'ťފ,Ƌ͠\nĝ u\n\n'ťǖ\n'ťڅğ\x00\x00 \r\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\nO\nC\x00\nr\nG\n5\n9\n3\nN\n\"\n/źʗ\nDĉ\n6ĉ\náźׄĭ\x00Ɖࡇ Ƙ Ƙr\nLŢО ć  Ɗħ & ß Ƒ†ťˋ ťƯ Ƒ†ťŜ ť՟,źٯ Ƙ ƘrĈז\rƒťģťρ\rƚ\x00\rƚ\rƚe\rƚŭźաĮ\rƚŬԤ\nLŢƪ\ny\rƑe,Ũߡ\nLŢͦ\nٜĞ\x00ź2\nCö\nLŢƪ\nyźEť ƑƤ\x00 ƈƋ\x00 \nŝź­ťࠪƇ ź­ťݾƇ5¦źÅť\x00Ţ࠱ Ƙ \rƚźEťƘ5\x00Ƥ\x00!\rƚźEť ƑƤ\x00ࢽ Ƙ \rƚźEťƘG\x00!\rƚźEť\x00Pĭ\x00ťՆ Ƙ  \rƚźEťƘG\x00ƘN\x00!\rƚźEťƘG\x00ŜƘN\n!&ĭ\x00ť޸\rƚźEť\x00 ƌ!\rƚźEť\x00Ŝ ƌƔÿ\n5\rƑ\n9\rƈ\rƊ†źӊ\rƊۼ\rƑ†ťˋ\n3ťƯ\rƑ†ťŜ\n3ťФ\n3\rƊź­ť\rƌѡƇ \nNźEťƇ\x00\rƌf\nN\rƌ\n\"\rťܽ\n/\rŭ࣭\nGźEť\n5\x00Ƥ\x00\n9\x00Ƌ\x00\n3\n\nrźEť\nG\x00\nN\x00\n\"\x00\n/\nźEť ŦܜƋ\x00 \nźEť\n9\x00Ƌ\x00\n3u,&Ě\n5\x00\n9\x00\n3ö\n6'\x00źEť\x00\nN\x00\n\"\nźEť\x00 ƌźߴ\nD,\x00\náď\nNuĖ\nNö\nLŢҕ\ny \nLŢϗ\nL-ŢƆ\nLݼ\nLŢ̓*\nLŢϷ\nĠNƱƱť˺Ʊťػ¨ǂ\r\x00DŽƦŬȕť̙DŽрŧîƂť\x00\x00 Ęŧ࣯ \r\x00 DŽ ƀťҠ ̊źÅťŪʼ ť¹ŢžŢطǃ\r\x00 \x00\n\x00 ׽߿ǂѶƅÞſ!ŧۨſՠnŧǢ ƆťϿ\n\nЭ ,ŧ׿ ť/ࠛ\nǃɹŨ˾źhť\n\x00ťɕŧ۔ j0ƓťxŦцť\x00 Þ\nť\"ǂ ĘťȔǃ ՙŨɥźhť\n\x00ťɕŭϵǃ%ÂܓưȮťʺư˛ġ9ƠťˆƟƻ%Ģ\r\x00 )Š\n û 0 ġŢ˸yЗ.Ãǂ9MǂŢϽǂŢ߫Ţ޾ǂ‡Ä\x00\r \x00\n\x00 ͹  X ť˚ ͌ É ̭ \x00\n    \nM ƠťˆƟƻŢٍÅ+\x00D;ŢŸ$ƺŢ˼ ƻť/$ƀťƻϰƵHŢ©ƶŢ_ƷýŢËŢ_ƸŢ©ƹýŢŲŢºƺģ\x00\r \x00\n\x00 \x00 \x00\r\x00Ä,ťÊīa&ƻ\x00\n  ťV )ŠƠťΤ =Ţ݇Ţ̨ ť›Ţև\n 0\r\n”  \rŢĪ\n”  ň\rŢŲŢǭŢƹ\r\n”  ňŢËŢЦ\rŢ۫  \rŢɳ\n ťכ\r\n  \rŢĪ\n  ň\rŢŲŢǭŢƹ'Ɲ  ÏŢËŢ࡫źhť ƋĤ\r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00ĕѿ߸ťʑťV )ŠƠťˆ=ŢϦŢȭ3Ţι Ø\nƀť\x00} ƀť\x00} ƀť\x00}\rƀť\x00} Ƶ\nÁƶ  Ʒ ÁƸ  ƹ Áƺ\rž 5\nƀť\x00} ƀť\x00} Ƶ\nÁƶ  5 ƀť\x00\n Ʒ ÁƸ ܡ ĥ\rĤgĨ%Ħ\r\x00 \x00\n\x00 \x00 \x00\r ťV\n)Š ʨ ƀť֪Ţќ \rz\r \r0ƀť\x00\r\n`ŢΦ Ţӑ \x00`ŢƳLŢࡏ`Ţۤ ŢѼ \x00`ŢŜLŢࢭ`Ţͫ Ţӣ \x00`ŢҲLŢݚ\n :şťũ\n%ħ\r\x00 \x00\n\x00 \x00 ( ƀťťभ  ťІ\n \n Ţݯ \n\n Ţۚ  \n Ţञ –\nŢÙŢƓ ŞŢƏ Æ\n Ţش –\nŢËŢnj ŞŢÙŢƓ ŢːŢƏ ŢԊ\n ŢЈ –\nŢߖŢࡾ ŞŢÙŢnj ŢːŢÙŢƓ Ţ࢒ŢƏ Ţҳ\n ŢΖ  \x00 Ţ۞\n Ţࡈ  \x00 Ţف  \x00 ° 6Ţߩ LŢƷťG ŢگŢԉ áŢ΀Ţلť\" gĨ9ĩħãĩ\x00\x00 \r\n\x00 \x00 Ǩ ,Ɲ ť˰\n)ŠƏťÀŢܻ  3ŢԴ û 0\n şťũťJ\x00Ţ݀ \n şťũťJ\x00 Ȱźhť\nї̩.Ī9ƭƨãī\r\x00 \x00\n Ī\n\nťV)Š\n\n\nLŢʜ \n0 ƀť\x00 } ƀť\x00 } ƀť\x00 } ƀť\x00 ࢼ\nŢʜ \n0 ƀť\x00 ՚Ĭ9Ʋ Ʋť!Ƃť\x00ƦŪtť֛ĭ\x009źÅťcťߧĮ\x00\r ĕ@ߝ źÅťcťЄź•ť Űź•ť%Æ\x00ӡ@ٲź•ťŰź•ť%į\x00\r  ź^ť\x00u ,ŢljϡƁťc \nƁť\x00 Мİ\x00\r  ź^ť\x00u ,Ţlj߅Ɓťc \nƁť\x00 ֢Ç+ǂ\x00ǃ\x00DŽǃDŽODžǃŚoXlԒDŽ\nǂDŽ\nźٷ \x00ź̇\nM+Lj\x00\x00 \x00\n\x00 Lj„z ŢŸ$Ljťů‡~…Ljťů‡ŢºŢְLjťů‡Ţ̐֩\rD Ljť/ƕ‡;Ljė‡*LjťåcޔLjť\"ࡱLjťռ Ljť¼Ţƒ\n 2  ?LjLjťJރr‡\n‡ ‡\x00[\n\x00 ϹLj͝Dž\x00\x00 *ࠔDž[Śooۥllɮ \nDžŚoǻoΊllɮ  \rDjȩėl`Ţʵėoɢėl3ŢĖdž\x00\r \x00\n\x00 \x00 \x00\r\x00 (\nťV  \r\r \n\rI\rœ # Hlݫo\x00 lυ `Ţ׏ ť\" ɢ 3Ţť θŢح 3Ţť LŢ؟ Ƭ ťG ԏŢג ࣍ǂ Ȱ LJ\x00\r \x00\n\x00 \x00 \x00\r\x00 (\n\x00 ťV \r I \rםŢڸ\rझ \r \n\n\n\n[\x00\rԠ\nƖ ť\"\n\n\n޹  9dž\x00DŽ%\n9LJǃ\x00÷ı\rźƗenĩ¥׹.IJ9źƗšij9ƔĩźƗکĴ\x00\x00 \r\n\x00 \x00 \x00\r\x00\n2 ? \rŢʙ Ţ̉$\n#\nɺ HŢé ŢċŢĬ ]  Ï ŢðŢ» # \rĚŢ» # ɺ\nHŢé\nŢċŢĬ\n]  ʲ Ţ˫ŢʓŢðŢāť\"\n\x00 %ĵ\x00Ɋƛ2ǝیĶ\x00\r \x00\n\x00 \x00 \x00\r\x00\x00ŀ\n ƠťˆťÀޑ ( (\rŢࣤťēޑŀĢŢť ťߘ\n\n \n$ ť\"ŀťJ\n=ŢĆ\n=ŢבŢ٤ťJ =Ţқ\n\n \r\n$ť\"\r ť\"ŀܼ\n\n ť/\n$Ĵĵ \n\n \x00\n ťJ ť›ŢܴĐ %ķ\x00\r \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 )Šť›Ţ‘\nŀ\nŀ\n2?ťׅŢʙ ŢR Ź  qŢݪ\r\r ŢͲ\r0#ȝHŢéŢċŢĬ]ʲŢ˫ŢʓŢðŢ»#3ĚŢ»#ȝHŢéŢċŢĬ]ÏŢðŢā]\x00]\x00 \nSŢkŢA \nSŢbŢA \nSŢ[ŢA \nSĚŢA \nSŢkŢA \nSŢbŢA \nSŢ[ŢA \nSĚŢA ” ۊ \næ ťå\n3\x00g Ë+ǂ\x00ǃǂˣǃˣǀMɊǂ\x00ǃƍĸ\x00\x00 \r\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\n\x00ťēŢԂ\nźƒa ŀ\n\nt ťV¿ ťì„  Ţ݆Ţւ $ æ á࠰,Ţڟ á,Ţܑ7ŢȒŢÐޓŢüŢȍޘŢüŢąŢԞ áßHŢą7ŢÐHŢȇƱŢʶŢߙ  3ɷD\r \r° ͵\rŢƥ  3Ţࢪ ;Ţʰ\r ŢƆ\r\r Ɯ7Ţऍ ǛޓŢLJ ^ޘŢLJ ȼŢ׺\x00šĹ\x00\x00 \r\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\nt  t(„  Ţú $Ï  Ʊ ŢʶŢէ  D\r׸\n\rž\rࡉҦ֑]۱HŢϑHŢϞHŢ_ŢąŢ؎Ţğ\n\r\x00 \r\x00\rӖ  Ţú $ \n ɴ D\r\r Ţú\rI\n\r\rۉ=Ţ࠺=ŢԸ=Ţǎ\r=ŢࣜɿŢǎ=Ţݲ  Ţd $ B\rHŢÐ7ŢĆ  BHŢÐ7Ţͭ  ŢĐ $  Bťì    BťѾĺ\x00\x00 \x00\n\r \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00   ƛ 2\r Ţࠞ ?ɭ U ȁŢˊ l ťÀŢ݈Ţ©Ţ_؛\n2\n?\nU\nl\nǏ $ 7ŢĮ\rޓŢYޘŢYŢY \r7ŢĮޓŢYޘŢY ŢY q7ŢĮޓŢY ޘŢY\rŢY ŢĪ7ŢĮ ޓŢY\rޘŢYŢY ŢࢎŢ_ \x00\r\x00D Ţd$ Ţͅ 7ŢȒŢÐ\rޓŢüŢȍޘŢüŢąŢY ” \x00 \r\x00\r\x00\x00:yɣ.Ļ\x00˥ƛࡂǝࣄɭܷ֧ЂļǷġŢƑġŢƑġŢƑġŢόĽ\x00\r \x00ǂ\x00ǃ\x00DŽ\x00  ǀǂ 2ǃ ׁǂࣨǂڼĹ\x00ǂ\x00ǃaDŽĸ\x00ǂ\x00ǃ¨\n\x00\r \x00\n\x00 \x00 \x00\r\x00\x00\x00 ƠťˆťÀŢ΋ (\rŢԀťēŢž ļƊťìťĞ\rD\nť/\n Ø\n\rŀù\n\n ŹťJ\nHŢȾ\nɄރ Ļ\x00!\x00ĺDŽ\x00cǂù  ť/ $ ť\" ऎĐ % \x00\r \x00\n\x00 \x00 \x00\r\x00\x00\x00(ŀ\n5ť¼ŢĒťJŢڌ ťÀŢȬ\n\n Ź\rťJ\nHŢȾ\nɄރ ĺDŽ\x00\rɶǃ\n Ļ \x00Ǝ  ť/ $ť\"  Ģ\ryĐ\nť֘ť¼ť›¥ O ª\n\x00 Ï : Ì\x00\x00 \r\nÄ,ťÊīa\nĽ\x00 g\nª˒ľ\x00\x00 \r\n\nĽ\x00 g\nÏ˒Í\x00\r Ä,ťÊīa Ľg ªʘÎ\x00\r  Ľg ÏʘĿ\x00\x00 9ľĤ\n\x00 %ŀ\r\x00 \x00\n\x00 \x00 ťÀŢ_ \n ťV )ŠŔ 0 \n݋ \\ŢĦ \\ŢÔ \\Ţࠟ ࡳ Łʎ¯«%ťۛRկlДŁ.ł+\x00)Łǂ֔$”࢖ɹº§ť¼ŢȅŃ՜Łࣈ”ܐºƦń\x00ѧ Čb:Ï9b ťӧŅ9bʠņćb\\Ţ¯bʠŇ\rbޯŢ࣠ΪŢѯŢݷŢÙŢ¯bŇŢࡓŢըŢִŢÔb\\Ţ¯bŇŢݻŢϣŢËŢĦb\\ŢÔb\\Ţ¯bŇŢџŢކb\\ŢĦb\\ŢÔb\\Ţ¯bךňʅb\\ŢĦb\\ŢÔb\\Ţ¯b͈ʼn9ňʁŢĀň%Ŋ\r\x00 Ň\n b\x00b:ťJ \x00b¥ȳ.Ð\r\x00 Ņ\n b\x00b:ĨťJ \x00bãŋ\r\x00 Ň\n b\x00b:ĨťJ \x00bãŌ\x00¤'ť¡‚6ŢŷŢűť\"%ō\x00¤'ť¡‚6ŢŷŢűť\"%Ŏ\x00*6ŢŨŢŧŏ\x00%ŏ\x00¤'ť¡‚6Ţ֗Ţݸ;ŢƳť\"!;Ţ˳ťƙŢ[ŢŬŢࠏť\"ŢǬ;ŢҧťƙŢbŢŬŢंťGŢ[ŢFť\"ŢǬ;ŢԱťƙŢkŢŬŢɜťGŢbŢFťGŢ[ŢFť\"Ţޱť\"ŢDžťGŢkŢFťGŢbŢFťGŢ[ŢFť\"ŢڶŐ\x00¤'ť¡‚6ŢŨŢŧť\"ޑť\"Ţøő\x00¤'ť¡‚6ŢŨŢŧť\"ޑť\"ŢøŒ\x00¤'ťʤČťGŢkŢFťGŢbŢFťGŢ[ŢFť\"Ţøœ\x00\r \x00\nÄ'ť¡‚Č TŢl\náŢlťG ŢkŢFťG ŢbŢFťG Ţ[ŢFť\" ŢFťG\nŢkŢFťG\nŢbŢFťG\nŢ[ŢFť\"\nŢࣇɳ.Ŕ\x00*īťȢŢеŌ\x00ťŪŗ\x00%ŕ\x00*ī\nŏ\x00ťŪŗ\x00%Ŗ\x00*ŏ\x00ťŪŗ\x00%ŗ\x00\r \x00\nD  ť/ $\n ؁\n'ť¡\n‚\n\n6Ţŷ\nŢűť\" ǑŘ\x00\x00 ¤ 'ťʤ Čý ŢkŢAԢ ŢbŢAŢް Ţ[ŢAŢˍ ŢऋÑ*<r%ɟǁǂƦǂ+ǃ\x00DŽǃODŽĉƿ\nƾ¨Dž+Ȟࣼźƒʉť¼Ţȅ\r\x00 ĕӚŦľŧ͟5Ĥ\n Ēť¼ŢȭťJŢĒĊȮ 5ķ\x00DžÇĩ\nƪŦˡŦ࣎ࣗKŦؐčǃ\x00ۅ\n¸dž+\x00\x00 \x00\n\x00 \x00 OO Ȟؤ\njǃ0 ǃ\n  2 KŢƥ\n  -Ţč Ǘ \n ƘLJ\x00ƿ\nLJ\x00ƾ\nDŽғLJ\x00\r Ŏ5 Ġ\n ťŠŢƺ ī \n Ķ \x00DžÇ đĊ ҁťʴ \nŦƠŧݕģ ӛ\nֳÌ\x00‹ ŏ\x00\x00 \r\n\n6Ţƥ\nȞ࣐Xǃ֌\x00\n\x00 ħDŽ-ŢƺDŽ¦ƫdžܾ \rǃe8кǗȞՐܺřNǁnǁ‹%Ś\x00\x00 Nǁ ࣛǁÌ\x00\x00 %Ò\x00\x00 \r\nD\n\n \n$\nĎ\nšś\r\x00 ’ŨńŪĆūǚŭࢁ  ť/ ƕĮ\x00 Ҵ⋽.Ŝ\rįį\x00ťʏťҩźƉť\x00ť϶Ɓťc׉Ó\x00NnťĻ:Ô9į\x00ťӨÕ\x00\r \x00\nťĄťȋťȬ  ť/ I\n eĭ\n\x00ļ\nťपťɨÖNnįį\x00ťʏťफÚ\rǂ\x00\x00ǃ\x00DŽ\x00Dž\x00dž\x00 \x00\n\x00LJ\x00Lj\x00lj\x00NJ\x00Nj\x00nj\x00Ǎ\x00ǎ\x00Ǐ\x00ǐ\x00Ǒ\x00ǒ\x00Ǔ\x00ǔ\x00Ǖ\x00ǖ\x00Ǘ\x00ǘ\x00Ǚǂ¿ǃDŽ¿Dždž¿ Ţ̳\nŢݩLjŢˤǍǚ \nǎǚ\n\nǏ(ǑȞŋǒŪओǓǕǖǗȞŋǙOErO~4~)X% \x00@ \x00;\rɟ ڏ NjǤnj)ǥŢþljijĂÇNJć§Ŧ˞ċƒ\x00ŦŅ\nċƒ\x00Ŧɣ\nċƒ\x00ŦǸ \nċƒťǫŭӒ\n\nċƒťǫŪĹ \nċƒ\x00ťë \nċƒ\x00ŧğ\r\nƞŨզM*Ǫո%*ǪɈ% *ǪŢ©%\n*ǪŢī% *ǪŢ_% *ǪŢU%\r*ǪŢº%*lj5Ǭ܈ǦŢ߲ǨťݍǮ͔\rNNj,Ɲ࠙ǫDŽ\nLJ ŗ\x00LJȐǚ\rǰ\x00DZ\x00Dz\x00dz\x00\x00 ǰ\x00DZDzdz(O •\n\x00­ \x00Ö \x00×\r\x00g\x00}\x00§\x00u\x00x\x00q\x00ç\x00‹:M\nӌDzİǰKDZ% DzKDZ +ˆ­ɃdzDZDZ#DZİǰƀ\r+ˆ­ɃDz#Dzʹǰęǰ\x00dzDzؿȪ•͏ÖƊdzDz\x00Dz#DzİǰсDz3DZǰęǰDZDzݽ DZ Dzćİǰćʹǰęǰ9dzƍǛ\x00\x00 \r\nD\n\n \n0\n ǜ\x00NKƝ&KƝࠅЋɚՖժǝ\x009ƠťÖԷÒ‰ߠ‰࠻Ǟ\x009ƠťŒچƠťŒ‰дǟ\x00\r  #®Ŋ²ơƠťÖ®Ò²ʖƠťÖ®Ò²ʳƠťŒ ʸ Ɣ ƀƠŧ˨ %Ǡ\x00\r \x00\n #®Ŋ²ơƠťÖ®Ò²ʖƠťÖ®Ò²ʳƠťŒ ʸ Ɣ a\nƠŧ˨ \nٚ\nŢǕƠ֍\nƲ\nǡ\r\x00 \x00\n\x00 \x00 \x00\r( )ǧNJ\nϒ z ť/ $  \r)ǧ \nŐ ‰\nõť\"Ǡ\r\x00 ÿ\n :Ǣ+\x00ǰ\x00DZ\x00Dz\x00dz\x00Ǵ\x00ǵ\x00ǶOǰ(Ǵ(ǵ(Ƕ(²\x00£ \x00›\n\x00® \x00Á \x00ã\r\x00Ò\x00°\x00ƒ\x00¦\x00¾:M\r\x00 DZdzDzǵ(Ƕ(ǰ(Ǵ„ u> -x> q ڿ -uࢾǰDZǞ‹ \n\nDZ°Ƕť\"‹ ߭ǜ‹ \nޞǴdzǝ‹ \n\nǴdzƁŢΠDzǴdzdz࠽‹ \nǵť\"÷ ǷDz\x00dzš\n\r\x00 \x00\n\x00 \x00 Ţº (\nǛ \x00خ  dz 0 Ǵ  ;Ţª ߓ ;Ţ݌ ׫ ;Ăĺ ࠉ ;ÿĺ ߣ ;Ţӯ ר ࡲ   0  ܉\nς\n \r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Ţʍ \n O \r¾DZ n û DZߜ((\n ः DZٕ*ǰqǰeݳ6Ţࠃ֕ࡦŢݖ3\x00Č\x00Ɍ Ȇ\nÆ ˩\x00إ ŢС  ʪ ࠥ$ԚČ\x00Ɍ Ȇ Æ ˩Dj 0 ˕ťŠŢ״ ࣴ\n6 \r \r\n\x00 ƠŦ¹\r\x00 ͬ  \r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00¦  \rĉ¾ǵťŠŢ࣏ Ƕť࣊ێ Ƕťă I Ƕ \nǶ ٳǜ \x00\nö ҵ ̖\n̢ # ‰\nơ \nҀ  Ţݛ ŢݝŢܣ  ‚ ŢҶ Ţ؜ Ţڑ 6Ţ̶ Ţͳ ‰\nϚ Ţ̸ Ţڊť\" ӍťŠŢںŦۢŨࢇ ť/$žTťV ť/$ƠťŒɽ\nӰTťۜ#TťĞʃŢ©6ŢӽŢ\rЖ\rࠨ\x00ڛŢܟ\r\r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00Ţٟ ¦\n¦ ¦ ӲǵťŠ*\r¿z ǵťă$ǵǵqъŐ -5\r‹6Ţª\n X !‹ҿӄ -5\r‹6Ţª  X !‹6Ţč\n- 5\n \x00\rӁ6Ţč - 5  \x00\rΐ\r\x00ǵť›Ţ࠵+\x00\x00 \x00 \x00 \x00\r( ¾ǵťͪŢ֜\x00ť΁\n\x00N36Ţϥ36ŢࡃŢ̿ǡǵ\n \n2ࢶ ŢR ť/ $\r\n  З '\r5‹ 6Ţɬ࣡ ϯ ‹ \rdz\x00ťм\x00\r \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00 Ţׂ\n ǵ\x00 Ɣ = ť֫Ɲ\x00¾ Ţۯ ťă` ť› Ԯ0)ǧ ҥ ת г ڕ-Ɲ5ǟ\x00\n\x00ƠŦ¹\x00͆–3Պ ߈ŢΨũࢱ\x00\x00 \r\n\n԰-ǂࢉ}ҋ ťɵǜ‹uÇ Þ\n̴\n+\x00\x00 \x00\n\x00 \x00 \x00\r\x00\x00ǵ2)ǧNJ Ɲ\x00\n  \rz\r ǵťă\r$ǵ\rǞ\x00ࡋ)ǧŐ‰õ\nǠ\x00\n 'Ɲ\n' ɒ ‹ \n\x00۽ \x00 š\r\x00 \x00\n\x00 \x00 \x00\r\x00 \n αǙŒ ǙŒ)ǧǵ࢔ǵߋ Ǚš ǙšǙŒ\x00ǵťƣ\r\r \r$ǵ\r ijǙŒŶ\nij‰ǙŒõ ǝ\x00 \n Ǚš dz \x00\n\x00 \x00ƍǣ+\x00ǰ\x00DZ\x00DzOǰ(DZDz²\x00£ \x00±\n\x00“ :M\r\x00 DZDzu>-x>qƃ ‹\n ťWŢɧ ťWŢҬǰDZ \x00DZɆ ťWŢɬDzऌ Dz\n\r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00Ţ̱ Ţӱ\nɁ  (\r¾DZћ DZ0ǰťWŢؙ\nƖ  ťҜ\nťҝ Ɇ\nƎ 0 Ɓ \rΛ\r \r\x00 \x00\n\x00  ͷ\n\n DZ\nN\n* ǰ\neťWŢ̋ ťWŢࡵťԾ ťࡔ ҈ǰ\nɔ ‡Ǥ+\x00ǰ\x00DZ\x00Dz\x00dzOǰǢDZǣDzdzŦȂ:M\x00\x00 \r\n\x00 \x00 \x00\r\nܹKǃխ jǰ0ǰŦǰ Ǿ ǰ {Ǎ\x00\x00 \n 'Ɲ5\n  \x00DzǶǍ§׬ jDZ0DZŦǰ Ǿ\rDZ {ǎ\n\r'Ɲ5\n \r\x00dzǶǎ§Օ\n‡ǥ\r\x00ǰ\x00DZ\x00DzOǰDZǚ\nDzǚ\nÇ \x00Ó\n\x00Ø \x00Ú :M \x00\x00 NӝKǃ5DZg \nǰÆDzg лÚƦ\n\x00NKƝn: 9Ɣ=ŢӀŢࣙ +\x00\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \x00!\x00\"\x00#\x00$\x00%\x00&\x00'\x00(\x00)\x00*\x00+ \n  \rLj\x00 Lj\x00!DZ}\"Dz}í!DZ#DZu>#-DZx>#DZq#ƃ$DZ‹#\n%$£\x00 %2%? ƠŦ¹$›\x00 \n ƠŦ¹$®\x00 \n$Á-Ɲ5&$Á\x00&Ё‹&?&2 ɒŢɎT\nŢɎT٢'$Ò\x00'2'?($¦\x00(2(?)$¾\x00)2)?)U)l\rƠŦ¹$°\x00\r\n$ƒ-Ɲ KLj $ƒ$ƒƘƬƠťˆT=ŢȀƬƠťˆT=ŢȀ6Ţڰ–TʂŢ؆Ţࣺ–Tʂÿࣉý#3ŢړŢӤƠťÎ=ŢþƠťÎ=ŢþƠťÎ=Ţѝ¾\"DZ#Dzu>#-Dzx>#Dzq#ƃ*Dz‹#\n\n*£\x00*±\x00*“-Ɲ ,Lj *“  *“ƘKLj Ţ KLj Ţ#LJ(+ +Ϙ +€ŢЍŌLJ\x00+\nőLJ\x00ƠťÎ ÿőLJ\x00\nőLJ\x00ǰ\nőLJ\x00 \nőLJ\x00\nőLJ\x00 \nőLJ\x00\nőLJ\x00\nőLJ\x00\r\nőLJ\x00\n\nőLJ\x00\nōLJ\x00\nŒLJ\x00ȵŒLJ\x00ȵŒLJ\x00ΣǦ\x00\x00 ՘ťè࠲ŨغŨܯťȂ ߆ť޵ťҮŦ՗Ŧ̻ŦΓŦҖǧ\x00ܔࢰǨ9ȞǗǩ࡯ťٶǪ\x00\r  )Ǧ\x00\x00Ǩťذlj Ǭ هǩ ѱǘKǃ ǫǃaǎg \nǘDŽ\x00ǎ•ĺǫDŽ̡ǖउ ťǡǍg ! ťҞǫǃ\x00ǂ\x00 \n ŦȹDž ǖŢՈǕǖŢ̤ ťWŢͥǔ \x00ǖख ťWŢЪǜǔ\x00 Þǫǃaǖҗ ťWŢªǖ ťɵ Ŧȹdž5ǖŢīǕТ ťǡǕҸǕǕ`Ţªǖφǘǃ‡ǫ\x00\x00 \r\n\x00 \x00  ’ŭّŨ݉Kǃ Ǎ}̫ ǎ} ҽ\nNjŦҟ\x00\x00 \nnjÇ\x00 \x00\nޫǬ\r(ť\"ť׈ťسť\"Ŷť\"յť\"Ŷť\"õť\"Ŧ֞ť\"ťКť\"ťܫǏť\"źhťԅǏť΢ȞǑ`Ţ͒Ǯ˛ǭ+\x00\x00 ’ \x00 \x00\r\x00’ıŢࡅ  ť/ ў  ٦\n* ۡźhť\x00ťǦģŃϼ +·ƞŧईƞŧ։ũӜƞŪݐŢӳźhť͛ Ơťࠍ\r࡚Ƭ§Ŧ؉ ƞŦΘƞŦşťٌƞŦşť۠Ǯ+ϱǐ ǐǭƊǓ°ť\"ǐ\nť\"Ǔ\nť\"NJ\nťʴǏ\nǏ(ǑȞŋǯźhťڇǯ\rɁƞťࢍ)ƞťڲƞťы)ƞťюŧۍƖťʱŧ̀ǒߊťĴ֋ŝ+ǂ\x00ǃǂ(ǃࢿÉ\x00_ŏ܍ǃ֓ǂǃš*לǂǃ‡Şǂ\x00ǃ\rDŽDŽǂݑb\x00¡Dž\x00¥\x00¢ \x00©\nŏDž ǂƫǃμ ǃ+\x00Dží١ǂ˭ǃ\x00\nǃ: +«¥ínڧſϟ\n\r\x00 ǂ\x00DŽĈǃ„ ǃ DŽ $ Džǃ‡à\x00ǂ\x00ǃ\x00DŽ\x00Dž\x00dž\x00LJ\r\x00Lj\x00lj)Ƭ࠾ \nLJέ\x00ljLj©\x00\n¨ \r\x00 \x00Nj\x00nj\x00\n Oϝ ¸ޡ΍ ¸ͿLjŞ\x00\nNjLj¡\x00njLj¥\x00\nnj\x00 Âǂ\x00 DŽ\x00 –ǃ\x00 ÈLj¢ܳLj¢Ç äNj žNj IǍǃ MǍ+\x00\x00 \x00\n\x00 O+Nj»Nj$nj Nj\n)Š ձ $\nˉǍ> Nj )Š ù $ Ǎ>=\n\x00Ê :‡NJ\x00Nֻܤइ̽ࡀ2Ιӎ2?ψ࢈2?Uͮޙ2?UlҷӾ2?Ult˱֎2?UltÌژ߰2?UltÌA˙\n\r\x00Nj\x00nj\x00 \x00\n\x00Ǎ\x00 \x00 \x00\r\x00ǎ\x00\x00I\x00NjÂ\x00nj–\x00 \x00\nÈ\x00Ǎŝǂ  Ž $ Ǐ  Ɣ\r Ӟ  Ʀ ھ\r\n ˭\r͋ǎ)Š+\nǎˁƞ\x00ǎäƞ\x00ǎžLJ\x00\n\n(ԟʬ࢑Ċǎ\x00τǎ=D ɓ Ž $ǎ Ǒ $lj$\nǒc$Ĉ¨\rD Ž$ǏǑǏ*ñ\nуǐ܇ǐ\r\x00 \x00\nƞ  Ž $\nƫ \n\nࡹ ة\nࣦ ݃\ṇ ࢠĠǑǔ\x00Ǖ9M+\x00\x00 \x00\n\x00 \x00 ·ǔ»ʀǍÉǍÉǘǕ?ȶǕ͍()Šǔ+\nǘǕ̑ȶǕوƔ ǔ=D\nɓ\n Ž\n$\nǑ \n¥ؖĊ\x00̄Ґǔ$ँǔ$ljǔ$aǒǔcǔ$Ĉ\n t Ìǔ»5Ǎ_\nǍ_ǒ ہ ‡ǒ\x00\x00 \x00\n\rǔ\x00 \x00Ǖ\x00ǖ\x00 \x00Ǘ\x00\r\x00ǘ\x00Ǚ\x00ǚ\x00Ǜ\x00ǜ\x00ǝ\x00Ǟ\x00ǘ$\x00Ǚ\nUǚ\nlǛ\n2ǜ\n?ǝǍÉǞǔǔ ǔI ǘǔe ٛ ࣾ Ң ࠗ ǝǞǕǝǞǝǞǕ f ޶Ǟĥ Ǟ\x00ǝǞǕǖ{ǝ ǝ ò ߞǘǔȿǖDžǘǔœǘǔǖ\x00 ǝǞǝǞ ǖį ǝǞ\rǘǔ ŝǔ\r! ٬ ࠢ\rǘǔǝ Ǟ3\r\x00Ǟ\nǞL\r\x00ǝǞNJǕǖ Ԗ ǝǞ\nࡼ\nˀ \x00ǔ ! ࠒ הǝǞǝǞ PǖǝǞǕǝǞf ұ ߦǞĥ Ǟ\x00ǕǕǖǝǞǕǝ ǝ ò Ѹ ǝǞ ǝǞɿ \x00ǝǞ ! ΈǞÉ Ǟ\x00 Ǖǖ{ǝ άǖǘǔǝǞǑÊǖ\n ͣǝǞLJǘǔĔ ڨǝǞǕǖȃ Ε ǝǞ ǝǞࠋ \x00ǝǞ P ǝǞ ǝǞɽ \x00ǝǞ ! ֥ ݹ ɪǖǘǔǕLJ! ڡǖǘǔ ǝǞħ 5ǔǖȏǞƿ ή ǝǞǕǝǞæǕDžǘǔɱ PǖǘǔǕǛ! ַ ࣵ\rǘǔǔL\r! וǞÉ Ǟ\x00ǕǕǖ Ǖǝ ŕ ࣫ ǝǞ ǝǞջ \x00ǝǞ !ǝǞӮ Ԩ ࣝǖǘǔǕǙ! ؏ǝǞܒ ˝ǖǘǔǕǎP ǝǞ ǝǞɻ \x00ǝǞ ! ԥǝǞǎǘǔĔ ף ǝǞ ǝǞɾ \x00ǝǞ ! ࠚǞÉ Ǟ\x00ǕǕǖǝǞǕǝ ŕǝǞǙǘǔĔ դ ݴ ׹ ǝǞ ǝǞŭ \x00ǝǞ ! ԗ ǝǞǕǝǞæǕ  ʷǗǘǔǖǘǔǕǚǗį ǝǞ ǝǞɼ \x00ǝǞ ! ࡞ ࠈǕǕǖ Ǖ˗ ԇ ǝǞ Ǖǖࣶ ! ߨǝǞǛǘǔĔǝǞٙ ܬ ࡝ǘǔɇǖǘǔ njǖǘǔ \x00ǝǞ ! ԻǞĥ Ǟ\x00ǕǕǖ Ǖǝ ǝ ò ࡘ ǝǞ ǝǞɤ \x00ǝǞ P\nРǔ ! ࡕǞĂ Ǟ\x00ǕǕǖ Ǖǝ ǝ qǝ Ǫ ՎǞĥ Ǟ\x00 Ǖǖ{ǝ ǝ ò ʿǘǔđǖDžǘǔœǘǔǖ\x00ǕǝǞfǝǞӼ ء ̼ǝǞǘǔƂ ҌǕǕǖǝǞǕ˗ ގ ǝǞ ǕǖԈ PǓ\x00ǘǔǘǔ\rǘǔǘǔǔϭǙ\x00\n\n\nߎǔ ǔ\r! ̪ ޝ ǝǞ ǝǞƁ \x00ǝǞ ! ѭǞÉ Ǟ\x00ǝǞǕǖ{ǝ ŕ ސǗǘǔǝǞǚǗBǘǔɡ Ǖǖ˧ Х ֽ ǝǞǕǖ ! ѷǖǘǔ ǝǞ 5ǔǖȏǞƿ ޗ ǝǞǝǞҚ PǗǘǔǝǞǜǗBǘǔɡ ۈ\rǘǔǔ\r! κ ǝǞ ǝǞ† \x00ǝǞ ! ۂ ǝǞǕǝǞæǕNjǘǔɱ Pǘǔɇǖǘǔ Njǖǘǔ \x00ǝǞ Ō ק Ҫ ۆ ǝǞ ǝǞ܌ \x00ǝǞ ! ζ ǝǞǝǞҍ ! ۙ\rǘǔǞL\r\x00ǝ Ǟ\x00Ǟ\r\nǝǞǕǖǼǕ\x00٘ ǝǞ ǝǞ؋ \x00ǝǞ ! ט ڹǖǘǔǕǝǞf ҃ ǘǔƂ ׮\rǘǔǝ Ǟ3\r\x00Ǟ\nǞL\r\x00 NJǕǖǝǞǕǖ˧ ۧ ׾ ǝǞ Ǖǖࢣ ! ए ǝǞ ǝǞ˕ \x00ǝǞ ! ؄ǖǘǔ  ǖįǘǔȿǖNjǘǔœǘǔǖ\x00 ǝǞǝǞ ǖf ׵ǖǘǔǝǞ ǖf ठ ǝǞ ǝǞɷ \x00ǝǞ ! פǖǘǔ ǝǞħ ǔǖצǖǘǔ ǝǞǝǞ ǖɐ Ӹ ; т\rǘǔǞL\r\x00ǝ Ǟ\x00Ǟ\r\nǕǕǖǝǞǕɑƞ\x00 ܖ ʹǕǖƂ в ǝǞ ǝǞ؊ \x00ǝǞ PǘǔđǖNjǘǔœǘǔǖ\x00ǕǝǞɐ ٸ ޖ ǝǞ ǝǞÁ \x00ǝǞ Ō ͧ ЛǞĂ Ǟ\x00ǕǕǖǝǞǕǝ ǝ qǝ ࢟ǗǘǔǖǘǔǕǜǗޓ ࣋ ֱ ǕǖΎ Կ ǝǞǕǖ \x00ǝǞ Ō ߹\rǘǔ ǝǞǔտǗj *ǕǖǗ\x00ǒ\x00ǔ\x00ǔ\r\x00\nu\n͘ǔ ͊ǔ\rٵǞĂ Ǟ\x00 Ǖǖ{ǝ ǝ qǝ ٩ ̥ǞĂ Ǟ\x00ǝǞǕǖ{ǝ ǝ qǝ Ǫ ق ǝǞ ǝǞޑ \x00ǝǞ ! ߢ ҨǕǖڔ\rǘǔǞL\r\x00ǝ Ǟ\x00Ǟ\r\n ǕǖǼǕ\x00ΰ ހ ̞ ǝǞ Ǖǖٔ ! ؼ ǝǞ ǝǞƶ \x00ǝǞ ! ܩǞ\x00Ǖǝ\x00ǖǞP ǝǞǖǘǔǕdžǖ\rǕ \rKƝ \rǘǔऩǔ\x00ǔ\r! Ց ӥ ǝǞ ǝǞࡎ \x00ǝǞ ! ߥǖǘǔ ǝǞ  ǖf Ә ߂ǝǞǝǞ P ǝǞ ǕǖĎ ! Ӊ Ǖǖȃ ߔ\rǘǔǞL\r\x00ǝ Ǟ\x00Ǟ\r\nǕǕǖ Ǖɑƞ\x00ǝǞڪǍ_ǝ¨+ǘǔٱԑǖǝǞǕǝǞfɪǖǘǔǕLJ!ڢǖǘǔǕǛPǖǘǔǕǙ!ԁ˝ǖǘǔǕǎ!ʷǗǘǔǖǘǔǕǚǗfʿǘǔđǖDžǘǔœǘǔǖ\x00ǕǝǞįǖǘǔǕǝǞfݠǘǔđǖNjǘǔœǘǔǖ\x00ǕǝǞfАǗǘǔǖǘǔǕǜǗ̟Ǟ\x00Ǖǝ\x00ǖǞ÷Ǔ\x00\x00 \x00\n\x00 \x00 \x00\r\x00\r\x00\nL \x00 LŎǒ\x00 \x00 \x00à*\r \x00ǒ\x00 \x00  \x00ۿÌtࣩ  \x00ǒ\x00 \x00 \n\x00\n߳ĩ\x00ˀދáǂ\rǃ\x00DŽ\x00Dž\x00dž\x00LJ\x00Lj\x00lj\x00֐ǃǂŦ۰DŽǂťĪDžǂŦࢄdžǂŪࢌLJǂŧލLjǂŦُǂŬܚǂŭࠀǂŨǥpljؾŢࠌǂŦܵǂ̗ǒŧʧDŽ\n'Ɲ ǂťˑࡖ pċǂ\x00Ů٣ ¥ƽ\nM\nȪÐ&ljġˆࣿ\nťxťܢ \x00\nťxŦУ\rMNJǕ\x00ǖ\x00Ǘ\x00ǘ\x00Ǚ\x00\rǚ\x00\x00 \x00\n\x00 \x00 ǚࢳǘǘǨǘßǚˆîNjǕ\x00ǖ\nǚˆènjǕ\x00ǖ\nǚˆÙǍǕ\x00ǖ\nǚˆÕǎǕ\x00ǖ\nǚˆÛǏǕ\x00ǖ\nǐťǚ\x00Ǖ\x00ǖǒǖ'Ɲࡗ8Lj8ǚˆ],Ɲ&ǚˆ]ࢺǘܠǚÐŬ۬ƫ\r\x00ŢԼǚˆ\x00 (\nǚˆʪ j0 ࢥ ֆ ɤƝ  ɴ  ֬Ɲȁ  ѵ j 0  ɻ\n5\n    ѕ 'Ɲ8Ǚ,Ɲ&ǙѨǚŦÝǕ\x00 ࣰǗ,ťʺǗ \x00Ȑ\rNJťǚ\x00Ǖ\x00ǖ\x00Ǘ\x00ǘ\x00Ǚ÷Nj\x00࠷'Ɲ0DŽǑDŽ\x00\x00Ɛǒ\x00DŽà ¸nj\x00NLJLj'Ɲ0LJŦƠ\x00ƐLJŦľà ¸Ǎ\x00\r ·džɠ Ǔí'Ɲ0dž B࠿dž Bƽ\n¸ǎ\x00NDžLj'Ɲ0DžŦƠ\x00ƐDžŦľà ¸Ǐ\x00\r ĕźͺ ǔťźť࠸ Ũ٧ ťſŪИŨ՝'Ɲʀ ťڞ\x00\n Ŭࣞ؈ Ŧύg ťŤ˯\n¸ǐǕ\x00ǖ\rǗ\x00\x00ǗΡLj5¿Ljťʱťǚ\nťˍ\n\x00Ũè \x00ǖ'Ɲ ŦƤ ŦƤ\rΜ ʊ\nʊ \r\x00 ťƝŦȴ ū˓ťѩť޺ \r\x00 \x00\n\x00 ťƝŦȴŧ˦Ŧʝťѓ ŧǀťबŭǠ\n ŨJťś \nŪνǕߏǖϳŦ̍\r\r\x00 \x00\n\x00ǘťƝŦ࠳ŧ˦ŦʝťӵǗˆ]Ɲǻ ŧǀť࠹\n ŨJťśǘ\nťĭǕ\nǘŦƤ \nŦҺ *ǘŦΉƝ Ǘˆ]ƝǗˆ]ǘŦ׀ũئǑ\x00\x00 \r\n\x00 \x00 \x00\r ǂŨϮ uź^ť\x00ťÍťޚŢƌź^ť\x00ťآ\nź^ť\x00ťÍťĒ\n,Ţˢ\nź^ť\x00ť݅ ź^ť\x00ťŅ\nࣷ\rƁťc\n\n 'Ţˢ \rƁť\x00 Nj\nۮťÍťě  \rťÍťě : әťÍťě ǒ\x00\r \x00\n\x00 \x00 ʚ'ť߶ ť_ źÂť\x00ƦŪб\n\n ť/\nI  \nؘź­ť ѽ ƥť ɶ ťܥź^ť \x00 ԩǂŪÝƥť \x00 ťV ťܸǓ ƂťǂťóŦʈƦŬңǔ\x00\x00 \r\n'ƝǃťƩÞ\nǃťƩ!\nǃťģ\n\nťſŦࢦŦȕ\nťſŬմũU \nť߱a ǃťϠť˓\nƀ\n DŽǑDŽ\x00ŧʧǂťϻǂťˑDŽ \x00\x00 \x00\n*NJťˬ\x00Ɲ\x00\x00Ɲ\x00 \x00\n%\r\x00*NJťˬ\x00\x00Ɲޕȋ.âʎ”ġºġ%’ŢٮŢЧŢ̯Ţ֤Ţ־’ŢԪŢ࣬ŢجŢֲ¤ M\r\x00 Ä,ťÊīƎ ť/ϬRť\"Ģ «Rġlť˚ ťɛŢɸ¤ŀ ťǔŢ΂+\x00\x00 \x00\n\x00 \x00 \x00\r «R\x00\n«¯\x00 ťʗ ť\"Ţԧ ťĞŢǕŢdŢ̲$ ťپ  ƶŢɸ¤ŀ ťǔŢन ŀ \n ť\"ƠťӦl=ŢדŢݭ ťзl=Ţ؀¤ \n \nťV )Š =Ţ҇ Ø\r\n” S\r7ŢkŢA S\r7ŢbŢA S\r7Ţ[ŢA \rŢʞ  \r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00ťì«¯\x00ťĵ\n2 ? U\rlǏ;Ţت$`ŢԎ3Ţˊ3Ţ߽3Ţԣ3Ţփýࢹ7Ţ׊#\nHŢ̒\n7Ţؑ;Ţࡑ#  ӂ \r!;ŢҤ ] ]\r;Ţ֠#  ˮ \rˮ \r!;Ţث ] ]\rX #жƠ{TŢӫ\r\x00\r \x00 # HŢ۴ 7ރ \n\x00\n σࡤ\nďߑî ď܀ż ďγĀ\rďܨ࡮ࡻó ƯƞŦۇťǙƀƍŧDz íź߮Ɨ¢Ư4źǐȞ¬ƎƞŨݏ í#ƠQƒ4ƣΔƞƮƞūܙ íwƢCƬ&ƌsƠãźÚƌԹƙťâí ìն íwŽ˅ƌ4äŸƆƙñŦôźĩźÃ í#ƪ8źґƎsźŘƧťÃƏƠť۪ź࣌źަŢçí ìÛ\ràमţ\x00Ţ\x00Ť\x00ƛՉź í#Ƙ˅ƕ&ævƠíźҹƬí Ʀ4ƕƓݒƐťêáƞ1źЕƬñŦŴƓƥź߀ƍťŦƫƞŧ͂ íƯ|å¢ƨ4Ɣ1\rƵ(ƶ(Ʒ(Ƹ(ƹ(ƺÈƍſťՒƟŽí źࢆƎí ì± ź̝Šťxť˹íƤ۩źőťÃóIJí źäƙƞť͇ í ƀCƙ8ź֦ž1 펟ՍƨåvƮ ƆƓťxťȱ í ä8źۻźࡢƜ1í źټçźÈżƌí Ə4ŽíźǤãźȈñŦŗÅ>ƒťäźȷťâ íŽƤ¢ƒžŸƆƠࢵƔñŦ˜źĝƞŦţéƞťөƱƞŭэƲƍŭ࢓ ƻźÂťŪږíƙ4Ƒí Ž4ƥźĝƪíƙ4å źࡨƱƱŦʄåźÚƉΌí Ƨ4Ɠ íwƮǜä@Ʈvƍƚ̘ŻÈƊޠí Ư&ží Ƌ@ƒźĩƞŧţƏƘź֚ƠťȸźࢬƍŦթ íƭQźࡁƨ&Ʀ1ìˠ íƠ8źؓźْƠ1ƅƞŪɉźܮí ƅ&ƕì޼ í£Ƣ8ƜƎŸƭşݦŠ؇ í Ƣ8ž8ƍƋ1íƠƟƂƍŦࢡí źҊæſ׭ƔنæƍťDzí źۋźāżñŦƴ íƟCźއƖƠ1ƼÈƗñŦ߯źݢƍŮƢíæ&ƕíźȗźÃ í#ƣCƊ4ź΅źȉźȈƠŭǩźݜź҄íƐźĐí ź̷Ɖ ê’ŢńŢؚŢ˿ŢʄèñŦôƈƏí Ɯ4ƣíƑ&Ə í#źۖźճƭŸƍƒƞŦƢƥƍũ֡ƇťÕõIJƭϓƪƞŦǵçƠťࢧ í ƑCơ8źҒƜ1íƢ&Ɓíƣ&źâƯťäƜƞťǙ í#ƏCƮ@ƫvżí Ɵ&źÚ í#ſ8ƍ&ƤsƐ íźڗƐQƞ4Ƥ1źĊƍťࣻ í#źًƙƅvƔíźǤźȉźޛƍťȫƦƞŪŦƈ޳Ç>ȞњíƞƬƞñŦѢí ƀ&ží źɖźŁƟñŦͨƞΑźĝñŦūèۏŽ࣪ƋڣíèƖƘʟƇݵơťʥƬऀƖƠŬɳí ìə í#ź࠯ƪ&ƈvƥíźĶſ íƊCƇ¢ŽźތȻźij\x00Ʀ\x00Ū\x00ı\x00Ţ\x00ƒ\x00ũ\x00ƞ\x00ŭ\x00ŧ\x00Ŧ\x00ū\x00ť\x00Ɲ\x00Ũ\x00Ŭ\x00ŗ\x00¸\x00Ō\x00Ö\x00ř\x00é\x00Œ\x00º\x00ć\x00Ś\x00ƫ\x00Ů\x00ą\x00$\x00Ċ\x00ċ\x00o\x00Ɣ\x00Ŋ\x00Ɠ\x00è\x00ã\x00ĭ\x00ģ\x00Ɯ\x00¹\x00Ń\x00Ơ\x00ƪ\x00Ŗ\x00ń\x00Ƭ\x00ň\x00Æ\x00D\x00j\x00ÿ\x00À\x00`\x00Ʊ\x00·\x00Į\x00Ó\x00Ã\x00Ņ\x007\x00Á\x00Ŕ\x00¼\x00İ\x00p\x00Ő\x00Ĥ\x00Ò\x00ŕ\x00¾\x00»\x00Ÿ\x00x\x00Ü\x00\x00Ê\x00Â\x00ō\x00C\x000\x00>\x00v\x00{\x00X\x00|\x00}\x00 \x00\"\x005\x00Ā\x00@\x00”\x00ý\x00F\x00Î\x00ħ\x004\x00Í\x00½\x00Ī\x00¬\x00Ð\x00Ì\x00IJ\x00ľ\x00q\x00Đ\x00)\x00ę\x00È\x00Ä\x00ß\x00Ú\x00ď\x00Ø\x00É\x00Ô\x00Þ\x00Û\x00Ù\x00ƨ\x00×\x00¿\x00Ñ\x00Ï\x00Ý\x00 \x00Ɵ\x00E\x00ŀ\x00R\x00ƙ\x00Õ\x00¶\x00’\x00đ\x00‹\x00\x00š\x00‘\x001\x00µ\x00\x00\x00'\x00<\x00\x00\x00¦\x00£\x00V\x00U\x00Œ\x00L\x00°\x00±\x00;\x00i\x00Q\x00\x00\x00\x009\x00^\x00…\x00„\x00€\x00\x002\x00©\x00d\x00²\x00¡\x00™\x00­\x00‚\x00k\x00–\x00,\x00\x00w\x00H\x00/\x00\x00T\x00Ă\x00s\x00ƒ\x00(\x00®\x00 \x00]\x00h\x00a\x00:\x00\x00[\x00\x00Z\x00›\x00‡\x00ˆ\x00†\x00¯\x00 \x00O\x00t\x00e\x00\x00&\x00g\x00u\x00-\x00r\x00Y\x00n\x00%\x00=\x00—\x00\x00.\x00z\x00l\x00\x00S\x00\n\x00¢\x00\r\x00\x00œ\x00+\x00?\x00W\x00\x003\x008\x00Š\x00m\x00c\x00ž\x00A\x00¥\x00~\x00«\x00“\x00\x00Š\x00\x00_\x00I\x00!\x00N\x00 \x00´\x00*\x00f\x00¤\x00³\x00\\\x00‰\x00Ž\x00\x00B\x00J\x00\x00y\x006\x00þ\x00•\x00P\x00K\x00ª\x00G\x00b\x00\x00¨\x00#\x00˜\x00\x00§\x00\x00MƗƠť֏ź̅ŢïƍƍíƏ4źÚưƞŨ܋äƍťܿ íwſ8źĶžsƀ í ƕ¢Ƣ|Ɣ&źǐƈťê íƆÜƅCƉ4źࢯí ƒ@ƎË>ãࡥƣƞŭ˔ŁťՅâ>ƐñŦ࢕í ìĜƀñŦŗíźҙźķžÈíźԯźƈźࠂƞŨƢ íƌ8ƣCſ&źղźϐŻƑťŀ źʬŢ̛ŢĵŢߗ åŠťxťǩí ìɀź˵ í#ãCźװƟsƏƞƨíƆ&ƫƟƠťԘ íźࠩƒQźȥƨ1źϴƍŬŠƳƔ í£Ʀ8źɧƣŸźǢƁƍťदíæèźőñŦʒ í#ƐÜƁ@żŸźƈíƧ&źÃƕñŦʒƟťķƤťâƩñŦ߉ íƍ|Ə8ź࢐Ɛ1šşݗôIJźĩťĨƌƉí ƀƮíƥżƑΧƉç íƜCƢCƧƜ1źӢƍťߪ íƬǜſQźȗè1ƍñŦƴìʋµƏťŁźĊñŦԌžèí Ʃ4żźȷƍŧܪȞߒƍñŦŴ íź࢝ƣQƯƟ1í ìࣆ źőãťxťȱòIJźĝñŦŴ í£ź͞Ɩ&źѦƊ í#ź࢞Ƨ&źӈžíƎ&ƚ 펟҅ƓƙŸźݤƨݔìʡìĤ\"!#$Ȟȡ%&șȚțȜȝ ȅȆȇȈȉȊȋȌȍȎȏȐȑȒȓȔȕȖȗȘFƌ Ǝ\nƫ Ư ƹ\rŰűćĈZǸƖǹƚǺƝǻĕǼĜǽĠǾiǿlȀȁȂȃFȄNľƿǀLJǐǒ)¢Ǘ¯ß€l|j¬S¨«”khqUvˆ5Kb'†A‘.rw8:¡\r ‰#=$^!m‡˜[„zFŒVD­–œ®W-o¦,¢%‹T;ŸIP4eužRi\\d›C\"(s©1n ašaJp* @•G“9x£]Zt}™_O?~‚ŽyQ&EY©M>\n6—X/¤`B7©\x00¥©\" ©Šc©§Lag3/ª) f0©+\"{…2<Hƒ/N’\x00¯\"БŻÓ ގIŢ˴Ţ̀ŻȃȞࣅ֝# \"ढȞअԦOŢˈ4ŢǓŢ_)X;ȯƴȞ´#ƞť࠶חźࡴșť/șErOŢʍ4~)X%\r\x00;… #ƈ8ƚCƯ@ƒ1 ƠťŒ ԔŻȀȕŭࡒ\"ʋŤöū# \"ڒŻ#ƞťǵ<ƳࠬƬ§Ŧʭ ș<r% … # ť/<¬# \"əŻȁźۗÕų̆ žť\"ƙș\x00Ț1Ó °IșĎȚɝșErOŢÌ4~)X%\x00;…ĨŻǾŻǺŷĨ# \"Û# <źݮťƞ\x00ș #ƫ8Ƌ8ƫ4źٹ# ŻŰާƘė>##ť׃ŬࢩĘŨŖʦƳȞ ȅࡣOŢˈFȯՄŢ©ŢīŢ_ŢUŢºŢȫŻ<ȅ#Ƌ4ƌźˁȞ࠼ȖșErOŢĆ4~)X%\x00@\x00;…ŵʥŢīƒťģťǴťƄŦГאșŰťԺș֣ťƨŨېŢçŻ ¶ƾƞŦࡿƿƞŧǥpŻ ȊźЬ%>ŻIJŢñűŘ# Ż@źR¶ƾŦèŦïƾŨЃŦŻƾũډŦވ*ƾƝy ȅƞťǯťxŦٽȒȓȔŻƛƄŻÓ ţŽݨţ \x00ࡽŻŬÚŻ Żǹ\r#ƞŦ۹źɯźƾŢô#ƾșErOŢ_4~)X%\x00@\x00;… ԬŢЀŢ֊Ţôȡ¬Șʟ ȏȐȑ ƞŦ՛ťք<źटŲ™\r#ƞŪࡄƝ&ťࢂƞ# ƫ@ƤŻƼșžșť›șťēޙŪŁŻţöșũâȞࠇϸ# \"Ĝ\r<ƞŦņťՀƬ§ŦޤŢΟŻǻ# \"˖ūŸŸș # Čș\x00ž #wƤQƍ4ź̾źƈŻŮRŹǣ# Ɖ@ƤƄŀŻ<ƼșžŢöș\rȅȆȇȈȉȊȗŻǼȞˏʦµ# źֺƑƞŧЎŻșErOŢU4~)X%\n\x00@ \x00; …Ŵà ƠťŒ Ģůķ<ŢïŻȂŻ\nŻ# \"ݞ\"م# \"ҫŶê ƞťǯťxŦ֯șErOŢº4~)X%\x00@\x00;…ŨÕȆȇŻ ċƞ\x00Ŧޥ ŢR ȋȌȍȎIJŢǹ# \"יŻťäŻŻȄIJŢŗ\x00Żǿ# \"ϲƞŦӐĆ#6ŢdŻǽ<Ţ࡛Ŧŀ# \"±Ó ޙ°IșĎȚɝŧĐÈŻ\rŻǸȡȣ \rȟȠ\nDF 9\n\r śǛ*¡®HŃp?.œéAØ Xŏğ\x00p\\jppįp7Œp>ŀ»‹g«ĶBµÿp>9»Jĉ#ŽĺAtČžċŒÖÀ|ИpÁpî@p[ĄÖPhčăpMÖâ¼ļpðĩnĸp°YŐ'T…\r‰ÂĔÓĴĕêpŋlpRAĈāpý ¾Ėþ¬ŇA¯VĪ†ÀVp÷ÚpzpC¨=AÅĭŁúZ=ąkœ ġõcĠpÈppU(pÜ8ĂĐÄÚÙĻÚĚÆÚޟ¦ìĝëňãÚöp¤ęr„ŖpÛÚpŊçĀøtŒqiĞIû¢Ĺ“İÚ+6ĦˆIJńyûķņÚĢ™²:ùł±ĵ\"ħĘoGbf2ěύŗĮQ~³=Ë·dŘpp0KOEå5ď<àLpÎÖxĎĜvpDŋĊpŋ^¶Ēģ­ä¥ Ì´ijėߍ_đĿ!Ś–m‘>ôpĆ́ԠÚp>ŀ»t`ª¬ŎA$Īī$Ŕñ—“Ú1Ģp€ŅÝńőAá²Õupƒŕppp>ŀ»ĥæ2óćíw\nÚtAī’3‚a¯F&¹p›pľÑĨNıÇSpŋ%{pŋspŌÊ/šÃō¿©ř)p£ï‡pWÚpĬÚ§Ú-peèʼnŠpp¸AĤ}•pò½×pÒēĽpºpüÉ]”p,4;p\x00śȘƔƗƖŨϩ\x00ŢԍƖŨܛ\x00ŢځȡࠫȓijȞȒ ċƒ\x00ŦǸǺm ȅ-Ɲ&ȉ-ƝȊ-Ɲȋ-ƝȌ-Ɲť/ ȅÝň 8 ťZŢʰ ťZŢñ ـȎ z \rӃ\rŦ߁ŢRŎ\x00ȉ ؠ ȅťZŢ³ț€ŢR €ŢRȌŨŠ-Ɲ  ƯÜƇQź׍Ʀ1½Ȍȣ¬ wźȳźɖƣsƑ ȟƒťƩũͻ  Ţऄ\r^ť׶\r ڮȍijȞȋ½Ȗ  ƮQƜןź͓ź͡ Ԑ\r ũࠠ Ţd фƞŦņťʮȇNjȈ \r3Ȇ؞Ţŵŗ\x00ȅȈi ԭŎ\x00ȇ ȟťĭŧȽ Ó IƼŊ\r¥ŻťϪ ͸ȡ͎ ƣCƯ|źࣟŻ1 ȎƔȍTȌ ċƒ\x00ŦɣǸm\r<\r҆ŠŢӕ͐ť࠘\rÕŒ\x00ź̹ő\x00ȉźʣŢՂ ċƒ\x00ŧźǾm ƫƉȡݶ ȅÑŅ\r)Ƭ§Ŧʭʡȅťࡺ  ċƒ\x00Ŧ՞Ȁm\r Ƙė>× ŧ׆ȣՋ ŧࢻ þِ þӷťʩ ӭ\rp ɋ ܏ſŧŦȏȞ´ ċƒ\x00ŧğǻm £ƈÜƋƯsƉŒ\x00țŻ\n ȅ,ƝŝƞŦņťʮ\r3ȅʃŢŵ ċƒ\x00ŦŅǹmȋȊ-ŧׇȋ-ŧԋȌ-ŨŠŎ\x00Ȏ ċƒ\x00ťëǼmȆ ьșȒı Ŏ\x00ȘѮŢ֙ȘŎ\x00Ȉȟ)ƽ>ŗ\x00ȆwźшŢأࢗ ࠆ \rťǮ   Ūοũׯ½ȕ Ѳ  źȳƫ¢ƪ&ƚ1 Ţϫŗ\x00ȇ ؒŌ\x00ȝƊ4ƫ  Ě\x00\x00 Ҿ Ő\x00ijŢत ऒȇ Ȏ ƞťóŦ˔ȡřzȊi ŢĐ ċƒ\x00Ŧ̰Ȃm ť/µ ƞťóŦܦ \rťŤŧ܄ŧ٫ȇi ɫ< ȐƔȑTȆ ő\x00ƠťÎȏ1 Ȟȏ  \rBť//×ƞŦؽƞŦʢŧ޽ƞŦʢŧࢷ¥ ƞąڝ Ŧٝ ŦȲŦ˲ ŦȲŦ̕ťʩƭ\rpȋȞ´ Ő\x00ȡ݄ŢߍȊ1źјŕ\x00ș ࣕ ¶ ȡगà\rݡ #ƤCƉź٠ƈȡ͢Ƞ \rŦڽťЅ\rŎ\x00Ȋ ȆťZŢ³Ȇřŧ̜ޒŎ\x00ȗ Ř\x00 \x00țȍ'ןښĀޜƞūվƝ*ȅƞť—ŬƇȃۓƞŨШƝ*ȉƞť—ŨÑȄۦ p Ûő\x00 ȇȇťZŢĨ ރĤő\x00ȅˠ ȅìŋ ċȟ\x00ũ»\n ťWŨê<\rî\rÕ\rŐ\x00ȡǟŢ݁ŢńȌ1\rB\rBرŢѳ\rBɼŢū £ŻQƪ4ƚvƪ<Ŭࠦ Ţdŗ\x00ȉ Ư@Ɯ Ţä wȇ&ȅ&ȆŻ,ťՁȇřŧѪ  ƒťƄũש ťWŪǣ ࢮ ȅ@Ȇ \rťǮƦū࡟Ň\rȅŌ\x00ȍ սŻ  €Ţ™ ȅƚȗƚȕƚȖı \rǛťĞ\rȼť/i\rē> ťWŨāȆȅ ࢨ ڤȟŽ̠ȡڻŌ\x00 ȋŧघŖ\x00ȅ  ź࢏ƊQƋ&źĽń\r €Ţ³\r<źࡠ3ʁŢܞ31Ŏ\x00ȕ źƒ  ߐ \r\rƜťĄťߛ ŢdŎ\x00Ȕ¶ȣݬ p źʔƜ ࢃ Ͱ֮ț€Ţ³ȏıȚ-Ɲ\rŐ\x00ȡǟŢ˻Ţܲȋ1Ǝ4ƒ ȆĔĦ1 #Ż8ź̃ź٪Ư ࡷڱ ĜŖ\x00Ȇ \rŊ\rŦעŢR ȅàň ±  ň )Š ťָ ȅêŋ ťWũࡧź׋Ɗ\rƀť \x00Ȋŧͼ  π ċƒ\x00ŧࠕǽmŒ\x00źֿĤț€Ţd\rɚ\rȎȒȞ´źЇ #ƙ|ƣźَƊ շ ƞąǺȅřŦۣ £Ƥ|Ƥ@ƑsƊ ࠐȅȆœ\x00ź܃<  ޮź̧ťĻ ƞąʾťˇťƨüіŢƌƞąʾťˇťƨŦߚŢç ࢜ ޙ \r\rBťࠓ ƦŬ͗ ɀȅȞ´  ťώŨࣹȆȡܕ ƋźRȒ ȅÞņ½ȅȆ- ٭ȇ- ࣽȈ- dž ԄțެŢǓŢ͚ijŢՇ ȔƔȓTȉő\x00Ȇi ͉ő\x00ȊҼȈ džȏ ċƒ\x00ŦĹǿm ȅAʼnȣ\rƞąǺźʣŢȊŎ\x00Ȗȉi Ͼʕ ͤ \r  ťλ ȅ2ŋœ\x00Ȝȑ  ֈ ƞťóŦȸ\r#\rŭܱ\rŦѺŢR \r,Ţя\rBťѠص\rūع\rŬΗ\rŪΒȅȞيŌ\x00źد Ӵ ƙƫ ࠖ Եˎ €Ţd ȇ\r\rࣱ\rٖ\rЉ\r߬Œ\x00Ț½ȗ,ťșŎ\x00Ȑ\r\r\rBťĄťǹ ŢR ޿,Ţ³ #ƚCƯ@ƜvƎ\rBƞŧ˄\rBŢñ ċƒ\x00Ũ݊ȁmťޣ ȉȉťZޙ ŢR½ȉźϋȡեȡֹ ťWŭѫ\rť/ <\rťZŢƆ\r؝iŻ  ࢴ\rƞŦĴ\rBĢ ȆťZŢd Ȟ޷ŢȊŕ\x00\r Ȟߤȅiȋı \rķ\x00  ȅťZŢd\r#\rŭ҂\rŬҘŢRŎ\x00Ȇ  ť/Ō\x00 օ Ɗ@ƚ¶ȣۀ p<\rŪţțɫ Ŕ\x00ťȢŢӺƼ)ŠɞȣȤ Ȣ \n  \r\"k_Eef15#1Q\r[cAi1:1\n(A]1T.=DUIS,hUV1B`D'!dbh'1gGhX0@\x00>1F1F1W*j1&Ch<H)hZ$hR8h+ 1/69L D J7^M-?2Y 1K;ANA1P3A14\"%1\\OSh a1\x00kȇ £Ɗ|źԶƒsƣŻ  ȟŪܗ\x00  Ɣĥ\nŢŻ ́ƫ\n\x00Ţ˜ ࡭Ĥ Ɣ\x00ŢŻ Քȉ ̔ȟŭè\r &,ũࠑ,ũĨȣ #ƇCŻ@ƎvƜ ߄  &ťŠŢï<ɞŻ Ż\rŻ ŧࣃƞũڦŪګ\n ࣢ȟŪпȏ <ޘȟ) ȏƔŧ҉ #ȢûŮƒȣɍȢŦŘ ŚŢ߻\x00 ƞŦĴ #ȢúŮƒ ƇCƋ8ƣ&Ǝ1 ƒť—÷ \rź^ť\x00ŬЮŢçȉ ީ ƉCźͩƉ@źĽ źʔƫµ ȟŦÝŧȽ ͱ ƱŦʆùɰ ׌ȣȨӬ #ȢøŮƒıýɰ×*Ŀ\x00ȞԓťZŢʵ܂p ƒť—Ą \rź^ť\x00ũϔŢçK¶ ť/IžŨ˟ݺťŠŢؗŃ&·,0·@Ƹ*ȇŚɈŧƇƭpȊ ࢋ ± ϏȢjƒ ɋŻ\nȣˏȎŪ࢘ʕ ȅȣǍŦϧ\x00ȅ ȟťĭŦÑ )ƦŨñȣȨ ݧ\rŦࣲƦŭ»ťנ\rȟŦÝŦÑģȊťʽ  ƑÜƮQƑźĽ Ư¢źߵƤ4źΥ ƒť—ā ˎ ˖ȡϊ ȆȣǍŧɩ\x00ȆƞŬ˟ƞŬԕƞũɉͽ wƎQźڬƤsź͖ ƒť—ă ȇ  ƚ|ƙ|źȥƤ1<Ż ťZŢd ȟťĭŦÑ\r Ĝ ƒȢŭƝ ťZŢ³Ż Ȥ¬ ȍƔŨࡩŢŵ ÛȤۭ ȡԜȟŧࡊȟŧ۷\rȤȥ \n  $  \n\x00\r\x00Ȉ\n Ƞ ŢӗȆȅȆȞ´Ȉ ±ȠiȊi ÛĤ Ŧй ȟŭģ \x00\x00Ż Ż\rȟŦÝŦÑģȊťʽ×ȟŧ̈́\nźÂťȟŧ߾ŭ܅\nŧ͕ ƭ pµȣɍȊȣѤ ȇȞȆȥ¬ ȣř ŦПŦх\n ƒȢž\nKȈ ȊƞŦĴȊकȊŻ \n ȥ\x00 \r\x00\x00\x00\x00 \nź^ť\x00Ŭמµȣř\n ±";
  4371. } else {
  4372. _$_O += _$je;
  4373. }
  4374. } else if (_$nB < 56) {
  4375. if (_$nB === 52) {
  4376. _$hC = [];
  4377. } else if (_$nB === 53) {
  4378. _$_I = _$bS == 64;
  4379. } else if (_$nB === 54) {
  4380. _$_i = [];
  4381. } else {
  4382. !_$_I ? _$jv += 42 : 0;
  4383. }
  4384. } else if (_$nB < 60) {
  4385. if (_$nB === 56) {
  4386. _$jv += 2;
  4387. } else if (_$nB === 57) {
  4388. _$_I = _$_W > 0;
  4389. } else if (_$nB === 58) {
  4390. _$jv += -6;
  4391. } else {
  4392. _$_I = !_$f5;
  4393. }
  4394. } else {
  4395. if (_$nB === 60) {
  4396. _$_i.push(_$fq.substr(0, _$iX() % 5));
  4397. } else if (_$nB === 61) {
  4398. !_$_I ? _$jv += -40 : 0;
  4399. } else if (_$nB === 62) {
  4400. return new _$$a().getTime();
  4401. } else {
  4402. _$bZ = _$hP(26);
  4403. }
  4404. }
  4405. }
  4406. } else {
  4407. if (_$nB < 80) {
  4408. if (_$nB < 68) {
  4409. if (_$nB === 64) {
  4410. return _$m7;
  4411. } else if (_$nB === 65) {
  4412. _$iX = _$nx(_$__);
  4413. } else if (_$nB === 66) {
  4414. _$m7 = "_$abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".split('');
  4415. } else {
  4416. _$kB.lcd = _$aD;
  4417. }
  4418. } else if (_$nB < 72) {
  4419. if (_$nB === 68) {
  4420. _$_I = !_$a0;
  4421. } else if (_$nB === 69) {
  4422. _$_I = _$ju < _$_W;
  4423. } else if (_$nB === 70) {
  4424. _$_I = !_$hC;
  4425. } else {
  4426. return _$__;
  4427. }
  4428. } else if (_$nB < 76) {
  4429. if (_$nB === 72) {
  4430. _$hC[3] = _$$S;
  4431. } else if (_$nB === 73) {
  4432. _$_Y.push(_$j9(7, _$kQ() * 55295 + _$kQ()));
  4433. } else if (_$nB === 74) {
  4434. _$bS++;
  4435. } else {
  4436. !_$_I ? _$jv += -24 : 0;
  4437. }
  4438. } else {
  4439. if (_$nB === 76) {
  4440. _$__[_$lK] = "_$" + _$m7[_$hC] + _$m7[_$bS];
  4441. } else if (_$nB === 77) {
  4442. return;
  4443. } else if (_$nB === 78) {
  4444. !_$_I ? _$jv += 4 : 0;
  4445. } else {
  4446. _$_O = 0;
  4447. }
  4448. }
  4449. } else {
  4450. if (_$nB < 84) {
  4451. if (_$nB === 80) {
  4452. _$$S = 0;
  4453. } else if (_$nB === 81) {
  4454. _$jv += -19;
  4455. } else if (_$nB === 82) {
  4456. _$bS = 0;
  4457. } else {
  4458. _$_i.push("})($_ts.scj,$_ts.aebi);");
  4459. }
  4460. } else if (_$nB < 88) {
  4461. if (_$nB === 84) {
  4462. _$_Y = _$aC.substr(_$_O, _$je).split(_$_c.fromCharCode(257));
  4463. } else if (_$nB === 85) {
  4464. _$m7 = _$$K.execScript(_$nb);
  4465. } else if (_$nB === 86) {
  4466. !_$_I ? _$jv += 40 : 0;
  4467. } else {
  4468. _$hC[0] = "iPED@llhJ{im{kl`kljaf}`wzz=n{flDakl{f{j`{pl{jfwd`whh{fz;~adz`X`mfz{|af{z`mk{j9}{fl`lwj}{l`fwe{`lgKljaf}`ywdd`kday{`ygfywl`hjglglqh{`l{kl`yj{wl{=d{e{fl`7`gfdgwz`~llhk2`j{khgfk{Lqh{`dgywlagf`klwlmk`jgmfz`[`9ylan{PGxb{yl`j{wzqKlwl{`hmk~`j{khgfk{`kijl`#`2`j{egn{;~adz`whhdq`=n{flLwj}{l`d{f}l~`ewly~`zgyme{fl=d{e{fl`gfj{wzqklwl{y~wf}{`j{egn{=n{flDakl{f{j`=cyH`kmxklj`bgaf`lqh{`gh{f`afz{pG|`khdal`5`gf{jjgj`wxk`|dggj`|mfylagf`fmex{j`~{wz{jk`l{pl`j{khgfk{L{pl`}{l9lljaxml{`}{l`}{l=d{e{fl:qAz`gflae{gml`xgzq`khday{`klqd{`&`~j{|`~llh2`ewly~E{zaw`c{qzgof`lae{Klweh`gfdgwzklwjl`zan`y{ad`jwfzge`k{l9lljaxml{`}`0(`}{l=d{e{flk:qLw}Fwe{`aff{j@LED`k{fz`@LED>gje=d{e{fl`w`j{khgfk{PED`PED@llhJ{im{kl=n{flLwj}{l`,,+`kljaf}a|q`c{q;gz{`ywfHdwqLqh{`l~{f`3`k{wjy~`{n{fl`fgo`Z`k{lAfl{jnwd`yggca{`l{pl;gfl{fl`J{khgfk{YLqh{`zgyme{fl`yd{wjAfl{jnwd`ydgk{`hjglgygd`gfwxgjl`h{j|gjewfy{`gfkmyy{kk`gfdgwz{fz`j{hdwy{`ewp`}{lLae{`~azz{f`afz{p{z<:`klwlmkL{pl`afl{jfwd`ywfnwk`xmllgf`gfhjg}j{kk`h||(`hwjk{`k{l`Ewl~`klwyc`~wkGofHjgh{jlq`kyjahl`)`t`EayjgE{kk{f}{j`j{kmdl`lgh`dgywdKlgjw}{`$_QNLP`}{l;gfl{pl`egmk{zgof`ygflwafk`J{im{kl`ywfzazwl{`lgmy~{fz`fgz{Fwe{`?{lNwjawxd{`T`|gje`___LK___`ewly~{k`hwl~fwe{`E{zawKlj{weLjwyc`{fme{jwl{<{nay{k`k{lAl{e`nakaxadalq`hgjl`=d{e{fl`e{zaw<{nay{k`z{kyjahlagf`@{wz{jk`gml{j@LED`zwlw`~gklfwe{`kjy`bkgf`whh{fz`hgh`egfl~`egmk{egn{`(`|gflk`hwj{flFgz{`e{l~gz`jmf`Gn{jjaz{Eae{Lqh{`[[`nwdm{`|addKlqd{`ygehad{K~wz{j`~{a}~l`dgwz`~gkl`afhml`akFwF`{nwd`a`h|x*_(`|{ly~`jox(`egmk{mh`$x_ywdd@wfzd{j`gxb{yl`ydayc`lgDgo{j;wk{`}{lAl{e`whhdaywlagf[ped`oazl~`H`9bwp j{khgfk{ xgzq z{yjqhlagf |wad{z Y `kmxeal`U`Sgxb{yl 9jjwq]`\"`$_lk`|jwylagfwdK{ygfz<a}alk`q{wj`{jjgj`lae{Rgf{`wxgjl`|w(Y`k{lJ{im{kl@{wz{j`yjqhlg`e{kkw}{`|jge;~wj;gz{`dgywd<{kyjahlagf`j`h|z(`g||k{lOazl~`k{d|`lgmy~klwjl`y`h|x(`{p{yKyjahl`k{lLae{gml`jow(`fmdd`$xe>(wPRdJedNqM@B`xwll{jq`9JJ9Q_:M>>=J`h|w(`lw}Fwe{`n{jl{pHgk9lljax`jg`fmeAl{ek`HGKL`$FO=-FrJcQb~eQrE,`]`y~wj;gz{9l`N=JL=P_K@9<=J`g||k{l@{a}~l`}{lK~wz{jHj{yakagf>gjewl`3 {phaj{k5`gxb{ylKlgj{Fwe{k`wlljaxml{k`wdh~w`wzz{zFgz{k`zwq`lg?ELKljaf}`x{lw`gn{jjaz{Eae{Lqh{`+b{9D{Kkw.`}{lGofHjgh{jlq<{kyjahlgj`}{lJ{khgfk{@{wz{j`nz>e`e`y~adzDakl`|addL{pl`k{kkagfKlgjw}{`g||k{lMfa|gje`dgywd{`h|{(`}{lKgmjy{k`ywd{fzwj`$_QOLM`wfy~gj`ddx`yj{wl{K~wz{j`yj{z{flawdk`hwjk{Afl`fmex{jaf}Kqkl{e`wygk`lgmy~egn{`c{qmh`}{`h|y(`joy(`?{l9ddJ{khgfk{@{wz{jk`lgMhh{j;wk{`\\sTZW7U\\u`lg<wlwMJD`lG`=KGD;_OG<FAO_J=KOGJ:_`anakaxadql~yfw{}``y~wj}af}Lae{`y~adzj{f`.z/+,,.|`|gj=wy~`ljwfkwylagf`_$jy`Eayjgkg|lZPED@LLH`hh{w`yRzkdwj}edRS qluh u 3 dym :ujyRS1 xyvk{{yh1 hyjkhd dym :ujyRS W u 4 [ZZ1sRSS`al{eKar{`wa`g+vlzwql R\\LENKQ]LI F1>f=7f=-2GK`>J9?E=FL_K@9<=J`faw}ngwjl`<GEHwjk{j`wllwy~K~wz{j`$x_hdwl|gje`hl~`wn`wlljaxml{Fwe{`dafcHjg}jwe`>dwk~`oafzgokY)*-*`1,`l{pl:wk{daf{`gxb{ylKlgj{`/+/,.).{`{KgE>xda>djgLeggXdgKg}Em{k`}weew`n{j`oaewp`%`k~wz{jKgmjy{`3 Kwe{Kal{5Fgf{`lq`j{egn{Al{e`$x_k{lmh`~llh2[[`y{ddmdwj`kyjgdd`wzz:{~wnagj`{kywh{`Eayjgkg|lZPED@LLHZ)Z(`3 K{ymj{`]64a64[a64!S{fza|]YY6`z{nay{gja{flwlagf`S`s`}{l9ddJ{khgfk{@{wz{jk`z{nay{Az`E=<AME_AFL`bwnwkyjahl2`naz{g`y~wf}{`3 hwl~5[`Fgz{`gfmh}jwz{f{{z{z`xx0*cb`n{jkagf`n{j_`kyj{{fQ`ghlagfk`hdm}afk`wllwy~=n{fl`f|_lhajyk_j{najzx{o__Xyfm|_lhajyk_j{najzx{o__Xz{hhwjofm_j{najzp|__Xz{hhwjofm_emaf{d{k__Xz{hhwjofm_j{najzx{o__Xz{hhwjofm_j{najz__X{lwmdwn{_j{najzp|__X{lwmdwn{_emaf{d{k__X{lwmdwn{_j{najzx{o__X{lwmdwn{_j{najz__`TS(Y1]s)X+uT\\ZS(Y1]s)X+uUs+ut TTS(Y1wY|]s)X,u2Us/X/uS(Y1wY|]s)X,utTS(Y1wY|]s)X,u2Us)X/u2tTS(Y1wY|]s)X,u2Us)X.u2S(Y1wY|]s)X,utTS(Y1wY|]s)X,u2Us)X-uT2S(Y1wY|]s)X,uUs)X*utTS(Y1wY|]s)X,u2Us)X,uT2S(Y1wY|]s)X,uUs)X+utTS(Y1wY|]s)X,u2Us)X+uT2S(Y1wY|]s)X,uUs)X,utTS(Y1wY|]s)X,u2Us)X*uT2S(Y1wY|]s)X,uUs)X-utS(Y1wY|]s)X,u2TT2S(Y1wY|]s)X,uUs)X.uUt2TT2S(Y1wY|]s)X,uUs)X/ut2Ut22T||||T2(s)X,uUs(X)u2Us(X)uTT*-S(Y-]tT*S(Y,]t)s(X)uS(Y1]Us(X)uS(Y1]U\\ZUs+X+uT*-S(Y-]tT*S(Y,]t)s(X)uS(Y1]Us(X)uS(Y1]UtTS(Y1wY|]s)X,u2Us)X,u2TT*-S(Y-]tT*S(Y,]t)s(X)uS(Y1]Us(X)uS(Y1]U\\ZUs+X+uT*-S(Y-]tT*S(Y,]t)s(X)uS(Y1]Us(X)uS(Y1]UU U`mjdT#z{|wmdl#mk{jzwlwU`gFLlwjcy`jgepyJZw{Hdwd{q j*?; fgjldg)Z`ekAfz{p{z<:`yda{flQ`kjy=d{e{fl`anlacx{o`yda{flP`fgz{Lqh{`ZH<>`{egj~;kk{d`R0P@BBQZFO=-FrJcQb~eQrE,TU`9rgE`}{lKmhhgjl{z=pl{fkagfk`EK`}{lHwjwe{l{j`~wfzd{j`a7sd>shdBsa94`xz`k~a|l`4=E:=< az5`;gdd{yl?wjxw}{`d@{`Sfwlan{ ygz{]`kyj{{fP`ja`wylagf`cywjLlgFgz`@A?@_AFL`{ph{jae{flwdYo{x}d`C{qxgwjz`j{khgfk{:gzq`npobmcbs`o{xlcHak{aj{kflllgK}j{w`Ekped+ZPED@LLH`gfx{|gj{mfdgwz`af__`d{n{d`)Z*+,`?{`<{nay{Gja{flwlagf=n{fl`.y.).{./`.,.-/..1.+.--(.1/0.-.y-*.)/,.1.|`ndwm{`~gn{jtgfYz{ewfztfgf{twfq`wxkgdml{`J{`{j~{wztzgyme`{nwjx`,{.).z.-`mfa|gje*|`X z{yjqhl{z KF2 `-+.1.z,0.-.1+x-+.1.z-+/-.{+x,{-+.1.z-+/-.{+x,..).{./-+.|.{./+x,x.).1-,.1+x,..).{./-+.|.{./,/,*+*+++)+*+x,x.).1-,.1,/,*+*+++)+*+x,z.1.+/*.|/+.|../,*(-1.),0.-.1+x,0.1/*.)./.1.{.|*(-+.).{/+*(,/,*+x-+-,,0.-.1/,.1*(,y.1./.0/,+x-+-,,0.-.1/,.1+x-+-,,x.).1/,.1+x-+-,-+.|.{./+x-+-,,..).{.//+.|.{./+x,y.1-+/-+x-1.|/--1/-.).{+x-+-,-0.1.0.-.1+x-+-,-w.0.|.{.//+.|.{./+x,.-w-+.0/--,.1+x,.-w-1.).|/,.1+x-+-,,+.).1/1/-.{+x-+-,,0/-/(.|+x-+-,,y.1/,.1+x-+-,-0.1.{./.x.).1+x-+-,-0.1.{//.-.1+x`-+.0.|.+.x//.)/..-,..y.)/+.0*{-+.0.|.+.x//.)/..-,..y.)/+.0`kmxkljaf}`#)/{`n>{wgAfynBwwlA{fwjy|b{{Xgkfa`ijycde<g=pl~OBa@9h)kNQCM+J>EIo0A?|HG1*xnDFbY/rP:wKfm(L;.}q_,R{-zv!8$%^&VTUW546Z7[23suS]t `TwfqY~gn{j`kyjahl_|f`}{l:gmfzaf};da{flJ{yl`)*/Z(Z(Z)`(Z(Z(Z(`y~wjk{l`{Yfylj~kwX{~lew{e{jw~zzgtey{mYfmlYjjdg{dkjnX{e~ew~{{jtw{zed{{Yfdlla{kff}anY{{kfYlgkjl{wY}ghhjwXe~je~{z{twydwgglfajYwo{hjh`{l~{jf{l`mk{Hjg}jwe`dypa~{l}vp}M__y~M__y~.{{pyoApeaMpzDpm/}zd~p}`zxdydayc`__{ozxaj`yj{wl{=n{fl`zwlwYhjgehlYwfko{j`j{khgfk{MJD`j{zdam:xgd:KE`{}wkk{Ezf{Kfgdwlwc`yda{fl {jjgj`fgf{`ydgf{`jggl`Egdx{a`__hjglg__`xafz:m||{j`mh~kgFala|wyalfg`.z.-.{/-.*.)/*`R0P@BBQZxe>(wPRdJedNqM@BTU`ywddxwyc`{??lf{j{dwAEX<{?ElzaAXDk}gfaz{DX}gfa9Xlmg~aj{r?Xl{w:{kkMj{fAg|JXl{wDfm~y`ek` kj|dp `.,.)/,.)*z.x.).{/,/-`Z><H`'wd{jlX ygf|ajeX hjgehl zakwxd{z |gj'X zgyme{fl\\Zdgywlagf\\Z~j{|`ag{j`ky`kkwd;mhy`aNdw{JZg{zaNdw{J`Hjgeak{`ej{awfdl`o{xcalJL;H{{j;gff{ylagf`Nk{aj\\g[fzTW\\(UYS]1WZw |Kaw\\jz[W\\`__wfy~gj__`hwj{fl=d{e{fl`kea@zzf{`9xgjl`oapp` ~{a}~l5. oazl~5) lqh{5whhdaywlagf[pYk~gycown{Y|dwk~ kjy5`ew?`[2mk{j_|gflk`}{lMfa|gjeDgywlagf`Af|afalq`y{K{jn{jk\" 2`|gjewlagf`mfa|gjeG||k{l`__#ydwkkLqh{`lggxdjw`Ekped*ZK{jn{jPED@LLHZ.Z(`}{lJwfzgeNwdm{k`{fwxd{N{jl{p9lljax9jjwq`z{|af{Hjgh{jla{k`KL9LA;_<J9O`0-`mg~ygHfakl`p{`EkpedZPED@LLH`n{jl{pHgk9jjwq`0.`lg>ap{z`.|.y.,-(`h`e{lw`00`lae{gml`{jwel~}`wyy{d{jwlagfAfydmzaf}?jwnalq`j{lmjf wSx]T`{d{k`><~Hd{{nalwyL3xal{fwE ywa~{fM af;3ggbdrw3r{Nzjfw3w{@ndl{ya w{F{mD LjH g-+L a~3fwlg~weD3 ?eKjw_l @{llkJ }{dmjw<3FAjHYgad~}3l{@ndl{ya wLD, +aD~} lp={lzfz{@3d{{n_EfAaz3w=KJ;xglgDg}al~: dg3zJGE ~gfwqlM afgy{zJ }{dmjw<3gjzaK fw k~LawC3fwwfwzK fww} eFE<3;<M ~yf{y3gdcy(*.)n_Z)3)wKkefmC}fwwfwz{Jm}wd3jAED F9AL?F: dg3zwKkefmK}fwFkemD+D }al~n3j{wzwf@3d{{nalwy{F{m~LfaK3;=w>ddwxcyK3ewmk}fe=bg3a{Lmdm}K fww} eFE;3jwgjka? lga~ y;K>3qd{eD }al~J xglg gaD~}3lgK9E<Y}alaD }al~K3Eg ;wKkfJ }{dmjw@3PQQawmBfk3lkk3ewmk}fkYfwYkmf,e3Le}e_f{e}f{3}gDa~ lwCffzw3wal{e k{f ogjwe3fwkkefmY}wkkffYemD,k3j{|aeYfgkgwh{yK3ewmk}fwKkfmFYeL+L a~3fg;gdGjMKYALPa~3fj<ag zwFck ~~K|a ld93lwKkefmL}d{}mJm}{dmjw:3f{w}adG KLE3 AwDLffa_}:?G lmak{zQ 3KR>aEgwmO?_):(0(+~3d{{nfYm{Y{{jm}wd3jKK L{Eazem;3mgajj{F o{C3e~j{E fgmzcdja ag:zd@3d{{nalwyD L+*M ldwjD }al~= lpf{{z3z{@ndl{ya wLD* -dMjl waD~}3lgJgxglE z{ma3ej<ag zwKkf: dg3zg}zm3qwkkfkYj{|ayYfg{zkfz{dY}al~K3a>zfj{f3lgYgwkkfyYcbeYz{ma3eaeamE3gJcy qJH ;g:zd93zfgjzad;yg c{Jm}wd3jwKkefmK}fwFkem,Y DaD~}3lwkkfkYj{|alYa~3fw9wH}fwQj{y3kwwm3dF:E ~gfwqlLG: dg3zYpkk3lgFglwKkfqEfwweRjowq}3a{@ndl{ya wLD+ +~Lfa= lpf{{z3zk9d~q{yKajlhLE9 ldF3lg gwKkf< n{fw}wjw aAMJ3xglg gg;zff{{k zg:zdJ3xglg g{EazemA wlad3yaeamp{F3lg gwKkf? jmme~c aAMK3LKN {aflewk{ {aD~}3l?DG_ajwq~3yq|g{|3{YpkkYldmjldw}al~<3@>a{O9Y/39R>OR:PGL_LfMyazg3{{<wnwfw}ajK fww} eFE: dg3zwkkfkYj{|aeYfgkgwh{yH3zwmw cg:cg: dg3z?D>YQRfa:}Caaw~KYm)KY-*N*ZD3Y?R>aQ}fa:wCKam~KY-)NYZ*3+{@ndl{yaFwm{D{ LjH g-+L 3~aEjykg|g la@wewdwqK3ewmk}fwKkfw>ddwxcyK3LKE z{ma elAdwya93zfgjzae=bg3awKkefmK}fwFkem+Y3JLA ;lKfg {{Kaj3|wkkfkYj{|akYweddwykhp3kYlkeYz{ma3e?DK_faw~{d{kJ3xglg g~LfaA wlad3y{ylfjmYqg}~lya;3gdcyhgwaD3emfamg_kwKkf>3gdajazfwK jyha ld93lgFglK fw km?ejcma~: dg3zLDQ@RK Cg:zd?3_K~LawK3ewmk}f{FFgem+__L3*j9xwya~3fwYkwkkffYjgwe3dgDa~ l{Lmdm}@3IQ@aa{-YK(D }al~D3fakzq{| jgK ewmk}f93 Jj;kqwl~da{< 3:wKkefm }wKkfE z{ma3ewkkefmY}wkkffYem-,~3fwYkwkkfxYdg3zmDaegfkmK_jyha3lKK Lg;zff{{k3zwKkefm<}n{fw}wjwJa}{dmjw93bfdwE dwqwdwewE 3FwKkefmL}w~Ta{llk3UR>wDLffa@}a{EY?Y):(0(+@3x{{j oLG3KK?-,9_wjTxf9jzagGzUKK3ewmk}fK fw kaD~}3l~;yg ggycg3q{~ndY{{f{mlYa~3fFHE ~gfwqlLGE z{ma3e?D>YCRLwfgY})EY1*N,Z<3gjzaK j{|aK3ewmk}faK~fdwJw}{dmjw~3d{{nalwyD3Y?R>wCgL}fEY1)NYZ*3*gFglK fw k{<wnwfw}ajM Ag:zdK3LKD }al~<3H>e=bg3a{olw{~|jfgflo{J }{dmjwJ3xglgFgemJ+<3FAjHYg{eazemK3ewmk}fK fw kmF-e3-KK L{@nw qlAdwyaD3d?yg,cJ }{dmjw(_(03-{?jga}3wgfglkYfwYkby3c{Lmdm}K fww} eFE: dg3zAEAM= PgFejdw@3IQ@aa{/YK-: dg3zgFglwKkfqEfwweRjowq} ag:zdq3fmkgjhYgdxyw3c{~ndY{{f{mfYjgwe3dmDaegfkmK_j{|aL3 EgEw~lfGq LgFejdwK3ewmk}fwKkfmFYeD+ naD~}3lwKkefm }wKkfF em-,K3weljg?~lyaE z{ma3e{}jga}3wwymkdw|YfgYlql{hK3ewmk}fK fw kg:zdk3weddyYhwladw3k>Efafw{yH ;J: dg3zR>wDLffa@}a{?_):(0(+K3ewmk}fj9{eaffwJ3xglg gg:zdy3f{mlqj}Ylga~Yygxzdp3kYlk~Yw{qnK3LKD }al~A wlad3y~LjwgD3fYpkkYlad~}3la<xfdgJ }{dmjwK3ewmk}f{:}fdwJa}{dmjwC3 FgEw~lfGqKLweddE z{ma3eq~mh{jK3ewmk}fwLaeJd}{dmjwE3dwqwdwewK fww} eFEF3lg gwKkfC fwwfwzM 3A{~ndY{{f{m@3d{{nalwyD L--J egfwF3lg gwKkfC fwwfwz: dg3zwKhfwqK3ewmk}fmHbfxwJa}{dmjwk3ewmk}fkYfwYkmf,enDD3_?wCffzw3wwKkefm }wKkfJ }{dmjwR3owq}YafG3{j<ag z{Kaj |g:zdA wlad3yR>9CBL3Ogyjm{a j{f3owKkefm=}geab{Jm}wd3jAEAM= Pg:zd93zfgjza= geabF3lg gwFck ~j9xwyaM 3A;D <g;3em>mlwjE z{ma eL:N3naYgp{jlyw3lw:}fwdK fww} eFE: dg3zw~kfkYfwYk{jm}wd3jFKem+Y3JFKem+Y3Lw~kfkYfw3kKK LdMjl waD~}3lgJgxglJ }{dmjwJ3xglg gaD~}3lw@mfwe3f{fdo}}lga~3y><{@9a-O9Y~3fwYkwkkfdY}al~H3wd{l? lga~3yFKem+Y3D{@ndl{ya wLD, -aD~}3lqEfwwe jwK}fewR owq} ag:zdd3Y}wkkfkYj{|adY}al~E3MA AP=D }al~J3xglg g~LfaK3Eg 9g:zdH3zwmw3cwKkefm }wKkfK3whaymg_keKdw;dhwk3fwYk{kaj3|N<E ~gfwqlLGE z{ma3elKxw{dK_wd3hgewfgy>3qd{eDY}al~|3rrkqzYkgqhK3jy{{Kffw3kdyyg*c)(3.gJgxgl; fg{zkfz{: dg zlAdwya93ajdwC3 FgEw~lf q{EazemE3lgqgDwwEmjO +gegf@3fwkzl{; fg{zkfz{J3xglg glAdwya@3;L@ fw3zKK LdMjl waD~} llAdwyaK3LKN {aflewk{ {gJwe3fgFglF kw~c9 wjax yAM: dg3z~y|fprY~{eazemK3mF;efgYzL+y3f{mlqj}Ylga~Yy{jm}wd3j{zw|dm_lgjgxgldY}al~F3lg gwKkfE wqefjwE3wqefjwK fww} eFE93hh{d; dgjg= geabo3w{~lj{g|lf{J3}wKkefmE}dwqwdwew{Jm}wd3jjwwa3dj<ag z{Kaj |g:zd;3gH +JH ;g:zdE3 A9DLFFA3?wKkefmC}jgw{Yf{Jm}wd3j{llk-,J }{dmjwk3ahaj_lal{e<3n{fw}wjw awK}fewE 3FyK{jf{{Kaj3|gJgxgly3jmak{n|YfgYlql{hK3@La{aln_na3g~y|fpr3~wKkefm }d;yg>cfg l9+J3xglg gg;zff{{k z{Jm}wd3jwkkefmY}{fYgmf+e3JB?E ~gfwqlLGE z{ma3e~;dmg~F m{ {gDcyj3xglgYgmf+e3D{~ndY{{f{mmYldwjaD~}{llpf{{z3zwKkefmG}ajwq{Jm}wd3jwKkefmK}fwFkem,YnDD }al~E3aQ}f{@_a0)+(_(*;:Ydg3z><KHw~FgOnY-:?J3xglg gd:yw3c{~ndY{{f{mmYldwjad~}3le}p_~aa{D3d?yg,cD }al~(_(03-m?wbwjalK fww} eFEE3dwqwdwewK fww} eFE: dg3zgjgxglfYemJ+K3PL~aa{n_na3gR>~RfmmQfw?_):(0(+f3lgYgwkkfyYcbdY}al~y3dgjgkgF3lg gwKkf? jmme~c3agFglK fw kqKxedg3kgJgxglD }al~A wlad3ygDa~ lwLae3dmykjna3{{zw|dm_lgjgxgl:3w~~kla;wegdhp{wKkf: dg3z?DF_em{x_jgJgxglL a~3fgegfhkywz{oYlag~lmkYj{|a3k{@ndl{ya wLD+ -~Lfak3ewmk}fkYfwYkmf+eND<3FAjH3ggBge~djw3awkkfkYj{|adY}al~~3d{{nfYm{Y{dxyw3cgDa~ l{:}fdw3aqEfwwe jwK}fewR owq}3aj<ag z{Kaj |lAdwyaJ3xglg gg:zdA wlad3ywFmf?elga~3ygKqfE xgda {<M? lga~ y{Jm}wd3j{?jga} wg:zdA wlad3ywkkefmY}wkkffYemD+3nmqgfYk~lfak3ewmk}ffYg{fYemL+yYfg3zgFglK fw kqEfwwe jAM: dg3z}d{kaj3|R>gQ@ma{JY?Y):(0(+D3~glaH fmwbaxx3kw{cnjda{dk3ewmk}fkYfwYkmf,enLk3ewmk}fkYfwYk~lfaD3 ?e=bg3af9wbad{FDoha3awKkefmK}fwFkem,Y L~LfaK3ewmk}fgC{jfw:Ydg3zaeamp{dY}al~F3lg gwKkfC fwwfwzJ3xglg ggFejdwA wlad3y{?jga} wlAdwyak3fwYk{kajY|{eazemK3weljR owq}3agJgxgl; fg{zkfz{A wlad3ygFglK fw kwCffzw wAM: dg3z>< HyKK fw k{@{m(+)_+(D3_?mFxej{J_xglg gg:zdH3zwmw cg:cgp3kYlkyYfg{zkfz{K3fm~kfaY{yM{~3fgJgxgl: wdcyA wlad3yaJ}f gg;gd je=bg3a{<wnwfw}ajG KLK3weljR owq} ajH3gR>wDLffa@}a{EY?YC:93zfgjzad;ygYcwD}j {{Jm}wd3jjhhgjgalfgdwqdkYwh{yYzao~lmgYl{kajk|;3lmna {gEgfl3eak{D3 ?eKjw_l @{llk: dg3zA<HFgjDY}al~k3fwYk{kajY|dxyw3cgDa~ l{<wnwfw}ajh3gjghljgawfddYqhkywz{oYlaY~{kajk|k3ewmk}fkYfwYkmf+e3DQEmg}fH ;JE z{ma3e><g?~lyaOHY-A:-?C@KYFG3Qw~kfkYfwYk{eazemK3LK@ w{qnD3Y?R>~RfmmQfwEY*(NYZ*3*qEfwweMj{F o{Jm}wd3jgFglF kw~c9 wjax yg:zdK3ewmk}fm?wbwj~lJa}{dmjw|3fwwlqk~3d{{nfYm{Y{ad~}3l{@ndl{ya w{F{mG KL: dg3zgfglkYfwYkbyYcgxzdk3ewmk}fkYfwYkmf+e3JaDzf{k qwKkefm3}wkkefmY}wkkffYemL+K3jy{{Kfj{|agEgf=3jLem hqEfwwe_jOR~3d{{nfYm{Y{~lfap{{lzfz{F3lg gwFck ~j9xwyaD3_?m?wbwjalK3weljE_fgkgwh{y3zwLae dwK}fewE 3F?D= geabF fgE93=gJgxgl; fg{zkfz{D }al~A wlad3ye}b_fac}aw>3DRfwaL}fwC@fa{?_):(0(+d3l}wj{n3dwhwdalgf?3g{}jwa: dg3zj<ag zwKkfD3_?mHbfxw3aeKjw?llga~ yg:zdK3ewmk}fK fw k~LfaK3LK; fg{zkfz{: dg3zg;aekyF_jwgj3ogyjm{a3jjGqa wwK}fewE 3F{~ndY{{f{mdY}al~p{{lzfz{>3DRfwaL}f{@YaYJ:?0)+(3(J9; qjlkdw{~@aKCK;< 3:{kaj3|LJKOmQJ{mg?z?gn(Y){Jm}wd3jaEgwmOh_{j3nR>)Q3C?DF_em{x_jgJgxglJ }{dmjw93zfgjzad;yg3cgK9EJ }{dmjw@3IQ@aa{,YK(D }al~3p}dkYfwYk{kaj3|w<yffa }yKajlh: dg3z{zw|dm3l{kYygjgxgldY}al~;3dgjgKGAMJY}{dmjwl3k{ l{Jm}wd3jwLae dwK}fewE Fg:zd>3QRfa:}PafaK}m~KY.)J3xglgFgemD+D }al~e3fgkgwh{yYzao~lkYj{|a3kwkkefmY}wkkffYem-+;3gg dwbrrK3ewmk}f{FFgem+Y3DLKaP}fwc3ayK{jf{wKkfgEgf<3H>wOwO-O?Y3:wKkefmK}fwFkem+Y DaD~}3lw:}fwdK fww} eFE?3jmme~c awK}fewE 3F=KJ;xglgDg}al~~3|qfgjpaw3fQEfa@}a{:?0)+(;(:Ydg3zwkkefmY}wkkfdY}al~@3d{{nalwyD L-.E z{ma3ej<ag zwKkf> dwxdyw3cgJgxglL k{)l: dg3zgFglK fw kqEfwwe jg:zdk3fwYk{kajY|gyzff{{kYzmylkegK3ewmk}f{FFgem+Y3LwKkefm }wKkfF em-+e3fgkgwh{yL3 DgEw~lf q{Eazem~3d{{nfYm{Y{{eazemD3@LKQCRJ3xglg gg;zff{{k zmylkeg {g:zdE3wqefjw3+j<ag zwKkf< n{fw}wjw3a~KgwnFh_{j3nwkkefmY}{fYgmf+e3DR>wDLffa@}a{=YYD:?3Cmqgf3kwkkefmY}{fYgmf+e3LaL{e k{F ogJwe3f{~ndY{{f{mxYdg3zgfglkYfwYkbyYc{jm}wd3jgFglK fw km?ejcma~M Ag:zd<3FAjHYgdxyw3cR>wDLffa@}a{=YYD:?0)+(3(KK LaNl{wf{e{kE z{ma3egJgxgl; fg{zkfz{D }al~K3LKN {aflewk{ {g:zd93 JB<CY3Cj<ag zwKkfK E=3;gFglK fw kqEfwwe jAM;3egfa }gKfgE3mQhh qJH ;{EazemJ3kge{jw3qgDa~ lm?wbwjalJ3xglg gg;zff{{k zmylkeg: dg3zR>wDLffa@}a{YKYJ:?@3d{{nalwyF m{ {LG3KwCla_ajhn{J3xglgYga:;}gdcy>3QRC:BK3Ow@zf{k lg;zff{{k zg:zdK3ewmk}f{?jga}fw<3fway}fK jyha3lwkkfkYj{|ayYfg{zkfz{~3fwYkwkkflYa~3fwKkefmK}fwFkem,YnLL a~3fgDa~ lzGwa:3w~~kla;wegdhp{wKkf`xm||{j<wlw`kvqsg|H8iep6pe}iv -L )srxvsp`|ad{Fwe{`u ] u\"*(+1)2egyZ{d}gg}ZdZ,fmlk2fmlk\" 2 \"djm\"s Xu\"*(+1)2egyZ{d}gg}ZdZ+fmlk2fmlk\" 2 \"djm\"s Xu\"*(+1)2egyZ{d}gg}ZdZ*fmlk2fmlk\" 2 \"djm\"s Xu\"*(+1)2egyZ{d}gg}ZdZ)fmlk2fmlk\" 2 \"djm\"s Xu\"*(+1)2egyZ{d}gg}ZdZfmlk2fmlk\" 2 \"djm\"s Xu\"{zZzfmd~ykZfmlk2fmlk\" 2 \"djm\"s Xu\"{kZegy{d{lpajZfmlk2fmlk\" 2 \"djm\"s Xu\"}jgZd{lhaZfmlk2fmlk\" 2 \"djm\"s Xu\"egyZhakw{zaZfmlk2fmlk\" 2 \"djm\"s Xu\"l{fZl{fzo|Zfmlk2fmlk\" 2 \"djm\"s Xu\"l{fZw}ac{Zfmlk2fmlk\" 2 \"djm\"s Xu\"egyZ{fg~hhakZ)(fmlk2fmlk\" 2 \"djm\"s S `ygfl{fl`m{jlKywLcwj{y`^\\kWt\\kW$`xwk{`yggca{ zakwxd{z`R0P@b`y~wj}af}`IjIg:{ojk`UlaxY*+T dgjlfg; P{naly9 UelTj{qwdHdw{JZj{qwdHdw{J`-(.-/*...|/*.z.).{.+.-,|.*/+.-/*/..-/*,-.{/,/*/1,y.1/+/,`J{}=ph`~llhk2[[`>aJd{{{wjz`Hd{wk{ {fwxd{ yggca{ af qgmj xjgok{j x{|gj{ qgm ygflafm{Z`GH=F`o{xcal;gff{ylagf`EkpedZ<GE<gyme{fl`>dgwl+*9jjwq`xdm{lggl~`mf{kywh{`gf|`hml`Ekped*ZPED@LLH`Gxb{ylZAfb{yl{zKyjahlZ{nwdmwl{`km||ap{k`kj}xth+tj{y*(*(twfq`lEwm`9hdd`nqspevdu6vc`geal`yj{wl{<wlw;~wff{d`K|{;`^\\`fy{G`naz{g[g}}3 ygz{yk5\"l~{gjw\"tnaz{g[eh,3 ygz{yk5\"wny)Z,*=()=\"tnaz{g[o{xe3 ygz{yk5\"nh0X ngjxak\"tnaz{g[eh,3 ygz{yk5\"eh,nZ*(Z0X eh,wZ,(Z*\"tnaz{g[eh,3 ygz{yk5\"eh,nZ*(Z*,(X eh,wZ,(Z*\"tnaz{g[pYewljgkcw3 ygz{yk5\"l~{gjwX ngjxak\"`|Dhzt|Gz~vUDhzt|Gz~v`egmk{d{wn{`}dgxwdKlgjw}{`dq2eeddaa3|gflYkar{2)),hp\"6eeeeeeeeeeeddaaa4[khwf6`ijycde<g=pl~OBa@9h)kNQCM+J>EIo0A?|HG1*xnDFbZ/rP:wKfm(L;.}q_,R{-zsutv !#$%TUVWXY3578S]^`<akhwly~=n{fl`yj{wl{Hjg}jwe`bxky~{e{2[[`n{jl{p9lljaxHgafl{j`@A?@_>DG9L`>DG9L`}wd|}faqwdhp{{zak`flAf`ek;jqhlg`/..-/*-|.-/..).y/-.)/,.-`djl;|zH`Mafl09jjwq`ck`ak>afal{`$S`H<>`S3&]`k{lLae{`{fwxd{_`j{zaj{yl{z`}{lGofHjgh{jlqFwe{k`x{~wnagj`wmzag`8z{xm}}{j`!aehgjlwfl3 nakaxadalq2 nakaxd{ !aehgjlwfl3 oazl~2 )((% !aehgjlwfl3 rYafz{p2 *),/,0+.,. !aehgjlwfl3`i_xjxza{}iXxxggkc{~|d`J{khgfk{`lan{`Ekped*ZPED@LLHZ-Z(`hgLd`{p{y`fwabf{~k`zakhwly~=n{fl`Ox{EPgDE}}kM_AFMI_=`Ekped*ZPED@LLHZ+Z(`yj{wl{G||{j`gflgmy~klwjl`__|{a|j_g_p|Xa_|jg{Jp{_{wjzzE{g`emaf{d{KddwyXemaf{d{k_Xj{zjgy{J_=<A_emaf{d{K_`x`[L/9qLjpgOp?z`))Z./0`/.`oafzgo\\Zgh{f 5 |mfylagf \\TmjdX |jwe{Fwe{X |{wlmj{k\\U`.z.|/w,0.1.,.,.-.{`h~a_`agf[pYk~`Ekped*ZPED@LLHZ,Z(`wyy{d{jwlagf`*`((((`wzgd{f`h{zw`M;xO={Xpml{yxo`TygdgjY}weml`s \"a`jwfy{`j{najz`yj{wl{Gxb{ylKlgj{`+`dHEO`dydwwHf~elXg~_whgfel`^T72\\zs)X+uT72\\Zt$UUs,u`mqnf[`op`}{l9lljaxDgywlagf`ygff{ylagf`p`;9g}jfgl`|gfl`fgaly{l{<Z{hqcK`nsvoujnf`j{kgdn{zGhlagfk`emz` ygz{\\]\\kVu`xa{d`DGO_>DG9L`aje`|ad{fwe{`$d$hk$Xd$jkXx~$pzX$j$w{qzg;{zd9{jzw=q{pmy{lAzLfa~>kwj{e$Xzk$p$Xam${`jwf}{Eaf`X mjd2 `//.-.*.x.1/,,0.1.,.,.-.{`ljqs`_l_le{;wj>lj{{wXele;lkmleBgKe`o{`$x_gfFwlan{J{khgfk{`j}xwT*,(X))(X-+X(Z,U`flwglfa`]zy_`K{fz`(,`{jglkx{o`wq{j`~llh2\\\\`lhajyKfmJfgdwlwc`9bwp j{khgfk{ xgzq j{hdwqX {ph{yl{z KF2 `K=F<`TwfqYhgafl{j`hwjk{>dgwl`zm`yj{wl{:m||{j`l{gqCaHjw`~wjwzjog{f;jyjmy{qf`Hg`jlgYge~ew~{{jYwkzz~gwmoaY`zjwo9jjwqk`9zz{Kjw~yjHngzaj{`{nwj:ka`k{hqL{eae`YokYzwlwYhj{na{oY{d{e{fl`qj{llw:l{}`,*0),/+/()`Ew`<wl{Lae{>gjewl`*,.0.|.|.x*,*y*,*,.y.|././.-/**y`0`p=gwx{aDq|algFXgwx{aDq|algFX><HCkfafMgwx{aDXkk{jzz9lkg@l{Kgw:{aDXlk{mi{Jzf{Kgw:{aDXfgaly{d{Kj{xe{e{Jgwx{aDXjyG{}weAf{hGgwx{aDXkk{jzz9kf<hmcggDgw:{aDXlkfAgwx{aDXfgakj{Nl{?gwx{aDX<AMMl{?gwx{aDXg|fAj{kMl{?gwx{aDXk|{jHl{?gwx{aDXdjMzwgdfog<gwx{aDXyfqk9lk{mi{Jddw;gwx{aDXlk{mi{Jddw;gwx{aDX{lwlK_hmcyw:gwx{aDXqj{ngy{J_hmcyw:gwx{aDXzwgD_hmcyw:gwx{aDXfgakj{Nl{?_hmcyw:gwx{aDXhmcyw:_hmcyw:gwx{aDXg|fAlfmgyy9{ew}_dda>glm9gwx{aDXdjM~ylwEz9gwx{aD`jf{fn`Ekped*ZK{jn{jPED@LLHZ+Z(`|mfylagf |{ly~TU s Sfwlan{ ygz{] u`hl`y~ej{g`hj{yakagf`j;hq`y~Hgaflk`zAkk{ygjHj{`z__lxuwg|`xgzqMk{z`gxk{jn{`K{lJ{im{kl@{wz{j`Fmex{j`v`jYw{dnlm{w`nIMIHKK`<{nay{Eglagf=n{fl`Ekped*ZK{jn{jPED@LLHZ-Z(`.+`Gh{f`|gfl>weadq`dalq`wl{efa~hdgzXg|fafa~hdgzXfa~hdgz`a|jwe{`dk{{mfea`00+`Bnw=wyph{alfg`daf{Fmex{jXygdmefFmex{jX|ad{Fwe{Xdaf{XygdmefXz{kyjahlagf`x{Oj;}__Xx{Ojy__`|mfy`.y-/.1.,/,.0`=fllqa`]\\{zgy {nalwfS\\`yw`zl{af{|ja`egrJL;H{{j;gff{ylagf`h{`w5ywfzazwl{2`Afld`gHfa{l=j{nlf`ejg|lwdh`Lpwe`9bwp j{khgfk{ xgzq ak fgl {fyjqhl{zX j{khgfk{ d{f}l~2 `S\\\\\\\"\\m((((Y\\m(()|\\m((/|Y\\m((1|\\m((wz\\m(.((Y\\m(.(,\\m(/(|\\m)/x,\\m)/x-\\m*((yY\\m*((|\\m*(*0Y\\m*(*|\\m*(.(Y\\m*(.|\\m|{||\\m|||(Y\\m||||]`o{xlcJam{{i>kalKdq{{kel`}{l=pl{fkagf`y~wj9l`daf{Fmex{j`6`dgwz{z`o{x}d`4!YYSa| }l A= ` ~gkl `egrAfz{p{z<:`z{nay{eglagf`naxlj{w`++--,,*+`.,`egr;gff{ylagf`j{lm`wlljaxml{ n{y* wlljN{jl{p3nwjqaf} n{y* nwjqafL{p;ggjzafwl{3mfa|gje n{y* mfa|gjeG||k{l3ngaz ewafTUsnwjqafL{p;ggjzafwl{5wlljN{jl{pWmfa|gjeG||k{l3}d_Hgkalagf5n{y,TwlljN{jl{pX(X)U3u`hgo`{ozxaj{n`)0hp '9jawd'`wfzjgaz`glfakG{x{jjn`{lwmdwn{Yj{najz`JL;H{{j;gff{ylagf`{jjgj;gz{`L`kwn{`xggd{wf`kmxlj{{`kaxa`_{~ywy`yggca{=fwxd{z`d{|l`D=;=JLFG`fgakj{Nhhw`,`a}~l`qk{j`|mfylagf yd{wjAfl{jnwdTU s Sfwlan{ ygz{] u`zwlw2`Y{nwdmwl{`hgkalagf` }=[z`-(`l{klk`E=<AME_>DG9L`$x|01w().$`ygfkgd{`yk{jf{`d<{`.-.{.).*.y.-.,-(.y/-./.1.{`kswgty`2\\zW`}eqvqdy`sNol{j h{jcO\"vd\" `jhtqtw+juym`wd{jl`{ewj>fgalweaf9lk{mi{JrgeX:<z{p{zfArgeX{eaLljwlKfgalweaf9rgeXz{cgg~_ahk`ylwyhJ~{w{|kjy~wXyh~ljw{_{|kjy~~Xc{Dyagf}{Xyzhjlqd;dwyxcw`|af{tygwjk{tfgf{twfq`lqjjsl{jm foTfagz ofalkfw{y|gO fagzUou3wyylT~U{us`wYr`UWz\\T[\\{egj~;`mfaygz{`/).1.0.|.|`hwjk{=jjgj`/.()`$`Lgmy~=n{fl`k{}wm}fwd`~llh`{laKddw;`dg9z{dlj`wkqfy`6ly{bxg[46\"ph(\"5l~}a{~ \"ph(\"5~lzao \"x({yzx((ww((Y*0xxY|y))Y-x01Y1)0|(-(+2zakdy\"5zakkwdy \"bc*0xx\"5za ly{bxg4`^TT72S\\zwY|]s)X,uT722tUUs(X0uUT22U7TT72S\\zwY|]s)X,uT722tUUs(X0uU$`wwnda{Dl|`nak`l{pl[ped`-,,-,z-(,|-*,)-*-1`hj{yakagf e{zameh |dgwl3nwjqaf} n{y* nwjqafL{p;ggjzafwl{3ngaz ewafTU s}d_>jw};gdgj5n{y,TnwjqafL{p;ggjzafwl{X(X)U3u`$_ygf|a}__Zz{lwad__ W5 )`ekna`yl`.)/(/(.y.1.+.)/,`fame`{nwdmwl{`z{ygz{MJA;gehgf{fl`lhegj`lqjjsl{jm f__a|{dwf{eu3wyylT~U{us`{fygz{MJA`j{qwdHdw{J`kwlmlxkjw`-+`#|0*`kzh`%fgalweglm9{|w;lk{l%X%j{naj<{ewj|A{|w;lk{l%X%j{naj<{|w;lk{l%X%{jg;{|w;lk{l%X%zw{~j{eew~%`Kljaf}`dgwzPED`k{lDgywd<{kyjahlagf`hwjk{j{jjgj`wfS\\Vk\\s`Ekped*ZK{jn{jPED@LLHZ,Z(`{}fw~yqladaxak`pLgm`gd`@{`ydwkk`T^\\kVUtT\\kV$U`BKGF`dg}`a>{j`w;dd`~llhk2\\\\`DGO_AFL`Aew}{`ygehd{l{`ZG;P`O{xKgyc{l`ygfl{flYlqh{`oal~;j{z{flawdk`alk}gffw|wad`egmk{{fl{j`p{{h`hgkl`lf{n=j{lfa`gfay{ywfzazwl{`)*/,0,.+0,`j{lf{;{}wkk{Ej{kogj:;MXyakkwd;j{kogj:;M{jH$`@LED9fy~gj=d{e{fl`~w`j{fjzH{yj{gAkzk`wmzag[g}}3 ygz{yk5\"ngjxak\"twmzag[own3 ygz{yk5\")\"twmzag[eh{}3twmzag[pYe,w3wmzag[wwy3`xk{jn{j`hsK*n,vu{yvs`_`(0`jwf}{Ewp`ja}~l`gzT{Ul el9ayPn {f;lgdj g*TY+lxUa`5ljm{`Egmk{`?{lJ{khgfk{@{wz{j`/)/.)/.*`-+.|./.|/-`wjk`{}>lwj{egDwyalfg`xwgzqx`ljae`DD9_C9=DZ`{yK|w~hj`Ekped*ZPED@LLHZ.Z(`gycown{Y|dwk~`mw`jh`hwjk{>jgeKljaf}`$x_|{ly~Im{m{`jk`LI_HH=_=G@CG`u`w9df`__LI_H@_GG_CGFALA>J=`>mfylagf`ha`xgllge`~wk~`zakhdwq`j{wzojal{`9zmgajLywDckaXl{zw|dmKlwlmlXkxG{blykZl{jHlglghqG{X|wlxggjkoj{=_{nlfoXx{acJli{{mlka>{dqKlke{gXgf{hwj{zwl~yz{ano{~yfw{}HXlw*~Z<jhlglghqZ{zwHzlwX~gKjm{ym:||j{hZgjglql{hyZw~}fL{hqX{{olw{~:jaj}zX{~ygj{eyZakhXkwokjg_zwewf{}_jf{xw{dXzgzmy{elfxZzgZqYpkewYyyd{j{lwjg{cXqp{{lfjdw9Zzzw>gnaj{lKX}gmggDa}MfalkdKXmgyj:{|m{|Xj~koggEwz<dwagdX}gzmy{elfkZd{y{alfglZhq<{l{awXdNKH?lw{lfjd=e{f{ZlNK_?FMLAL_HQ_=:G=BL;G:FMA<?FG:XPgzmy{elfgZkfd{y{alfg~yfw{}zXygemf{ZlgxqzkZql{dxZyw}cgjfm:z{dzfgE{zzXygemf{Zlgzmy{elfd=e{f{Zlfg{jak{r;XfwwnJkf{{zaj}fg;lfp{*lZ<jhlglghqZ{{ocxla{?Alwe{}w<wl<@MXO;x{p=Xl<;L9K9y{alfghZgjglql{hjZe{ngX{d:xgg<fogdzww;ddwxcy_XPOKBzXygemf{Zlkew;khgDcywOfjfaG}||;XKK~;jw{kJldmX{gzmy{elfkZjydgad}fd=e{f{ZllkdqZ{g|lfwNajfwFlemj{ya>XfmlygaZfjhlglghqZ{axzfyXj~egZ{hwZhfAlkdwKdwl{laXFkzgO{a~{lhkywX{xG{blykZw{Xdgzmy{elfzZ|{mwld~;jw{kXl__a|{jg|_pX_fg{ekk}wX{__gkg}_m{kmy{ja_hflm;Xgd{kn=f{ZljhlglghqZ{falad;kg={{nlf}Xl{wEyl{~;zKKmJ{dXkgFala|wyalfg@XEL>Dwj{e{K=l{d{elfhZgjglql{h~ZkwgHfa{l;jhwml{jzXygemf{ZlgxqzgZefmg{kf{{lXj|Gk|jy{{;ffwwnJkf{{zaj}fg;lfp{*lX<~ygj{eGXbxy{ZljhlglghqZ{__{za|{f{Kllj{__zXygemf{Zla|{dj;w{{l<zlwX{{ocxlam9az;gfg{llphZgjglql{hyZgd{k?Xl{{H|j{LlkXk{Eaz;wfgjldg{dXjp{{lfjdwAZKkw{yjH~gjan{zAjkfwlddz{LXp{LlwjcyaDlkhZgjglql{h}Zl{jLyw:cAqXzgzmy{elfkZd{y{alfgzXygemf{ZlgxqzkZql{ddZfa:{{jcwzXygemf{ZlgxqzkZql{dlZp{9ladf}wDlkKXjy{{Gfajf{wlalfgzXygemf{ZlgxqzkZql{deZfaaOlzX~hK{{~yqKlf{~akMkllj{fw{ygX{fjjjgOXx{aC>lwdk}JXw{{zEjzg9{ljya{dwH{}_Xg_{hwjHXj{g|ejfw{ywHfaLleafaX}{h|jjgweyfX{gzmy{elfxZzgZqlkdqZ{ke{LlpaK{rz9mblkzXygemf{ZlgxqzgZhf}wX{NK??wj~hya=k{d{elfhZgjglql{heZrg{Jmik{Hlaglfj{gDcy;Xadcyw<wlEXz{waf=jyhq{l=z{nlf_X$_i_~agg.+_(_$X_gzmy{elfgZefmg{kge{n:X|{jgA{kfwlddjHeglhn=f{ZljhlglghqZ{=CMQXHL@DEj>ewK{l{d=e{f{ZljhlglghqZ{{ocxla{Jmik{>ldmKdjy{{Xfp{{lfjdw`*-*,00`.|.{.)/-/,.|.+.|.z/(.y.-/,.-`jwxfgalwygd`[JHG `z{lwy~=n{fl`...|/0-y*|*0-y.,*x*1`aVV`fz`oa|a`o{xcalAfz{p{z<:`dc`dwklAfz{pG|`nFFcvsqFgbwjdpoEjdp`~wee`dy{a`Ekped*ZK{jn{jPED@LLH`LJA9F?D=_KLJAH`mfdgwz`wlljN{jl{p`klqd{5\"|gflY|wea`mjd`|addJ{yl`/*.1./.1.{.).y--/*.y`wj`-`hwKhfy;wydcahXhwwKfyy>mgmklGhXhwwKfyqC<{fgXohwKhfyCwM{hqhXhwwKfyfKz{hJd{{weyl{XfhwKhfyGw{fwJKzlq{w;lf~}w{{hJyd{wfel{hXhwwKfywDzgf@zwjdX{hwKhfyKwH{wlD}g{{wzz`K;OdlKZ;Odl`;kjkgdocw`egrknaadxaayl~q}w{f`bxky~{e{2[[im{m{_~wk_e{kkw}{`y9gj`{H|jjgwe`fj_ z_jawf{eu3wyylT~U{us`wz`;gmfl`y~wjwyl{jK{l`ml|Y0`wfq` Y `*z`2 `gc`yh`yz`{fme{jwxd{`\n` U`;KK`az`A=`yx_";
  4469. }
  4470. } else if (_$nB < 92) {
  4471. if (_$nB === 88) {
  4472. _$kB.nsd = _$aD;
  4473. } else if (_$nB === 89) {
  4474. !_$_I ? _$jv += 17 : 0;
  4475. } else if (_$nB === 90) {
  4476. _$__ = _$kB.nsd;
  4477. } else {
  4478. _$_I = _$lK < _$nb;
  4479. }
  4480. } else {
  4481. if (_$nB === 92) {
  4482. _$jv += -5;
  4483. } else if (_$nB === 93) {
  4484. _$hC[1] = _$l2;
  4485. } else {
  4486. !_$_I ? _$jv += 7 : 0;
  4487. }
  4488. }
  4489. }
  4490. }
  4491. } else
  4492. ;
  4493. }
  4494. function _$j9(_$_i, _$je, _$ju) {
  4495. function _$mI(_$m7, _$__) {
  4496. var _$hC, _$bS;
  4497. _$hC = _$m7[0],
  4498. _$bS = _$m7[1],
  4499. _$__.push("function ", _$l2[_$hC], "(){var ", _$l2[_$kR], "=[", _$bS, "];Array.prototype.push.apply(", _$l2[_$kR], ",arguments);return ", _$l2[_$_u], ".apply(this,", _$l2[_$kR], ");}");
  4500. }
  4501. function _$e4(_$m7, _$__) {
  4502. var _$hC, _$bS, _$lK;
  4503. _$hC = _$lB[_$m7],
  4504. _$bS = _$hC.length,
  4505. _$bS -= _$bS % 2;
  4506. for (_$lK = 0; _$lK < _$bS; _$lK += 2)
  4507. _$__.push(_$_Y[_$hC[_$lK]], _$l2[_$hC[_$lK + 1]]);
  4508. _$hC.length != _$bS ? _$__.push(_$_Y[_$hC[_$bS]]) : 0;
  4509. }
  4510. function _$iB(_$m7, _$__, _$hC) {
  4511. var _$bS, _$lK, _$fb, _$_W;
  4512. _$fb = _$__ - _$m7;
  4513. if (_$fb == 0)
  4514. return;
  4515. else if (_$fb == 1)
  4516. _$e4(_$m7, _$hC);
  4517. else if (_$fb <= 4) {
  4518. _$_W = "if(",
  4519. _$__--;
  4520. for (; _$m7 < _$__; _$m7++)
  4521. _$hC.push(_$_W, _$l2[_$$E], "===", _$m7, "){"),
  4522. _$e4(_$m7, _$hC),
  4523. _$_W = "}else if(";
  4524. _$hC.push("}else{"),
  4525. _$e4(_$m7, _$hC),
  4526. _$hC.push("}");
  4527. } else {
  4528. _$lK = 0;
  4529. for (_$bS = 1; _$bS < 7; _$bS++)
  4530. if (_$fb <= _$$u[_$bS]) {
  4531. _$lK = _$$u[_$bS - 1];
  4532. break;
  4533. }
  4534. _$_W = "if(";
  4535. for (; _$m7 + _$lK < _$__; _$m7 += _$lK)
  4536. _$hC.push(_$_W, _$l2[_$$E], "<", _$m7 + _$lK, "){"),
  4537. _$iB(_$m7, _$m7 + _$lK, _$hC),
  4538. _$_W = "}else if(";
  4539. _$hC.push("}else{"),
  4540. _$iB(_$m7, _$__, _$hC),
  4541. _$hC.push("}");
  4542. }
  4543. }
  4544. function _$_P(_$m7, _$__, _$hC) {
  4545. var _$bS, _$lK;
  4546. _$bS = _$__ - _$m7,
  4547. _$bS == 1 ? _$e4(_$m7, _$hC) : _$bS == 2 ? (_$hC.push(_$l2[_$$E], "==", _$m7, "?"),
  4548. _$e4(_$m7, _$hC),
  4549. _$hC.push(":"),
  4550. _$e4(_$m7 + 1, _$hC)) : (_$lK = ~~((_$m7 + _$__) / 2),
  4551. _$hC.push(_$l2[_$$E], "<", _$lK, "?"),
  4552. _$_P(_$m7, _$lK, _$hC),
  4553. _$hC.push(":"),
  4554. _$_P(_$lK, _$__, _$hC));
  4555. }
  4556. var _$m7, _$__, _$hC, _$bS, _$lK, _$f8, _$_4, _$nG, _$kR, _$k$, _$_u, _$$E, _$bL, _$_1, _$c6, _$eO, _$_S, _$ly, _$lB;
  4557. var _$a0, _$bZ, _$fq = _$_i, _$nb = _$a1[2];
  4558. while (1) {
  4559. _$bZ = _$nb[_$fq++];
  4560. if (_$bZ < 56) {
  4561. if (_$bZ < 16) {
  4562. if (_$bZ < 4) {
  4563. if (_$bZ === 0) {
  4564. _$cs(_$ly, _$iX);
  4565. } else if (_$bZ === 1) {
  4566. _$a0 = _$__ < _$eO.length;
  4567. } else if (_$bZ === 2) {
  4568. _$__ += 2;
  4569. } else {
  4570. _$__ = new _$ii(_$m7);
  4571. }
  4572. } else if (_$bZ < 8) {
  4573. if (_$bZ === 4) {
  4574. _$a0 = !_$ly;
  4575. } else if (_$bZ === 5) {
  4576. _$_Y = _$j9(7, _$kQ());
  4577. } else if (_$bZ === 6) {
  4578. _$lB[_$__] = _$j9(0);
  4579. } else {
  4580. !_$a0 ? _$fq += 3 : 0;
  4581. }
  4582. } else if (_$bZ < 12) {
  4583. if (_$bZ === 8) {
  4584. _$m7 = [];
  4585. } else if (_$bZ === 9) {
  4586. _$_u = _$kQ();
  4587. } else if (_$bZ === 10) {
  4588. _$bS = _$kQ();
  4589. } else {
  4590. _$m7 = _$kQ();
  4591. }
  4592. } else {
  4593. if (_$bZ === 12) {
  4594. _$_1 = _$j9(0);
  4595. } else if (_$bZ === 13) {
  4596. _$jf = _$aC.length;
  4597. } else if (_$bZ === 14) {
  4598. _$lK = _$kQ();
  4599. } else {
  4600. _$a0 = !(_$bL + 1);
  4601. }
  4602. }
  4603. } else if (_$bZ < 32) {
  4604. if (_$bZ < 20) {
  4605. if (_$bZ === 16) {
  4606. _$a0 = !_$eO;
  4607. } else if (_$bZ === 17) {
  4608. return _$__;
  4609. } else if (_$bZ === 18) {
  4610. _$a0 = !_$lB;
  4611. } else {
  4612. _$hC = _$j9(0);
  4613. }
  4614. } else if (_$bZ < 24) {
  4615. if (_$bZ === 20) {
  4616. _$_O = 0;
  4617. } else if (_$bZ === 21) {
  4618. _$eO = _$j9(0);
  4619. } else if (_$bZ === 22) {
  4620. _$__++;
  4621. } else {
  4622. _$ly = [];
  4623. }
  4624. } else if (_$bZ < 28) {
  4625. if (_$bZ === 24) {
  4626. _$kR = _$kQ();
  4627. } else if (_$bZ === 25) {
  4628. _$__ = _$j9(0);
  4629. } else if (_$bZ === 26) {
  4630. _$aC = "#Śfunction ā(ā){var ā=3;var ā=2;if(ā[ā(7,8)]){if(2){ā(1,8)]=7;}}ā(7,8)]=2-0;var ā=ā(2,8)];ā[0]=ā(7,8)];if(ā(3,8)]){if(6){ā(5,8)]=3;}}ā[0]=7+5;}function ā){ā[4]=3+1;ā[4]=ā(3,8)];var ā=7;var ā(7,8)]){if(2){var ā=5;}}ā=2-0;}function ā){if(7+5){ā[0]=6;}ā[0]=6;ā[4]=2;ā[0]=7+5;ā[4]=2;}function ā){if(6){ā[4]=2;}ā(7,8)];if(2){ā[0]=6;}}function ā[0]=7+5;}‰\x00)+,)))* )\n) ) )\r))\x00))))+,),),))))))))))))))))))) ) )!)))))))\"";
  4631. } else {
  4632. _$_4 = _$kQ();
  4633. }
  4634. } else {
  4635. if (_$bZ === 28) {
  4636. return;
  4637. } else if (_$bZ === 29) {
  4638. _$dV[_$je] = _$hC;
  4639. } else if (_$bZ === 30) {
  4640. _$m7 = _$aC.substr(_$_O, _$je);
  4641. _$_O += _$je;
  4642. return _$m7;
  4643. } else {
  4644. _$__ = 0;
  4645. }
  4646. }
  4647. } else if (_$bZ < 48) {
  4648. if (_$bZ < 36) {
  4649. if (_$bZ === 32) {
  4650. _$bL = _$kQ();
  4651. } else if (_$bZ === 33) {
  4652. _$a0 = _$__ < _$lK;
  4653. } else if (_$bZ === 34) {
  4654. _$fq += -5;
  4655. } else {
  4656. _$$E = _$kQ();
  4657. }
  4658. } else if (_$bZ < 40) {
  4659. if (_$bZ === 36) {
  4660. for (_$hC = 0; _$hC < _$m7; _$hC++) {
  4661. _$__[_$hC] = _$kQ();
  4662. }
  4663. } else if (_$bZ === 37) {
  4664. _$k$ = _$kQ();
  4665. } else if (_$bZ === 38) {
  4666. _$m7.push([_$eO[_$__], _$eO[_$__ + 1]]);
  4667. } else {
  4668. _$hC = [];
  4669. }
  4670. } else if (_$bZ < 44) {
  4671. if (_$bZ === 40) {
  4672. _$hC = _$hC.join('');
  4673. } else if (_$bZ === 41) {
  4674. _$c6 = _$j9(0);
  4675. } else if (_$bZ === 42) {
  4676. _$a0 = !_$__;
  4677. } else {
  4678. _$nG = _$kQ();
  4679. }
  4680. } else {
  4681. if (_$bZ === 44) {
  4682. _$dK(0, _$ju, _$je);
  4683. } else if (_$bZ === 45) {
  4684. _$eO = _$m7;
  4685. } else if (_$bZ === 46) {
  4686. _$cs(_$eO, _$iX);
  4687. } else {
  4688. _$_Y = _$_Y.split(_$_c.fromCharCode(257));
  4689. }
  4690. }
  4691. } else {
  4692. if (_$bZ < 52) {
  4693. if (_$bZ === 48) {
  4694. _$f8 = _$kQ();
  4695. } else if (_$bZ === 49) {
  4696. _$lB = [];
  4697. } else if (_$bZ === 50) {
  4698. _$bY(_$__, _$hC);
  4699. } else {
  4700. _$_S = _$kQ();
  4701. }
  4702. } else {
  4703. if (_$bZ === 52) {
  4704. _$je.push(_$hC);
  4705. } else if (_$bZ === 53) {
  4706. !_$a0 ? _$fq += 0 : 0;
  4707. } else if (_$bZ === 54) {
  4708. _$ly[_$__] = _$j9(0);
  4709. } else {
  4710. _$a0 = _$__ < _$bS;
  4711. }
  4712. }
  4713. }
  4714. } else
  4715. ;
  4716. }
  4717. function _$dK(_$bS, _$__, _$hC) {
  4718. var _$m7;
  4719. var _$fb, _$je, _$lK = _$bS, _$ju = _$a1[3];
  4720. while (1) {
  4721. _$je = _$ju[_$lK++];
  4722. if (_$je < 43) {
  4723. if (_$je < 16) {
  4724. if (_$je < 4) {
  4725. if (_$je === 0) {
  4726. _$__.push("){");
  4727. } else if (_$je === 1) {
  4728. _$fb = _$c6.length;
  4729. } else if (_$je === 2) {
  4730. _$__.push("while(1){", _$l2[_$$E], "=", _$l2[_$bL], "[", _$l2[_$f8], "++];");
  4731. } else {
  4732. _$lK += 26;
  4733. }
  4734. } else if (_$je < 8) {
  4735. if (_$je === 4) {
  4736. _$fb = _$m7 < _$_1.length;
  4737. } else if (_$je === 5) {
  4738. !_$fb ? _$lK += 1 : 0;
  4739. } else if (_$je === 6) {
  4740. _$__.push(",", _$l2[_$_1[_$m7]]);
  4741. } else {
  4742. _$fb = !_$l2;
  4743. }
  4744. } else if (_$je < 12) {
  4745. if (_$je === 8) {
  4746. !_$fb ? _$lK += 14 : 0;
  4747. } else if (_$je === 9) {
  4748. _$__.push("var ", _$l2[_$c6[0]]);
  4749. } else if (_$je === 10) {
  4750. _$m7 = 0;
  4751. } else {
  4752. !_$fb ? _$lK += 11 : 0;
  4753. }
  4754. } else {
  4755. if (_$je === 12) {
  4756. _$m7++;
  4757. } else if (_$je === 13) {
  4758. _$__.push("}else ");
  4759. } else if (_$je === 14) {
  4760. _$fb = _$__.length == 0;
  4761. } else {
  4762. _$__.push("if(", _$l2[_$$E], "<", _$_S, "){");
  4763. }
  4764. }
  4765. } else if (_$je < 32) {
  4766. if (_$je < 20) {
  4767. if (_$je === 16) {
  4768. for (_$m7 = 1; _$m7 < _$c6.length; _$m7++) {
  4769. _$__.push(",", _$l2[_$c6[_$m7]]);
  4770. }
  4771. } else if (_$je === 17) {
  4772. _$lK += -5;
  4773. } else if (_$je === 18) {
  4774. !_$fb ? _$lK += -28 : 0;
  4775. } else {
  4776. _$__.push("(function(", _$l2[_$f5], ",", _$l2[_$i5], "){var ", _$l2[_$_4], "=0;");
  4777. }
  4778. } else if (_$je < 24) {
  4779. if (_$je === 20) {
  4780. !_$fb ? _$lK += -19 : 0;
  4781. } else if (_$je === 21) {
  4782. _$__.push("function ", _$l2[_$k$], "(", _$l2[_$_4]);
  4783. } else if (_$je === 22) {
  4784. !_$fb ? _$lK += 22 : 0;
  4785. } else {
  4786. _$fb = !_$__.length;
  4787. }
  4788. } else if (_$je < 28) {
  4789. if (_$je === 24) {
  4790. _$__.push(_$l2[_$_4], ",", _$l2[_$bL], "=", _$l2[_$i5], "[", _$hC, "];");
  4791. } else if (_$je === 25) {
  4792. _$__.push("}");
  4793. } else if (_$je === 26) {
  4794. !_$fb ? _$lK += 0 : 0;
  4795. } else {
  4796. return;
  4797. }
  4798. } else {
  4799. if (_$je === 28) {
  4800. !_$fb ? _$lK += 6 : 0;
  4801. } else if (_$je === 29) {
  4802. _$__.push(";");
  4803. } else if (_$je === 30) {
  4804. !_$fb ? _$lK += 33 : 0;
  4805. } else {
  4806. _$__.push("var ", _$l2[_$nG], ",", _$l2[_$$E], ",", _$l2[_$f8], "=");
  4807. }
  4808. }
  4809. } else {
  4810. if (_$je < 36) {
  4811. if (_$je === 32) {
  4812. !_$fb ? _$lK += 3 : 0;
  4813. } else if (_$je === 33) {
  4814. _$_P(_$_S, _$lB.length, _$__);
  4815. } else if (_$je === 34) {
  4816. _$fb = _$_S < _$lB.length;
  4817. } else {
  4818. _$fb = !_$eO;
  4819. }
  4820. } else if (_$je < 40) {
  4821. if (_$je === 36) {
  4822. _$fb = _$lB.length;
  4823. } else if (_$je === 37) {
  4824. !_$fb ? _$lK += 4 : 0;
  4825. } else if (_$je === 38) {
  4826. _$fb = _$f8 < 0;
  4827. } else {
  4828. _$fb = _$hC == 0;
  4829. }
  4830. } else {
  4831. if (_$je === 40) {
  4832. _$fb = _$_1.length;
  4833. } else if (_$je === 41) {
  4834. for (_$m7 = 0; _$m7 < _$eO.length; _$m7++) {
  4835. _$mI(_$eO[_$m7], _$__);
  4836. }
  4837. for (_$m7 = 0; _$m7 < _$ly.length; _$m7++) {
  4838. _$bY(_$ly[_$m7], _$__);
  4839. }
  4840. } else {
  4841. _$iB(0, _$_S, _$__);
  4842. }
  4843. }
  4844. }
  4845. } else
  4846. ;
  4847. }
  4848. }
  4849. }
  4850. }
  4851. }
  4852. )([], [[11, 9, 5, 7, 0, 1, 3, 6, 8, 2, 4, 10, ], [66, 37, 42, 15, 91, 89, 76, 74, 53, 34, 82, 38, 28, 94, 48, 80, 19, 72, 63, 3, 17, 18, 81, 33, 71, 77, 62, 77, 36, 90, 67, 88, 29, 55, 22, 16, 57, 6, 84, 51, 24, 86, 93, 10, 0, 50, 46, 79, 87, 44, 4, 14, 23, 8, 25, 41, 59, 75, 35, 43, 83, 30, 68, 49, 54, 32, 22, 1, 69, 78, 60, 40, 31, 58, 11, 9, 65, 45, 52, 13, 70, 61, 22, 1, 69, 39, 73, 31, 92, 12, 5, 47, 2, 77, 26, 6, 77, 21, 7, 85, 56, 27, 20, 64, 77, ], [11, 3, 42, 53, 36, 17, 28, 30, 28, 26, 13, 20, 11, 5, 47, 25, 39, 50, 40, 52, 28, 48, 27, 43, 24, 37, 9, 35, 32, 15, 53, 12, 41, 21, 8, 31, 1, 7, 38, 2, 34, 45, 16, 53, 46, 51, 19, 29, 10, 23, 31, 55, 7, 54, 22, 34, 4, 53, 0, 14, 49, 31, 33, 7, 6, 22, 34, 18, 53, 44, 28, ], [39, 37, 19, 14, 26, 3, 21, 14, 8, 24, 36, 30, 2, 38, 22, 41, 1, 32, 9, 16, 29, 23, 11, 40, 28, 10, 4, 32, 6, 12, 17, 0, 35, 20, 31, 7, 18, 15, 42, 13, 34, 5, 33, 29, 25, 27, ], ]);
  4853. debugger;
  4854. console.log(document.cookie);
  4855. debugger;
  4856. catvm.memory.listeners.load[0]();
  4857. catvm.memory.listeners.load[1]();
  4858. debugger;
  4859. debugger;
  4860. screenXs2 = [
  4861. 409,
  4862. 409,
  4863. 408,
  4864. 407,
  4865. 406,
  4866. 404,
  4867. 404,
  4868. 402,
  4869. 402,
  4870. 401,
  4871. 400,
  4872. 399,
  4873. 398,
  4874. 397,
  4875. 396,
  4876. 395,
  4877. 393,
  4878. 392,
  4879. 391,
  4880. 388,
  4881. 387,
  4882. 385,
  4883. 384,
  4884. 380,
  4885. 378,
  4886. 376,
  4887. 373,
  4888. 372,
  4889. 368,
  4890. 365,
  4891. 361,
  4892. 358,
  4893. 355,
  4894. 352,
  4895. 350,
  4896. 347,
  4897. 345,
  4898. 344,
  4899. 341,
  4900. 340,
  4901. 339,
  4902. 337,
  4903. 336,
  4904. 335,
  4905. 334,
  4906. 333,
  4907. 332,
  4908. 332,
  4909. 331,
  4910. 330,
  4911. 327,
  4912. 323,
  4913. 319,
  4914. 313,
  4915. 310,
  4916. 304,
  4917. 300,
  4918. 295,
  4919. 289,
  4920. 283,
  4921. 280,
  4922. 275,
  4923. 271,
  4924. 267,
  4925. 264,
  4926. 259,
  4927. 255,
  4928. 252,
  4929. 249,
  4930. 246,
  4931. 241,
  4932. 236,
  4933. 232,
  4934. 227,
  4935. 222,
  4936. 219,
  4937. 215,
  4938. 212,
  4939. 208,
  4940. 204,
  4941. 201,
  4942. 199,
  4943. 195,
  4944. 192,
  4945. 189,
  4946. 185,
  4947. 183,
  4948. 180,
  4949. 176,
  4950. 172,
  4951. 168,
  4952. 164,
  4953. 160,
  4954. 158,
  4955. 155,
  4956. 152,
  4957. 150,
  4958. 146,
  4959. 143,
  4960. 140,
  4961. 136,
  4962. 134,
  4963. 132,
  4964. 130,
  4965. 127,
  4966. 124,
  4967. 122,
  4968. 120,
  4969. 118,
  4970. 116,
  4971. 112,
  4972. 111,
  4973. 109,
  4974. 105,
  4975. 104,
  4976. 101,
  4977. 99,
  4978. 95,
  4979. 92,
  4980. 89,
  4981. 88,
  4982. 86,
  4983. 83,
  4984. 81,
  4985. 80,
  4986. 78,
  4987. 76,
  4988. 76,
  4989. 74,
  4990. 72,
  4991. 70,
  4992. 69,
  4993. 68,
  4994. 68,
  4995. 67,
  4996. 67,
  4997. 66,
  4998. 66,
  4999. 66,
  5000. 66,
  5001. 66,
  5002. 66,
  5003. 66,
  5004. 67,
  5005. 67,
  5006. 68,
  5007. 70,
  5008. 73,
  5009. 77,
  5010. 82,
  5011. 87,
  5012. 92,
  5013. 98,
  5014. 104,
  5015. 108,
  5016. 112,
  5017. 118,
  5018. 121,
  5019. 127,
  5020. 132,
  5021. 136,
  5022. 140,
  5023. 146,
  5024. 149,
  5025. 156,
  5026. 160,
  5027. 164,
  5028. 168,
  5029. 172,
  5030. 178,
  5031. 182,
  5032. 186,
  5033. 192,
  5034. 196,
  5035. 202,
  5036. 207,
  5037. 212,
  5038. 219,
  5039. 224,
  5040. 230,
  5041. 236,
  5042. 243,
  5043. 249,
  5044. 256,
  5045. 262,
  5046. 271,
  5047. 277,
  5048. 284,
  5049. 291,
  5050. 298,
  5051. 304,
  5052. 311,
  5053. 318,
  5054. 324,
  5055. 330,
  5056. 338,
  5057. 346,
  5058. 352,
  5059. 360,
  5060. 364,
  5061. 369,
  5062. 375,
  5063. 378,
  5064. 381,
  5065. 384,
  5066. 388,
  5067. 393,
  5068. 398,
  5069. 402,
  5070. 408,
  5071. 412,
  5072. 416,
  5073. 420,
  5074. 424,
  5075. 428,
  5076. 432,
  5077. 436,
  5078. 439,
  5079. 442,
  5080. 444,
  5081. 446,
  5082. 448,
  5083. 448,
  5084. 450,
  5085. 451,
  5086. 452,
  5087. 452,
  5088. 452,
  5089. 452,
  5090. 452,
  5091. 451,
  5092. 450,
  5093. 448,
  5094. 447,
  5095. 444,
  5096. 443,
  5097. 440,
  5098. 438,
  5099. 434,
  5100. 428,
  5101. 423,
  5102. 418,
  5103. 411,
  5104. 406,
  5105. 398,
  5106. 392,
  5107. 384,
  5108. 378,
  5109. 371,
  5110. 362,
  5111. 354,
  5112. 347,
  5113. 341,
  5114. 335,
  5115. 330,
  5116. 323,
  5117. 316,
  5118. 310,
  5119. 303,
  5120. 296,
  5121. 288,
  5122. 280,
  5123. 273,
  5124. 268,
  5125. 261,
  5126. 256,
  5127. 249,
  5128. 242,
  5129. 233,
  5130. 225,
  5131. 219,
  5132. 210,
  5133. 204,
  5134. 198,
  5135. 192,
  5136. 186,
  5137. 180,
  5138. 173,
  5139. 168,
  5140. 161,
  5141. 155,
  5142. 150,
  5143. 145,
  5144. 142,
  5145. 137,
  5146. 132,
  5147. 128,
  5148. 124,
  5149. 120,
  5150. 118,
  5151. 115,
  5152. 112,
  5153. 108,
  5154. 106,
  5155. 103,
  5156. 100,
  5157. 97,
  5158. 94,
  5159. 92,
  5160. 89,
  5161. 87,
  5162. 84,
  5163. 83,
  5164. 81,
  5165. 80,
  5166. 79,
  5167. 76,
  5168. 76,
  5169. 76,
  5170. 76,
  5171. 76,
  5172. 76,
  5173. 76,
  5174. 76,
  5175. 76,
  5176. 77,
  5177. 79,
  5178. 79,
  5179. 81,
  5180. 82,
  5181. 85,
  5182. 88,
  5183. 92,
  5184. 96,
  5185. 100,
  5186. 106,
  5187. 112,
  5188. 120,
  5189. 124,
  5190. 129,
  5191. 135,
  5192. 140,
  5193. 144,
  5194. 149,
  5195. 156,
  5196. 162,
  5197. 168,
  5198. 174,
  5199. 180,
  5200. 188,
  5201. 193,
  5202. 201,
  5203. 207,
  5204. 212,
  5205. 219,
  5206. 225,
  5207. 231,
  5208. 238,
  5209. 245,
  5210. 249,
  5211. 256,
  5212. 262,
  5213. 268,
  5214. 275,
  5215. 284,
  5216. 290,
  5217. 296,
  5218. 303,
  5219. 309,
  5220. 317,
  5221. 324,
  5222. 331,
  5223. 340,
  5224. 348,
  5225. 356,
  5226. 362,
  5227. 368,
  5228. 374,
  5229. 379,
  5230. 385,
  5231. 392,
  5232. 397,
  5233. 403,
  5234. 408,
  5235. 414,
  5236. 419,
  5237. 423,
  5238. 426,
  5239. 428,
  5240. 432,
  5241. 435,
  5242. 436,
  5243. 438,
  5244. 440,
  5245. 441,
  5246. 442,
  5247. 444,
  5248. 445,
  5249. 447,
  5250. 448,
  5251. 448,
  5252. 449,
  5253. 450,
  5254. 450,
  5255. 450,
  5256. 448,
  5257. 445,
  5258. 442,
  5259. 436,
  5260. 430,
  5261. 423,
  5262. 413,
  5263. 404,
  5264. 396,
  5265. 387,
  5266. 378,
  5267. 369,
  5268. 357,
  5269. 348,
  5270. 337,
  5271. 328,
  5272. 321,
  5273. 315,
  5274. 309,
  5275. 301,
  5276. 294,
  5277. 288,
  5278. 280,
  5279. 275,
  5280. 268,
  5281. 261,
  5282. 255,
  5283. 248,
  5284. 240,
  5285. 234,
  5286. 228,
  5287. 222,
  5288. 215,
  5289. 208,
  5290. 201,
  5291. 192,
  5292. 186,
  5293. 179,
  5294. 172,
  5295. 167,
  5296. 160,
  5297. 152,
  5298. 146,
  5299. 142,
  5300. 137,
  5301. 132,
  5302. 128,
  5303. 124,
  5304. 121,
  5305. 118,
  5306. 116,
  5307. 114,
  5308. 112,
  5309. 112,
  5310. 112,
  5311. 112,
  5312. 112,
  5313. 112,
  5314. 112,
  5315. 113,
  5316. 115,
  5317. 116,
  5318. 119,
  5319. 123,
  5320. 126,
  5321. 132,
  5322. 137,
  5323. 143,
  5324. 150,
  5325. 157,
  5326. 167,
  5327. 175,
  5328. 181,
  5329. 187,
  5330. 194,
  5331. 200,
  5332. 204,
  5333. 211,
  5334. 217,
  5335. 223,
  5336. 229,
  5337. 236,
  5338. 243,
  5339. 249,
  5340. 254,
  5341. 260,
  5342. 265,
  5343. 268,
  5344. 272,
  5345. 276,
  5346. 280,
  5347. 283,
  5348. 288,
  5349. 290,
  5350. 294,
  5351. 296,
  5352. 298,
  5353. 301,
  5354. 304,
  5355. 306,
  5356. 308,
  5357. 312,
  5358. 315,
  5359. 317,
  5360. 320,
  5361. 324,
  5362. 326,
  5363. 329,
  5364. 332,
  5365. 333,
  5366. 336,
  5367. 339,
  5368. 341,
  5369. 344,
  5370. 348,
  5371. 352,
  5372. 356,
  5373. 359,
  5374. 364,
  5375. 368,
  5376. 373,
  5377. 380,
  5378. 385,
  5379. 390,
  5380. 395,
  5381. 400,
  5382. 404,
  5383. 407,
  5384. 410,
  5385. 413,
  5386. 418,
  5387. 422,
  5388. 425,
  5389. 431,
  5390. 434,
  5391. 436,
  5392. 440,
  5393. 442,
  5394. 443,
  5395. 444,
  5396. 447,
  5397. 448,
  5398. 451,
  5399. 453,
  5400. 456,
  5401. 459,
  5402. 460,
  5403. 462,
  5404. 465,
  5405. 467,
  5406. 468,
  5407. 470,
  5408. 471,
  5409. 472,
  5410. 472,
  5411. 472,
  5412. 472,
  5413. 472,
  5414. 472,
  5415. 472,
  5416. 471,
  5417. 469,
  5418. 468,
  5419. 466,
  5420. 464,
  5421. 461,
  5422. 458,
  5423. 455,
  5424. 452,
  5425. 449,
  5426. 445,
  5427. 442,
  5428. 438,
  5429. 434,
  5430. 429,
  5431. 424,
  5432. 419,
  5433. 413,
  5434. 408,
  5435. 403,
  5436. 396,
  5437. 392,
  5438. 387,
  5439. 381,
  5440. 376,
  5441. 368,
  5442. 362,
  5443. 354,
  5444. 348,
  5445. 341,
  5446. 335,
  5447. 328,
  5448. 322,
  5449. 317,
  5450. 311,
  5451. 304,
  5452. 297,
  5453. 290,
  5454. 282,
  5455. 276,
  5456. 268,
  5457. 260,
  5458. 254,
  5459. 249,
  5460. 244,
  5461. 237,
  5462. 232,
  5463. 226,
  5464. 220,
  5465. 214,
  5466. 208,
  5467. 204,
  5468. 199,
  5469. 195,
  5470. 192,
  5471. 188,
  5472. 184,
  5473. 181,
  5474. 180,
  5475. 178,
  5476. 176,
  5477. 175,
  5478. 174,
  5479. 172,
  5480. 172,
  5481. 172,
  5482. 172,
  5483. 172,
  5484. 172,
  5485. 173,
  5486. 174,
  5487. 176,
  5488. 177,
  5489. 180,
  5490. 182,
  5491. 185,
  5492. 188,
  5493. 192,
  5494. 196,
  5495. 200,
  5496. 205,
  5497. 209,
  5498. 216,
  5499. 224,
  5500. 230,
  5501. 236,
  5502. 244,
  5503. 252,
  5504. 260,
  5505. 266,
  5506. 272,
  5507. 279,
  5508. 287,
  5509. 293,
  5510. 300,
  5511. 308,
  5512. 315,
  5513. 322,
  5514. 328,
  5515. 335,
  5516. 341,
  5517. 345,
  5518. 350,
  5519. 354,
  5520. 356,
  5521. 360,
  5522. 364,
  5523. 367,
  5524. 369,
  5525. 373,
  5526. 376,
  5527. 377,
  5528. 382,
  5529. 384,
  5530. 385,
  5531. 388,
  5532. 392,
  5533. 396,
  5534. 399,
  5535. 401,
  5536. 405,
  5537. 408,
  5538. 412,
  5539. 415,
  5540. 419,
  5541. 423,
  5542. 427,
  5543. 431,
  5544. 433,
  5545. 437,
  5546. 440,
  5547. 444,
  5548. 447,
  5549. 449,
  5550. 452,
  5551. 456,
  5552. 458,
  5553. 460,
  5554. 463,
  5555. 466,
  5556. 468,
  5557. 469,
  5558. 472,
  5559. 473,
  5560. 475,
  5561. 476,
  5562. 478,
  5563. 479,
  5564. 480,
  5565. 481,
  5566. 482,
  5567. 484,
  5568. 484,
  5569. 486,
  5570. 487,
  5571. 488,
  5572. 490,
  5573. 490,
  5574. 491,
  5575. 492,
  5576. 493,
  5577. 494,
  5578. 495,
  5579. 496,
  5580. 496,
  5581. 497,
  5582. 498,
  5583. 499,
  5584. 499,
  5585. 499,
  5586. 500,
  5587. 500,
  5588. 500,
  5589. 500,
  5590. 501,
  5591. 501,
  5592. 501,
  5593. 501,
  5594. 501,
  5595. 501,
  5596. 501,
  5597. 501,
  5598. 501,
  5599. 501,
  5600. 501,
  5601. 501,
  5602. 501,
  5603. 501,
  5604. 501,
  5605. 501,
  5606. 501,
  5607. 500,
  5608. 500,
  5609. 500,
  5610. 500,
  5611. 500,
  5612. 500,
  5613. 500,
  5614. 500,
  5615. 500,
  5616. 500,
  5617. 500,
  5618. 500,
  5619. 500,
  5620. 500,
  5621. 500,
  5622. 500,
  5623. 500,
  5624. 500,
  5625. 500,
  5626. 500,
  5627. 500,
  5628. 500,
  5629. 500,
  5630. 500,
  5631. 500,
  5632. 500,
  5633. 500,
  5634. 500,
  5635. 500,
  5636. 500,
  5637. 500,
  5638. 500,
  5639. 500,
  5640. 500,
  5641. 501,
  5642. 501,
  5643. 501,
  5644. 502,
  5645. 503,
  5646. 503,
  5647. 504,
  5648. 504,
  5649. 504,
  5650. 505,
  5651. 505,
  5652. 506,
  5653. 507,
  5654. 508,
  5655. 508,
  5656. 508,
  5657. 509,
  5658. 510,
  5659. 510,
  5660. 511,
  5661. 511,
  5662. 512,
  5663. 512,
  5664. 512,
  5665. 513,
  5666. 513,
  5667. 514,
  5668. 514,
  5669. 515,
  5670. 516,
  5671. 516,
  5672. 516,
  5673. 516,
  5674. 516,
  5675. 517,
  5676. 518,
  5677. 519,
  5678. 520,
  5679. 520,
  5680. 520,
  5681. 521,
  5682. 522,
  5683. 523,
  5684. 523,
  5685. 524,
  5686. 525,
  5687. 526,
  5688. 527,
  5689. 528,
  5690. 528,
  5691. 529,
  5692. 530,
  5693. 531,
  5694. 532,
  5695. 532,
  5696. 533,
  5697. 534,
  5698. 535,
  5699. 536,
  5700. 536,
  5701. 537,
  5702. 537
  5703. ]
  5704. screenYs2 = [
  5705. 102,
  5706. 103,
  5707. 103,
  5708. 104,
  5709. 105,
  5710. 105,
  5711. 106,
  5712. 107,
  5713. 108,
  5714. 108,
  5715. 108,
  5716. 108,
  5717. 109,
  5718. 110,
  5719. 110,
  5720. 111,
  5721. 112,
  5722. 113,
  5723. 114,
  5724. 116,
  5725. 116,
  5726. 117,
  5727. 118,
  5728. 120,
  5729. 121,
  5730. 123,
  5731. 124,
  5732. 125,
  5733. 127,
  5734. 128,
  5735. 131,
  5736. 132,
  5737. 135,
  5738. 136,
  5739. 137,
  5740. 138,
  5741. 139,
  5742. 140,
  5743. 140,
  5744. 142,
  5745. 143,
  5746. 144,
  5747. 144,
  5748. 145,
  5749. 146,
  5750. 146,
  5751. 147,
  5752. 148,
  5753. 148,
  5754. 148,
  5755. 150,
  5756. 152,
  5757. 153,
  5758. 155,
  5759. 156,
  5760. 159,
  5761. 161,
  5762. 164,
  5763. 167,
  5764. 170,
  5765. 172,
  5766. 175,
  5767. 177,
  5768. 181,
  5769. 184,
  5770. 186,
  5771. 190,
  5772. 192,
  5773. 195,
  5774. 197,
  5775. 200,
  5776. 204,
  5777. 207,
  5778. 211,
  5779. 213,
  5780. 217,
  5781. 220,
  5782. 223,
  5783. 225,
  5784. 228,
  5785. 232,
  5786. 235,
  5787. 236,
  5788. 240,
  5789. 244,
  5790. 247,
  5791. 249,
  5792. 252,
  5793. 255,
  5794. 260,
  5795. 264,
  5796. 267,
  5797. 269,
  5798. 272,
  5799. 274,
  5800. 276,
  5801. 280,
  5802. 284,
  5803. 288,
  5804. 290,
  5805. 296,
  5806. 298,
  5807. 301,
  5808. 304,
  5809. 308,
  5810. 311,
  5811. 313,
  5812. 316,
  5813. 319,
  5814. 322,
  5815. 326,
  5816. 327,
  5817. 330,
  5818. 334,
  5819. 337,
  5820. 340,
  5821. 344,
  5822. 349,
  5823. 354,
  5824. 360,
  5825. 364,
  5826. 366,
  5827. 372,
  5828. 375,
  5829. 378,
  5830. 381,
  5831. 385,
  5832. 389,
  5833. 394,
  5834. 400,
  5835. 404,
  5836. 408,
  5837. 412,
  5838. 416,
  5839. 418,
  5840. 421,
  5841. 424,
  5842. 425,
  5843. 427,
  5844. 428,
  5845. 429,
  5846. 430,
  5847. 432,
  5848. 432,
  5849. 433,
  5850. 434,
  5851. 436,
  5852. 436,
  5853. 438,
  5854. 439,
  5855. 439,
  5856. 440,
  5857. 440,
  5858. 440,
  5859. 440,
  5860. 439,
  5861. 438,
  5862. 436,
  5863. 434,
  5864. 432,
  5865. 428,
  5866. 427,
  5867. 422,
  5868. 418,
  5869. 413,
  5870. 408,
  5871. 400,
  5872. 395,
  5873. 389,
  5874. 383,
  5875. 377,
  5876. 368,
  5877. 360,
  5878. 352,
  5879. 345,
  5880. 339,
  5881. 331,
  5882. 322,
  5883. 315,
  5884. 307,
  5885. 300,
  5886. 292,
  5887. 286,
  5888. 280,
  5889. 273,
  5890. 264,
  5891. 257,
  5892. 251,
  5893. 244,
  5894. 238,
  5895. 231,
  5896. 224,
  5897. 220,
  5898. 213,
  5899. 208,
  5900. 203,
  5901. 196,
  5902. 192,
  5903. 187,
  5904. 184,
  5905. 180,
  5906. 179,
  5907. 176,
  5908. 175,
  5909. 174,
  5910. 173,
  5911. 173,
  5912. 172,
  5913. 172,
  5914. 171,
  5915. 170,
  5916. 170,
  5917. 169,
  5918. 168,
  5919. 168,
  5920. 168,
  5921. 168,
  5922. 168,
  5923. 168,
  5924. 168,
  5925. 168,
  5926. 168,
  5927. 169,
  5928. 169,
  5929. 169,
  5930. 169,
  5931. 170,
  5932. 171,
  5933. 172,
  5934. 173,
  5935. 175,
  5936. 178,
  5937. 180,
  5938. 183,
  5939. 186,
  5940. 188,
  5941. 191,
  5942. 194,
  5943. 196,
  5944. 202,
  5945. 208,
  5946. 212,
  5947. 218,
  5948. 224,
  5949. 231,
  5950. 237,
  5951. 244,
  5952. 253,
  5953. 260,
  5954. 267,
  5955. 275,
  5956. 280,
  5957. 285,
  5958. 291,
  5959. 295,
  5960. 301,
  5961. 308,
  5962. 312,
  5963. 318,
  5964. 322,
  5965. 328,
  5966. 334,
  5967. 339,
  5968. 343,
  5969. 348,
  5970. 352,
  5971. 356,
  5972. 360,
  5973. 366,
  5974. 370,
  5975. 375,
  5976. 380,
  5977. 385,
  5978. 391,
  5979. 397,
  5980. 401,
  5981. 406,
  5982. 411,
  5983. 416,
  5984. 421,
  5985. 425,
  5986. 429,
  5987. 433,
  5988. 436,
  5989. 441,
  5990. 446,
  5991. 451,
  5992. 456,
  5993. 460,
  5994. 463,
  5995. 467,
  5996. 470,
  5997. 474,
  5998. 477,
  5999. 480,
  6000. 484,
  6001. 488,
  6002. 492,
  6003. 495,
  6004. 500,
  6005. 504,
  6006. 508,
  6007. 511,
  6008. 514,
  6009. 519,
  6010. 522,
  6011. 526,
  6012. 529,
  6013. 532,
  6014. 533,
  6015. 535,
  6016. 537,
  6017. 538,
  6018. 540,
  6019. 541,
  6020. 541,
  6021. 543,
  6022. 544,
  6023. 544,
  6024. 545,
  6025. 547,
  6026. 548,
  6027. 548,
  6028. 548,
  6029. 548,
  6030. 548,
  6031. 547,
  6032. 544,
  6033. 543,
  6034. 540,
  6035. 537,
  6036. 534,
  6037. 529,
  6038. 524,
  6039. 518,
  6040. 511,
  6041. 502,
  6042. 492,
  6043. 482,
  6044. 469,
  6045. 460,
  6046. 445,
  6047. 435,
  6048. 424,
  6049. 416,
  6050. 401,
  6051. 390,
  6052. 373,
  6053. 360,
  6054. 349,
  6055. 338,
  6056. 328,
  6057. 317,
  6058. 308,
  6059. 295,
  6060. 284,
  6061. 276,
  6062. 268,
  6063. 261,
  6064. 251,
  6065. 244,
  6066. 237,
  6067. 228,
  6068. 220,
  6069. 214,
  6070. 209,
  6071. 205,
  6072. 202,
  6073. 200,
  6074. 197,
  6075. 196,
  6076. 192,
  6077. 191,
  6078. 190,
  6079. 189,
  6080. 188,
  6081. 187,
  6082. 187,
  6083. 187,
  6084. 187,
  6085. 187,
  6086. 187,
  6087. 187,
  6088. 188,
  6089. 188,
  6090. 188,
  6091. 189,
  6092. 190,
  6093. 192,
  6094. 192,
  6095. 194,
  6096. 195,
  6097. 197,
  6098. 200,
  6099. 204,
  6100. 208,
  6101. 215,
  6102. 220,
  6103. 228,
  6104. 236,
  6105. 247,
  6106. 257,
  6107. 267,
  6108. 279,
  6109. 288,
  6110. 295,
  6111. 305,
  6112. 314,
  6113. 322,
  6114. 331,
  6115. 337,
  6116. 344,
  6117. 349,
  6118. 356,
  6119. 360,
  6120. 366,
  6121. 371,
  6122. 376,
  6123. 380,
  6124. 385,
  6125. 391,
  6126. 396,
  6127. 401,
  6128. 405,
  6129. 410,
  6130. 416,
  6131. 421,
  6132. 427,
  6133. 432,
  6134. 438,
  6135. 442,
  6136. 448,
  6137. 455,
  6138. 461,
  6139. 468,
  6140. 475,
  6141. 484,
  6142. 491,
  6143. 497,
  6144. 503,
  6145. 509,
  6146. 516,
  6147. 521,
  6148. 528,
  6149. 533,
  6150. 538,
  6151. 542,
  6152. 547,
  6153. 550,
  6154. 552,
  6155. 555,
  6156. 558,
  6157. 560,
  6158. 562,
  6159. 564,
  6160. 566,
  6161. 568,
  6162. 571,
  6163. 574,
  6164. 576,
  6165. 578,
  6166. 580,
  6167. 582,
  6168. 583,
  6169. 585,
  6170. 585,
  6171. 585,
  6172. 584,
  6173. 583,
  6174. 581,
  6175. 578,
  6176. 575,
  6177. 570,
  6178. 565,
  6179. 560,
  6180. 551,
  6181. 543,
  6182. 532,
  6183. 520,
  6184. 510,
  6185. 498,
  6186. 484,
  6187. 470,
  6188. 458,
  6189. 447,
  6190. 436,
  6191. 423,
  6192. 410,
  6193. 401,
  6194. 392,
  6195. 384,
  6196. 378,
  6197. 370,
  6198. 364,
  6199. 358,
  6200. 353,
  6201. 349,
  6202. 343,
  6203. 338,
  6204. 331,
  6205. 325,
  6206. 320,
  6207. 316,
  6208. 312,
  6209. 308,
  6210. 304,
  6211. 301,
  6212. 295,
  6213. 291,
  6214. 283,
  6215. 278,
  6216. 275,
  6217. 272,
  6218. 266,
  6219. 261,
  6220. 257,
  6221. 255,
  6222. 249,
  6223. 247,
  6224. 244,
  6225. 242,
  6226. 240,
  6227. 239,
  6228. 238,
  6229. 237,
  6230. 236,
  6231. 234,
  6232. 234,
  6233. 234,
  6234. 234,
  6235. 234,
  6236. 233,
  6237. 233,
  6238. 233,
  6239. 233,
  6240. 233,
  6241. 234,
  6242. 236,
  6243. 241,
  6244. 244,
  6245. 249,
  6246. 252,
  6247. 256,
  6248. 262,
  6249. 265,
  6250. 268,
  6251. 272,
  6252. 275,
  6253. 278,
  6254. 281,
  6255. 283,
  6256. 285,
  6257. 288,
  6258. 289,
  6259. 292,
  6260. 295,
  6261. 297,
  6262. 300,
  6263. 304,
  6264. 307,
  6265. 310,
  6266. 315,
  6267. 319,
  6268. 324,
  6269. 328,
  6270. 332,
  6271. 336,
  6272. 339,
  6273. 344,
  6274. 348,
  6275. 352,
  6276. 357,
  6277. 363,
  6278. 366,
  6279. 372,
  6280. 379,
  6281. 384,
  6282. 388,
  6283. 393,
  6284. 399,
  6285. 405,
  6286. 411,
  6287. 417,
  6288. 421,
  6289. 428,
  6290. 434,
  6291. 440,
  6292. 447,
  6293. 452,
  6294. 459,
  6295. 467,
  6296. 472,
  6297. 480,
  6298. 487,
  6299. 492,
  6300. 501,
  6301. 510,
  6302. 519,
  6303. 525,
  6304. 532,
  6305. 540,
  6306. 546,
  6307. 552,
  6308. 560,
  6309. 568,
  6310. 578,
  6311. 584,
  6312. 590,
  6313. 597,
  6314. 604,
  6315. 611,
  6316. 616,
  6317. 623,
  6318. 628,
  6319. 634,
  6320. 640,
  6321. 645,
  6322. 651,
  6323. 656,
  6324. 661,
  6325. 665,
  6326. 667,
  6327. 670,
  6328. 672,
  6329. 675,
  6330. 676,
  6331. 677,
  6332. 678,
  6333. 680,
  6334. 680,
  6335. 681,
  6336. 682,
  6337. 682,
  6338. 682,
  6339. 682,
  6340. 681,
  6341. 680,
  6342. 677,
  6343. 674,
  6344. 670,
  6345. 665,
  6346. 660,
  6347. 652,
  6348. 644,
  6349. 638,
  6350. 631,
  6351. 624,
  6352. 610,
  6353. 600,
  6354. 589,
  6355. 576,
  6356. 565,
  6357. 554,
  6358. 544,
  6359. 528,
  6360. 513,
  6361. 502,
  6362. 491,
  6363. 482,
  6364. 473,
  6365. 460,
  6366. 451,
  6367. 440,
  6368. 432,
  6369. 423,
  6370. 415,
  6371. 409,
  6372. 400,
  6373. 395,
  6374. 389,
  6375. 384,
  6376. 377,
  6377. 370,
  6378. 363,
  6379. 357,
  6380. 351,
  6381. 345,
  6382. 340,
  6383. 336,
  6384. 329,
  6385. 324,
  6386. 319,
  6387. 314,
  6388. 311,
  6389. 304,
  6390. 301,
  6391. 296,
  6392. 292,
  6393. 290,
  6394. 287,
  6395. 284,
  6396. 283,
  6397. 280,
  6398. 279,
  6399. 277,
  6400. 276,
  6401. 275,
  6402. 274,
  6403. 274,
  6404. 274,
  6405. 273,
  6406. 273,
  6407. 273,
  6408. 273,
  6409. 273,
  6410. 273,
  6411. 273,
  6412. 274,
  6413. 275,
  6414. 275,
  6415. 276,
  6416. 277,
  6417. 278,
  6418. 279,
  6419. 280,
  6420. 281,
  6421. 283,
  6422. 284,
  6423. 285,
  6424. 286,
  6425. 287,
  6426. 288,
  6427. 291,
  6428. 292,
  6429. 294,
  6430. 295,
  6431. 296,
  6432. 299,
  6433. 300,
  6434. 302,
  6435. 304,
  6436. 306,
  6437. 309,
  6438. 310,
  6439. 312,
  6440. 313,
  6441. 314,
  6442. 317,
  6443. 318,
  6444. 321,
  6445. 324,
  6446. 326,
  6447. 328,
  6448. 331,
  6449. 333,
  6450. 336,
  6451. 339,
  6452. 340,
  6453. 344,
  6454. 348,
  6455. 349,
  6456. 351,
  6457. 353,
  6458. 356,
  6459. 357,
  6460. 360,
  6461. 361,
  6462. 362,
  6463. 364,
  6464. 365,
  6465. 368,
  6466. 370,
  6467. 372,
  6468. 374,
  6469. 375,
  6470. 376,
  6471. 378,
  6472. 380,
  6473. 381,
  6474. 383,
  6475. 384,
  6476. 385,
  6477. 386,
  6478. 387,
  6479. 388,
  6480. 390,
  6481. 392,
  6482. 393,
  6483. 394,
  6484. 395,
  6485. 396,
  6486. 397,
  6487. 399,
  6488. 400,
  6489. 401,
  6490. 402,
  6491. 403,
  6492. 404,
  6493. 405,
  6494. 406,
  6495. 407,
  6496. 408,
  6497. 409,
  6498. 410,
  6499. 411,
  6500. 412,
  6501. 413,
  6502. 414,
  6503. 415,
  6504. 415,
  6505. 416,
  6506. 416,
  6507. 417,
  6508. 418,
  6509. 419,
  6510. 420,
  6511. 420,
  6512. 421,
  6513. 422,
  6514. 423,
  6515. 424,
  6516. 425,
  6517. 426,
  6518. 427,
  6519. 428,
  6520. 428,
  6521. 428,
  6522. 428,
  6523. 429,
  6524. 430,
  6525. 430,
  6526. 431,
  6527. 431,
  6528. 432,
  6529. 432,
  6530. 432,
  6531. 432,
  6532. 432,
  6533. 433,
  6534. 434,
  6535. 435,
  6536. 435,
  6537. 435,
  6538. 435,
  6539. 436,
  6540. 436,
  6541. 436,
  6542. 437,
  6543. 437,
  6544. 438,
  6545. 438,
  6546. 439
  6547. ]
  6548. timeStamps2 = [
  6549. 91162.5,
  6550. 91171.30000007153,
  6551. 91177.70000004768,
  6552. 91185.70000004768,
  6553. 91200.70000004768,
  6554. 91207.5,
  6555. 91223.80000007153,
  6556. 91228.20000004768,
  6557. 91237,
  6558. 91242.5,
  6559. 91252.30000007153,
  6560. 91257.80000007153,
  6561. 91266.80000007153,
  6562. 91273.60000002384,
  6563. 91281.20000004768,
  6564. 91287.70000004768,
  6565. 91295.20000004768,
  6566. 91304,
  6567. 91308.89999997616,
  6568. 91319.39999997616,
  6569. 91323.39999997616,
  6570. 91331.70000004768,
  6571. 91339.89999997616,
  6572. 91347.30000007153,
  6573. 91354.70000004768,
  6574. 91361.10000002384,
  6575. 91367.20000004768,
  6576. 91375,
  6577. 91384.10000002384,
  6578. 91390.39999997616,
  6579. 91398.5,
  6580. 91406.5,
  6581. 91412.60000002384,
  6582. 91420.5,
  6583. 91427.30000007153,
  6584. 91435,
  6585. 91440.70000004768,
  6586. 91448.30000007153,
  6587. 91457,
  6588. 91464.30000007153,
  6589. 91472.89999997616,
  6590. 91478.5,
  6591. 91486.70000004768,
  6592. 91493.70000004768,
  6593. 91502.39999997616,
  6594. 91508.60000002384,
  6595. 91516.89999997616,
  6596. 91522.70000004768,
  6597. 91530.70000004768,
  6598. 91544.89999997616,
  6599. 91817.70000004768,
  6600. 91825.10000002384,
  6601. 91832.70000004768,
  6602. 91839.60000002384,
  6603. 91846.70000004768,
  6604. 91853.89999997616,
  6605. 91862.30000007153,
  6606. 91868.80000007153,
  6607. 91876.80000007153,
  6608. 91883.60000002384,
  6609. 91891.20000004768,
  6610. 91898.20000004768,
  6611. 91906.60000002384,
  6612. 91913,
  6613. 91919.30000007153,
  6614. 91927,
  6615. 91935.10000002384,
  6616. 91941.60000002384,
  6617. 91950.80000007153,
  6618. 91957.30000007153,
  6619. 91965.10000002384,
  6620. 91972,
  6621. 91979.70000004768,
  6622. 91985.5,
  6623. 91992.70000004768,
  6624. 92002.30000007153,
  6625. 92007.5,
  6626. 92016.30000007153,
  6627. 92023.30000007153,
  6628. 92030.30000007153,
  6629. 92038.70000004768,
  6630. 92045.20000004768,
  6631. 92053,
  6632. 92060.30000007153,
  6633. 92067.5,
  6634. 92075.30000007153,
  6635. 92082.60000002384,
  6636. 92087.80000007153,
  6637. 92096.80000007153,
  6638. 92104.70000004768,
  6639. 92109.80000007153,
  6640. 92118.89999997616,
  6641. 92126.89999997616,
  6642. 92133.30000007153,
  6643. 92140.80000007153,
  6644. 92149.20000004768,
  6645. 92155.70000004768,
  6646. 92163,
  6647. 92170.60000002384,
  6648. 92178.39999997616,
  6649. 92184.20000004768,
  6650. 92193.70000004768,
  6651. 92198.30000007153,
  6652. 92206.80000007153,
  6653. 92214.60000002384,
  6654. 92222.60000002384,
  6655. 92228.60000002384,
  6656. 92236.20000004768,
  6657. 92243.89999997616,
  6658. 92252,
  6659. 92258.20000004768,
  6660. 92266.39999997616,
  6661. 92273.80000007153,
  6662. 92280.80000007153,
  6663. 92289,
  6664. 92295.20000004768,
  6665. 92302.5,
  6666. 92310.10000002384,
  6667. 92318.70000004768,
  6668. 92323.60000002384,
  6669. 92332.60000002384,
  6670. 92339.39999997616,
  6671. 92347.39999997616,
  6672. 92354.10000002384,
  6673. 92361.20000004768,
  6674. 92369.70000004768,
  6675. 92375.89999997616,
  6676. 92384.39999997616,
  6677. 92390.70000004768,
  6678. 92398,
  6679. 92406.89999997616,
  6680. 92412.39999997616,
  6681. 92420.5,
  6682. 92428,
  6683. 92434.39999997616,
  6684. 92442.70000004768,
  6685. 92448.70000004768,
  6686. 92457.20000004768,
  6687. 92464.30000007153,
  6688. 92473.10000002384,
  6689. 92478.30000007153,
  6690. 92486.39999997616,
  6691. 92493.39999997616,
  6692. 92502,
  6693. 92508.60000002384,
  6694. 92515,
  6695. 92524.5,
  6696. 92529.10000002384,
  6697. 92540.10000002384,
  6698. 92544,
  6699. 92553.89999997616,
  6700. 92558.80000007153,
  6701. 92567.89999997616,
  6702. 92574,
  6703. 92582.89999997616,
  6704. 92587.70000004768,
  6705. 92596.89999997616,
  6706. 92604.30000007153,
  6707. 92610.30000007153,
  6708. 92619.39999997616,
  6709. 92626,
  6710. 92633.80000007153,
  6711. 92640.70000004768,
  6712. 92649.89999997616,
  6713. 92655,
  6714. 92663.70000004768,
  6715. 92670.20000004768,
  6716. 92677.89999997616,
  6717. 92684.70000004768,
  6718. 92691.89999997616,
  6719. 92700.20000004768,
  6720. 92706.89999997616,
  6721. 92713.89999997616,
  6722. 92722.30000007153,
  6723. 92729.10000002384,
  6724. 92735.70000004768,
  6725. 92744.20000004768,
  6726. 92751.20000004768,
  6727. 92758.70000004768,
  6728. 92766.30000007153,
  6729. 92773.20000004768,
  6730. 92780.89999997616,
  6731. 92788.70000004768,
  6732. 92795.20000004768,
  6733. 92802.89999997616,
  6734. 92810.30000007153,
  6735. 92817.80000007153,
  6736. 92823.80000007153,
  6737. 92833.20000004768,
  6738. 92837.5,
  6739. 92845.80000007153,
  6740. 92855.10000002384,
  6741. 92860,
  6742. 92869.80000007153,
  6743. 92875.60000002384,
  6744. 92884,
  6745. 92889.30000007153,
  6746. 92897.70000004768,
  6747. 92904.89999997616,
  6748. 92911.30000007153,
  6749. 92918.89999997616,
  6750. 92927.80000007153,
  6751. 92935.60000002384,
  6752. 92940.60000002384,
  6753. 92948.80000007153,
  6754. 92957.30000007153,
  6755. 92964.20000004768,
  6756. 92973.10000002384,
  6757. 92978.30000007153,
  6758. 92986.39999997616,
  6759. 92994.20000004768,
  6760. 93000.60000002384,
  6761. 93009.30000007153,
  6762. 93015.70000004768,
  6763. 93023.89999997616,
  6764. 93030,
  6765. 93039.10000002384,
  6766. 93044.60000002384,
  6767. 93053.39999997616,
  6768. 93059.80000007153,
  6769. 93067.70000004768,
  6770. 93074.39999997616,
  6771. 93081.39999997616,
  6772. 93089.70000004768,
  6773. 93104.70000004768,
  6774. 93126,
  6775. 93133.89999997616,
  6776. 93140.39999997616,
  6777. 93148.30000007153,
  6778. 93155.70000004768,
  6779. 93163.10000002384,
  6780. 93170.89999997616,
  6781. 93177.10000002384,
  6782. 93185.70000004768,
  6783. 93192.10000002384,
  6784. 93201.60000002384,
  6785. 93205.70000004768,
  6786. 93215.30000007153,
  6787. 93221.60000002384,
  6788. 93228.89999997616,
  6789. 93237.20000004768,
  6790. 93242.5,
  6791. 93250.70000004768,
  6792. 93258.70000004768,
  6793. 93264.39999997616,
  6794. 93273.70000004768,
  6795. 93279.60000002384,
  6796. 93288.5,
  6797. 93295.5,
  6798. 93300.89999997616,
  6799. 93309.30000007153,
  6800. 93317.70000004768,
  6801. 93324.39999997616,
  6802. 93332.10000002384,
  6803. 93339,
  6804. 93346.80000007153,
  6805. 93354.5,
  6806. 93360.60000002384,
  6807. 93368.80000007153,
  6808. 93376.5,
  6809. 93384,
  6810. 93390.5,
  6811. 93397.5,
  6812. 93406.60000002384,
  6813. 93412.10000002384,
  6814. 93420.60000002384,
  6815. 93426,
  6816. 93435,
  6817. 93441.89999997616,
  6818. 93448.30000007153,
  6819. 93457.10000002384,
  6820. 93464.20000004768,
  6821. 93472.10000002384,
  6822. 93479.5,
  6823. 93486.20000004768,
  6824. 93493.70000004768,
  6825. 93501.60000002384,
  6826. 93508.30000007153,
  6827. 93516.5,
  6828. 93522.60000002384,
  6829. 93531.20000004768,
  6830. 93537.60000002384,
  6831. 93545.39999997616,
  6832. 93551.89999997616,
  6833. 93560.10000002384,
  6834. 93567.80000007153,
  6835. 93574.60000002384,
  6836. 93582.39999997616,
  6837. 93589.70000004768,
  6838. 93596.30000007153,
  6839. 93604.70000004768,
  6840. 93610.10000002384,
  6841. 93620,
  6842. 93625.89999997616,
  6843. 93634.20000004768,
  6844. 93640,
  6845. 93649.30000007153,
  6846. 93656.30000007153,
  6847. 93662.5,
  6848. 93671.20000004768,
  6849. 93676.20000004768,
  6850. 93686.10000002384,
  6851. 93692.20000004768,
  6852. 93699.70000004768,
  6853. 93707.39999997616,
  6854. 93715,
  6855. 93721.70000004768,
  6856. 93729.5,
  6857. 93737,
  6858. 93742.80000007153,
  6859. 93752.30000007153,
  6860. 93757.60000002384,
  6861. 93767.39999997616,
  6862. 93773,
  6863. 93781.30000007153,
  6864. 93788.60000002384,
  6865. 93793.70000004768,
  6866. 93803,
  6867. 93808.89999997616,
  6868. 93817.5,
  6869. 93824,
  6870. 93832.30000007153,
  6871. 93839.80000007153,
  6872. 93847.20000004768,
  6873. 93853,
  6874. 93861.5,
  6875. 93868.20000004768,
  6876. 93876.30000007153,
  6877. 93884.10000002384,
  6878. 93890,
  6879. 93898.20000004768,
  6880. 93906.20000004768,
  6881. 93912.39999997616,
  6882. 93920.10000002384,
  6883. 93926.70000004768,
  6884. 93935.89999997616,
  6885. 93941.89999997616,
  6886. 93950.60000002384,
  6887. 93957,
  6888. 93965.10000002384,
  6889. 93972,
  6890. 93979.10000002384,
  6891. 93984.89999997616,
  6892. 93993.70000004768,
  6893. 93999.70000004768,
  6894. 94009.5,
  6895. 94015.5,
  6896. 94023.60000002384,
  6897. 94030.60000002384,
  6898. 94038.30000007153,
  6899. 94045.10000002384,
  6900. 94056.20000004768,
  6901. 94058.20000004768,
  6902. 94066.70000004768,
  6903. 94075.20000004768,
  6904. 94082.60000002384,
  6905. 94088.89999997616,
  6906. 94095.70000004768,
  6907. 94104,
  6908. 94111.5,
  6909. 94118.89999997616,
  6910. 94124.30000007153,
  6911. 94134.20000004768,
  6912. 94139.89999997616,
  6913. 94148.89999997616,
  6914. 94155.70000004768,
  6915. 94163.39999997616,
  6916. 94168.60000002384,
  6917. 94176,
  6918. 94184.89999997616,
  6919. 94192.70000004768,
  6920. 94199.5,
  6921. 94207.5,
  6922. 94213.80000007153,
  6923. 94222,
  6924. 94229.5,
  6925. 94236.20000004768,
  6926. 94242.89999997616,
  6927. 94252.10000002384,
  6928. 94258,
  6929. 94266.60000002384,
  6930. 94273.30000007153,
  6931. 94280.70000004768,
  6932. 94288.89999997616,
  6933. 94293.30000007153,
  6934. 94302.60000002384,
  6935. 94310.10000002384,
  6936. 94317.70000004768,
  6937. 94332.20000004768,
  6938. 94339.39999997616,
  6939. 94354.39999997616,
  6940. 94360.70000004768,
  6941. 94376.30000007153,
  6942. 94384.10000002384,
  6943. 94389.89999997616,
  6944. 94398.39999997616,
  6945. 94403.80000007153,
  6946. 94411.39999997616,
  6947. 94421.30000007153,
  6948. 94426.89999997616,
  6949. 94434.39999997616,
  6950. 94442.89999997616,
  6951. 94448.20000004768,
  6952. 94456.70000004768,
  6953. 94464.39999997616,
  6954. 94472.60000002384,
  6955. 94478.30000007153,
  6956. 94486.80000007153,
  6957. 94493.10000002384,
  6958. 94501.60000002384,
  6959. 94507.39999997616,
  6960. 94516.89999997616,
  6961. 94522.70000004768,
  6962. 94530.5,
  6963. 94538.70000004768,
  6964. 94545.20000004768,
  6965. 94553.20000004768,
  6966. 94559.30000007153,
  6967. 94568,
  6968. 94573.89999997616,
  6969. 94581.30000007153,
  6970. 94590.10000002384,
  6971. 94596.60000002384,
  6972. 94605.20000004768,
  6973. 94610.89999997616,
  6974. 94619.10000002384,
  6975. 94625.89999997616,
  6976. 94634.20000004768,
  6977. 94639.80000007153,
  6978. 94647.60000002384,
  6979. 94656.10000002384,
  6980. 94662.5,
  6981. 94670.80000007153,
  6982. 94676.60000002384,
  6983. 94686,
  6984. 94692,
  6985. 94700.60000002384,
  6986. 94706.20000004768,
  6987. 94714.70000004768,
  6988. 94722.10000002384,
  6989. 94729.10000002384,
  6990. 94735.30000007153,
  6991. 94743.80000007153,
  6992. 94751.80000007153,
  6993. 94758.20000004768,
  6994. 94764,
  6995. 94773.89999997616,
  6996. 94780.5,
  6997. 94787.20000004768,
  6998. 94795.70000004768,
  6999. 94802.30000007153,
  7000. 94810.10000002384,
  7001. 94817.89999997616,
  7002. 94824.10000002384,
  7003. 94832.30000007153,
  7004. 94839.20000004768,
  7005. 94847.10000002384,
  7006. 94860.89999997616,
  7007. 94868.89999997616,
  7008. 94875.39999997616,
  7009. 94883.39999997616,
  7010. 94891.80000007153,
  7011. 94897.39999997616,
  7012. 94905.80000007153,
  7013. 94913.20000004768,
  7014. 94920,
  7015. 94928,
  7016. 94934.80000007153,
  7017. 94942.70000004768,
  7018. 94949.5,
  7019. 94956.60000002384,
  7020. 94965.10000002384,
  7021. 94971.60000002384,
  7022. 94979,
  7023. 94987.70000004768,
  7024. 94992.20000004768,
  7025. 95001.60000002384,
  7026. 95008.89999997616,
  7027. 95015.5,
  7028. 95022.5,
  7029. 95031,
  7030. 95036.70000004768,
  7031. 95044.89999997616,
  7032. 95052,
  7033. 95059.70000004768,
  7034. 95067.10000002384,
  7035. 95075.39999997616,
  7036. 95080.80000007153,
  7037. 95089.39999997616,
  7038. 95097.39999997616,
  7039. 95104.39999997616,
  7040. 95110.89999997616,
  7041. 95119.30000007153,
  7042. 95125.5,
  7043. 95133.89999997616,
  7044. 95140.20000004768,
  7045. 95148.39999997616,
  7046. 95155.80000007153,
  7047. 95162.80000007153,
  7048. 95170.5,
  7049. 95177.60000002384,
  7050. 95184.5,
  7051. 95192.60000002384,
  7052. 95199.70000004768,
  7053. 95207.20000004768,
  7054. 95213.70000004768,
  7055. 95222.5,
  7056. 95229,
  7057. 95236.60000002384,
  7058. 95243.70000004768,
  7059. 95251.80000007153,
  7060. 95258.10000002384,
  7061. 95266.20000004768,
  7062. 95273,
  7063. 95280.70000004768,
  7064. 95288.80000007153,
  7065. 95294.10000002384,
  7066. 95304.20000004768,
  7067. 95309,
  7068. 95315.5,
  7069. 95324.20000004768,
  7070. 95332.20000004768,
  7071. 95337.89999997616,
  7072. 95347.5,
  7073. 95352.20000004768,
  7074. 95360.80000007153,
  7075. 95369.39999997616,
  7076. 95375.70000004768,
  7077. 95382.5,
  7078. 95390.39999997616,
  7079. 95398.10000002384,
  7080. 95405.70000004768,
  7081. 95412.89999997616,
  7082. 95420.39999997616,
  7083. 95427.80000007153,
  7084. 95433.80000007153,
  7085. 95743.70000004768,
  7086. 95751.5,
  7087. 95758.39999997616,
  7088. 95766.5,
  7089. 95772.30000007153,
  7090. 95779,
  7091. 95788.60000002384,
  7092. 95795.10000002384,
  7093. 95803,
  7094. 95808.30000007153,
  7095. 95818.30000007153,
  7096. 95823.39999997616,
  7097. 95833.10000002384,
  7098. 95839.5,
  7099. 95847.20000004768,
  7100. 95853.89999997616,
  7101. 95860.89999997616,
  7102. 95868.10000002384,
  7103. 95875.39999997616,
  7104. 95883.30000007153,
  7105. 95891.30000007153,
  7106. 95898.10000002384,
  7107. 95905.10000002384,
  7108. 95913.80000007153,
  7109. 95919.5,
  7110. 95926.60000002384,
  7111. 95935.70000004768,
  7112. 95942.10000002384,
  7113. 95950.10000002384,
  7114. 95956,
  7115. 95964.30000007153,
  7116. 95972,
  7117. 95979.10000002384,
  7118. 95986.39999997616,
  7119. 95992.20000004768,
  7120. 96001.60000002384,
  7121. 96008.60000002384,
  7122. 96014.70000004768,
  7123. 96023.80000007153,
  7124. 96029.70000004768,
  7125. 96038.60000002384,
  7126. 96045.5,
  7127. 96051.20000004768,
  7128. 96060.20000004768,
  7129. 96067.5,
  7130. 96074.10000002384,
  7131. 96082.20000004768,
  7132. 96089.89999997616,
  7133. 96095.10000002384,
  7134. 96105.5,
  7135. 96109.89999997616,
  7136. 96119.20000004768,
  7137. 96125.80000007153,
  7138. 96132.39999997616,
  7139. 96141.39999997616,
  7140. 96146.60000002384,
  7141. 96153.80000007153,
  7142. 96162.30000007153,
  7143. 96171,
  7144. 96177,
  7145. 96185.30000007153,
  7146. 96191.60000002384,
  7147. 96200.5,
  7148. 96205.89999997616,
  7149. 96215.10000002384,
  7150. 96221.30000007153,
  7151. 96229,
  7152. 96236.70000004768,
  7153. 96243,
  7154. 96252.10000002384,
  7155. 96257.80000007153,
  7156. 96266.20000004768,
  7157. 96272.10000002384,
  7158. 96281.10000002384,
  7159. 96287.70000004768,
  7160. 96294.70000004768,
  7161. 96303.30000007153,
  7162. 96308.89999997616,
  7163. 96317.70000004768,
  7164. 96324.5,
  7165. 96332.5,
  7166. 96338.60000002384,
  7167. 96347,
  7168. 96354,
  7169. 96361.30000007153,
  7170. 96369.20000004768,
  7171. 96376,
  7172. 96381.60000002384,
  7173. 96392.20000004768,
  7174. 96397.30000007153,
  7175. 96405.20000004768,
  7176. 96412.10000002384,
  7177. 96421.30000007153,
  7178. 96425.89999997616,
  7179. 96435.39999997616,
  7180. 96441.5,
  7181. 96450.39999997616,
  7182. 96455.80000007153,
  7183. 96465.10000002384,
  7184. 96471.5,
  7185. 96479.30000007153,
  7186. 96486.10000002384,
  7187. 96493.70000004768,
  7188. 96501.5,
  7189. 96508,
  7190. 96516.39999997616,
  7191. 96521.89999997616,
  7192. 96531.20000004768,
  7193. 96538.20000004768,
  7194. 96545,
  7195. 96553,
  7196. 96558.70000004768,
  7197. 96568.10000002384,
  7198. 96574.30000007153,
  7199. 96582.5,
  7200. 96588.5,
  7201. 96597.5,
  7202. 96602.30000007153,
  7203. 96611.89999997616,
  7204. 96618.60000002384,
  7205. 96625.89999997616,
  7206. 96633.70000004768,
  7207. 96641.30000007153,
  7208. 96648.30000007153,
  7209. 96655.10000002384,
  7210. 96662.89999997616,
  7211. 96668.39999997616,
  7212. 96675.80000007153,
  7213. 96683.10000002384,
  7214. 96690.5,
  7215. 96697.80000007153,
  7216. 96705.10000002384,
  7217. 96712.60000002384,
  7218. 96719.80000007153,
  7219. 96727.10000002384,
  7220. 96734.5,
  7221. 96741.60000002384,
  7222. 96749.10000002384,
  7223. 96756.70000004768,
  7224. 96763.80000007153,
  7225. 96771.30000007153,
  7226. 96778.5,
  7227. 96786.10000002384,
  7228. 96793.30000007153,
  7229. 96800.60000002384,
  7230. 96808.20000004768,
  7231. 96815.39999997616,
  7232. 96822.89999997616,
  7233. 96830.39999997616,
  7234. 96837.5,
  7235. 96846.10000002384,
  7236. 96853.5,
  7237. 96860.89999997616,
  7238. 96868.20000004768,
  7239. 96876.10000002384,
  7240. 96883.70000004768,
  7241. 96890.80000007153,
  7242. 96898.30000007153,
  7243. 96905.10000002384,
  7244. 96912.70000004768,
  7245. 96919.60000002384,
  7246. 96926.60000002384,
  7247. 96935.70000004768,
  7248. 96941.5,
  7249. 96948.89999997616,
  7250. 96957.60000002384,
  7251. 96964.10000002384,
  7252. 96970.60000002384,
  7253. 96978.89999997616,
  7254. 96993.60000002384,
  7255. 97000.39999997616,
  7256. 97016.10000002384,
  7257. 97022,
  7258. 97030.30000007153,
  7259. 97038.20000004768,
  7260. 97044.60000002384,
  7261. 97053.39999997616,
  7262. 97059,
  7263. 97068,
  7264. 97074,
  7265. 97082.70000004768,
  7266. 97088.20000004768,
  7267. 97097.20000004768,
  7268. 97104.80000007153,
  7269. 97110.89999997616,
  7270. 97119.5,
  7271. 97125.20000004768,
  7272. 97133.30000007153,
  7273. 97140.39999997616,
  7274. 97148.89999997616,
  7275. 97154.80000007153,
  7276. 97163.5,
  7277. 97170.39999997616,
  7278. 97177.80000007153,
  7279. 97183.89999997616,
  7280. 97191.70000004768,
  7281. 97200.5,
  7282. 97205.30000007153,
  7283. 97214.80000007153,
  7284. 97221.70000004768,
  7285. 97229.5,
  7286. 97235.89999997616,
  7287. 97243.80000007153,
  7288. 97251.39999997616,
  7289. 97258.30000007153,
  7290. 97266.20000004768,
  7291. 97272.60000002384,
  7292. 97280.10000002384,
  7293. 97288.20000004768,
  7294. 97295.80000007153,
  7295. 97300.70000004768,
  7296. 97309.5,
  7297. 97318,
  7298. 97331.30000007153,
  7299. 97339.89999997616,
  7300. 97346.60000002384,
  7301. 97354.30000007153,
  7302. 97361.39999997616,
  7303. 97369.30000007153,
  7304. 97375,
  7305. 97384,
  7306. 97388.80000007153,
  7307. 97398.89999997616,
  7308. 97404.39999997616,
  7309. 97413.39999997616,
  7310. 97421.30000007153,
  7311. 97425.89999997616,
  7312. 97442.89999997616,
  7313. 97449.39999997616,
  7314. 97457.30000007153,
  7315. 97464.20000004768,
  7316. 97479.60000002384,
  7317. 97492.89999997616,
  7318. 97500.10000002384,
  7319. 97508.80000007153,
  7320. 97515.30000007153,
  7321. 97521.70000004768,
  7322. 97530.70000004768,
  7323. 97537.39999997616,
  7324. 97553.10000002384,
  7325. 97559.20000004768,
  7326. 97574.5,
  7327. 97582.5,
  7328. 97588.39999997616,
  7329. 97595.80000007153,
  7330. 97611.60000002384,
  7331. 97616.80000007153,
  7332. 97634.10000002384,
  7333. 97640.10000002384,
  7334. 97655.20000004768,
  7335. 97663.20000004768,
  7336. 97670.39999997616,
  7337. 97690.89999997616,
  7338. 97697.80000007153,
  7339. 97707.60000002384,
  7340. 97714,
  7341. 97738.20000004768,
  7342. 97742.89999997616,
  7343. 97751.39999997616,
  7344. 97758.20000004768,
  7345. 97781.5,
  7346. 97787.20000004768,
  7347. 97803.30000007153,
  7348. 97808.80000007153,
  7349. 97815.70000004768,
  7350. 97824.20000004768,
  7351. 97833.60000002384,
  7352. 97838.20000004768,
  7353. 97853.70000004768,
  7354. 97861.70000004768,
  7355. 97868,
  7356. 97883.10000002384,
  7357. 97891.30000007153,
  7358. 97897.80000007153,
  7359. 97920.5,
  7360. 97950.20000004768,
  7361. 97964.20000004768,
  7362. 97971.39999997616,
  7363. 98008.60000002384,
  7364. 98016.10000002384,
  7365. 98074.10000002384,
  7366. 98104.39999997616,
  7367. 98118.70000004768,
  7368. 98125.60000002384,
  7369. 98141,
  7370. 98170.89999997616,
  7371. 98207.70000004768,
  7372. 98212.80000007153,
  7373. 98221.20000004768,
  7374. 98259.10000002384,
  7375. 98280.70000004768,
  7376. 98318,
  7377. 98354.20000004768,
  7378. 98398.5,
  7379. 98403.89999997616,
  7380. 98427.30000007153,
  7381. 98457.5,
  7382. 98471,
  7383. 98478.60000002384,
  7384. 98546,
  7385. 98566.39999997616,
  7386. 98589.60000002384,
  7387. 98604.5,
  7388. 98610.70000004768,
  7389. 98671,
  7390. 98691.39999997616
  7391. ]
  7392. function update_cookie(cookie){
  7393. document.cookie = cookie;
  7394. for(var i=0;i<screenXs2.length;i++){
  7395. var move = {};
  7396. move.screenX = screenXs2[i];
  7397. move.screenY = screenYs2[i];
  7398. move.timeStamp = timeStamps2[i];
  7399. move.button = 0;
  7400. if(i==0){
  7401. catvm.memory.html.mouseenter[0](move);
  7402. }
  7403. catvm.memory.document.mousemove[2](move); //catvm.memory.document.mousemove[2]
  7404. catvm.memory.document.mousemove[0](move);
  7405. catvm.memory.document.mousemove[1](move);
  7406. }
  7407. var click = {};
  7408. click.screenX = screenXs2[screenXs2.length - 1];
  7409. click.screenY = screenYs2[screenYs2.length - 1];
  7410. click.target = {};
  7411. click.target.getBoundingClientRect = function() {
  7412. return {
  7413. bottom: 388.6000061035156,
  7414. height: 16,
  7415. left: 306,
  7416. right: 374,
  7417. top: 372.6000061035156,
  7418. width: 68,
  7419. x: 306,
  7420. y: 372.6000061035156,
  7421. }
  7422. }
  7423. catvm.memory.document.click[0](click);
  7424. catvm.memory.document.click[2](click);
  7425. catvm.memory.document.click[1](click);
  7426. return document.cookie;
  7427. }
  7428. catvm.memory.setTimeout_func[0][0];
  7429. catvm.memory.setTimeout_func[0][1];
  7430. catvm.memory.setTimeout_func[0][2];
  7431. catvm.memory.setInterval_func[50000][0]();
  7432. function get_cookie(){
  7433. return document.cookie
  7434. }
  7435. debugger;
  7436. function get_hz(captchaId,Code){
  7437. window.captchaId = captchaId;
  7438. window.Code = Code;
  7439. var aaa = new XMLHttpRequest();
  7440. aaa.open("GET","checkyzm?captchaId="+window.captcha+"&pCode="+window.Code+"",true)
  7441. aaa.send();
  7442. return window.ywb;
  7443. }
  7444. debugger;