index.html 345 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>
  6. 贱鸟跳跳
  7. </title>
  8. <meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
  9. <meta name="apple-mobile-web-app-capable" content="yes">
  10. <meta name="game-id" content="bird_jump">
  11. <style>
  12. html,body{margin:0;user-select:none;-webkit-user-select:none;overflow:visible}body{font:12px/1.6
  13. arial,'Microsoft YaHei',sans-serif}#game{position:fixed;top:0;left:0;display:block;height:100%;margin:auto;overflow:visible;-webkit-transform:translateZ(0)}.board{background:url(img/end.png)
  14. 50% 50% no-repeat;background-size:contain;position:fixed;top:0;left:0;width:100%;height:100%;display:none;text-align:center}.board-img{height:100%}.board-btn{position:absolute;width:67%;left:17%;height:9%;top:66%;cursor:pointer;-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent}.board-text{position:absolute;width:80%;max-height:30%;overflow:hidden;top:22%;left:10%;font-size:34px;color:#777}.share-tip{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:50%
  15. 0 rgba(0,0,0,.6) no-repeat;background-size:80% auto}.loading{position:fixed;top:0;left:0;background:rgba(0,0,0,.6);width:100%;height:100%}.loading-text{color:#fff;position:absolute;top:40%;width:100%;text-align:center}.start{background:url(img/start.png)
  16. 50% 50% no-repeat;background-size:contain;position:fixed;top:0;left:0;width:100%;height:100%}.start-btn{width:100%;height:40%;position:absolute;left:0;top:60%;cursor:pointer;-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent}.wrapper{opacity:0;position:fixed;top:0;left:0;width:100%;height:100%;background-color:#3f5864;transition:background-color
  17. .3s linear;-webkit-transition:background-color .3s linear;-webkit-transform:translateZ(0)}.wrapper-upper{position:absolute;top:0;left:0;width:100%;height:60%;border-bottom:1px
  18. solid;background-color:#cde1eb;transition:background-color .3s linear;-webkit-transition:background-color
  19. .3s linear;-webkit-transform:translateZ(0)}.wrapper-score{position:absolute;top:3%;left:30%;width:40%;height:26.67%;background-color:#fff;border-radius:50%
  20. 50%;text-align:center;font-size:160px;vertical-align:middle;line-height:256px;color:#cde1eb}.ad{display:none;position:absolute;left:0;bottom:0;width:100%;height:0;padding-bottom:16.67%;background-repeat:no-repeat;background-size:100%
  21. 100%}a[href^=""]{display:none}
  22. </style>
  23. <link rel="stylesheet" type="text/css" href="css/game9g.css">
  24. <script src="js/game9g.js"></script>
  25. </head>
  26. <body>
  27. <div id="wrapper" class="wrapper">
  28. <div id="wrapper-upper" class="wrapper-upper">
  29. </div>
  30. <div id="wrapper-score" class="wrapper-score">
  31. 0
  32. </div>
  33. </div>
  34. <div id="game">
  35. <canvas id="canvas" width="640" height="960">
  36. alternate content
  37. </canvas>
  38. </div>
  39. <div id="start" class="start">
  40. <div id="start-btn" class="start-btn">
  41. </div>
  42. </div>
  43. <div id="loading" class="loading">
  44. <div class="loading-text">
  45. 疯狂载入中... [
  46. <span id="loading-progress">
  47. 0
  48. </span>
  49. %]
  50. </div>
  51. </div>
  52. <div id="board" class="board">
  53. <div id="board-text" class="board-text">
  54. </div>
  55. <div class="board-btn" data-action="retry">
  56. </div>
  57. <div class="board-btn" style="top:52%" data-action="share">
  58. </div>
  59. <div align="center" style="z-index:10000;font-size:16px;display:block;position:absolute;bottom:10px;text-align:center;width:100%;text-indent:0px">
  60. <a align="center" style="text-decoration:underline;color:white;" href="#" onClick="clickMore();">更多游戏</a>
  61. </div>
  62. </div>
  63. <div id="share-tip" class="share-tip">
  64. </div>
  65. <script language=javascript>
  66. var game9g = new Game9G("jntt");
  67. game9g.shareData.title = "贱鸟跳跳";
  68. game9g.shareData.content = "贱鸟跳跳";
  69. function goHome(){
  70. window.location=game9g.gzurl;
  71. }
  72. function clickMore(){
  73. if((window.location+"").indexOf("f=zf",1)>0){
  74. window.location = game9g.gzurl;
  75. }
  76. else{
  77. goHome();
  78. }
  79. }
  80. function dp_share(){
  81. game9g.share();
  82. }
  83. function dp_Ranking(){
  84. window.location=game9g.homeurl;
  85. }
  86. function showAd(){
  87. }
  88. function hideAd(){
  89. }
  90. function dp_submitScore(score){
  91. game9g.score =parseInt(score*100);
  92. game9g.scoreName = "得了"+score+"分";
  93. game9g.shareData.title ="求虐求激情,贱鸟跳跳跳,我得了"+score+"分谁能超越我!";
  94. }
  95. </script>
  96. <div style="display: none;">
  97. </div>
  98. <script>
  99. var _hmt = [];
  100. </script>
  101. <script>
  102. !
  103. function(t, a) {
  104. "callShare more statScore getRank showAd".replace(/\S+/g,
  105. function(r) {
  106. a[r] = t
  107. });
  108. var r = a._sd = {};
  109. a.updateData = function(t) {
  110. for (var a in t) t.hasOwnProperty(a) && (r[a] = t[a])
  111. }
  112. } (function() {},
  113. LBShare = {}),
  114. document.write('<script src="js/g_share2.js"><\/script>');
  115. </script>
  116. <script>
  117. (function(Tq, ba, Mx, H, e, xa, Uq, Vq, Pm, Yh, l, Wq, Zh, Qm, $h, Rm, ai, Nx, Uc, Ox, Z, Px, oc, pc, p, da, qf, L, Ca, pa, Od, ya, Xq, Qx, Rx, Sx, rf, Tx, Ux, Pd, Vx, Wx, Eb, r, g, Xx, Yx, Za, n, ha, Yq, $a, ue, Zq, Dg, Zx, $x, ay, by, nd, cy, aa, dy, ey, R, Sm, Eg, Tm, fy, gy, Ac, $q, ar, ve, hy, od, br, ab, Vc, cr, iy, dr, Um, Qd, Fg, er, jy, pd, ky, Gg, Vm, ly, my, ny, oy, py, qy, Fb, ry, sy, ty, Rd, uy, vy, wy, xy, yy, zy, Ay, By, fr, Cy, dc, Dy, Ey, Fy, Gy, Hy, Iy, Jy, Hg, Ky, bi, Wm, Ly, My, gr, Ny, Ig, Oy, Py, Qy, Ry, bk, Sy, ck, Ty, sf, Uy, Xm, Ym, hr, tf, Vy, ir, jr, Zm, Wy, Xy, kr, Yy, Zy, uf, lr, Wc, $m, $y, Xc, dk, T, $, vf, mr, Y, ma, an, wb, Aa, ci, bb, ek, nr, az, bz, or, xb, Ub, cz, di, Gb, dz, we, bn, cn, dn, ei, en, ez, pr, mb, qr, ea, fz, gz, fn, rr, hz, ta, iz, Jg, jz, kz, fk, lz, cb, fi, C, D, mz, nz, gk, oz, gn, db, hk, gi, sr, hn, xe, pz, hi, wf, ik, jk, tr, qz, Bc, ur, kk, rz, sz, tz, lk, ye, jn, vr, wr, uz, Sd, mk, nk, ok, vz, eb, wz, xr, Td, kn, Ua, xz, yz, Kg, zz, Lg, uM, Az, pk, yr, sa, Ud, ja, Ia, xf, zr, Va, Ar, qb, Ma, Br, Pa, Ka, ze, qk, ln, mn, yb, Bz, Ae, U, ii, Cz, ji, Cr, Dr, nn, on, Dz, ki, Be, Ez, Fz, ec, Gz, Hz, Iz, Er, pn, qn, Jz, Fr, Gr, Kz, Lz, Mz, Nz, Oz, Pz, Qz, Rz, Hr, Sz, Ir, Tz, Uz, Vz, Wz, Jr, Xz, Yz, rk, Zz, Kr, Lr, $z, li, rn, Mg, Ja, aA, Cc, sk, bA, cA, Mr, dA, eA, fA, Nr, gA, Na, sn, qc, hA, tk, Yc, iA, tn, uk, un, Or, Pr, jA, Qr, kA, lA, mA, nA, Vb, Ce, oA, Ba, Rr, vk, pA, N, Q, F, qA, mi, qd, vn, rb, rA, Wb, rd, wk, sA, Ng, wn, Zc, tA, yf, ni, uA, vA, xn, wA, xA, yA, yn, zn, oi, An, pi, zA, Sr, Tr, xk, Ur, AA, BA, Vr, CA, yk, Og, Wr, De, DA, Bn, Xr, $c, Yr, zk, Ee, Cn, EA, FA, Zr, Ak, Hb, GA, HA, Ib, qi, sd, Dn, En, Bk, $r, Pg, Vd, zf, Ck, Qg, Wa, Af, sb, Rg, ad, na, as, s, Dk, Bf, Ek, Fk, Wd, Cf, ri, k, bs, IA, Jb, cs, JA, si, ds, KA, ti, es, ui, fs, Sg, LA, bd, gs, hs, MA, NA, is, js, ks, vi, ls, ms, wi, Fn, OA, PA, ns, os, ps, qs, xi, rs, QA, Tg, RA, SA, TA, UA, VA, WA, XA, YA, ZA, $A, aB, bB, cB, ss, dB, eB, fB, gB, ts, Gn, hB, iB, yi, jB, kB, us, lB, Gk, vs, ws, mB, Hn, xs, ys, zs, As, nB, oB, Bs, pB, qB, Cs, Xa, Ds, Es, rB, In, Jn, Fe, sB, Fs, Kn, Gs, Hs, zi, Ga, Is, tB, uB, vB, Ln, wB, xB, Js, rc, Mn, Ks, Nn, Hk, Ge, yB, zB, Ls, Ms, AB, Ns, BB, Os, CB, On, Ps, Qs, Rs, Ik, Ss, Ts, Us, Vs, Ws, Ug, DB, Pn, Jk, fb, Da, Kk, Qn, Xs, Ai, Lk, He, Vg, Wg, Xg, Ys, Mk, Xd, EB, Ie, FB, Rn, Dc, Sn, gb, Bi, GB, Zs, $s, HB, IB, at, bt, ct, Tn, JB, Yg, dt, KB, Nk, LB, Ci, et, Ok, MB, Zg, ft, NB, OB, PB, QB, $g, RB, SB, TB, gt, ht, UB, it, VB, td, WB, jt, kt, Di, lt, Un, ua, mt, XB, cd, nt, Pk, ot, Vn, Ei, Wn, Fi, YB, pt, qt, Je, ZB, Xn, Qk, rt, st, Xb, tt, Ke, ut, ah, vt, $B, wt, aC, Gi, Yn, bC, Zn, $n, xt, ud, ao, bh, yt, Hi, cC, bo, zt, Rk, At, ch, co, dh, dC, eC, fC, Ii, eo, Bt, Ji, gC, Yd, eh, fo, Df, Ct, Ef, Ff, go, dd, Sk, Dt, hC, Tk, Gf, Ki, iC, jC, Uk, kC, lC, Et, Li, Mi, mC, Ft, nC, oC, ho, pC, qC, Ni, Kb, rC, sC, tC, Vk, Wk, vd, Oi, Xk, Zd, fh, uC, io, Gt, jo, vC, wC, Ht, It, Jt, Yk, Zk, Kt, xC, Lt, yC, $d, zC, Hf, $k, Pi, gh, AC, ko, al, ae, zb, hh, BC, CC, DC, EC, lo, Mt, bl, FC, GC, HC, IC, JC, mo, no, Nt, If, KC, oo, Ot, LC, po, MC, qo, cl, NC, ro, dl, Pt, Qt, ih, Rt, ed, St, OC, Qi, PC, QC, Jf, so, wd, to, Tt, RC, SC, TC, Ut, UC, Vt, VC, WC, Le, Wt, XC, Ab, uo, Xt, Ri, Yt, Zt, vo, $t, au, wo, Me, YC, ZC, $C, aD, Kf, Si, xo, bD, cD, dD, eD, fD, gD, hD, Lf, bu, cu, iD, jD, yo, kD, lD, mD, du, nD, oD, el, pD, Qa, qD, Ti, rD, sD, tD, eu, fu, uD, zo, vD, gu, wD, xD, yD, hu, zD, iu, jh, AD, BD, Ao, Bo, CD, DD, Co, ju, ED, FD, ku, lu, GD, Ec, mu, HD, fl, ID, JD, KD, Ui, LD, MD, ND, OD, PD, QD, RD, SD, nu, ou, gl, hl, il, TD, UD, VD, WD, XD, jl, kl, YD, ZD, kh, lh, $D, Vi, aE, Mf, bE, cE, dE, pu, Wi, eE, Do, Nf, fE, Eo, Fo, ll, Go, gE, hE, iE, ml, jE, qu, kE, Of, nl, ru, Ho, lE, Xi, mE, Yi, nE, xd, Io, oE, su, pE, qE, rE, sE, Jo, tE, ol, tu, uu, ib, Ne, Yb, pl, uE, vu, Pf, wu, Oe, vE, wE, xE, ql, yE, zE, AE, BE, CE, Ko, DE, EE, FE, rl, GE, be, HE, IE, xu, JE, yu, KE, LE, zu, ME, NE, OE, PE, QE, Au, RE, SE, yd, Qf, TE, Zi, UE, VE, ce, WE, XE, sl, tl, YE, Bu, ZE, O, $E, de, ul, Lo, zd, Ad, aF, $i, bF, Mo, vl, Cu, cF, dF, Du, Eu, mh, nh, eF, Fu, No, aj, Lb, oa, fF, gF, Gu, hF, jb, sc, oh, iF, jF, Rf, bj, kF, Hu, Iu, lF, mF, nF, wl, oF, pF, qF, rF, fc, sF, tc, tF, Ju, uF, vF, Pe, wF, xF, ph, yF, zF, AF, Oo, cj, BF, Ku, CF, gc, DF, Lu, Po, EF, FF, GF, Qo, Ro, Mu, So, To, HF, Nu, Ou, IF, Pu, Fc, xl, Qu, Ru, Su, Sf, dj, JF, Uo, yl, KF, LF, MF, zl, NF, OF, qh, PF, QF, RF, SF, rh, Tu, TF, Al, Tf, UF, VF, Bd, WF, XF, YF, ZF, $F, Bl, aG, Vo, bG, Wo, Mb, fa, Cl, cG, dG, Uu, Xo, eG, fG, gG, hG, iG, jG, Yo, Dl, ej, Uf, kG, Vu, Zo, lG, mG, fj, Vf, B, nG, w, hc, Wu, fd, sh, gj, oG, pG, Bb, qG, $o, rG, tb, ap, Xu, nb, sG, tG, uG, Wf, vG, ic, El, Yu, wG, th, xG, wa, Zu, yG, Cd, Dd, zG, $u, AG, Xf, BG, av, bp, CG, uh, Qe, cp, hj, bv, DG, cv, Re, EG, dp, dv, va, ee, Fl, uc, Nb, FG, ij, Gl, ep, fp, Se, ev, gp, vh, GG, Cb, hp, ip, jp, HG, IG, JG, Ea, kp, fv, jj, ub, KG, gv, gd, kb, LG, lp, Hl, kj, lj, mj, hv, mp, MG, wh, np, iv, jv, Yf, NG, Te, OG, kv, PG, op, QG, Il, RG, lv, SG, pp, Zf, qp, x, $f, TG, xh, rp, ag, sp, tp, UG, mv, VG, nv, WG, XG, YG, ov, yh, ZG, $G, jc, pv, Ob, qv, Ed, aH, Fd, Ue, bH, cH, lb, dH, vc, zh, Ah, nj, eH, fH, fe, oj, Jl, gH, rv, sv, Kl, tv, hH, Ll, iH, up, bg, jH, uv, kH, Ml, lH, Nl, kc, Bh, mH, vv, wv, hd, vb, nH, xv, cg, Gd, oH, pj, pH, qH, rH, sH, tH, Ch, vp, uH, vH, Ol, ge, wc, wH, Dh, Eh, yv, Pl, zv, Ql, lc, Av, wp, Bv, he, xH, qj, Cv, xp, yp, rj, yH, dg, Ve, Dv, Rl, Hd, Fh, Ev, zH, Sl, A, eg, zp, id, Fv, AH, Gv, We, Xe, sj, Ap, Hv, BH, jd, CH, Tl, DH, Iv, Ye, Bp, tj, Jv, Ul, EH, FH, Kv, GH, Lv, HH, IH, Cp, uj, vj, Mv, Nv, Gc, Ov, Pv, Qv, Dp, Hc, Vl, Ep, JH, Fp, Wl, Gp, KH, fg, LH, Rv, MH, NH, Sv, OH, PH, Tv, QH, RH, gg, SH, TH, UH, VH, WH, Xl, XH, ie, Yl, YH, Uv, Vv, Ze, ZH, $H, aI, Wv, Id, Xv, Yv, bI, Zv, $v, cI, dI, eI, xc, Zl, hg, $e, wj, Hp, Ic, fI, aw, bw, cw, dw, je, za, ew, gI, Gh, hI, fw, gw, hw, iI, Ip, $l, Jp, G, Kp, xj, Lp, Mp, Hh, yj, am, Np, iw, ke, q, jw, kw, lw, Op, la, ig, jI, kI, mw, Zb, lI, jg, af, mI, nI, oI, Ih, pI, qI, bm, Jc, nw, rI, sI, tI, uI, vI, kd, wI, ow, cm, xI, pw, qw, Pp, ia, yI, Qp, zI, AI, dm, BI, Jh, Kh, rw, CI, DI, sw, Rp, Sp, em, kg, ld, EI, hb, tw, uw, Lh, FI, GI, HI, II, JI, lg, KI, fm, vw, ww, Tp, LI, MI, NI, OI, PI, Kc, zj, QI, Up, xw, RI, SI, TI, gm, UI, VI, Vp, WI, XI, YI, ZI, Wp, yw, Xp, hm, $I, aJ, Yp, Aj, Bj, bJ, cJ, Zp, dJ, Db, eJ, fJ, im, gJ, zw, Aw, mg, hJ, Bw, iJ, le, Cw, Dw, jJ, $p, kJ, lJ, aq, mJ, ng, nJ, Cj, jm, oJ, pJ, me, Ew, qJ, P, bq, rJ, sJ, tJ, cq, og, X, dq, pg, km, uJ, lm, vJ, bf, wJ, cf, xJ, yJ, zJ, eq, AJ, mm, nm, BJ, CJ, Ya, Fw, om, Dj, DJ, EJ, pm, Lc, FJ, Gw, GJ, Mh, Hw, qg, Nh, HJ, y, IJ, qm, JJ, KJ, Iw, Jw, LJ, MJ, NJ, Kw, OJ, PJ, Mc, QJ, df, Ej, Lw, fq, RJ, rm, I, SJ, TJ, gq, UJ, sm, VJ, hq, WJ, Mw, XJ, ka, tm, YJ, ef, iq, ZJ, $b, $J, jq, um, Nw, aK, rg, Fj, bK, Nc, Gj, kq, lq, Ow, mq, cK, mc, Jd, nq, Pw, vm, dK, qa, Oc, Qw, nc, eK, fK, oq, gK, hK, Oh, iK, Rw, jK, wm, kK, Sw, Hj, ne, lK, mK, Tw, nK, oK, d, xm, pq, pK, Uw, Vw, ym, qK, rK, qq, V, sK, tK, zm, uK, vK, Oa, Am, Ww, wK, xK, yK, zK, sg, AK, vM, Xw, BK, CK, Pc, DK, Ij, Yw, EK, Pb, rq, Ra, sq, Bm, Qc, S, ff, ca, tq, Jj, Zw, FK, Qb, GK, HK, Kj, IK, ob, gf, Lj, JK, KK, Cm, Rb, LK, Mj, hf, MK, Sa, $w, NK, oe, OK, PK, QK, Dm, yc, uq, vq, E, RK, ax, Nj, Em, wq, SK, TK, bx, cx, UK, dx, ac, VK, WK, jf, pe, ex, fx, gx, Ph, Oj, Rc, XK, Kd, YK, ZK, $K, aL, xq, bL, hx, ix, Sc, yq, cL, jx, kf, zc, zq, kx, Aq, dL, lx, mx, Bq, eL, fL, gL, hL, Fm, W, Qh, iL, qe, Gm, Tc, Rh, nx, jL, kL, lL, mL, ox, Cq, px, Sh, Th, Fa, nL, md, Pj, Dq, K, Qj, oL, pL, qL, qx, rx, rL, sx, sL, tL, Uh, uL, vL, Eq, tx, Rj, Hm, tg, ux, wL, ug, xL, yL, zL, vx, Fq, AL, re, BL, lf, Gq, se, vg, CL, DL, Sj, wx, Hq, EL, xx, yx, FL, GL, Ld, wg, Im, bc, HL, Iq, IL, JL, KL, LL, ML, NL, zx, OL, PL, Ax, Bx, xg, Cx, Jq, Jm, Tj, QL, RL, Km, SL, Lm, Kq, Dx, Ex, mf, TL, Fx, Lq, UL, VL, Md, Sb, Uj, Mq, WL, Mm, Gx, Nq, XL, Vj, Oq, Wj, YL, ZL, $L, Vh, Nd, aM, bM, cM, dM, yg, Wh, Hx, eM, zg, Ag, Nm, cc, fM, gM, hM, Ix, iM, Xj, jM, Bg, Pq, Jx, Xh, Kx, kM, Yj, lM, mM, Zj, Lx, nM, oM, Cg, te, Om) { (function() {
  118. var h = {}; (function() {
  119. ba;
  120. var c = function(b, f, t) {
  121. this[y](b, f, t)
  122. },
  123. a = c[G];
  124. a[H] = e;
  125. a[xa] = e;
  126. a[vl] = e;
  127. a[ox] = d;
  128. a[Yh] = l;
  129. a[xm] = l;
  130. a[Du] = d;
  131. a[Qm] = l;
  132. a[$h] = l;
  133. a[Rm] = l;
  134. a[ai] = l;
  135. a[y] = function(b, f, t) {
  136. this[H] = b;
  137. this[Yh] = f;
  138. this[xm] = t;
  139. this[Du] = (new Od)[Hh]()
  140. };
  141. a[Uc] = function() {
  142. this[Qm] = q
  143. };
  144. a[Gu] = function() {
  145. this[$h] = q
  146. };
  147. a[Px] = function() {
  148. this[Rm] = this[$h] = q
  149. };
  150. a[Qj] = function() {
  151. this[ai] = q
  152. };
  153. a[la] = function() {
  154. return new c(this[H], this[Yh], this[xm])
  155. };
  156. a[Cg] = function(b) {
  157. for (var f in b) this[f] = b[f];
  158. return this
  159. };
  160. a[da] = function() {
  161. return BK + this[H] + sc
  162. };
  163. h[Ca] = c
  164. })(); (function() {
  165. ba;
  166. var c = function() {},
  167. a = c[G];
  168. c[y] = function(b) {
  169. b[pa] = a[pa];
  170. b[Pc] = a[Pc];
  171. b[ya] = b[ig] = a[ya];
  172. b[bj] = a[bj];
  173. b[Zb] = a[Zb];
  174. b[Ra] = a[Ra];
  175. b[rf] = a[rf];
  176. b[sq] = a[sq]
  177. };
  178. a[Qc] = e;
  179. a[Pd] = e;
  180. a[y] = function() {};
  181. a[pa] = function(b, f, t) {
  182. var a;
  183. a = t ? this[Pd] = this[Pd] || {}: this[Qc] = this[Qc] || {};
  184. var d = a[b];
  185. if (d) this[ya](b, f, t);
  186. if (d = a[b]) d[S](f);
  187. else a[b] = [f];
  188. return f
  189. };
  190. a[Pc] = function(b, f, t, a, d, c) {
  191. f[af] && (t = t || f, f = f[af]);
  192. t = t || this;
  193. return this[pa](b,
  194. function(b) {
  195. f[Eb](t, b, d);
  196. a && b[Qj]()
  197. },
  198. c)
  199. };
  200. a[ya] = function(b, f, t) {
  201. if (t = t ? this[Pd] : this[Qc]) {
  202. var a = t[b];
  203. if (a) for (var m = d,
  204. c = a[r]; m < c; m++) if (a[m] == f) {
  205. if (c == g) delete t[b];
  206. else a[Qb](m, g);
  207. break
  208. }
  209. }
  210. };
  211. a[ig] = a[ya];
  212. a[bj] = function(b) {
  213. b ? (this[Qc] && delete this[Qc][b], this[Pd] && delete this[Pd][b]) : this[Qc] = this[Pd] = e
  214. };
  215. a[Ra] = function(b, f) {
  216. if (typeof b == fc) {
  217. var t = this[Qc];
  218. if (!t || !t[b]) return l;
  219. b = new h[Ca](b)
  220. }
  221. try {
  222. b[xa] = f || this
  223. } catch(a) {}
  224. if (b[Yh] && this[Za]) {
  225. for (var m = this,
  226. t = [m]; m[Za];) t[S](m = m[Za]);
  227. for (var c = t[r], m = c - g; m >= d && !b[$h]; m--) t[m][rf](b, g + (m == d));
  228. for (m = g; m < c && !b[$h]; m++) t[m][rf](b, ha)
  229. } else this[rf](b, n);
  230. return b[Qm]
  231. };
  232. a[Zb] = function(b) {
  233. var f = this[Qc],
  234. t = this[Pd];
  235. return !! (f && f[b] || t && t[b])
  236. };
  237. a[sq] = function(b) {
  238. for (var f = this; f;) {
  239. if (f[Zb](b)) return q;
  240. f = f[Za]
  241. }
  242. return l
  243. };
  244. a[da] = function() {
  245. return sF
  246. };
  247. a[rf] = function(b, f) {
  248. var t, a = f == g ? this[Pd] : this[Qc];
  249. if (b && a && (a = a[b[H]]) && (t = a[r])) {
  250. try {
  251. b[vl] = this
  252. } catch(m) {}
  253. try {
  254. b[ox] = f
  255. } catch(c) {}
  256. b[ai] = l;
  257. for (var a = a[$a](), ga = d; ga < t && !b[Rm]; ga++) {
  258. var e = a[ga];
  259. if (e[af]) e[af](b);
  260. else e(b);
  261. b[ai] && (this[ig](b[H], e, f == g), b[ai] = l)
  262. }
  263. }
  264. };
  265. h[ue] = c
  266. })(); (function() {
  267. ba;
  268. h[tc] = function(c, a) {
  269. for (var b = d,
  270. f = c[r]; b < f; b++) if (a === c[b]) return b;
  271. return - g
  272. }
  273. })(); (function() {
  274. ba;
  275. h[ob] = function(c, a) {
  276. var b = Rf[G][$a][Eb](arguments, n);
  277. return function() {
  278. return c[gf](a, Rf[G][$a][Eb](arguments, d)[Lj](b))
  279. }
  280. }
  281. })(); (function() {
  282. ba;
  283. var c = function() {
  284. throw BL;
  285. };
  286. c[Lu] = d;
  287. c[nd] = function() {
  288. return c[Lu]++
  289. };
  290. h[Mu] = c
  291. })(); (function() {
  292. ba;
  293. var c = function() {
  294. throw [rI, aa][R](E);
  295. };
  296. c[Sm] = HF;
  297. c[Tm] = fy;
  298. c[gy] = tI;
  299. c[$q] = l;
  300. c[ar] = e;
  301. c[Nu] = d;
  302. c[ya] = e;
  303. c[bj] = e;
  304. c[Ra] = e;
  305. c[Zb] = e;
  306. c[Qc] = e;
  307. h[ue][y](c);
  308. c[qw] = c[pa];
  309. c[pa] = function() { ! c[od] && c[ac]();
  310. return c[qw][gf](c, arguments)
  311. };
  312. c[ab] = l;
  313. c[od] = l;
  314. c[Jh] = d;
  315. c[Kh] = d;
  316. c[Rp] = d;
  317. c[Sp] = d;
  318. c[Sf] = Qd;
  319. c[Fg] = d;
  320. c[kg] = e;
  321. c[Ph] = e;
  322. c[pd] = e;
  323. c[yl] = q;
  324. c[ac] = function() {
  325. c[od] || (c[od] = q, c[kg] = [], c[Ph] = [], c[Jh] = c[Gg](), c[kg][S](c[Fg] = d), c[Vm](c[Sf]))
  326. };
  327. c[Lh] = function() {
  328. if (c[yl]) {
  329. var f = L[KF] || L[HI] || L[oy] || L[py] || L[qy];
  330. f && f(c[pd])
  331. } else qf(c[pd]);
  332. c[bj](Fb);
  333. c[pd] = e;
  334. c[od] = l
  335. };
  336. c[Vm] = function(f) {
  337. c[Sf] = f;
  338. if (c[od]) c[Xj]()
  339. };
  340. c[PF] = function() {
  341. return c[Sf]
  342. };
  343. c[YK] = function(f) {
  344. c[Vm](Rd / f)
  345. };
  346. c[Up] = function() {
  347. return Rd / c[Sf]
  348. };
  349. c[vy] = function(f) {
  350. var b = d,
  351. a = c[Ph];
  352. if (a[r] < g) return - g;
  353. f = p[re](a[r], f || c[Up]() | d);
  354. for (var m = d; m < f; m++) b += a[m];
  355. return b / f
  356. };
  357. c[VL] = function(f) {
  358. var b = c[kg];
  359. if (b[r] < n) return - g;
  360. f = p[re](b[r] - g, f || c[Up]() | d);
  361. return Rd / ((b[d] - b[f]) / f)
  362. };
  363. c[Sb] = function(f) {
  364. c[ab] = f
  365. };
  366. c[zy] = function() {
  367. return c[ab]
  368. };
  369. c[Hh] = function(f) {
  370. return c[Gg]() - c[Jh] - (f ? c[Kh] : d)
  371. };
  372. c[XI] = function(f) {
  373. return (c[Fg] || c[Jh]) - (f ? c[Kh] : d)
  374. };
  375. c[YI] = function(f) {
  376. return c[Rp] - (f ? c[Sp] : d)
  377. };
  378. c[fr] = function() {
  379. var f = c[Gg]() - c[Jh];
  380. c[pd] = e;
  381. c[Xj]();
  382. if (f - c[Fg] >= (c[Sf] - g) * SF) c[dc]()
  383. };
  384. c[Tu] = function() {
  385. c[pd] = e;
  386. c[Xj]();
  387. c[dc]()
  388. };
  389. c[Tf] = function() {
  390. c[pd] = e;
  391. c[Xj]();
  392. c[dc]()
  393. };
  394. var a = L[VF] || L[Gy] || L[WF] || L[Iy] || L[dJ];
  395. c[Xj] = function() {
  396. if (c[pd] == e) {
  397. var f = c[ar] || c[$q] && c[Sm];
  398. f != c[Sm] && f != c[Tm] || !a ? (c[yl] = l, c[pd] = pc(c[Tf], c[Sf])) : (c[pd] = a(f == c[Tm] ? c[Tu] : c[fr]), c[yl] = q)
  399. }
  400. };
  401. c[dc] = function() {
  402. var f = c[Gg]() - c[Jh],
  403. b = f - c[Fg],
  404. a = c[ab];
  405. c[Rp]++;
  406. a && (c[Sp]++, c[Kh] += b);
  407. c[Fg] = f;
  408. if (c[Zb](Fb)) {
  409. var d = new h[Ca](Fb),
  410. u = c[Nu];
  411. d[Hg] = u && b > u ? u: b;
  412. d[Db] = a;
  413. d[Vo] = f;
  414. d[Wm] = f - c[Kh];
  415. c[Ra](d)
  416. } else c[od] = l,
  417. c[Lh]();
  418. for (c[Ph][Wo](c[Gg]() - f); c[Ph][r] > fa;) c[Ph][mg]();
  419. for (c[kg][Wo](f); c[kg][r] > fa;) c[kg][mg]()
  420. };
  421. var b = L[Ny] && (performance[Ig] || performance[Oy] || performance[Py] || performance[Qy] || performance[fG]);
  422. c[Gg] = function() {
  423. return b && b[Eb](performance) || (new Od)[Hh]()
  424. };
  425. h[bk] = c
  426. })(); (function() {
  427. ba;
  428. var c = function(f, b, a, d, c, g, e, h, ra, k) {
  429. this[y](f, b, a, d, c, g, e, h, ra, k)
  430. },
  431. a = c[G] = new h[Ca];
  432. a[Dl] = d;
  433. a[ck] = d;
  434. a[Uf] = d;
  435. a[sf] = d;
  436. a[aq] = e;
  437. a[Xm] = d;
  438. a[Zo] = l;
  439. a[hr] = function() {
  440. return this[vl][fj](this[Uf], this[sf])[B]
  441. };
  442. a[ir] = function() {
  443. return this[vl][fj](this[Uf], this[sf])[w]
  444. };
  445. try {
  446. oc[Zm](a,
  447. function(f, b, a) {
  448. f[Wy] = b;
  449. f[Xy] = a;
  450. return f
  451. } ({},
  452. function(f, b) {
  453. f[nd] = b;
  454. return f
  455. } ({},
  456. a[hr]),
  457. function(f, b) {
  458. f[nd] = b;
  459. return f
  460. } ({},
  461. a[ir])))
  462. } catch(b) {}
  463. a[kr] = a[y];
  464. a[y] = function(f, b, a, d, c, g, pb, h, ra, k) {
  465. this[kr](f, b, a);
  466. this[Dl] = d;
  467. this[ck] = c;
  468. this[aq] = g;
  469. this[Xm] = pb;
  470. this[Zo] = h;
  471. this[Uf] = ra == e ? d: ra;
  472. this[sf] = k == e ? c: k
  473. };
  474. a[la] = function() {
  475. return new c(this[H], this[Yh], this[xm], this[Dl], this[ck], this[xa], this[aq], this[Xm], this[Zo], this[Uf], this[sf])
  476. };
  477. a[da] = function() {
  478. return Yy + this[H] + Zy + this[Dl] + nJ + this[ck] + sc
  479. };
  480. h[lr] = c
  481. })(); (function() {
  482. ba;
  483. var c = function(b, f, t, a, d, c) {
  484. this[y](b, f, t, a, d, c)
  485. },
  486. a = c[G];
  487. c[Wc] = e;
  488. c[Tc] = p[fd] / Xc;
  489. a[P] = g;
  490. a[T] = d;
  491. a[$] = d;
  492. a[W] = g;
  493. a[X] = d;
  494. a[Y] = d;
  495. a[ma] = g;
  496. a[Bb] = e;
  497. a[wb] = e;
  498. a[Aa] = q;
  499. a[y] = function(b, f, t, a, m, c) {
  500. this[P] = b == e ? g: b;
  501. this[T] = f || d;
  502. this[$] = t || d;
  503. this[W] = a == e ? g: a;
  504. this[X] = m || d;
  505. this[Y] = c || d;
  506. return this
  507. };
  508. a[ci] = function(b, f, t, a, m, c) {
  509. var ga = this[X];
  510. if (b != g || f != d || t != d || a != g) {
  511. var e = this[P],
  512. h = this[$];
  513. this[P] = e * b + this[T] * t;
  514. this[T] = e * f + this[T] * a;
  515. this[$] = h * b + this[W] * t;
  516. this[W] = h * f + this[W] * a
  517. }
  518. this[X] = ga * b + this[Y] * t + m;
  519. this[Y] = ga * f + this[Y] * a + c;
  520. return this
  521. };
  522. a[bb] = function(b, f, t, a, d, c) {
  523. var g = this[P],
  524. e = this[T],
  525. h = this[$],
  526. ra = this[W];
  527. this[P] = b * g + f * h;
  528. this[T] = b * e + f * ra;
  529. this[$] = t * g + a * h;
  530. this[W] = t * e + a * ra;
  531. this[X] = d * g + c * h + this[X];
  532. this[Y] = d * e + c * ra + this[Y];
  533. return this
  534. };
  535. a[ek] = function(b) {
  536. this[ci](b[P], b[T], b[$], b[W], b[X], b[Y]);
  537. this[Bq](b[ma], b[Bb], b[wb], b[Aa]);
  538. return this
  539. };
  540. a[az] = function(b) {
  541. this[bb](b[P], b[T], b[$], b[W], b[X], b[Y]);
  542. this[$o](b[ma], b[Bb], b[wb], b[Aa]);
  543. return this
  544. };
  545. a[or] = function(b, f, t, a, m, u, ga, e, h) {
  546. if (m % xb) {
  547. var ra = m * c[Tc];
  548. m = p[Ub](ra);
  549. ra = p[tb](ra)
  550. } else m = g,
  551. ra = d;
  552. if (e || h) this[X] -= e,
  553. this[Y] -= h;
  554. if (u || ga) u *= c[Tc],
  555. ga *= c[Tc],
  556. this[ci](m * t, ra * t, -ra * a, m * a, d, d),
  557. this[ci](p[Ub](ga), p[tb](ga), -p[tb](u), p[Ub](u), b, f);
  558. else this[ci](m * t, ra * t, -ra * a, m * a, b, f);
  559. return this
  560. };
  561. a[di] = function(b, f, t, a, m, u, ga, e, h) {
  562. if (m % xb) {
  563. var ra = m * c[Tc];
  564. m = p[Ub](ra);
  565. ra = p[tb](ra)
  566. } else m = g,
  567. ra = d;
  568. if (u || ga) u *= c[Tc],
  569. ga *= c[Tc],
  570. this[bb](p[Ub](ga), p[tb](ga), -p[tb](u), p[Ub](u), b, f),
  571. this[bb](m * t, ra * t, -ra * a, m * a, d, d);
  572. else this[bb](m * t, ra * t, -ra * a, m * a, b, f);
  573. if (e || h) this[X] -= e * this[P] + h * this[$],
  574. this[Y] -= e * this[T] + h * this[W];
  575. return this
  576. };
  577. a[cM] = function(b) {
  578. var f = p[Ub](b);
  579. b = p[tb](b);
  580. var t = this[P],
  581. a = this[$],
  582. d = this[X];
  583. this[P] = t * f - this[T] * b;
  584. this[T] = t * b + this[T] * f;
  585. this[$] = a * f - this[W] * b;
  586. this[W] = a * b + this[W] * f;
  587. this[X] = d * f - this[Y] * b;
  588. this[Y] = d * b + this[Y] * f;
  589. return this
  590. };
  591. a[dz] = function(b, f) {
  592. b *= c[Tc];
  593. f *= c[Tc];
  594. this[bb](p[Ub](f), p[tb](f), -p[tb](b), p[Ub](b), d, d);
  595. return this
  596. };
  597. a[we] = function(b, f) {
  598. this[P] *= b;
  599. this[W] *= f;
  600. this[$] *= b;
  601. this[T] *= f;
  602. this[X] *= b;
  603. this[Y] *= f;
  604. return this
  605. };
  606. a[bn] = function(b, f) {
  607. this[X] += b;
  608. this[Y] += f;
  609. return this
  610. };
  611. a[Wc] = function() {
  612. this[ma] = this[P] = this[W] = g;
  613. this[T] = this[$] = this[X] = this[Y] = d;
  614. this[Bb] = this[wb] = e;
  615. this[Aa] = q;
  616. return this
  617. };
  618. a[cn] = function() {
  619. var b = this[P],
  620. f = this[T],
  621. t = this[$],
  622. a = this[W],
  623. d = this[X],
  624. c = b * a - f * t;
  625. this[P] = a / c;
  626. this[T] = -f / c;
  627. this[$] = -t / c;
  628. this[W] = b / c;
  629. this[X] = (t * this[Y] - a * d) / c;
  630. this[Y] = -(b * this[Y] - f * d) / c;
  631. return this
  632. };
  633. a[wJ] = function() {
  634. return this[X] == d && this[Y] == d && this[P] == g && this[T] == d && this[$] == d && this[W] == g
  635. };
  636. a[xJ] = function(b, f, t) {
  637. t = t || {};
  638. t[B] = b * this[P] + f * this[$] + this[X];
  639. t[w] = b * this[T] + f * this[W] + this[Y];
  640. return t
  641. };
  642. a[yJ] = function(b) {
  643. b == e && (b = {});
  644. b[B] = this[X];
  645. b[w] = this[Y];
  646. b[nb] = p[Wf](this[P] * this[P] + this[T] * this[T]);
  647. b[mb] = p[Wf](this[$] * this[$] + this[W] * this[W]);
  648. var f = p[Gq]( - this[$], this[W]),
  649. t = p[Gq](this[T], this[P]);
  650. f == t ? (b[ea] = t / c[Tc], this[P] < d && this[W] >= d && (b[ea] += b[ea] <= d ? Xc: -Xc), b[Kd] = b[Dd] = d) : (b[Kd] = f / c[Tc], b[Dd] = t / c[Tc]);
  651. return b
  652. };
  653. a[Hw] = function(b, f, t, a, d, c, ga, pb, h, ra) {
  654. this[y](b, f, t, a, d, c);
  655. this[ma] = ga == e ? g: ga;
  656. this[Bb] = pb;
  657. this[wb] = h;
  658. this[Aa] = ra == e ? q: ra;
  659. return this
  660. };
  661. a[Nh] = function(b) {
  662. return this[Hw](b[P], b[T], b[$], b[W], b[X], b[Y], b[ma], b[Bb], b[wb], b[Aa])
  663. };
  664. a[$o] = function(b, f, t, a) {
  665. this[ma] *= b;
  666. this[Bb] = f || this[Bb];
  667. this[wb] = t || this[wb];
  668. this[Aa] = this[Aa] && a;
  669. return this
  670. };
  671. a[Bq] = function(b, f, t, a) {
  672. this[ma] *= b;
  673. this[Bb] = this[Bb] || f;
  674. this[wb] = this[wb] || t;
  675. this[Aa] = this[Aa] && a;
  676. return this
  677. };
  678. a[la] = function() {
  679. return (new c)[Nh](this)
  680. };
  681. a[da] = function() {
  682. return hz + this[P] + BG + this[T] + iz + this[$] + jM + this[W] + jz + this[X] + kz + this[Y] + sc
  683. };
  684. c[Wc] = new c;
  685. h[fk] = c
  686. })(); (function() {
  687. ba;
  688. var c = function(b, f) {
  689. this[y](b, f)
  690. },
  691. a = c[G];
  692. a[B] = d;
  693. a[w] = d;
  694. a[y] = function(b, f) {
  695. this[B] = b == e ? d: b;
  696. this[w] = f == e ? d: f;
  697. return this
  698. };
  699. a[Nh] = function(b) {
  700. return this[y](b[B], b[w])
  701. };
  702. a[la] = function() {
  703. return new c(this[B], this[w])
  704. };
  705. a[da] = function() {
  706. return lz + this[B] + Tq + this[w] + sc
  707. };
  708. h[bp] = c
  709. })(); (function() {
  710. ba;
  711. var c = function(b, f, t, a) {
  712. this[y](b, f, t, a)
  713. },
  714. a = c[G];
  715. a[B] = d;
  716. a[w] = d;
  717. a[C] = d;
  718. a[D] = d;
  719. a[y] = function(b, f, t, a) {
  720. this[B] = b || d;
  721. this[w] = f || d;
  722. this[C] = t || d;
  723. this[D] = a || d;
  724. return this
  725. };
  726. a[Nh] = function(b) {
  727. return this[y](b[B], b[w], b[C], b[D])
  728. };
  729. a[la] = function() {
  730. return new c(this[B], this[w], this[C], this[D])
  731. };
  732. a[da] = function() {
  733. return mz + this[B] + Tq + this[w] + nz + this[C] + CG + this[D] + sc
  734. };
  735. h[Qe] = c
  736. })(); (function() {
  737. ba;
  738. var d = function(f, b, a, d, c, g, e) {
  739. this[y](f, b, a, d, c, g, e)
  740. },
  741. a = d[G];
  742. a[xa] = e;
  743. a[hj] = e;
  744. a[Dm] = e;
  745. a[hk] = e;
  746. a[Ej] = l;
  747. a[Fq] = function(f) {
  748. var b = this[xa]; (this[hn] = f) ? (b[xe] = pz, b[pa](hi, this), b[pa](Fl, this), b[pa](ug, this), b[pa](ij, this)) : (b[xe] = e, b[ya](hi, this), b[ya](Fl, this), b[ya](ug, this), b[ya](ij, this))
  749. };
  750. a[tr] = function() {
  751. return this[hn]
  752. };
  753. try {
  754. oc[Zm](a,
  755. function(f, b) {
  756. f[qz] = b;
  757. return f
  758. } ({},
  759. function(f, b, a) {
  760. f[nd] = b;
  761. f[Cg] = a;
  762. return f
  763. } ({},
  764. a[tr], a[Fq])))
  765. } catch(b) {}
  766. a[Rj] = l;
  767. a[Gl] = l;
  768. a[hn] = l;
  769. a[y] = function(f, b, a, d, c, g, pb) {
  770. f[pa] && (this[xa] = f, f[kk] = l, this[hj] = a == e ? rz: a, this[Dm] = b == e ? sz: b, this[hk] = d == e ? tz: d, this[Ej] = c, this[Fq](q), this[af]({}), g && (pb && (g[lk] = l, g[ye] && g[ye](pb)), f[jn] = g))
  771. };
  772. a[da] = function() {
  773. return XL
  774. };
  775. a[af] = function(f) {
  776. var b = this[xa];
  777. f = f[H];
  778. f == ug ? (this[Rj] = q, f = this[hk]) : f == ij ? (this[Rj] = l, f = this[Gl] ? this[hj] : this[Dm]) : f == hi ? (this[Gl] = q, f = this[Rj] ? this[hk] : this[hj]) : (this[Gl] = l, f = this[Rj] ? this[hj] : this[Dm]);
  779. this[Ej] ? b[Se] && b[Se](f) : b[ye] && b[ye](f)
  780. };
  781. h[uz] = d
  782. })(); (function() {
  783. ba;
  784. var c = function(b, f, a, d) {
  785. this[y](b, f, a, d)
  786. },
  787. a = c[G];
  788. c[Wc] = e;
  789. a[Cb] = e;
  790. a[mk] = d;
  791. a[nk] = d;
  792. a[ok] = d;
  793. a[y] = function(b, f, a, d) {
  794. this[Cb] = b;
  795. this[mk] = f;
  796. this[nk] = a;
  797. this[ok] = d
  798. };
  799. a[da] = function() {
  800. return vz
  801. };
  802. a[la] = function() {
  803. return new c(this[Cb], this[mk], this[nk], this[ok])
  804. };
  805. c[Wc] = new c(HG, d, d, d);
  806. h[wz] = c
  807. })(); (function() {
  808. ba;
  809. var c = function(b) {
  810. this[y](b)
  811. },
  812. a = c[G] = new h[ue];
  813. a[ub] = q;
  814. a[Td] = d;
  815. a[gd] = e;
  816. a[Ua] = e;
  817. a[rg] = e;
  818. a[kb] = e;
  819. a[Kg] = d;
  820. a[Fj] = d;
  821. a[Lg] = d;
  822. a[mf] = d;
  823. a[lp] = d;
  824. a[Oq] = d;
  825. a[y] = function(b) {
  826. var f, a, M;
  827. if (b != e) {
  828. this[Td] = b[Td] || d;
  829. if (b[sg] && (a = b[sg][r]) > d) for (M = this[rg] = [], f = d; f < a; f++) {
  830. var c = b[sg][f];
  831. if (typeof c == fc) {
  832. var u = c,
  833. c = Z[sa](Ud);
  834. c[ja] = u
  835. }
  836. M[S](c);
  837. c[Ia] || c[ub] || (this[Kg]++, this[ub] = l,
  838. function(f) {
  839. c[xf] = function() {
  840. f[zr]()
  841. }
  842. } (this))
  843. }
  844. if (b[Va] != e) if (b[Va] instanceof Rf) for (this[Ua] = [], M = b[Va], f = d, a = M[r]; f < a; f++) u = M[f],
  845. this[Ua][S](function(f, b, a, t, d) {
  846. f[qa] = b;
  847. f[qb] = a;
  848. f[Ma] = t;
  849. f[Oa] = d;
  850. return f
  851. } ({},
  852. this[rg][u[Pa] ? u[Pa] : d], new h[Qe](u[d], u[g], u[n], u[ha]), u[Ka] || d, u[ze] || d));
  853. else if (a = b[Va], this[Lg] = a[C], this[Fj] = a[D], this[lp] = a[Ma] || d, this[Oq] = a[Oa] || d, this[mf] = a[wh], this[Kg] == d) this[ln]();
  854. this[gd] = [];
  855. if ((a = b[mn]) != e) {
  856. this[kb] = {};
  857. for (var ga in a) {
  858. b = function(f, b) {
  859. f[yb] = b;
  860. return f
  861. } ({},
  862. ga);
  863. u = a[ga];
  864. if (typeof u == Te) M = b[Va] = [u];
  865. else if (u instanceof Rf) if (u[r] == g) b[Va] = [u[d]];
  866. else for (b[Ae] = u[ha], b[U] = u[n], M = b[Va] = [], f = u[d]; f <= u[g]; f++) M[S](f);
  867. else b[Ae] = u[Ae],
  868. b[U] = u[U],
  869. f = u[Va],
  870. M = b[Va] = typeof f == Te ? [f] : f[$a](d);
  871. if (b[U] === q || b[U] === oa) b[U] = ga;
  872. if (b[U] === l || M[r] < n && b[U] == ga) b[U] = e;
  873. b[Ae] || (b[Ae] = g);
  874. this[gd][S](ga);
  875. this[kb][ga] = b
  876. }
  877. }
  878. }
  879. };
  880. a[Sw] = function(b) {
  881. if (b == e) return this[Ua] ? this[Ua][r] : this[mf];
  882. b = this[kb][b];
  883. return b == e ? d: b[Va][r]
  884. };
  885. a[PG] = function() {
  886. return this[gd][$a](d)
  887. };
  888. a[ji] = function(b) {
  889. return this[kb][b]
  890. };
  891. a[Zf] = function(b) {
  892. var f;
  893. return this[Ua] && (f = this[Ua][b]) ? f: e
  894. };
  895. a[Ax] = function(b, f) {
  896. var a = this[Zf](b);
  897. return a ? (f || new h[Qe])[y]( - a[Ma], -a[Oa], a[qb][C], a[qb][D]) : e
  898. };
  899. a[da] = function() {
  900. return OL
  901. };
  902. a[la] = function() {
  903. var b = new c;
  904. b[ub] = this[ub];
  905. b[gd] = this[gd];
  906. b[Ua] = this[Ua];
  907. b[rg] = this[rg];
  908. b[kb] = this[kb];
  909. b[Fj] = this[Fj];
  910. b[Lg] = this[Lg];
  911. b[mf] = this[mf];
  912. b[Kg] = this[Kg];
  913. return b
  914. };
  915. a[zr] = function() {--this[Kg] == d && (this[ln](), this[ub] = q, this[Ra](ub))
  916. };
  917. a[ln] = function() {
  918. if (!this[Ua] && this[Lg] != d) {
  919. this[Ua] = [];
  920. for (var b = d,
  921. f = this[Lg], a = this[Fj], M = d, c = this[rg]; M < c[r]; M++) {
  922. for (var u = c[M], g = u[C] / f | d, e = u[D] / a | d, e = this[mf] > d ? p[re](this[mf] - b, g * e) : g * e, nf = d; nf < e; nf++) this[Ua][S](function(f, b, a, t, d) {
  923. f[qa] = b;
  924. f[qb] = a;
  925. f[Ma] = t;
  926. f[Oa] = d;
  927. return f
  928. } ({},
  929. u, new h[Qe](nf % g * f, (nf / g | d) * a, f, a), this[lp], this[Oq]));
  930. b += e
  931. }
  932. this[mf] = b
  933. }
  934. };
  935. h[on] = c
  936. })(); (function() {
  937. ba;
  938. var c = function() {
  939. this[y]()
  940. },
  941. a = c[G];
  942. c[nK] = function(f, b, a, d) {
  943. f != e && a == e && (d = b, a = f & ki, b = f >> Be & ki, f = f >> x & ki);
  944. return d == e ? Fz + f + ec + b + ec + a + Wj: lK + f + ec + b + ec + a + ec + d + Wj
  945. };
  946. c[oK] = function(f, b, a, d) {
  947. return d == e ? kK + f % xb + ec + b + pn + a + XG: Jz + f % xb + ec + b + pn + a + pn + d + Wj
  948. };
  949. c[Fr] = function(f, b, a, d, c, g, e, h, k, z, l, v, r, q, n, p, s, C, A, D, x, y, E, F, G, H, I, L, La, of, Ha, Q, pM, O, S, R, K, aa, Z, Y, ea, ba, fa, X, ha, ia, da, Qq, Rq, pf, ak, Tb, U, N, V, ma, ja, ca, la, ka, qM, rM, Sq, sM, tM) {
  950. f[iK] = b;
  951. f[Kz] = a;
  952. f[uK] = d;
  953. f[Mz] = c;
  954. f[Nz] = g;
  955. f[Oz] = e;
  956. f[Pz] = h;
  957. f[Qz] = k;
  958. f[vK] = z;
  959. f[gK] = l;
  960. f[Sz] = v;
  961. f[Ir] = r;
  962. f[Ww] = q;
  963. f[wK] = n;
  964. f[Vz] = p;
  965. f[ZG] = s;
  966. f[cK] = C;
  967. f[Xz] = A;
  968. f[Yz] = D;
  969. f[mq] = x;
  970. f[Zz] = y;
  971. f[oM] = E;
  972. f[cH] = F;
  973. f[$z] = G;
  974. f[dH] = H;
  975. f[sx] = I;
  976. f[P] = L;
  977. f[T] = La;
  978. f[$] = of;
  979. f[W] = Ha;
  980. f[Mg] = Q;
  981. f[Ja] = pM;
  982. f[$b] = O;
  983. f[Cc] = S;
  984. f[sk] = R;
  985. f[bA] = K;
  986. f[cA] = aa;
  987. f[Mr] = Z;
  988. f[ZJ] = Y;
  989. f[vL] = ea;
  990. f[Ll] = ba;
  991. f[Kj] = fa;
  992. f[gA] = X;
  993. f[Na] = ha;
  994. f[sn] = ia;
  995. f[qc] = da;
  996. f[hA] = Qq;
  997. f[tk] = Rq;
  998. f[Yc] = pf;
  999. f[B] = ak;
  1000. f[w] = Tb;
  1001. f[VJ] = U;
  1002. f[bg] = N;
  1003. f[Nl] = V;
  1004. f[mH] = ma;
  1005. f[Or] = ja;
  1006. f[vv] = ca;
  1007. f[wv] = la;
  1008. f[Qr] = ka;
  1009. f[kA] = qM;
  1010. f[lA] = rM;
  1011. f[mA] = Sq;
  1012. f[nA] = sM;
  1013. f[Vb] = tM;
  1014. return f
  1015. } ({},
  1016. d, g, n, ha, Pa, Ka, ze, Ce, Be, Mc, Ba, Wh, lf, vb, N, Q, x, F, vq, mi, qd, vn, rb, Gd, Wb, rd, wk, Hq, Ng, wn, Zc, pj, yf, ni, te, wg, xn, Yj, wc, Dh, yn, zn, Bx, An, xq, Fw, Sr, Tr, xk, Ur, Qd, Eh, yv, Vr, Pl, yk, Og, Wr, De, eq, Nd, zc, $c, Yr);
  1017. c[bM] = [Bv, he, EA];
  1018. c[FA] = [Zr, he, xH];
  1019. var b = h[Hb] ? h[Hb]() : Z[sa](K);
  1020. b[Ia] && (c[Th] = b[Ia](Ib), b[C] = b[D] = g);
  1021. a[qi] = e;
  1022. a[sd] = e;
  1023. a[zg] = e;
  1024. a[Rh] = l;
  1025. a[dg] = e;
  1026. a[me] = e;
  1027. a[Pg] = d;
  1028. a[Ve] = e;
  1029. a[zf] = l;
  1030. a[y] = function() {
  1031. this[Nm]();
  1032. this[Th] = c[Th]
  1033. };
  1034. a[Sl] = function() {
  1035. return ! (this[me][r] || this[Ve][r])
  1036. };
  1037. a[Wa] = function(f, b) {
  1038. this[Af]();
  1039. for (var a = this[me], c = d, u = a[r]; c < u; c++) a[c][sb](f, b)
  1040. };
  1041. a[zp] = function(f) {
  1042. this[Af]();
  1043. for (var b, a = this[me], c = d, u = a[r]; c < u; c++) if ((b = a[c])[ad] !== l) b[sb](f)
  1044. };
  1045. a[na] = function(f, b) {
  1046. return this[bb](new c[as](f, b), q)
  1047. };
  1048. a[s] = function(f, b) {
  1049. return this[bb](new c[Dw](f, b))
  1050. };
  1051. a[Bf] = function(f, b, a, d, u) {
  1052. return this[bb](new c[Bw](f, b, a, d, u))
  1053. };
  1054. a[Fk] = function(f, b, a, d, u, g) {
  1055. return this[bb](new c[Aw](f, b, a, d, u, g))
  1056. };
  1057. a[sj] = function(f, b, a, d) {
  1058. return this[bb](new c[lx](f, b, a, d))
  1059. };
  1060. a[k] = function(f, b, a, d, u, g) {
  1061. return this[bb](new c[bs](f, b, a, d, u, g))
  1062. };
  1063. a[qb] = function(f, b, a, d) {
  1064. return this[bb](new c[Hv](f, b, a, d))
  1065. };
  1066. a[yg] = function() {
  1067. return this[Ve][r] ? this[bb](new c[cs]) : this
  1068. };
  1069. a[Nm] = function() {
  1070. this[me] = [];
  1071. this[Ve] = [];
  1072. this[Pg] = d;
  1073. this[zg] = this[sd] = this[dg] = e;
  1074. this[zf] = this[Rh] = l;
  1075. return this
  1076. };
  1077. a[Yp] = function(f) {
  1078. return this[si](f ? new c[Ye](f) : e)
  1079. };
  1080. a[Jx] = function(f, b, a, d, u, g) {
  1081. return this[si]((new c[Ye])[ti](f, b, a, d, u, g))
  1082. };
  1083. a[es] = function(f, b, a, d, u, g, e, h) {
  1084. return this[si]((new c[Ye])[ui](f, b, a, d, u, g, e, h))
  1085. };
  1086. a[fs] = function(f, b, a) {
  1087. return this[si]((new c[Ye](e, a))[Sg](f, b))
  1088. };
  1089. a[ux] = function() {
  1090. return this[Yp]()
  1091. };
  1092. a[Jv] = function(f, b, a, d, u) {
  1093. this[Af](q);
  1094. this[zg] = this[qi] = new c[gs](f, b, a, d, u);
  1095. this[sd] && (this[sd][Uj] = u);
  1096. this[Rh] = u;
  1097. return this
  1098. };
  1099. a[Cp] = function(f) {
  1100. return this[uj](f ? new c[vj](f) : e)
  1101. };
  1102. a[js] = function(f, b, a, d, u, g) {
  1103. return this[uj]((new c[vj])[ti](f, b, a, d, u, g))
  1104. };
  1105. a[ks] = function(f, b, a, d, u, g, e, h) {
  1106. return this[uj]((new c[vj])[ui](f, b, a, d, u, g, e, h))
  1107. };
  1108. a[Nv] = function(f, b) {
  1109. return this[uj]((new c[vj])[Sg](f, b))
  1110. };
  1111. a[Dx] = function() {
  1112. return this[Cp]()
  1113. };
  1114. a[QI] = a[sj];
  1115. a[zj] = a[qb];
  1116. a[Fn] = function(f, b, a, d, c) {
  1117. return this[Tp](f, b, a, d, c, c, c, c)
  1118. };
  1119. a[Tp] = function(f, b, a, d, u, g, e, h) {
  1120. return this[bb](new c[ww](f, b, a, d, u, g, e, h))
  1121. };
  1122. a[ns] = function(f, b, a) {
  1123. return this[bb](new c[os](f, b, a))
  1124. };
  1125. a[ps] = function(f, b, a, d) {
  1126. return this[bb](new c[qs](f, b, a, d))
  1127. };
  1128. a[fm] = function(f, b, a, d, u, g) {
  1129. return this[bb](new c[rs](f, b, a, d, u, g))
  1130. };
  1131. a[bb] = function(f, b) {
  1132. this[Ve][S](f);
  1133. this[qi] = f;
  1134. b || (this[zf] = q);
  1135. return this
  1136. };
  1137. a[Rv] = function(f) {
  1138. for (var b = [this[na], this[s], this[sj], this[k], this[yg]], a = [n, n, Pa, ze, d], m = d, u = f[r], e = [], h = d, nf = d, ra = c[Fr]; m < u;) {
  1139. var z = f[Tg](m),
  1140. l = ra[z],
  1141. v = l >> ha,
  1142. q = b[v];
  1143. if (!q || l & ha) throw RA + m + SA + z;
  1144. z = a[v];
  1145. v || (h = nf = d);
  1146. e[r] = d;
  1147. m++;
  1148. l = (l >> n & g) + n;
  1149. for (v = d; v < z; v++) {
  1150. var p = ra[f[Tg](m)],
  1151. C = p >> Ka ? -g: g,
  1152. p = (p & pj) << ze | ra[f[Tg](m + g)];
  1153. l == ha && (p = p << ze | ra[f[Tg](m + n)]);
  1154. p = C * p / Ba;
  1155. v % n ? h = p += h: nf = p += nf;
  1156. e[v] = p;
  1157. m += l
  1158. }
  1159. q[gf](this, e)
  1160. }
  1161. return this
  1162. };
  1163. a[JI] = function() {
  1164. this[Af]();
  1165. return this[me]
  1166. };
  1167. a[la] = function() {
  1168. var f = new c;
  1169. f[me] = this[me][$a]();
  1170. f[Ve] = this[Ve][$a]();
  1171. f[Pg] = this[Pg];
  1172. f[dg] = this[dg];
  1173. f[sd] = this[sd];
  1174. f[zg] = this[zg];
  1175. f[zf] = this[zf];
  1176. f[Rh] = this[Rh];
  1177. return f
  1178. };
  1179. a[da] = function() {
  1180. return EL
  1181. };
  1182. a[FI] = a[na];
  1183. a[WA] = a[s];
  1184. a[OH] = a[Bf];
  1185. a[YA] = a[k];
  1186. a[ZA] = a[sj];
  1187. a[P] = a[Fk];
  1188. a[Na] = a[qb];
  1189. a[$A] = a[yg];
  1190. a[$] = a[Nm];
  1191. a[Ja] = a[Yp];
  1192. a[aB] = a[Jx];
  1193. a[PH] = a[es];
  1194. a[cB] = a[fs];
  1195. a[Oj] = a[ux];
  1196. a[SH] = a[Jv];
  1197. a[sn] = a[Cp];
  1198. a[eB] = a[js];
  1199. a[TH] = a[ks];
  1200. a[UH] = a[Nv];
  1201. a[LL] = a[Dx];
  1202. a[ML] = a[zj];
  1203. a[hB] = a[Fn];
  1204. a[XH] = a[Tp];
  1205. a[yi] = a[ns];
  1206. a[jB] = a[ps];
  1207. a[kB] = a[fm];
  1208. a[Kj] = a[Rv];
  1209. a[Af] = function(f) {
  1210. var b = this[me],
  1211. a = this[Ve],
  1212. m = this[Pg];
  1213. if (this[zf] && a[r]) {
  1214. this[zf] = l;
  1215. b[r] = m;
  1216. b[S](c[us]);
  1217. b[S][gf](b, a);
  1218. if (this[dg]) b[S](this[dg]);
  1219. if (this[sd] && this[zg]) b[S](this[zg]);
  1220. if (this[sd]) b[S](this[sd]);
  1221. f && (a[r] = d, this[Pg] = b[r])
  1222. }
  1223. };
  1224. a[si] = function(f) {
  1225. this[Af](q);
  1226. if (this[dg] = f) this[qi] = f;
  1227. return this
  1228. };
  1229. a[uj] = function(f) {
  1230. this[Af](q);
  1231. if (this[sd] = f) this[qi] = f,
  1232. f[Uj] = this[Rh];
  1233. return this
  1234. }; (c[Dw] = function(f, b) {
  1235. this[B] = f;
  1236. this[w] = b
  1237. })[G][sb] = function(f) {
  1238. f[s](this[B], this[w])
  1239. }; (c[as] = function(f, b) {
  1240. this[B] = f;
  1241. this[w] = b
  1242. })[G][sb] = function(f) {
  1243. f[na](this[B], this[w])
  1244. }; (c[Bw] = function(f, b, a, d, c) {
  1245. this[dm] = f;
  1246. this[Gk] = b;
  1247. this[vs] = a;
  1248. this[ws] = d;
  1249. this[Ze] = c
  1250. })[G][sb] = function(f) {
  1251. f[Bf](this[dm], this[Gk], this[vs], this[ws], this[Ze])
  1252. }; (c[Aw] = function(f, b, a, d, c, g) {
  1253. this[B] = f;
  1254. this[w] = b;
  1255. this[Ze] = a;
  1256. this[Wv] = d;
  1257. this[xs] = c;
  1258. this[ys] = !!g
  1259. })[G][sb] = function(f) {
  1260. f[Fk](this[B], this[w], this[Ze], this[Wv], this[xs], this[ys])
  1261. }; (c[lx] = function(f, b, a, d) {
  1262. this[cx] = f;
  1263. this[As] = b;
  1264. this[B] = a;
  1265. this[w] = d
  1266. })[G][sb] = function(f) {
  1267. f[sj](this[cx], this[As], this[B], this[w])
  1268. }; (c[bs] = function(f, b, a, d, c, g) {
  1269. this[pw] = f;
  1270. this[Xv] = b;
  1271. this[Yv] = a;
  1272. this[ax] = d;
  1273. this[B] = c;
  1274. this[w] = g
  1275. })[G][sb] = function(f) {
  1276. f[k](this[pw], this[Xv], this[Yv], this[ax], this[B], this[w])
  1277. }; (c[Hv] = function(f, b, a, d) {
  1278. this[B] = f;
  1279. this[w] = b;
  1280. this[Yc] = a;
  1281. this[Cc] = d
  1282. })[G][sb] = function(f) {
  1283. f[qb](this[B], this[w], this[Yc], this[Cc])
  1284. }; (c[cs] = function() {})[G][sb] = function(f) {
  1285. f[yg]()
  1286. }; (c[Zv] = function() {})[G][sb] = function(f) {
  1287. f[bm]()
  1288. };
  1289. a = (c[Ye] = function(f, b) {
  1290. this[Xa] = f;
  1291. this[Ih] = b
  1292. })[G];
  1293. a[sb] = function(f) {
  1294. if (this[Xa]) {
  1295. f[Mj] = this[Xa];
  1296. var b = this[Ih];
  1297. b && (f[$e](), f[wj](b[P], b[T], b[$], b[W], b[X], b[Y]));
  1298. f[Jn]();
  1299. if (b) f[Fe]()
  1300. }
  1301. };
  1302. a[ti] = function(f, b, a, m, u, g) {
  1303. for (var e = this[Xa] = c[Th][sB](a, m, u, g), h = d, k = f[r]; h < k; h++) e[Fs](b[h], f[h]);
  1304. h = {};
  1305. h[aw] = f;
  1306. h[Hs] = b;
  1307. h[Fx] = a;
  1308. h[jw] = m;
  1309. h[dm] = u;
  1310. h[Gk] = g;
  1311. h[H] = Np;
  1312. e[Hp] = h;
  1313. return this
  1314. };
  1315. a[ui] = function(f, b, a, m, u, g, e, h) {
  1316. for (var k = this[Xa] = c[Th][tB](a, m, u, g, e, h), l = d, q = f[r]; l < q; l++) k[Fs](b[l], f[l]);
  1317. l = {};
  1318. l[aw] = f;
  1319. l[Hs] = b;
  1320. l[Fx] = a;
  1321. l[jw] = m;
  1322. l[uB] = u;
  1323. l[dm] = g;
  1324. l[Gk] = e;
  1325. l[vB] = h;
  1326. l[H] = gI;
  1327. k[Hp] = l;
  1328. return this
  1329. };
  1330. a[Sg] = function(f, b) {
  1331. var a = this[Xa] = c[Th][wB](f, b || E),
  1332. d = {};
  1333. d[qa] = f;
  1334. d[xB] = b;
  1335. d[H] = Sg;
  1336. a[Hp] = d;
  1337. return this
  1338. };
  1339. a[ad] = l;
  1340. a = (c[vj] = function(f, b) {
  1341. this[Xa] = f;
  1342. this[Uj] = b
  1343. })[G];
  1344. a[sb] = function(f) {
  1345. if (this[Xa] && (f[Js] = this[Xa], this[Uj] && (f[$e](), f[rc](g, d, d, g, d, d)), f[iI](), this[Uj])) f[Fe]()
  1346. };
  1347. a[ti] = c[Ye][G][ti];
  1348. a[ui] = c[Ye][G][ui];
  1349. a[Sg] = c[Ye][G][Sg];
  1350. a[ad] = l;
  1351. a = (c[gs] = function(f, b, a, d) {
  1352. this[C] = f;
  1353. this[Kp] = b;
  1354. this[Nn] = a;
  1355. this[Hk] = d
  1356. })[G];
  1357. a[sb] = function(f) {
  1358. f[Ge] = this[C] == e ? Nl: this[C];
  1359. f[NL] = this[Kp] == e ? Bv: this[Kp];
  1360. f[zB] = this[Nn] == e ? Zr: this[Nn];
  1361. f[Hk] = this[Hk] == e ? pK: this[Hk]
  1362. };
  1363. a[ad] = l; (c[ww] = function(f, b, a, d, c, g, e, h) {
  1364. this[B] = f;
  1365. this[w] = b;
  1366. this[Yc] = a;
  1367. this[Cc] = d;
  1368. this[Tw] = c;
  1369. this[hw] = g;
  1370. this[Ns] = e;
  1371. this[gw] = h
  1372. })[G][sb] = function(f) {
  1373. var b = (l < z ? l: z) / n,
  1374. a = d,
  1375. c = d,
  1376. u = d,
  1377. e = d,
  1378. h = this[B],
  1379. k = this[w],
  1380. l = this[Yc],
  1381. z = this[Cc],
  1382. q = this[Tw],
  1383. v = this[hw],
  1384. r = this[Ns],
  1385. p = this[gw];
  1386. q < d && (q *= a = -g);
  1387. q > b && (q = b);
  1388. v < d && (v *= c = -g);
  1389. v > b && (v = b);
  1390. r < d && (r *= u = -g);
  1391. r > b && (r = b);
  1392. p < d && (p *= e = -g);
  1393. p > b && (p = b);
  1394. f[na](h + l - v, k);
  1395. f[Bf](h + l + v * c, k - v * c, h + l, k + v, v);
  1396. f[s](h + l, k + z - r);
  1397. f[Bf](h + l + r * u, k + z + r * u, h + l - r, k + z, r);
  1398. f[s](h + p, k + z);
  1399. f[Bf](h - p * e, k + z + p * e, h, k + z - p, p);
  1400. f[s](h, k + q);
  1401. f[Bf](h - q * a, k - q * a, h + q, k, q);
  1402. f[yg]()
  1403. }; (c[os] = function(f, b, a) {
  1404. this[B] = f;
  1405. this[w] = b;
  1406. this[Ze] = a
  1407. })[G][sb] = function(f) {
  1408. f[Fk](this[B], this[w], this[Ze], d, p[fd] * n)
  1409. }; (c[qs] = function(f, b, a, d) {
  1410. this[B] = f;
  1411. this[w] = b;
  1412. this[Yc] = a;
  1413. this[Cc] = d
  1414. })[G][sb] = function(f) {
  1415. var b = this[B],
  1416. a = this[w],
  1417. d = this[Yc],
  1418. c = this[Cc],
  1419. g = d / n * Os,
  1420. e = c / n * Os,
  1421. h = b + d,
  1422. l = a + c,
  1423. d = b + d / n,
  1424. c = a + c / n;
  1425. f[na](b, c);
  1426. f[k](b, c - e, d - g, a, d, a);
  1427. f[k](d + g, a, h, c - e, h, c);
  1428. f[k](h, c + e, d + g, l, d, l);
  1429. f[k](d - g, l, b, c + e, b, c)
  1430. }; (c[rs] = function(f, b, a, d, c, g) {
  1431. this[B] = f;
  1432. this[w] = b;
  1433. this[Ze] = a;
  1434. this[fw] = d;
  1435. this[iw] = c;
  1436. this[Ps] = g
  1437. })[G][sb] = function(f) {
  1438. var b = this[B],
  1439. a = this[w],
  1440. c = this[Ze],
  1441. u = (this[Ps] || d) / Xc * p[fd],
  1442. e = this[fw],
  1443. h = g - (this[iw] || d),
  1444. k = p[fd] / e;
  1445. f[na](b + p[Ub](u) * c, a + p[tb](u) * c);
  1446. for (var l = d; l < e; l++) {
  1447. u += k;
  1448. if (h != g) f[s](b + p[Ub](u) * c * h, a + p[tb](u) * c * h);
  1449. u += k;
  1450. f[s](b + p[Ub](u) * c, a + p[tb](u) * c)
  1451. }
  1452. f[yg]()
  1453. };
  1454. c[us] = new c[Zv];
  1455. h[Qs] = c
  1456. })(); (function() {
  1457. var c = function() {
  1458. this[y]()
  1459. },
  1460. a = c[G] = new h[ue];
  1461. c[Rs] = [Ik, qq, ug, Ts, Us, Vs, ij, Fl, hi];
  1462. c[kw] = l;
  1463. c[rq] = l;
  1464. var b = h[Hb] ? h[Hb]() : Z[sa](K);
  1465. b[Ia] && (c[DB] = b, c[Pn] = b[Ia](Ib), b[C] = b[D] = g);
  1466. c[bw] = g;
  1467. a[ma] = g;
  1468. a[fb] = e;
  1469. a[Da] = -g;
  1470. a[Vj] = q;
  1471. a[Qn] = q;
  1472. a[yb] = e;
  1473. a[Za] = e;
  1474. a[Ma] = d;
  1475. a[Oa] = d;
  1476. a[ea] = d;
  1477. a[nb] = g;
  1478. a[mb] = g;
  1479. a[Kd] = d;
  1480. a[Dd] = d;
  1481. a[Bb] = e;
  1482. a[Aa] = q;
  1483. a[B] = d;
  1484. a[w] = d;
  1485. a[wb] = e;
  1486. a[Xs] = q;
  1487. a[hg] = e;
  1488. a[Lk] = d;
  1489. a[He] = e;
  1490. a[jn] = e;
  1491. a[xe] = e;
  1492. a[Vg] = d;
  1493. a[Wg] = d;
  1494. a[Xg] = g;
  1495. a[Ys] = d;
  1496. a[Mk] = e;
  1497. a[xc] = e;
  1498. a[oe] = e;
  1499. a[Ie] = e;
  1500. a[y] = function() {
  1501. this[Da] = h[Mu][nd]();
  1502. this[xc] = new h[fk];
  1503. this[oe] = new h[Qe]
  1504. };
  1505. a[Id] = function() {
  1506. return !! (this[Aa] && this[ma] > d && this[nb] != d && this[mb] != d)
  1507. };
  1508. a[Wa] = function(f, b) {
  1509. var a = this[fb];
  1510. if (b || !a) return l;
  1511. var c = this[Xg],
  1512. g = this[Vg],
  1513. e = this[Wg],
  1514. h;
  1515. if (h = this[Rn](g, e, d, d)) g = h[B],
  1516. e = h[w];
  1517. f[Dc](a, g, e, a[C] / c, a[D] / c);
  1518. return q
  1519. };
  1520. a[Sn] = function(f) {
  1521. var b, a = this[He];
  1522. a && (a[gb] && !a[gb][Sl]()) && (b = a[Bi](a[xc]), f[wj](b[P], b[T], b[$], b[W], b[X], b[Y]), a[gb][zp](f), f[Pp](), b[cn](), f[wj](b[P], b[T], b[$], b[W], b[X], b[Y]));
  1523. b = this[xc][Wc]()[di](this[B], this[w], this[nb], this[mb], this[ea], this[Kd], this[Dd], this[Ma], this[Oa]);
  1524. var a = b[X],
  1525. m = b[Y];
  1526. c[rq] && this[Xs] && (a = a + (a < d ? -ia: ia) | d, m = m + (m < d ? -ia: ia) | d);
  1527. f[wj](b[P], b[T], b[$], b[W], a, m);
  1528. f[Qp] *= this[ma];
  1529. this[wb] && (f[Ag] = this[wb]);
  1530. if (this[Bb]) this[dx](f, this[Bb])
  1531. };
  1532. a[Yl] = function(f, b, a, d, c) {
  1533. c = c || g;
  1534. this[fb] || (this[fb] = h[Hb] ? h[Hb]() : Z[sa](K));
  1535. this[bt] = a;
  1536. this[ct] = d;
  1537. this[Vg] = f;
  1538. this[Wg] = b;
  1539. this[Xg] = c;
  1540. this[Tn]()
  1541. };
  1542. a[Tn] = function(f) {
  1543. var b = this[fb],
  1544. a = this[Xg],
  1545. m = this[Vg] * a,
  1546. u = this[Wg] * a,
  1547. e = this[bt],
  1548. h = this[ct],
  1549. k;
  1550. if (!b) throw JB;
  1551. var l = b[Ia](Ib);
  1552. if (k = this[Rn](m, u, e, h)) m = k[B],
  1553. u = k[w],
  1554. e = k[C],
  1555. h = k[D];
  1556. e = p[Yg](e * a);
  1557. h = p[Yg](h * a);
  1558. if (e != b[C] || h != b[D]) b[C] = e,
  1559. b[D] = h;
  1560. else if (!f) l[ie](d, d, e + g, h + g);
  1561. l[$e]();
  1562. l[Ag] = f;
  1563. l[rc](a, d, d, a, -m, -u);
  1564. this[Wa](l, q);
  1565. this[rw]();
  1566. l[Fe]();
  1567. this[Lk] = c[bw]++
  1568. };
  1569. a[Nk] = function() {
  1570. this[Mk] = this[fb] = e;
  1571. this[Lk] = this[Vg] = this[Wg] = d;
  1572. this[Xg] = g
  1573. };
  1574. a[DI] = function() {
  1575. if (!this[fb]) return e;
  1576. this[Lk] != this[Ys] && (this[Mk] = this[fb][Ci]());
  1577. return this[Mk]
  1578. };
  1579. a[et] = function() {
  1580. for (var f = this; f[Za];) f = f[Za];
  1581. return f instanceof h[Ok] ? f: e
  1582. };
  1583. a[$i] = function(f, b) {
  1584. var a = this[Zg](this[xc]);
  1585. if (a == e) return e;
  1586. a[bb](g, d, d, g, f, b);
  1587. return new h[bp](a[X], a[Y])
  1588. };
  1589. a[fj] = function(f, b) {
  1590. var a = this[Zg](this[xc]);
  1591. if (a == e) return e;
  1592. a[cn]();
  1593. a[bb](g, d, d, g, f, b);
  1594. return new h[bp](a[X], a[Y])
  1595. };
  1596. a[ft] = function(f, b, a) {
  1597. f = this[$i](f, b);
  1598. return a[fj](f[B], f[w])
  1599. };
  1600. a[rc] = function(f, b, a, c, u, h, k, l, q) {
  1601. this[B] = f || d;
  1602. this[w] = b || d;
  1603. this[nb] = a == e ? g: a;
  1604. this[mb] = c == e ? g: c;
  1605. this[ea] = u || d;
  1606. this[Kd] = h || d;
  1607. this[Dd] = k || d;
  1608. this[Ma] = l || d;
  1609. this[Oa] = q || d;
  1610. return this
  1611. };
  1612. a[Bi] = function(f) {
  1613. return (f ? f[Wc]() : new h[fk])[di](this[B], this[w], this[nb], this[mb], this[ea], this[Kd], this[Dd], this[Ma], this[Oa])[$o](this[ma], this[Bb], this[wb])
  1614. };
  1615. a[Zg] = function(f) {
  1616. if (f) f[Wc]();
  1617. else f = new h[fk];
  1618. for (var b = this; b != e;) f[or](b[B], b[w], b[nb], b[mb], b[ea], b[Kd], b[Dd], b[Ma], b[Oa])[Bq](b[ma], b[Bb], b[wb], b[Aa]),
  1619. b = b[Za];
  1620. return f
  1621. };
  1622. a[Iq] = function(f, b) {
  1623. var a = c[Pn];
  1624. a[rc](g, d, d, g, -f, -b);
  1625. this[Wa](a);
  1626. var m = this[Im](a);
  1627. a[rc](g, d, d, g, d, d);
  1628. a[ie](d, d, n, n);
  1629. return m
  1630. };
  1631. a[Cg] = function(f) {
  1632. for (var b in f) this[b] = f[b];
  1633. return this
  1634. };
  1635. a[hb] = function() {
  1636. if (this[Ie]) return this[oe][Nh](this[Ie]);
  1637. var f = this[fb];
  1638. if (f) {
  1639. var b = this[Xg];
  1640. return this[oe][y](this[Vg], this[Wg], f[C] / b, f[D] / b)
  1641. }
  1642. return e
  1643. };
  1644. a[uw] = function() {
  1645. return this[$g]()
  1646. };
  1647. a[RB] = function(f, b, a, d) {
  1648. f == e && (this[Ie] = f);
  1649. this[Ie] = (this[Ie] || new h[Qe])[y](f, b, a, d)
  1650. };
  1651. a[la] = function() {
  1652. var f = new c;
  1653. this[Rc](f);
  1654. return f
  1655. };
  1656. a[da] = function() {
  1657. return TB + this[yb] + sc
  1658. };
  1659. a[Rc] = function(f) {
  1660. f[ma] = this[ma];
  1661. f[yb] = this[yb];
  1662. f[Ma] = this[Ma];
  1663. f[Oa] = this[Oa];
  1664. f[ea] = this[ea];
  1665. f[nb] = this[nb];
  1666. f[mb] = this[mb];
  1667. f[Bb] = this[Bb];
  1668. f[Kd] = this[Kd];
  1669. f[Dd] = this[Dd];
  1670. f[Aa] = this[Aa];
  1671. f[B] = this[B];
  1672. f[w] = this[w];
  1673. f[Ie] = this[Ie];
  1674. f[Vj] = this[Vj];
  1675. f[wb] = this[wb]
  1676. };
  1677. a[dx] = function(f, b) {
  1678. b = b || Shadow[Wc];
  1679. f[gt] = b[Cb];
  1680. f[ht] = b[mk];
  1681. f[Sv] = b[nk];
  1682. f[it] = b[ok]
  1683. };
  1684. a[dc] = function(b) {
  1685. var a = this[Qc];
  1686. a && a[Fb] && (b = (new h[Ca](Fb))[Cg](b), this[rf](b, this, n))
  1687. };
  1688. a[Im] = function(b) {
  1689. try {
  1690. var a = b[lg](d, d, g, g)[td][ha] > g
  1691. } catch(M) {
  1692. if (!c[kw]) throw [LH, aa, WB, aa][R](E);
  1693. }
  1694. return a
  1695. };
  1696. a[rw] = function() {
  1697. if (this[hg] && this[hg][r] != d && this[fb]) for (var b = this[hg][r], a = this[fb][Ia](Ib), c = this[fb][C], m = this[fb][D], g = d; g < b; g++) this[hg][g][fg](a, d, d, c, m)
  1698. };
  1699. a[Rn] = function(b, a, c, m) {
  1700. var g, h, k = this[hg];
  1701. if (!k || !(h = k[r])) return e;
  1702. for (k = d; k < h; k++) {
  1703. var l = this[hg][k];
  1704. if (l = l[hb] && l[hb]()) g || (g = this[oe][y](b, a, c, m)),
  1705. g[B] += l[B],
  1706. g[w] += l[w],
  1707. g[C] += l[C],
  1708. g[D] += l[D]
  1709. }
  1710. return g
  1711. };
  1712. a[$g] = function(b, a) {
  1713. return this[Gp](this[hb](), b, a)
  1714. };
  1715. a[Gp] = function(b, a, c) {
  1716. if (!b) return b;
  1717. var m = b[B],
  1718. u = b[w],
  1719. e = b[C],
  1720. h = b[D],
  1721. k = c ? this[xc][Wc]() : this[Bi](this[xc]);
  1722. if (m || u) k[di](d, d, g, g, d, d, d, -m, -u);
  1723. if (a) k[ek](a);
  1724. a = e * k[P];
  1725. e *= k[T];
  1726. c = h * k[$];
  1727. var h = h * k[W],
  1728. l = k[X],
  1729. k = k[Y],
  1730. q = l,
  1731. r = l,
  1732. v = k,
  1733. n = k; (m = a + l) < q ? q = m: m > r && (r = m); (m = a + c + l) < q ? q = m: m > r && (r = m); (m = c + l) < q ? q = m: m > r && (r = m); (u = e + k) < v ? v = u: u > n && (n = u); (u = e + h + k) < v ? v = u: u > n && (n = u); (u = h + k) < v ? v = u: u > n && (n = u);
  1734. return b[y](q, v, r - q, n - v)
  1735. };
  1736. a[Fp] = function() {
  1737. for (var b = c[Rs], a = d, M = b[r]; a < M; a++) if (this[Zb](b[a])) return q;
  1738. return !! this[xe]
  1739. };
  1740. h[se] = c
  1741. })(); (function() {
  1742. var c = function() {
  1743. this[y]()
  1744. },
  1745. a = c[G] = new h[se];
  1746. a[ua] = e;
  1747. a[kk] = q;
  1748. a[mt] = q;
  1749. a[Hc] = a[y];
  1750. a[y] = function() {
  1751. this[Hc]();
  1752. this[ua] = []
  1753. };
  1754. a[Id] = function() {
  1755. var b = this[fb] || this[ua][r];
  1756. return !! (this[Aa] && this[ma] > d && this[nb] != d && this[mb] != d && b)
  1757. };
  1758. a[cd] = a[Wa];
  1759. a[Wa] = function(b, f) {
  1760. if (this[cd](b, f)) return q;
  1761. for (var a = this[ua][$a](d), c = d, m = a[r]; c < m; c++) {
  1762. var g = a[c];
  1763. g[Id]() && (b[$e](), g[Sn](b), g[Wa](b), b[Fe]())
  1764. }
  1765. return q
  1766. };
  1767. a[Kc] = function(b) {
  1768. if (b == e) return b;
  1769. var f = arguments[r];
  1770. if (f > g) {
  1771. for (var a = d; a < f; a++) this[Kc](arguments[a]);
  1772. return arguments[f - g]
  1773. }
  1774. if (b[Za]) b[Za][Gc](b);
  1775. b[Za] = this;
  1776. this[ua][S](b);
  1777. return b
  1778. };
  1779. a[hx] = function(b, f) {
  1780. var a = arguments[r],
  1781. c = arguments[a - g];
  1782. if (c < d || c > this[ua][r]) return arguments[a - n];
  1783. if (a > n) {
  1784. for (var m = d; m < a - g; m++) this[hx](arguments[m], c + m);
  1785. return arguments[a - n]
  1786. }
  1787. if (b[Za]) b[Za][Gc](b);
  1788. b[Za] = this;
  1789. this[ua][Qb](f, d, b);
  1790. return b
  1791. };
  1792. a[Gc] = function(b) {
  1793. var f = arguments[r];
  1794. if (f > g) {
  1795. for (var a = q,
  1796. c = d; c < f; c++) a = a && this[Gc](arguments[c]);
  1797. return a
  1798. }
  1799. return this[Vn](h[tc](this[ua], b))
  1800. };
  1801. a[Vn] = function(b) {
  1802. var f = arguments[r];
  1803. if (f > g) {
  1804. for (var a = [], c = d; c < f; c++) a[c] = arguments[c];
  1805. a[Ei](function(b, f) {
  1806. return f - b
  1807. });
  1808. for (var m = q,
  1809. c = d; c < f; c++) m = m && this[Vn](a[c]);
  1810. return m
  1811. }
  1812. if (b < d || b > this[ua][r] - g) return l; (f = this[ua][b]) && (f[Za] = e);
  1813. this[ua][Qb](b, g);
  1814. return q
  1815. };
  1816. a[SI] = function() {
  1817. for (var b = this[ua]; b[r];) b[mg]()[Za] = e
  1818. };
  1819. a[yL] = function(b) {
  1820. return this[ua][b]
  1821. };
  1822. a[YB] = function(b) {
  1823. for (var f = this[ua], a = d, c = f[r]; a < c; a++) if (f[a][yb] == b) return f[a];
  1824. return e
  1825. };
  1826. a[IH] = function(b) {
  1827. this[ua][Ei](b)
  1828. };
  1829. a[HH] = function(b) {
  1830. return h[tc](this[ua], b)
  1831. };
  1832. a[VI] = function() {
  1833. return this[ua][r]
  1834. };
  1835. a[ZB] = function(b, f) {
  1836. var a = this[ua],
  1837. d = a[b],
  1838. c = a[f];
  1839. d && c && (a[b] = c, a[f] = d)
  1840. };
  1841. a[GH] = function(b, f) {
  1842. for (var a = this[ua], c, m, g = d, h = a[r]; g < h && (a[g] == b && (c = g), a[g] == f && (m = g), c == e || m == e); g++);
  1843. g != h && (a[c] = f, a[m] = b)
  1844. };
  1845. a[FH] = function(b, f) {
  1846. var a = this[ua],
  1847. c = a[r];
  1848. if (! (b[Za] != this || f < d || f >= c)) {
  1849. for (var m = d; m < c && a[m] != b; m++);
  1850. m != c && m != f && (a[Qb](m, g), a[Qb](f, d, b))
  1851. }
  1852. };
  1853. a[rt] = function(b) {
  1854. for (; b;) {
  1855. if (b == this) return q;
  1856. b = b[Za]
  1857. }
  1858. return l
  1859. };
  1860. a[Iq] = function(b, f) {
  1861. return this[st](b, f) != e
  1862. };
  1863. a[WI] = function(b, f) {
  1864. var a = [],
  1865. d = this[$i](b, f);
  1866. this[kf](d[B], d[w], a);
  1867. return a
  1868. };
  1869. a[st] = function(b, f) {
  1870. var a = this[$i](b, f);
  1871. return this[kf](a[B], a[w])
  1872. };
  1873. a[Ke] = a[hb];
  1874. a[hb] = function() {
  1875. return this[$g](e, q)
  1876. };
  1877. a[uw] = function() {
  1878. return this[$g]()
  1879. };
  1880. a[la] = function(b) {
  1881. var f = new c;
  1882. this[Rc](f);
  1883. if (b) for (var a = f[ua] = [], M = d, g = this[ua][r]; M < g; M++) {
  1884. var e = this[ua][M][la](b);
  1885. e[Za] = f;
  1886. a[S](e)
  1887. }
  1888. return f
  1889. };
  1890. a[da] = function() {
  1891. return ZL + this[yb] + sc
  1892. };
  1893. a[ah] = a[dc];
  1894. a[dc] = function(b) {
  1895. if (this[mt]) for (var f = this[ua][r] - g; f >= d; f--) {
  1896. var a = this[ua][f];
  1897. if (a[Qn] && a[dc]) a[dc](b)
  1898. }
  1899. this[ah](b)
  1900. };
  1901. a[kf] = function(b, f, a, M, m) {
  1902. var u = h[se][Pn],
  1903. ga = this[xc];
  1904. m = m || M && this[Fp]();
  1905. for (var k = this[ua], l = k[r] - g; l >= d; l--) {
  1906. var q = k[l],
  1907. z = q[jn],
  1908. p = q[He];
  1909. if (q[Aa] && (z || q[Id]()) && (!M || q[Vj])) {
  1910. if (!z && p && p[gb] && !p[gb][Sl]()) {
  1911. var v = p[Bi](p[xc])[ek](this[Zg](ga));
  1912. u[rc](v[P], v[T], v[$], v[W], v[X] - b, v[Y] - f);
  1913. p[gb][zp](u);
  1914. u[Mj] = Iv;
  1915. u[Jn]();
  1916. if (!this[Im](u)) continue;
  1917. u[rc](g, d, d, g, d, d);
  1918. u[ie](d, d, n, n)
  1919. }
  1920. if (!z && q instanceof c) {
  1921. if (q = q[kf](b, f, a, M, m), !a && q) return M && !this[kk] ? this: q
  1922. } else if (!M || m || q[Fp]()) if (q[Zg](ga), z && (ga[di](z[B], z[w], z[nb], z[mb], z[ea], z[Kd], z[Dd], z[Ma], z[Oa]), ga[ma] = z[ma]), u[Qp] = ga[ma], u[rc](ga[P], ga[T], ga[$], ga[W], ga[X] - b, ga[Y] - f), (z || q)[Wa](u), this[Im](u)) if (u[rc](g, d, d, g, d, d), u[ie](d, d, n, n), a) a[S](q);
  1923. else return M && !this[kk] ? this: q
  1924. }
  1925. }
  1926. return e
  1927. };
  1928. a[$g] = function(b, f) {
  1929. var a = this[Ke]();
  1930. if (a) return this[Gp](a, b, f);
  1931. var c, g, u, h, k = f ? this[xc][Wc]() : this[Bi](this[xc]);
  1932. if (b) k[ek](b);
  1933. for (var l = this[ua][r], q = d; q < l; q++) {
  1934. var z = this[ua][q];
  1935. if (z[Aa] && (a = z[$g](k))) {
  1936. var z = a[B],
  1937. n = a[w],
  1938. v = z + a[C],
  1939. p = n + a[D];
  1940. if (z < c || c == e) c = z;
  1941. if (v > g || g == e) g = v;
  1942. if (n < u || u == e) u = n;
  1943. if (p > h || h == e) h = p
  1944. }
  1945. }
  1946. return g == e ? e: this[oe][y](c, u, g - c, h - u)
  1947. };
  1948. h[Xp] = c
  1949. })(); (function() {
  1950. ba;
  1951. var c = function(b) {
  1952. this[y](b)
  1953. },
  1954. a = c[G] = new h[Xp];
  1955. a[wt] = q;
  1956. a[K] = e;
  1957. a[Bj] = d;
  1958. a[Gi] = d;
  1959. a[zj] = e;
  1960. a[Hx] = l;
  1961. a[im] = l;
  1962. a[zw] = q;
  1963. a[$n] = l;
  1964. a[xt] = function() {
  1965. return this[ud]
  1966. };
  1967. a[Gv] = function(b) {
  1968. this[ud] && (this[ud][bh] = e);
  1969. b && (b[bh] = this);
  1970. this[ud] = b
  1971. };
  1972. try {
  1973. oc[Zm](a,
  1974. function(b, a) {
  1975. b[fL] = a;
  1976. return b
  1977. } ({},
  1978. function(b, a, d) {
  1979. b[nd] = a;
  1980. b[Cg] = d;
  1981. return b
  1982. } ({},
  1983. a[xt], a[Gv])))
  1984. } catch(b) {}
  1985. a[Hi] = e;
  1986. a[cC] = d;
  1987. a[md] = e;
  1988. a[Qh] = e;
  1989. a[ud] = e;
  1990. a[bh] = e;
  1991. a[Rk] = a[y];
  1992. a[y] = function(b) {
  1993. this[Rk]();
  1994. this[K] = typeof b == fc ? Z[Jq](b) : b;
  1995. this[Hi] = {}
  1996. };
  1997. a[ch] = function(b) {
  1998. if (this[K]) {
  1999. if (this[zw]) this[Fb][gf](this, arguments);
  2000. if (!this[Ra](zH)) {
  2001. h[se][rq] = this[Hx];
  2002. var a = this[zj],
  2003. c = this[K][Ia](Ib);
  2004. c[rc](g, d, d, g, d, d);
  2005. if (this[wt]) if (a) c[ie](a[B], a[w], a[C], a[D]);
  2006. else c[ie](d, d, this[K][C] + g, this[K][D] + g);
  2007. c[$e]();
  2008. this[zj] && (c[bm](), c[qb](a[B], a[w], a[C], a[D]), c[Pp]());
  2009. this[Sn](c);
  2010. this[Wa](c, l);
  2011. c[Fe]();
  2012. this[Ra](Ev)
  2013. }
  2014. }
  2015. };
  2016. a[Fb] = function(b) {
  2017. if (this[Qn] && !this[Ra](dC)) {
  2018. var a = arguments[r] ? Rf[G][$a][Eb](arguments, d) : e,
  2019. c = a && a[d];
  2020. if (c && c[Hg] != e) {
  2021. var g = {},
  2022. u = c[Db],
  2023. h = c[Vo],
  2024. k = c[Wm];
  2025. g[Hg] = c[Hg];
  2026. g[Db] = u;
  2027. g[Vo] = h;
  2028. g[Wm] = k;
  2029. c = g
  2030. } else c = {};
  2031. c[eC] = a;
  2032. this[dc](c);
  2033. this[Ra](lL)
  2034. }
  2035. };
  2036. a[af] = function(b) {
  2037. if (b[H] == Fb) this[ch](b)
  2038. };
  2039. a[Nm] = function() {
  2040. if (this[K]) {
  2041. var b = this[K][Ia](Ib);
  2042. b[rc](g, d, d, g, d, d);
  2043. b[ie](d, d, this[K][C] + g, this[K][D] + g)
  2044. }
  2045. };
  2046. a[Ci] = function(b, a) {
  2047. a || (a = [qa, Vb, Ii][R](E));
  2048. var c = this[K][Ia](Ib),
  2049. m = this[K][C],
  2050. e = this[K][D],
  2051. h;
  2052. if (b) {
  2053. h = c[lg](d, d, m, e);
  2054. var k = c[Ag];
  2055. c[Ag] = pJ;
  2056. c[Mj] = b;
  2057. c[yH](d, d, m, e)
  2058. }
  2059. var l = this[K][Ci](a);
  2060. b && (c[ie](d, d, m + g, e + g), c[Ji](h, d, d), c[Ag] = k);
  2061. return l
  2062. };
  2063. a[gC] = function(b) {
  2064. if (this[Qh] && (Ox(this[Qh]), this[Qh] = e, b == d)) this[rj](q);
  2065. if (b == e) b = qd;
  2066. else if (b <= d) return;
  2067. var a = this;
  2068. this[Qh] = sK(function() {
  2069. a[rj]()
  2070. },
  2071. Rd / p[re](Qd, b))
  2072. };
  2073. a[yp] = function(b) {
  2074. b == e && (b = q);
  2075. var a, d = this[fo];
  2076. if (!b && d) {
  2077. for (a in d) b = d[a],
  2078. b[qc][ya](a, b[Ja], l);
  2079. this[fo] = e
  2080. } else if (b && !d && this[K]) {
  2081. b = L[pa] ? L: Z;
  2082. var c = this,
  2083. d = this[fo] = {};
  2084. d[tJ] = function(b, f, a) {
  2085. b[qc] = f;
  2086. b[Ja] = a;
  2087. return b
  2088. } ({},
  2089. b,
  2090. function(b) {
  2091. c[Ct](b)
  2092. });
  2093. d[pL] = function(b, f, a) {
  2094. b[qc] = f;
  2095. b[Ja] = a;
  2096. return b
  2097. } ({},
  2098. b,
  2099. function(b) {
  2100. c[qx](b)
  2101. });
  2102. d[qq] = function(b, f, a) {
  2103. b[qc] = f;
  2104. b[Ja] = a;
  2105. return b
  2106. } ({},
  2107. this[K],
  2108. function(b) {
  2109. c[go](b)
  2110. });
  2111. d[ug] = function(b, f, a) {
  2112. b[qc] = f;
  2113. b[Ja] = a;
  2114. return b
  2115. } ({},
  2116. this[K],
  2117. function(b) {
  2118. c[kx](b)
  2119. });
  2120. for (a in d) b = d[a],
  2121. b[qc][pa](a, b[Ja], l)
  2122. }
  2123. };
  2124. a[la] = function() {
  2125. var b = new c(e);
  2126. this[Rc](b);
  2127. return b
  2128. };
  2129. a[da] = function() {
  2130. return CJ + this[yb] + sc
  2131. };
  2132. a[Dt] = function(b) {
  2133. var a;
  2134. try {
  2135. a = b[hC]()
  2136. } catch(c) {
  2137. a = function(b, a, f, d, t) {
  2138. b[bc] = a;
  2139. b[Lc] = f;
  2140. b[C] = d;
  2141. b[D] = t;
  2142. return b
  2143. } ({},
  2144. b[FJ], b[iC], b[jC], b[uH])
  2145. }
  2146. var g = (L[kC] || Z[lC] || d) - (Z[Et] || Z[Ch][Et] || d),
  2147. e = (L[tH] || Z[mC] || d) - (Z[Ft] || Z[Ch][Ft] || d),
  2148. h = L[nC] ? getComputedStyle(b) : b[oC];
  2149. b = ke(h[WK]) + ke(h[pC]);
  2150. var k = ke(h[qC]) + ke(h[pH]),
  2151. l = ke(h[oH]) + ke(h[rC]),
  2152. h = ke(h[sC]) + ke(h[tC]);
  2153. return function(b, a, f, d, t) {
  2154. b[Lc] = a;
  2155. b[Vk] = f;
  2156. b[bc] = d;
  2157. b[Wk] = t;
  2158. return b
  2159. } ({},
  2160. a[Lc] + g + b, a[Vk] + g - l, a[bc] + e + k, a[Wk] + e - h)
  2161. };
  2162. a[cg] = function(b) {
  2163. var a = this[Hi][b];
  2164. if (!a) {
  2165. var a = this[Hi],
  2166. c = {},
  2167. m = d;
  2168. c[B] = d;
  2169. c[w] = m;
  2170. a = a[b] = c;
  2171. this[md] == e && (this[md] = b);
  2172. if (this[md] == e || this[md] == -g) this[md] = b
  2173. }
  2174. return a
  2175. };
  2176. a[qx] = function(b) {
  2177. b || (b = L[AL]);
  2178. this[Xk]( - g, b, b[hf], b[fh])
  2179. };
  2180. a[Xk] = function(b, a, d, c, h) {
  2181. if ((!this[bh] || h !== oa) && this[K]) {
  2182. h = this[ud];
  2183. var k = this[cg](b),
  2184. pb = k[Bh];
  2185. this[io](b, a, d, c);
  2186. if (pb || k[Bh] || this[$n]) {
  2187. if (b == -g && k[Bh] == !pb) this[kc](this, pb ? RJ: jH, l, b, k, a);
  2188. this[kc](this, wC, l, b, k, a);
  2189. this[kc](k[xa], Vs, q, b, k, a)
  2190. }
  2191. h && h[Xk](b, a, d, c, e)
  2192. }
  2193. };
  2194. a[io] = function(b, a, c, m) {
  2195. var e = this[Dt](this[K]);
  2196. c -= e[Lc];
  2197. m -= e[bc];
  2198. var h = this[K][C],
  2199. k = this[K][D];
  2200. c /= (e[Vk] - e[Lc]) / h;
  2201. m /= (e[Wk] - e[bc]) / k;
  2202. e = this[cg](b); (e[Bh] = c >= d && m >= d && c <= h - g && m <= k - g) ? (e[B] = c, e[w] = m) : this[$n] && (e[B] = c < d ? d: c > h - g ? h - g: c, e[w] = m < d ? d: m > k - g ? k - g: m);
  2203. e[Ht] = a;
  2204. e[Uf] = c;
  2205. e[sf] = m;
  2206. b == this[md] && (this[Bj] = e[B], this[Gi] = e[w], this[im] = e[Bh])
  2207. };
  2208. a[Ct] = function(b) {
  2209. this[sm]( - g, b, l)
  2210. };
  2211. a[sm] = function(b, a, d, c) {
  2212. var g = this[ud],
  2213. h = this[cg](b);
  2214. if (!this[bh] || c !== oa) {
  2215. this[kc](this, iH, l, b, h, a);
  2216. var k = e,
  2217. r = h[xa];
  2218. c || !r && !g || (k = this[kf](h[B], h[w], e, q));
  2219. if (k == r) this[kc](r, Ik, q, b, h, a);
  2220. this[kc](r, ij, q, b, h, a);
  2221. d ? (b == this[md] && (this[md] = e), delete this[Hi][b]) : h[xa] = e;
  2222. g && g[sm](b, a, d, c || k && this)
  2223. }
  2224. };
  2225. a[kx] = function(b) {
  2226. this[Yk]( - g, b, b[hf], b[fh])
  2227. };
  2228. a[Yk] = function(b, a, d, c, g) {
  2229. if (c != e) this[io](b, a, d, c);
  2230. var h = e,
  2231. k = this[ud],
  2232. r = this[cg](b);
  2233. if (r[Bh]) this[kc](this, XJ, l, b, r, a);
  2234. g || (h = r[xa] = this[kf](r[B], r[w], e, q), this[kc](r[xa], ug, q, b, r, a));
  2235. k && k[Yk](b, a, d, c, g || h && this)
  2236. };
  2237. a[rj] = function(b, a, c) {
  2238. if (!this[bh] || a !== oa) {
  2239. var m = this[ud];
  2240. if (!this[Qh]) m && m[rj](b, a, c);
  2241. else if (this[md] == -g && (b || this[Bj] != this[tv] || this[Gi] != this[rv] || !this[im])) {
  2242. var h = this[cg]( - g),
  2243. k = h[Ht],
  2244. pb = c || k && k[xa] == this[K],
  2245. n = e,
  2246. p = -g,
  2247. z = E,
  2248. Ta; ! a && (b || this[im] && pb) && (n = this[kf](this[Bj], this[Gi], e, q), this[tv] = this[Bj], this[rv] = this[Gi]);
  2249. var v = this[Lt] || [],
  2250. J = v[v[r] - g],
  2251. s = this[Lt] = [];
  2252. for (Ta = n; Ta;) s[Wo](Ta),
  2253. Ta[xe] != e && (z = Ta[xe]),
  2254. Ta = Ta[Za];
  2255. this[K][Xa][xe] = z; ! a && c && (c[K][Xa][xe] = z);
  2256. z = d;
  2257. for (Ta = s[r]; z < Ta && s[z] == v[z]; z++) p = z;
  2258. if (J != n) this[kc](J, Ts, q, -g, h, k);
  2259. for (z = v[r] - g; z > p; z--) this[kc](v[z], Fl, l, -g, h, k);
  2260. for (z = s[r] - g; z > p; z--) this[kc](s[z], hi, l, -g, h, k);
  2261. if (J != n) this[kc](n, Us, q, -g, h, k);
  2262. m && m[rj](b, a || n && this, c || pb && this)
  2263. }
  2264. }
  2265. };
  2266. a[go] = function(b, a) {
  2267. var d = e,
  2268. c = this[ud],
  2269. h = this[cg]( - g);
  2270. a || (d = this[kf](h[B], h[w], e, q), this[kc](d, qq, q, -g, h, b));
  2271. c && c[go](b, a || d && this)
  2272. };
  2273. a[kc] = function(b, a, d, c, g, e) {
  2274. b && (d || b[Zb](a)) && (a = new h[lr](a, d, l, g[B], g[w], e, c, c == this[md], g[Uf], g[sf]), b[Ra](a))
  2275. };
  2276. h[Ok] = c
  2277. })(); (function() {
  2278. var c = function(b) {
  2279. this[y](b)
  2280. },
  2281. a = c[G] = new h[se];
  2282. a[qa] = e;
  2283. a[fe] = e;
  2284. a[Hc] = a[y];
  2285. a[y] = function(b) {
  2286. this[Hc]();
  2287. typeof b == fc ? (this[qa] = Z[sa](Ud), this[qa][ja] = b) : this[qa] = b
  2288. };
  2289. a[Id] = function() {
  2290. var b = this[fb] || this[qa] && (this[qa][ub] || this[qa][Ia] || this[qa][$d] >= n);
  2291. return !! (this[Aa] && this[ma] > d && this[nb] != d && this[mb] != d && b)
  2292. };
  2293. a[cd] = a[Wa];
  2294. a[Wa] = function(b, a) {
  2295. if (this[cd](b, a)) return q;
  2296. var c = this[fe];
  2297. if (c) b[Dc](this[qa], c[B], c[w], c[C], c[D], d, d, c[C], c[D]);
  2298. else b[Dc](this[qa], d, d);
  2299. return q
  2300. };
  2301. a[Ke] = a[hb];
  2302. a[hb] = function() {
  2303. var b = this[Ke]();
  2304. if (b) return b;
  2305. b = this[fe] || this[qa];
  2306. return this[qa] && (this[qa][ub] || this[qa][Ia] || this[qa][$d] >= n) ? this[oe][y](d, d, b[C], b[D]) : e
  2307. };
  2308. a[la] = function() {
  2309. var b = new c(this[qa]);
  2310. this[fe] && (b[fe] = this[fe][la]());
  2311. this[Rc](b);
  2312. return b
  2313. };
  2314. a[da] = function() {
  2315. return zC + this[yb] + sc
  2316. };
  2317. h[tm] = c
  2318. })(); (function() {
  2319. ba;
  2320. var c = function(b, a) {
  2321. this[y](b, a)
  2322. },
  2323. a = c[G] = new h[se];
  2324. a[Zj] = d;
  2325. a[Pi] = e;
  2326. a[Db] = q;
  2327. a[lb] = e;
  2328. a[bH] = d;
  2329. a[Fd] = d;
  2330. a[Td] = d;
  2331. a[aH] = d;
  2332. a[Ed] = e;
  2333. a[mc] = e;
  2334. a[Hc] = a[y];
  2335. a[y] = function(b, a) {
  2336. this[Hc]();
  2337. this[lb] = b;
  2338. if (a) this[Se](a)
  2339. };
  2340. a[Id] = function() {
  2341. var b = this[fb] || this[lb][ub];
  2342. return !! (this[Aa] && this[ma] > d && this[nb] != d && this[mb] != d && b)
  2343. };
  2344. a[cd] = a[Wa];
  2345. a[Wa] = function(b, a) {
  2346. if (this[cd](b, a)) return q;
  2347. this[hh]();
  2348. var c = this[lb][Zf](this[mc] | d);
  2349. if (!c) return l;
  2350. var g = c[qb];
  2351. if (g[C] && g[D]) b[Dc](c[qa], g[B], g[w], g[C], g[D], -c[Ma], -c[Oa], g[C], g[D]);
  2352. return q
  2353. };
  2354. a[Ej] = function() {
  2355. this[Db] = l
  2356. };
  2357. a[YG] = function() {
  2358. this[Db] = q
  2359. };
  2360. a[Se] = function(b) {
  2361. this[Db] = l;
  2362. this[xg](b)
  2363. };
  2364. a[ye] = function(b) {
  2365. this[Db] = q;
  2366. this[xg](b)
  2367. };
  2368. a[nv] = function(b) {
  2369. var a = this[Ed] && this[Ed][Ae] || g,
  2370. d = this[Td] || this[lb][Td];
  2371. b = d && b != e ? b / (Rd / d) : g;
  2372. this[Ed] ? this[Fd] += b * a: this[mc] += b * a;
  2373. this[hh]()
  2374. };
  2375. a[Ke] = a[hb];
  2376. a[hb] = function() {
  2377. return this[Ke]() || this[lb][Ax](this[Zj], this[oe])
  2378. };
  2379. a[la] = function() {
  2380. var b = new c(this[lb]);
  2381. this[Rc](b);
  2382. return b
  2383. };
  2384. a[da] = function() {
  2385. return EC + this[yb] + sc
  2386. };
  2387. a[ah] = a[dc];
  2388. a[dc] = function(b) {
  2389. if (!this[Db]) this[nv](b && b[Hg]);
  2390. this[ah](b)
  2391. };
  2392. a[hh] = function() {
  2393. var b = this[Ed],
  2394. a = this[Db],
  2395. c = this[mc],
  2396. e = this[Fd],
  2397. m;
  2398. if (b) if (m = b[Va][r], (e | d) >= m) {
  2399. var h = b[U];
  2400. if (!this[lo](b, c, a, h, m - g)) {
  2401. if (h) return this[xg](h, e - m);
  2402. this[Db] = q;
  2403. e = this[Fd] = b[Va][r] - g;
  2404. this[mc] = b[Va][e]
  2405. }
  2406. } else this[mc] = b[Va][e | d];
  2407. else if (m = this[lb][Sw](), c >= m && !this[lo](b, c, a, m - g) && (this[mc] -= m) >= m) return this[hh]();
  2408. this[Zj] = this[mc] | d
  2409. };
  2410. a[lo] = function(b, a, d, c, g) {
  2411. var u = b ? b[yb] : e;
  2412. if (this[Zb](Mt)) {
  2413. var k = new h[Ca](Mt);
  2414. k[yb] = u;
  2415. k[U] = c;
  2416. this[Ra](k)
  2417. }
  2418. b = this[Ed] != b || this[mc] != a;
  2419. b || (d || !this[Db]) || (this[Fd] = g, b = q);
  2420. return b
  2421. };
  2422. a[bl] = a[Rc];
  2423. a[Rc] = function(b) {
  2424. this[bl](b);
  2425. b[Zj] = this[Zj];
  2426. b[mc] = this[mc];
  2427. b[Pi] = this[Pi];
  2428. b[Db] = this[Db];
  2429. b[Ed] = this[Ed];
  2430. b[Fd] = this[Fd];
  2431. b[Td] = this[Td]
  2432. };
  2433. a[xg] = function(b, a) {
  2434. if (Lb(b)) {
  2435. var c = this[lb][ji](b);
  2436. c && (this[Fd] = a || d, this[Ed] = c, this[Pi] = b, this[hh]())
  2437. } else this[Fd] = d,
  2438. this[Pi] = this[Ed] = e,
  2439. this[mc] = b,
  2440. this[hh]()
  2441. };
  2442. h[Hj] = c
  2443. })(); (function() {
  2444. ba;
  2445. var d = [HC, aa, UG, aa][R](E);
  2446. if (!h[Hj]) throw d; (h[IC] = function(a) {
  2447. this[y](a)
  2448. })[G] = new h[Hj]
  2449. })(); (function() {
  2450. ba;
  2451. var c = function(b) {
  2452. this[y](b)
  2453. },
  2454. a = c[G] = new h[se];
  2455. a[gb] = e;
  2456. a[Hc] = a[y];
  2457. a[y] = function(b) {
  2458. this[Hc]();
  2459. this[gb] = b ? b: new h[Qs]
  2460. };
  2461. a[Id] = function() {
  2462. var b = this[fb] || this[gb] && !this[gb][Sl]();
  2463. return !! (this[Aa] && this[ma] > d && this[nb] != d && this[mb] != d && b)
  2464. };
  2465. a[cd] = a[Wa];
  2466. a[Wa] = function(b, a) {
  2467. if (this[cd](b, a)) return q;
  2468. this[gb][Wa](b, this);
  2469. return q
  2470. };
  2471. a[la] = function(b) {
  2472. b = new c(b && this[gb] ? this[gb][la]() : this[gb]);
  2473. this[Rc](b);
  2474. return b
  2475. };
  2476. a[da] = function() {
  2477. return JC + this[yb] + sc
  2478. };
  2479. h[ag] = c
  2480. })(); (function() {
  2481. ba;
  2482. var c = function(b, a, d) {
  2483. this[y](b, a, d)
  2484. },
  2485. a = c[G] = new h[se],
  2486. b = h[Hb] ? h[Hb]() : Z[sa](K);
  2487. b[Ia] && (c[$f] = b[Ia](Ib), b[C] = b[D] = g);
  2488. c[Nt] = function(b, a, d, c, g, e) {
  2489. b[If] = a;
  2490. b[Lc] = d;
  2491. b[KC] = c;
  2492. b[qe] = g;
  2493. b[Vk] = e;
  2494. return b
  2495. } ({},
  2496. d, d, -ia, -g, -g);
  2497. c[Ip] = function(b, a, d, c, g, e, h) {
  2498. b[bc] = a;
  2499. b[LC] = d;
  2500. b[SG] = c;
  2501. b[MC] = g;
  2502. b[RG] = e;
  2503. b[Wk] = h;
  2504. return b
  2505. } ({},
  2506. d, -cl, -Il, -ym, -OG, -g);
  2507. a[V] = E;
  2508. a[Pj] = e;
  2509. a[Cb] = e;
  2510. a[ih] = Lc;
  2511. a[Yf] = bc;
  2512. a[ed] = e;
  2513. a[Oh] = d;
  2514. a[Oc] = d;
  2515. a[Ge] = e;
  2516. a[Hc] = a[y];
  2517. a[y] = function(b, a, d) {
  2518. this[Hc]();
  2519. this[V] = b;
  2520. this[Pj] = a;
  2521. this[Cb] = d
  2522. };
  2523. a[Id] = function() {
  2524. var b = this[fb] || this[V] != e && this[V] !== E;
  2525. return !! (this[Aa] && this[ma] > d && this[nb] != d && this[mb] != d && b)
  2526. };
  2527. a[cd] = a[Wa];
  2528. a[Wa] = function(b, a) {
  2529. if (this[cd](b, a)) return q;
  2530. var d = this[Cb] || Iv;
  2531. this[Oh] ? (b[Js] = d, b[Ge] = this[Oh] * g) : b[Mj] = d;
  2532. this[Qi](this[kj](b));
  2533. return q
  2534. };
  2535. a[QC] = function() {
  2536. return this[kj](c[$f])[Jf](this[V])[C]
  2537. };
  2538. a[Hl] = function() {
  2539. return this[kj](c[$f])[Jf](Ww)[C] * Ow
  2540. };
  2541. a[LG] = function() {
  2542. return this[Qi](e, {})[D]
  2543. };
  2544. a[Ke] = a[hb];
  2545. a[hb] = function() {
  2546. var b = this[Ke]();
  2547. if (b) return b;
  2548. if (this[V] == e || this[V] == E) return e;
  2549. var b = this[Qi](e, {}),
  2550. a = this[ed] && this[ed] < b[C] ? this[ed] : b[C],
  2551. d = a * c[Nt][this[ih] || Lc],
  2552. g = (this[Oc] || this[Hl]()) * c[Ip][this[Yf] || bc];
  2553. return this[oe][y](d, g, a, b[D])
  2554. };
  2555. a[EK] = function() {
  2556. var b = {};
  2557. b[gv] = [];
  2558. b[Oc] = this[Oc] || this[Hl]();
  2559. b[KG] = b[Oc] * c[Ip][this[Yf] || bc];
  2560. return this[Qi](e, b, b[gv])
  2561. };
  2562. a[la] = function() {
  2563. var b = new c(this[V], this[Pj], this[Cb]);
  2564. this[Rc](b);
  2565. return b
  2566. };
  2567. a[da] = function() {
  2568. return sL + (this[V][r] > qd ? this[V][Ut](d, F) + [aa, aa, aa][R](E) : this[V]) + sc
  2569. };
  2570. a[bl] = a[Rc];
  2571. a[Rc] = function(b) {
  2572. this[bl](b);
  2573. b[ih] = this[ih];
  2574. b[Yf] = this[Yf];
  2575. b[ed] = this[ed];
  2576. b[Oh] = this[Oh];
  2577. b[Oc] = this[Oc];
  2578. b[Ge] = this[Ge]
  2579. };
  2580. a[kj] = function(b) {
  2581. b[Pj] = this[Pj];
  2582. b[ih] = this[ih] || Lc;
  2583. b[Yf] = this[Yf] || bc;
  2584. return b
  2585. };
  2586. a[Qi] = function(b, a, M) {
  2587. var m = !!b;
  2588. m || (b = this[kj](c[$f]));
  2589. for (var h = this[Oc] || this[Hl](), k = d, l = d, q = mh(this[V])[jj]($J), p = d, z = q[r]; p < z; p++) {
  2590. var Ta = q[p],
  2591. v = e;
  2592. if (this[Ge] != e && (v = b[Jf](Ta)[C]) > this[Ge]) for (var J = Ta[jj](VC), Ta = J[d], v = b[Jf](Ta)[C], s = g, w = J[r]; s < w; s += n) {
  2593. var B = b[Jf](J[s] + J[s + g])[C];
  2594. if (v + B > this[Ge]) {
  2595. if (m) this[iq](b, Ta, l * h);
  2596. if (M) M[S](Ta);
  2597. v > k && (k = v);
  2598. Ta = J[s + g];
  2599. v = b[Jf](Ta)[C];
  2600. l++
  2601. } else Ta += J[s] + J[s + g],
  2602. v += B
  2603. }
  2604. if (m) this[iq](b, Ta, l * h);
  2605. if (M) M[S](Ta);
  2606. a && v == e && (v = b[Jf](Ta)[C]);
  2607. v > k && (k = v);
  2608. l++
  2609. }
  2610. a && (a[C] = k, a[D] = l * h);
  2611. return a
  2612. };
  2613. a[iq] = function(b, a, c) {
  2614. if (this[Oh]) b[IG](a, d, c, this[ed] || Wt);
  2615. else b[XC](a, d, c, this[ed] || Wt)
  2616. };
  2617. h[GG] = c
  2618. })(); (function() {
  2619. function c(b, a) {
  2620. this[y](b, a)
  2621. }
  2622. ba;
  2623. var a = c[G] = new h[Xp];
  2624. c[uo] = fa;
  2625. c[Xt] = [];
  2626. a[V] = E;
  2627. a[lb] = e;
  2628. a[Oc] = d;
  2629. a[gp] = d;
  2630. a[fp] = d;
  2631. a[Nq] = e;
  2632. a[Rk] = a[y];
  2633. a[y] = function(b, a) {
  2634. this[Rk]();
  2635. this[V] = b;
  2636. this[lb] = a;
  2637. var c = {},
  2638. g = d,
  2639. e = d,
  2640. h = d,
  2641. k = d;
  2642. c[V] = d;
  2643. c[lb] = g;
  2644. c[Oc] = e;
  2645. c[gp] = h;
  2646. c[fp] = k;
  2647. this[Nq] = c
  2648. };
  2649. a[tx] = a[Wa];
  2650. a[Wa] = function(b, a) {
  2651. this[cd](b, a) || (this[gq](), this[tx](b, a))
  2652. };
  2653. a[au] = a[hb];
  2654. a[hb] = function() {
  2655. this[gq]();
  2656. return this[au]()
  2657. };
  2658. a[Id] = function() {
  2659. var b = this[fb] || this[lb] && this[lb][ub] && this[V];
  2660. return !! (this[Aa] && this[ma] > d && this[nb] != d && this[mb] != d && b)
  2661. };
  2662. a[wo] = function(b, a) {
  2663. var c, g = a[ji](b);
  2664. g || (b != (c = b[JK]()) || b != (c = b[Cm]()) || (c = e), c && (g = a[ji](c)));
  2665. return g && g[Va][d]
  2666. };
  2667. a[ee] = function(b, a) {
  2668. var d = this[wo](b, a);
  2669. return d == e ? d: a[Zf](d)
  2670. };
  2671. a[Lw] = function(b) {
  2672. return (b = this[ee](Nl, b) || this[ee](mq, b) || this[ee](Ir, b) || b[Zf](d)) ? b[qb][D] : g
  2673. };
  2674. a[Ex] = function(b) {
  2675. return (b = this[ee](Nl, b) || this[ee](Mr, b) || this[ee](Mg, b) || this[ee](P, b) || b[Zf](d)) ? b[qb][C] : g
  2676. };
  2677. a[gq] = function() {
  2678. var b = d,
  2679. a = d,
  2680. t = this[Nq],
  2681. M = l,
  2682. m = this[fp],
  2683. u = this[Oc],
  2684. k = this[lb],
  2685. pb = c[Xt],
  2686. n = this[ua],
  2687. p = d,
  2688. z = n[r],
  2689. s,
  2690. v;
  2691. for (v in t) t[v] != this[v] && (t[v] = this[v], M = q);
  2692. if (M) { (t = !!this[ee](Kf, k)) || m != d || (m = this[Ex](k));
  2693. u == d && (u = this[Lw](k));
  2694. M = d;
  2695. for (v = this[V][r]; M < v; M++) if (s = this[V][Tg](M), s != Kf || t) if (s == Si || s == xo) s == xo && this[V][Tg](M + g) == Si && M++,
  2696. b = d,
  2697. a += u;
  2698. else {
  2699. var J = this[wo](s, k);
  2700. J != e && (p < z ? s = n[p] : (s = this[Kc](pb[r] ? pb[mg]() : new h[Hj]), z++), s[lb] = k, s[ye](J), s[B] = b, s[w] = a, p++, b += s[hb]()[C] + this[gp])
  2701. } else b += m;
  2702. for (; z > p;) pb[S](s = n[mg]()),
  2703. s[Za] = e;
  2704. pb[r] > c[uo] && (pb[r] = c[uo])
  2705. }
  2706. };
  2707. h[KJ] = c
  2708. })(); (function() {
  2709. ba;
  2710. var c = function() {
  2711. throw cD;
  2712. },
  2713. a = h[Hb] ? h[Hb]() : Z[sa](K);
  2714. a[Ia] && (c[cp] = a, c[$f] = a[Ia](Ib), a[C] = a[D] = g);
  2715. c[eD] = function(b, a, t, g) {
  2716. if (a || t || g) {
  2717. var e = d;
  2718. if (a) c[qm](b, ++e, q, l);
  2719. if (t) c[qm](b, ++e, l, q);
  2720. if (g) c[qm](b, ++e, q, q)
  2721. }
  2722. };
  2723. c[HJ] = function(b, a) {
  2724. Lb(a) && (a = b[ji](a)[Va][d]);
  2725. var t = b[Zf](a);
  2726. if (!t) return e;
  2727. var g = t[qb],
  2728. m = c[cp];
  2729. m[C] = g[C];
  2730. m[D] = g[D];
  2731. c[$f][Dc](t[qa], g[B], g[w], g[C], g[D], d, d, g[C], g[D]);
  2732. t = Z[sa](Ud);
  2733. t[ja] = m[Ci]([qa, Vb, Ii][R](E));
  2734. return t
  2735. };
  2736. c[hD] = function(b, a, c) {
  2737. c || (c = h[Hb] ? h[Hb]() : Z[sa](K));
  2738. c[C] = p[Lf](a[C], b[C]);
  2739. c[D] = p[Lf](a[D], b[D]);
  2740. var g = c[Ia](Ib);
  2741. g[$e]();
  2742. g[Dc](b, d, d);
  2743. g[Ag] = $u;
  2744. g[Dc](a, d, d);
  2745. g[Fe]();
  2746. return c
  2747. };
  2748. c[qm] = function(b, a, t, e) {
  2749. for (var m = b[rg], h = c[cp], k = c[$f], l = m[r] / a, q = d; q < l; q++) {
  2750. var n = m[q];
  2751. n[Gw] = q;
  2752. k[rc](g, d, d, g, d, d);
  2753. k[ie](d, d, h[C] + g, h[D] + g);
  2754. h[C] = n[C];
  2755. h[D] = n[D];
  2756. k[rc](t ? -g: g, d, d, e ? -g: g, t ? n[C] : d, e ? n[D] : d);
  2757. k[Dc](n, d, d);
  2758. var p = Z[sa](Ud);
  2759. p[ja] = h[Ci]([qa, Vb, Ii][R](E));
  2760. p[C] = n[C];
  2761. p[D] = n[D];
  2762. m[S](p)
  2763. }
  2764. k = b[Ua];
  2765. h = k[r] / a;
  2766. for (q = d; q < h; q++) {
  2767. var n = k[q],
  2768. s = n[qb][la](),
  2769. p = m[n[qa][Gw] + l * a],
  2770. v = function(b, a, f, d, c) {
  2771. b[qa] = a;
  2772. b[qb] = f;
  2773. b[Ma] = d;
  2774. b[Oa] = c;
  2775. return b
  2776. } ({},
  2777. p, s, n[Ma], n[Oa]);
  2778. t && (s[B] = p[C] - s[B] - s[C], v[Ma] = s[C] - n[Ma]);
  2779. e && (s[w] = p[D] - s[w] - s[D], v[Oa] = s[D] - n[Oa]);
  2780. k[S](v)
  2781. }
  2782. t = JL + (t ? Cc: E) + (e ? tk: E);
  2783. e = b[gd];
  2784. b = b[kb];
  2785. m = e[r] / a;
  2786. for (q = d; q < m; q++) {
  2787. k = e[q];
  2788. n = b[k];
  2789. l = function(b, a, f, d, c) {
  2790. b[yb] = a;
  2791. b[Ae] = f;
  2792. b[U] = d;
  2793. b[Va] = c;
  2794. return b
  2795. } ({},
  2796. k + t, n[Ae], n[U], []);
  2797. n[U] && (l[U] += t);
  2798. k = n[Va];
  2799. n = d;
  2800. for (p = k[r]; n < p; n++) l[Va][S](k[n] + h * a);
  2801. b[l[yb]] = l;
  2802. e[S](l[yb])
  2803. }
  2804. };
  2805. h[jD] = c
  2806. })(); (function() {
  2807. ba;
  2808. var c = function() {
  2809. this[y]()
  2810. },
  2811. a = c[G] = new h[ue];
  2812. c[yo] = aM;
  2813. c[th] = vG;
  2814. a[ed] = du;
  2815. a[nm] = du;
  2816. a[lb] = e;
  2817. a[we] = g;
  2818. a[Xu] = g;
  2819. a[el] = bf;
  2820. a[Qa] = -g;
  2821. a[Ua] = e;
  2822. a[gd] = e;
  2823. a[kb] = e;
  2824. a[dL] = d;
  2825. a[Ti] = d;
  2826. a[lm] = e;
  2827. a[km] = g;
  2828. a[y] = function() {
  2829. this[Ua] = [];
  2830. this[gd] = {}
  2831. };
  2832. a[Wu] = function(b, a, d, h, m) {
  2833. if (this[kb]) throw c[th];
  2834. a = a || b[eu] || b[fu]; ! a && b[hb] && (a = b[hb]());
  2835. if (!a) return e;
  2836. d = d || g;
  2837. return this[Ua][S](function(b, a, f, d, c, t, g, e) {
  2838. b[Gm] = a;
  2839. b[fe] = f;
  2840. b[we] = d;
  2841. b[zo] = c;
  2842. b[td] = t;
  2843. b[Vf] = g;
  2844. b[D] = e;
  2845. return b
  2846. } ({},
  2847. b, a, d, h, m, this[Ua][r], a[D] * d)) - g
  2848. };
  2849. a[gu] = function(b, a, d, g) {
  2850. if (this[kb]) throw c[th];
  2851. var e = this[gd],
  2852. h = {};
  2853. h[Va] = a;
  2854. h[U] = d;
  2855. h[lG] = g;
  2856. e[b] = h
  2857. };
  2858. a[mJ] = function(b, a, t, e, h, k) {
  2859. if (this[kb]) throw c[th];
  2860. var l = b[kJ],
  2861. n = a || b[eu] || b[fu]; ! n && b[hb] && (n = b[hb]());
  2862. if (n || l) {
  2863. var p, s;
  2864. a = this[Ua][r];
  2865. var z = b[hu][Fa];
  2866. for (p = d; p < z; p++) this[Wu](b, l && l[p] ? l[p] : n, t, this[iu],
  2867. function(b, a, f, d) {
  2868. b[sk] = a;
  2869. b[Ja] = f;
  2870. b[W] = d;
  2871. return b
  2872. } ({},
  2873. p, e, h));
  2874. p = b[hu][jh];
  2875. t = [];
  2876. for (s in p) t[S](function(b, a, f) {
  2877. b[Vf] = a;
  2878. b[ej] = f;
  2879. return b
  2880. } ({},
  2881. p[s], s));
  2882. if (t[r]) for (t[Ei](function(b, a) {
  2883. return b[Vf] - a[Vf]
  2884. }), p = d, s = t[r]; p < s; p++) {
  2885. e = t[p][ej];
  2886. h = a + t[p][Vf];
  2887. for (var l = a + (p == s - g ? z: t[p + g][Vf]), n = [], C = h; C < l; C++) n[S](C);
  2888. if (k && (e = k(e, b, h, l), !e)) continue;
  2889. this[gu](e, n, q)
  2890. }
  2891. }
  2892. };
  2893. a[BD] = function() {
  2894. if (this[kb]) throw c[th];
  2895. for (this[Ao](); this[Bo](););
  2896. this[Yo]();
  2897. return this[lb]
  2898. };
  2899. a[jG] = function(b) {
  2900. if (this[kb]) throw c[th];
  2901. this[el] = b;
  2902. this[Ao]();
  2903. var a = this;
  2904. this[lm] = pc(function() {
  2905. a[Co]()
  2906. },
  2907. Qd - p[Lf](cl, p[re](ju, this[el] || bf)) * Qd)
  2908. };
  2909. a[iG] = function() {
  2910. qf(this[lm]);
  2911. this[kb] = e
  2912. };
  2913. a[la] = function() {
  2914. throw [FD, aa][R](E);
  2915. };
  2916. a[da] = function() {
  2917. return hG
  2918. };
  2919. a[Ao] = function() {
  2920. var b = this[Xu] || d;
  2921. this[Qa] = d;
  2922. this[lb] = e;
  2923. this[Ti] = d;
  2924. this[km] = this[we];
  2925. var a = [];
  2926. this[kb] = function(b, a, f, d) {
  2927. b[sg] = a;
  2928. b[Va] = f;
  2929. b[mn] = d;
  2930. return b
  2931. } ({},
  2932. [], a, this[gd]);
  2933. var t = this[Ua][$a]();
  2934. t[Ei](function(b, a) {
  2935. return b[D] <= a[D] ? -g: g
  2936. });
  2937. if (t[t[r] - g][D] + b * n > this[nm]) throw c[yo];
  2938. for (var M = d,
  2939. m = d,
  2940. k = d; t[r];) {
  2941. var l = this[lu](t, M, k, a, b);
  2942. l[Yc] > m && (m = l[Yc]);
  2943. M += l[Cc];
  2944. if (!l[Cc] || !t[r]) {
  2945. var q = h[Hb] ? h[Hb]() : Z[sa](K);
  2946. q[C] = this[Xo](m, this[ed]);
  2947. q[D] = this[Xo](M, this[nm]);
  2948. this[kb][sg][k] = q;
  2949. l[Cc] || (m = M = d, k++)
  2950. }
  2951. }
  2952. };
  2953. a[iu] = function(b, a) {
  2954. var d = b[lk];
  2955. b[lk] = l;
  2956. b[ye](a[sk]);
  2957. b[lk] = d;
  2958. a[Ja] && a[Ja](b, a[W], a[sk])
  2959. };
  2960. a[Xo] = function(b, a) {
  2961. for (var d = Pa; p[Ec](n, ++d) < b;);
  2962. return p[re](a, p[Ec](n, d))
  2963. };
  2964. a[lu] = function(b, a, t, e, m) {
  2965. var k = this[ed],
  2966. l = this[nm];
  2967. a += m;
  2968. for (var q = l - a,
  2969. l = m,
  2970. s = d,
  2971. A = b[r] - g; A >= d; A--) {
  2972. var z = b[A],
  2973. x = this[km] * z[we],
  2974. v = z[fe],
  2975. J = z[Gm],
  2976. y = p[mu](x * v[B] - m),
  2977. E = p[mu](x * v[w] - m),
  2978. F = p[Yg](x * v[D] + m * n),
  2979. v = p[Yg](x * v[C] + m * n);
  2980. if (v > k) throw c[yo];
  2981. F > q || l + v > k || (z[Ud] = t, z[qb] = new h[Qe](l, a, v, F), s = s || F, b[Qb](A, g), e[z[Vf]] = [l, a, v, F, t, p[he]( - y + x * J[Ma] - m), p[he]( - E + x * J[Oa] - m)], l += v)
  2982. }
  2983. b = {};
  2984. b[Yc] = l;
  2985. b[Cc] = s;
  2986. return b
  2987. };
  2988. a[Yo] = function() {
  2989. this[lb] = new h[on](this[kb]);
  2990. this[kb] = e;
  2991. this[Qa] = g;
  2992. this[Ra](ub)
  2993. };
  2994. a[Co] = function() {
  2995. for (var b = p[Lf](cl, p[re](ju, this[el] || bf)) * Qd, a = (new Od)[Hh]() + b, d = l; a > (new Od)[Hh]();) if (!this[Bo]()) {
  2996. d = q;
  2997. break
  2998. }
  2999. if (d) this[Yo]();
  3000. else {
  3001. var c = this;
  3002. this[lm] = pc(function() {
  3003. c[Co]()
  3004. },
  3005. Qd - b)
  3006. }
  3007. b = this[Qa] = this[Ti] / this[Ua][r];
  3008. this[Zb](Qa) && (a = new h[Ca](Qa), a[Qa] = b, this[Ra](a))
  3009. };
  3010. a[Bo] = function() {
  3011. var b = this[Ua][this[Ti]],
  3012. a = b[we] * this[km],
  3013. d = b[qb],
  3014. c = b[fe],
  3015. g = this[kb][sg][b[Ud]][Ia](Ib);
  3016. b[zo] && b[zo](b[Gm], b[td]);
  3017. g[$e]();
  3018. g[bm]();
  3019. g[qb](d[B], d[w], d[C], d[D]);
  3020. g[Pp]();
  3021. g[bn](p[Yg](d[B] - c[B] * a), p[Yg](d[w] - c[w] * a));
  3022. g[we](a, a);
  3023. b[Gm][Wa](g);
  3024. g[Fe]();
  3025. return++this[Ti] < this[Ua][r]
  3026. };
  3027. h[HD] = c
  3028. })(); (function() {
  3029. ba;
  3030. var c = function(b) {
  3031. this[y](b)
  3032. },
  3033. a = c[G] = new h[se];
  3034. a[fl] = e;
  3035. a[Dq] = e;
  3036. a[eL] = l;
  3037. a[Hc] = a[y];
  3038. a[y] = function(b) {
  3039. typeof b == fc && (b = Z[Jq](b));
  3040. this[Hc]();
  3041. this[Vj] = l;
  3042. this[fl] = b;
  3043. b = b[Xa];
  3044. b[Mb] = Ui;
  3045. b[LD] = b[MD] = b[ND] = b[fJ] = b[rL] = $F
  3046. };
  3047. a[Id] = function() {
  3048. return this[fl] != e
  3049. };
  3050. a[Wa] = function(b, a) {
  3051. return q
  3052. };
  3053. a[Yl] = function() {};
  3054. a[Nk] = function() {};
  3055. a[Tn] = function() {};
  3056. a[Iq] = function() {};
  3057. a[$i] = function() {};
  3058. a[fj] = function() {};
  3059. a[ft] = function() {};
  3060. a[la] = function() {
  3061. throw [RD, aa][R](E);
  3062. };
  3063. a[da] = function() {
  3064. return tL + this[yb] + sc
  3065. };
  3066. a[ah] = a[dc];
  3067. a[dc] = function(b) {
  3068. var a = this[et]();
  3069. a && a[Pc](Ev, this[nu], this, q);
  3070. this[ah](b)
  3071. };
  3072. a[nu] = function(b) {
  3073. if (b = this[fl]) {
  3074. b = b[Xa];
  3075. var a = this[Zg](this[xc]),
  3076. c = a[Aa] ? Aa: ou;
  3077. c != b[Aj] && (b[Aj] = c);
  3078. if (a[Aa] && (c = this[Dq], c && c[ma] == a[ma] || (b[yw] = E + (a[ma] * Bd | d) / Bd, c && (c[ma] = a[ma])), !c || c[X] != a[X] || c[Y] != a[Y] || c[P] != a[P] || c[T] != a[T] || c[$] != a[$] || c[W] != a[W])) {
  3079. var g = TD + (a[P] * Bd | d) / Bd + ec + (a[T] * Bd | d) / Bd + ec + (a[$] * Bd | d) / Bd + ec + (a[W] * Bd | d) / Bd + ec + (a[X] + ia | d);
  3080. b[wj] = b[UD] = b[VD] = b[WD] = g + ec + (a[Y] + ia | d) + Wj;
  3081. b[XD] = g + UF + (a[Y] + ia | d) + YL;
  3082. this[Dq] = c ? c[Nh](a) : a[la]()
  3083. }
  3084. }
  3085. };
  3086. h[YD] = c
  3087. })(); (function() {
  3088. ba;
  3089. var d = function() {
  3090. this[y]()
  3091. },
  3092. a = d[G];
  3093. a[y] = function() {};
  3094. a[hb] = function() {
  3095. return e
  3096. };
  3097. a[fg] = function(b, a, d, c, g, e, h, k) {};
  3098. a[da] = function() {
  3099. return IL
  3100. };
  3101. a[la] = function() {
  3102. return new d
  3103. };
  3104. h[kh] = d
  3105. })(); (function() {
  3106. ba;
  3107. var c = function(b, a, d) {
  3108. this[y](b, a, d)
  3109. },
  3110. a = c[G] = new h[kh];
  3111. a[y] = function(b, a, c) {
  3112. if (Lb(b) || b < d) b = d;
  3113. this[lh] = b | d;
  3114. if (Lb(a) || a < d) a = d;
  3115. this[rh] = a | d;
  3116. if (Lb(c) || c < g) c = g;
  3117. this[Vi] = c | d
  3118. };
  3119. a[lh] = d;
  3120. a[rh] = d;
  3121. a[Vi] = g;
  3122. a[Wp] = [g, Mf, bE, cE, Wr, dE, jx, Wi, eE, Hq, XK, qh, zn, mi, OF, Eo, MF, LF, GI, gE, rd, hE, EI, PL, gx, qu, jf, Of, Mc, em, ru, cm, lE, Xi, IF, Yi, nE, gM, Qo, oE, QK, pE, qE, rE, sE, DF, tE, ol, tu, uu, BF, Ne, cj, Oo, uE, Yj, vu, ph, wu, Oe, $w, Pe, Ju, ql, yE, zE, AE, BE, CE, Ko, DE, oI, tg, mI, yk, GE, IK, HE, wl, GK, Eh, kI, yu, KE, Hu, ha, CK, gF, NE, OE, fF, QE, Au, Op, yj, An, aj, Qf, TE, Zi, No, Fu, Ka, ce, nh, XE, sl, tl, Eu, Bu, ZE, Cq, Mp, cc, Mo, Lo, zd, sw, aF, $l, Ad, ul, Lp, de, ni, cF, $E, O, YE, rK, WE, eF, VE, UE, zc, yd, SE, RE, PE, ME, zK, hF, jb, lM, oh, iF, Ce, jF, zu, jI, kF, LE, Iu, JE, mF, xu, IE, oF, pF, qF, HK, be, rl, FE, EE, xE, vx, Ur, vF, wE, wF, vE, Pf, UL, Tr, pI, Jc, pl, Gd, Yb, ib, Ku, Fw, TL, gc, Jo, Wh, su, Po, EF, ol, FF, GF, Io, Qf, vn, Ro, uq, uu, So, No, mM, wq, Fu, xd, Ne, ow, jx, mE, cj, Dh, jf, Pu, Oo, Ho, tl, Eu, xl, Bu, nl, Of, Yj, kE, ex, Mp, jE, vu, cc, Mo, dj, ph, Lo, zd, wu, wg, sw, ml, Oe, $l, Wi, Uo, F, $w, ul, ru, Pe, de, Eo, ni, Ju, iE, cm, Go, ql, O, ll, g];
  3123. a[Fo] = [d, Mc, Ba, Wh, Mc, lf, Ba, Wh, lf, Mc, vb, vb, Ba, Mc, vb, vb, N, N, N, N, Ba, vb, N, N, N, vb, vb, vb, Mc, N, N, N, Q, N, Q, N, Q, Q, N, Q, Q, Q, N, Q, Q, Q, Q, Q, N, Q, Q, Q, Q, Q, Q, lf, N, Q, Q, vb, Q, Q, Q, Q, x, x, x, Q, x, N, x, x, N, x, vb, x, x, x, Q, x, vb, x, Q, x, N, Mc, x, x, x, x, x, x, x, x, x, vb, N, x, x, Q, x, x, Ba, x, Q, x, N, x, x, N, x, x, N, x, x, N, Q, x, x, x, N, Q, N, Q, vb, x, x, Q, F, F, F, F, F, F, N, Q, F, F, x, x, F, x, Q, F, x, F, Wh, F, x, F, x, F, x, F, F, x, F, F, x, F, F, x, x, F, F, F, x, N, F, F, F, F, Q, x, N, x, Q, x, vb, x, Q, x, N, x, Q, x, lf, x, Q, x, F, F, F, F, F, vb, x, Q, F, F, F, x, Q, F, F, F, x, Q, F, F, N, x, F, F, x, F, F, x, Q, F, x, N, F, x, Q, F, x, F, F, x, F, Q, x, F, N, F, x, Q, F, x, F, vb, F, x, F, F, x, F, N, F, x, F, x, F, x, F, Mc];
  3124. a[hb] = function() {
  3125. var b = p[Ec](this[Vi], zl) * ia;
  3126. return new h[Qe]( - this[lh] * b, -this[rh] * b, n * this[lh] * b, n * this[rh] * b)
  3127. };
  3128. a[fg] = function(b, a, c, h, m, k, r, p) {
  3129. k = k || b;
  3130. r == e && (r = a);
  3131. p == e && (p = c);
  3132. try {
  3133. var s = b[lg](a, c, h, m)
  3134. } catch(C) {
  3135. return l
  3136. }
  3137. b = this[lh] / n;
  3138. if (Lb(b) || b < d) return l;
  3139. b |= d;
  3140. var z = this[rh] / n;
  3141. if (Lb(z) || z < d) return l;
  3142. z |= d;
  3143. if (b == d && z == d) return l;
  3144. var A = this[Vi];
  3145. if (Lb(A) || A < g) A = g;
  3146. A |= d;
  3147. A > ha && (A = ha);
  3148. A < g && (A = g);
  3149. var v = s[td],
  3150. J,
  3151. w,
  3152. B,
  3153. x,
  3154. D,
  3155. y,
  3156. E,
  3157. F,
  3158. G,
  3159. H,
  3160. I,
  3161. L,
  3162. Q = b + b + g;
  3163. x = z + z + g;
  3164. var O = h - g,
  3165. S = m - g,
  3166. R = b + g,
  3167. La = z + g,
  3168. of = function(b, a, La, f, d, c) {
  3169. b[Na] = a;
  3170. b[T] = La;
  3171. b[$b] = f;
  3172. b[P] = d;
  3173. b[U] = c;
  3174. return b
  3175. } ({},
  3176. d, d, d, d, e);
  3177. a = of;
  3178. for (J = g; J < Q; J++) a = a[U] = function(b, a, La, f, d, c) {
  3179. b[Na] = a;
  3180. b[T] = La;
  3181. b[$b] = f;
  3182. b[P] = d;
  3183. b[U] = c;
  3184. return b
  3185. } ({},
  3186. d, d, d, d, e);
  3187. a[U] = of;
  3188. c = Q = function(b, a, La, f, d, c) {
  3189. b[Na] = a;
  3190. b[T] = La;
  3191. b[$b] = f;
  3192. b[P] = d;
  3193. b[U] = c;
  3194. return b
  3195. } ({},
  3196. d, d, d, d, e);
  3197. for (J = g; J < x; J++) c = c[U] = function(b, a, La, f, d, c) {
  3198. b[Na] = a;
  3199. b[T] = La;
  3200. b[$b] = f;
  3201. b[P] = d;
  3202. b[U] = c;
  3203. return b
  3204. } ({},
  3205. d, d, d, d, e);
  3206. c[U] = Q;
  3207. for (J = e; A-->d;) {
  3208. D = x = d;
  3209. var Ha = this[Wp][b],
  3210. K = this[Fo][b];
  3211. for (c = m; --c > -g;) {
  3212. y = R * (H = v[x]);
  3213. E = R * (I = v[x + g]);
  3214. F = R * (L = v[x + n]);
  3215. G = R * (B = v[x + ha]);
  3216. a = of;
  3217. for (J = R; --J > -g;) a[Na] = H,
  3218. a[$b] = I,
  3219. a[T] = L,
  3220. a[P] = B,
  3221. a = a[U];
  3222. for (J = g; J < R; J++) w = x + ((O < J ? O: J) << n),
  3223. y += a[Na] = v[w],
  3224. E += a[$b] = v[w + g],
  3225. F += a[T] = v[w + n],
  3226. G += a[P] = v[w + ha],
  3227. a = a[U];
  3228. J = of;
  3229. for (a = d; a < h; a++) v[x++] = y * Ha >>> K,
  3230. v[x++] = E * Ha >>> K,
  3231. v[x++] = F * Ha >>> K,
  3232. v[x++] = G * Ha >>> K,
  3233. w = D + ((w = a + b + g) < O ? w: O) << n,
  3234. y -= J[Na] - (J[Na] = v[w]),
  3235. E -= J[$b] - (J[$b] = v[w + g]),
  3236. F -= J[T] - (J[T] = v[w + n]),
  3237. G -= J[P] - (J[P] = v[w + ha]),
  3238. J = J[U];
  3239. D += h
  3240. }
  3241. Ha = this[Wp][z];
  3242. K = this[Fo][z];
  3243. for (a = d; a < h; a++) {
  3244. x = a << n;
  3245. y = La * (H = v[x]);
  3246. E = La * (I = v[x + g]);
  3247. F = La * (L = v[x + n]);
  3248. G = La * (B = v[x + ha]);
  3249. c = Q;
  3250. for (J = d; J < La; J++) c[Na] = H,
  3251. c[$b] = I,
  3252. c[T] = L,
  3253. c[P] = B,
  3254. c = c[U];
  3255. B = h;
  3256. for (J = g; J <= z; J++) x = B + a << n,
  3257. y += c[Na] = v[x],
  3258. E += c[$b] = v[x + g],
  3259. F += c[T] = v[x + n],
  3260. G += c[P] = v[x + ha],
  3261. c = c[U],
  3262. J < S && (B += h);
  3263. x = a;
  3264. J = Q;
  3265. if (A > d) for (c = d; c < m; c++) w = x << n,
  3266. v[w + ha] = B = G * Ha >>> K,
  3267. B > d ? (v[w] = y * Ha >>> K, v[w + g] = E * Ha >>> K, v[w + n] = F * Ha >>> K) : v[w] = v[w + g] = v[w + n] = d,
  3268. w = a + ((w = c + La) < S ? w: S) * h << n,
  3269. y -= J[Na] - (J[Na] = v[w]),
  3270. E -= J[$b] - (J[$b] = v[w + g]),
  3271. F -= J[T] - (J[T] = v[w + n]),
  3272. G -= J[P] - (J[P] = v[w + ha]),
  3273. J = J[U],
  3274. x += h;
  3275. else for (c = d; c < m; c++) w = x << n,
  3276. v[w + ha] = B = G * Ha >>> K,
  3277. B > d ? (B = ki / B, v[w] = (y * Ha >>> K) * B, v[w + g] = (E * Ha >>> K) * B, v[w + n] = (F * Ha >>> K) * B) : v[w] = v[w + g] = v[w + n] = d,
  3278. w = a + ((w = c + La) < S ? w: S) * h << n,
  3279. y -= J[Na] - (J[Na] = v[w]),
  3280. E -= J[$b] - (J[$b] = v[w + g]),
  3281. F -= J[T] - (J[T] = v[w + n]),
  3282. G -= J[P] - (J[P] = v[w + ha]),
  3283. J = J[U],
  3284. x += h
  3285. }
  3286. }
  3287. k[Ji](s, r, p);
  3288. return q
  3289. };
  3290. a[la] = function() {
  3291. return new c(this[lh], this[rh], this[Vi])
  3292. };
  3293. a[da] = function() {
  3294. return NF
  3295. };
  3296. h[fE] = c
  3297. })(); (function() {
  3298. ba;
  3299. var c = function(b) {
  3300. this[y](b)
  3301. },
  3302. a = c[G] = new h[kh];
  3303. a[y] = function(b) {
  3304. this[Nf] = b
  3305. };
  3306. a[Nf] = e;
  3307. a[Do] = e;
  3308. a[Sj] = e;
  3309. a[fg] = function(b, a, c, g, h, k, n, p) {
  3310. if (!this[Nf]) return q;
  3311. if (!this[pu]()) return l;
  3312. k = k || b;
  3313. n == e && (n = a);
  3314. p == e && (p = c);
  3315. try {
  3316. var s = b[lg](a, c, g, h)
  3317. } catch(w) {
  3318. return l
  3319. }
  3320. b = s[td];
  3321. a = this[Sj];
  3322. c = b[r];
  3323. for (g = d; g < c; g += Pa) b[g + ha] = a[g] || d;
  3324. k[Ji](s, n, p);
  3325. return q
  3326. };
  3327. a[la] = function() {
  3328. return new c(this[Nf])
  3329. };
  3330. a[da] = function() {
  3331. return aE
  3332. };
  3333. a[pu] = function() {
  3334. if (!this[Nf]) return l;
  3335. if (this[Nf] == this[Do] && this[Sj]) return q;
  3336. this[Sj] = e;
  3337. var b = this[Do] = this[Nf],
  3338. a = b;
  3339. b instanceof HTMLCanvasElement ? a = a[Ia](Ib) : (a = h[Hb] ? h[Hb]() : Z[sa](K), a[C] = b[C], a[D] = b[D], a = a[Ia](Ib), a[Dc](b, d, d));
  3340. try {
  3341. var c = a[lg](d, d, b[C], b[D])
  3342. } catch(g) {
  3343. return l
  3344. }
  3345. this[Sj] = c[td];
  3346. return q
  3347. };
  3348. h[$D] = c
  3349. })(); (function() {
  3350. ba;
  3351. var d = function(b) {
  3352. this[y](b)
  3353. },
  3354. a = d[G] = new h[kh];
  3355. a[y] = function(b) {
  3356. this[He] = b
  3357. };
  3358. a[He] = e;
  3359. a[fg] = function(b, a, d, c, g, h, k, l) {
  3360. if (!this[He]) return q;
  3361. h = h || b;
  3362. k == e && (k = a);
  3363. l == e && (l = d);
  3364. h[$e]();
  3365. h[Ag] = $u;
  3366. h[Dc](this[He], k, l);
  3367. h[Fe]();
  3368. return q
  3369. };
  3370. a[la] = function() {
  3371. return new d(this[He])
  3372. };
  3373. a[da] = function() {
  3374. return ZD
  3375. };
  3376. h[TF] = d
  3377. })(); (function() {
  3378. ba;
  3379. var c = function(b, a, d, c, g, e, h, k) {
  3380. this[y](b, a, d, c, g, e, h, k)
  3381. },
  3382. a = c[G] = new h[kh];
  3383. a[Al] = g;
  3384. a[kl] = g;
  3385. a[jl] = g;
  3386. a[il] = g;
  3387. a[hl] = d;
  3388. a[Mm] = d;
  3389. a[hm] = d;
  3390. a[gl] = d;
  3391. a[y] = function(b, a, c, h, m, k, l, q) {
  3392. this[Al] = b != e ? b: g;
  3393. this[kl] = a != e ? a: g;
  3394. this[jl] = c != e ? c: g;
  3395. this[il] = h != e ? h: g;
  3396. this[hl] = m || d;
  3397. this[Mm] = k || d;
  3398. this[hm] = l || d;
  3399. this[gl] = q || d
  3400. };
  3401. a[fg] = function(b, a, c, h, m, k, p, s) {
  3402. k = k || b;
  3403. p == e && (p = a);
  3404. s == e && (s = c);
  3405. try {
  3406. var w = b[lg](a, c, h, m)
  3407. } catch(x) {
  3408. return l
  3409. }
  3410. b = w[td];
  3411. a = b[r];
  3412. for (c = d; c < a; c += Pa) b[c] = b[c] * this[Al] + this[hl],
  3413. b[c + g] = b[c + g] * this[kl] + this[Mm],
  3414. b[c + n] = b[c + n] * this[jl] + this[hm],
  3415. b[c + ha] = b[c + ha] * this[il] + this[gl];
  3416. k[Ji](w, p, s);
  3417. return q
  3418. };
  3419. a[da] = function() {
  3420. return SD
  3421. };
  3422. a[la] = function() {
  3423. return new c(this[Al], this[kl], this[jl], this[il], this[hl], this[Mm], this[hm], this[gl])
  3424. };
  3425. h[QD] = c
  3426. })(); (function() {
  3427. ba;
  3428. var c = function(b, a, d, c) {
  3429. this[y](b, a, d, c)
  3430. },
  3431. a = c[G];
  3432. c[Bl] = [d, cl, aG, PD, mx, OD, KD, JD, Cl, ID, dG, Uu, GD, eG, jJ, gG, ku, ED, DD, CD, $p, AD, zD, bf, yD, lJ, xD, wD, Il, mG, mK, vD, uD, ia, nG, jL, qJ, tD, $L, sJ, nL, oG, pG, ym, sD, qG, rD, vJ, qD, pD, g, oD, zJ, sG, cL, uG, nD, mD, bL, aL, Yu, wG, lD, kD, EJ, KL, yG, n, iD, cu, zG, bu, HL, qg, GL, ha, gD, IJ, fD, SL, Pa, JJ, dD, bD, Ka, LJ, ze, DG, PK, Ce, aD, EG, MJ, Be, $C, xL, Mc, ZC, LK, YC, Ba];
  3433. c[rm] = [g, d, d, d, d, d, g, d, d, d, d, d, g, d, d, d, d, d, g, d, d, d, d, d, g];
  3434. c[Me] = c[rm][r];
  3435. a[y] = function(b, a, d, c) {
  3436. this[Lh]();
  3437. this[$t](b, a, d, c);
  3438. return this
  3439. };
  3440. a[Lh] = function() {
  3441. return this[vo](c[rm])
  3442. };
  3443. a[$t] = function(b, a, d, c) {
  3444. this[Zt](c);
  3445. this[Yt](a);
  3446. this[Mw](b);
  3447. return this[ev](d)
  3448. };
  3449. a[Mw] = function(b) {
  3450. if (b == d || Lb(b)) return this;
  3451. b = this[Ri](b, ki);
  3452. this[vh]([g, d, d, d, b, d, g, d, d, b, d, d, g, d, b, d, d, d, g, d, d, d, d, d, g]);
  3453. return this
  3454. };
  3455. a[Yt] = function(b) {
  3456. if (b == d || Lb(b)) return this;
  3457. b = this[Ri](b, fa);
  3458. var a;
  3459. b < d ? a = Ab + b / fa * Ab: (a = b % g, a = a == d ? c[Bl][b] : c[Bl][b << d] * (g - a) + c[Bl][(b << d) + g] * a, a = a * Ab + Ab);
  3460. this[vh]([a / Ab, d, d, d, ia * (Ab - a), d, a / Ab, d, d, ia * (Ab - a), d, d, a / Ab, d, ia * (Ab - a), d, d, d, g, d, d, d, d, d, g]);
  3461. return this
  3462. };
  3463. a[ev] = function(b) {
  3464. if (b == d || Lb(b)) return this;
  3465. b = this[Ri](b, fa);
  3466. b = g + (b > d ? ha * b / fa: b / fa);
  3467. this[vh]([Eq * (g - b) + b, hp * (g - b), ip * (g - b), d, d, Eq * (g - b), hp * (g - b) + b, ip * (g - b), d, d, Eq * (g - b), hp * (g - b), ip * (g - b) + b, d, d, d, d, d, g, d, d, d, d, d, g]);
  3468. return this
  3469. };
  3470. a[Zt] = function(b) {
  3471. if (b == d || Lb(b)) return this;
  3472. b = this[Ri](b, Xc) / Xc * p[fd];
  3473. var a = p[Ub](b);
  3474. b = p[tb](b);
  3475. this[vh]([ff + a * (g - ff) + b * -ff, ef + a * -ef + b * -ef, Le + a * -Le + b * (g - Le), d, d, ff + a * -ff + b * JG, ef + a * (g - ef) + b * Uu, Le + a * -Le + b * -WC, d, d, ff + a * -ff + b * -(g - ff), ef + a * -ef + b * ef, Le + a * (g - Le) + b * Le, d, d, d, d, d, g, d, d, d, d, d, g]);
  3476. return this
  3477. };
  3478. a[Lj] = function(b) {
  3479. b = this[Vt](b);
  3480. if (b[r] != c[Me]) return this;
  3481. this[vh](b);
  3482. return this
  3483. };
  3484. a[la] = function() {
  3485. return (new c)[vo](this)
  3486. };
  3487. a[fv] = function() {
  3488. for (var b = [], a = d, g = c[Me]; a < g; a++) b[a] = this[a];
  3489. return b
  3490. };
  3491. a[vo] = function(b) {
  3492. for (var a = c[Me], g = d; g < a; g++) this[g] = b[g];
  3493. return this
  3494. };
  3495. a[da] = function() {
  3496. return UC
  3497. };
  3498. a[vh] = function(b) {
  3499. for (var a = [], c = d; c < Ka; c++) {
  3500. for (var g = d; g < Ka; g++) a[g] = this[g + c * Ka];
  3501. for (g = d; g < Ka; g++) {
  3502. for (var e = d,
  3503. h = d; h < Ka; h++) e += b[g + h * Ka] * a[h];
  3504. this[g + c * Ka] = e
  3505. }
  3506. }
  3507. };
  3508. a[Ri] = function(b, a) {
  3509. return p[re](a, p[Lf]( - a, b))
  3510. };
  3511. a[Vt] = function(b) {
  3512. b instanceof c && (b = b[fv]());
  3513. b[r] < c[Me] ? b = b[$a](d, b[r])[Lj](c[rm][$a](b[r], c[Me])) : b[r] > c[Me] && (b = b[$a](d, c[Me]));
  3514. return b
  3515. };
  3516. h[TC] = c
  3517. })(); (function() {
  3518. ba;
  3519. var c = function(b) {
  3520. this[y](b)
  3521. },
  3522. a = c[G] = new h[kh];
  3523. a[Ih] = e;
  3524. a[y] = function(b) {
  3525. this[Ih] = b
  3526. };
  3527. a[fg] = function(b, a, c, h, m, k, p, s) {
  3528. k = k || b;
  3529. p == e && (p = a);
  3530. s == e && (s = c);
  3531. try {
  3532. var w = b[lg](a, c, h, m)
  3533. } catch(B) {
  3534. return l
  3535. }
  3536. b = w[td];
  3537. a = b[r];
  3538. var z, A, v, C;
  3539. z = this[Ih];
  3540. c = z[d];
  3541. h = z[g];
  3542. m = z[n];
  3543. for (var y = z[ha], E = z[Pa], D = z[Ka], G = z[ze], H = z[Ce], I = z[Be], L = z[Mc], K = z[Ba], O = z[Wh], R = z[lf], S = z[vb], P = z[N], T = z[Q], aa = z[x], Z = z[F], La = z[vq], of = z[mi], Ha = d; Ha < a; Ha += Pa) z = b[Ha],
  3544. A = b[Ha + g],
  3545. v = b[Ha + n],
  3546. C = b[Ha + ha],
  3547. b[Ha] = z * c + A * h + v * m + C * y + E,
  3548. b[Ha + g] = z * D + A * G + v * H + C * I + L,
  3549. b[Ha + n] = z * K + A * O + v * R + C * S + P,
  3550. b[Ha + ha] = z * T + A * aa + v * Z + C * La + of;
  3551. k[Ji](w, p, s);
  3552. return q
  3553. };
  3554. a[da] = function() {
  3555. return SC
  3556. };
  3557. a[la] = function() {
  3558. return new c(this[Ih])
  3559. };
  3560. h[RC] = c
  3561. })(); (function() {
  3562. ba;
  3563. var c = function() {
  3564. throw aK;
  3565. };
  3566. c[Tt] = function() {
  3567. return to in L || L[wd][so] && L[wd][PC] > d || L[wd][lj] && L[wd][dK] > d
  3568. };
  3569. c[OC] = function(a, b, f) {
  3570. if (!a || !a[K] || !c[Tt]()) return l;
  3571. var g = {},
  3572. e = d;
  3573. g[Am] = {};
  3574. g[St] = !b;
  3575. g[Uc] = !f;
  3576. g[wh] = e;
  3577. a[nc] = g;
  3578. if (to in L) c[Rw](a);
  3579. else if (L[wd][so] || L[wd][lj]) c[iv](a);
  3580. return q
  3581. };
  3582. c[jK] = function(a) {
  3583. if (a) if (to in L) c[Rt](a);
  3584. else if (L[wd][so] || L[wd][lj]) c[Qt](a)
  3585. };
  3586. c[Rw] = function(a) {
  3587. var b = a[K],
  3588. f = a[nc][Ja] = function(b) {
  3589. c[Pt](a, b)
  3590. };
  3591. b[pa](dl, f, l);
  3592. b[pa](wm, f, l);
  3593. b[pa](ro, f, l);
  3594. b[pa](op, f, l)
  3595. };
  3596. c[Rt] = function(a) {
  3597. var b = a[K];
  3598. b && (a = a[nc][Ja], b[ya](dl, a, l), b[ya](wm, a, l), b[ya](ro, a, l), b[ya](op, a, l))
  3599. };
  3600. c[Pt] = function(a, b) {
  3601. if (a) {
  3602. a[nc][Uc] && b[Uc] && b[Uc]();
  3603. for (var f = b[QG], c = b[H], g = d, e = f[r]; g < e; g++) {
  3604. var h = f[g],
  3605. k = h[NC];
  3606. if (h[xa] == a[K]) if (c == dl) this[qo](a, k, b, h[hf], h[fh]);
  3607. else if (c == wm) this[Pq](a, k, b, h[hf], h[fh]);
  3608. else if (c == ro || c == op) this[po](a, k, b)
  3609. }
  3610. }
  3611. };
  3612. c[iv] = function(a) {
  3613. var b = a[K],
  3614. f = a[nc][Ja] = function(b) {
  3615. c[Ot](a, b)
  3616. };
  3617. L[wd][lj] === oa ? (b[pa](pq, f, l), L[pa](qp, f, l), L[pa](oo, f, l), L[pa](no, f, l), a[nc][Uc] && (b[Xa][TG] = xh)) : (b[pa](rp, f, l), L[pa](mo, f, l), L[pa](sp, f, l), L[pa](tp, f, l), a[nc][Uc] && (b[Xa][GC] = xh));
  3618. a[nc][mv] = {}
  3619. };
  3620. c[Qt] = function(a) {
  3621. var b = a[nc][Ja];
  3622. if (L[wd][lj] === oa) {
  3623. if (L[ya](qp, b, l), L[ya](oo, b, l), L[ya](no, b, l), a[K]) a[K][ya](pq, b, l)
  3624. } else if (L[ya](mo, b, l), L[ya](sp, b, l), L[ya](tp, b, l), a[K]) a[K][ya](rp, b, l)
  3625. };
  3626. c[Ot] = function(a, b) {
  3627. if (a) {
  3628. a[nc][Uc] && b[Uc] && b[Uc]();
  3629. var f = b[H],
  3630. d = b[FC],
  3631. c = a[nc][mv];
  3632. if (f == pq || f == rp) b[DC] == a[K] && (c[d] = q, this[qo](a, d, b, b[hf], b[fh]));
  3633. else if (c[d]) if (f == qp || f == mo) this[Pq](a, d, b, b[hf], b[fh]);
  3634. else if (f == oo || f == no || f == sp || f == tp) delete c[d],
  3635. this[po](a, d, b)
  3636. }
  3637. };
  3638. c[qo] = function(a, b, f, d, c) {
  3639. var g = a[nc];
  3640. if (g[St] || !g[wh]) {
  3641. var e = g[Am];
  3642. e[b] || (e[b] = q, g[wh]++, a[Yk](b, f, d, c))
  3643. }
  3644. };
  3645. c[Pq] = function(a, b, f, d, c) {
  3646. if (a[nc][Am][b]) a[Xk](b, f, d, c)
  3647. };
  3648. c[po] = function(a, b, f) {
  3649. var d = a[nc],
  3650. c = d[Am];
  3651. c[b] && (d[wh]--, a[sm](b, f, q), delete c[b])
  3652. };
  3653. h[CC] = c
  3654. })(); (function() {
  3655. ba;
  3656. var c = function() {
  3657. this[ac]()
  3658. };
  3659. c[G] = new h[ue];
  3660. var a = c[G];
  3661. c[px] = BC;
  3662. c[ov] = eK;
  3663. c[Qw] = xK;
  3664. a[jc] = l;
  3665. a[Lm] = l;
  3666. a[Qa] = d;
  3667. a[Ob] = e;
  3668. a[zb] = function() {
  3669. return this[Ob]
  3670. };
  3671. a[ac] = function() {};
  3672. a[ae] = function() {};
  3673. a[al] = function() {};
  3674. a[ko] = function() {
  3675. if (!this[Ue]()) this[Ra](AC)
  3676. };
  3677. a[lq] = function(b) {
  3678. if (!this[Ue]()) {
  3679. var a = e;
  3680. if (typeof b == Te) this[Qa] = b,
  3681. a = new h[Ca](Qa),
  3682. a[jc] = this[Qa],
  3683. a[gh] = g;
  3684. else if (a = b, this[Qa] = b[jc] / b[gh], Lb(this[Qa]) || this[Qa] == Nx) this[Qa] = d;
  3685. a[Qa] = this[Qa];
  3686. this[Zb](Qa) && this[Ra](a)
  3687. }
  3688. };
  3689. a[Gj] = function() {
  3690. if (!this[Ue]()) this[Ra](ub)
  3691. };
  3692. a[vc] = function(b) { ! this[Ue]() && this[Zb](Pb) && (b == e && (b = new h[Ca](Pb)), this[Ra](b))
  3693. };
  3694. a[Ue] = function() {
  3695. return this[Lm] ? q: l
  3696. };
  3697. a[um] = function(b) {
  3698. var a = {},
  3699. t = l;
  3700. a[Ui] = l;
  3701. a[Bm] = t;
  3702. if (b == e) return a;
  3703. t = b[tc]($k);
  3704. t > -g && (b = b[Ut](d, t));
  3705. c[px][Hf](b) ? a[Ui] = q: c[ov][Hf](b) && (a[Bm] = q);
  3706. if (b = b[yC](c[Qw])) a[oj] = b[g][Cm]();
  3707. return a
  3708. };
  3709. a[Jl] = function(b, a) {
  3710. if (b == e) throw new Zh([gH, aa][R](E));
  3711. var d = [],
  3712. c;
  3713. for (c in b) d[S](c + xC + dF(b[c]));
  3714. a && (d = d[Lj](a));
  3715. return d[R](sv)
  3716. };
  3717. a[Kl] = function(b, a) {
  3718. if (a == e) return b;
  3719. var c = [],
  3720. h = b[tc]($k);
  3721. if (h != -g) var m = b[$a](h + g),
  3722. c = c[Lj](m[jj](sv));
  3723. return h != -g ? b[$a](d, h) + $k + this[Jl](a, c) : b + $k + this[Jl](a, c)
  3724. };
  3725. a[Kt] = function(b) {
  3726. var a = Z[sa](P);
  3727. a[Jj] = b[ja];
  3728. b = Z[sa](P);
  3729. b[Jj] = Cu[Jj];
  3730. return a[Zk] != E && (a[Jt] != b[Jt] || a[up] != b[up] || a[Zk] != b[Zk])
  3731. };
  3732. a[It] = function(b) {
  3733. var a = Z[sa](P);
  3734. a[Jj] = b[ja];
  3735. return a[Zk] == E && a[up] == vC
  3736. };
  3737. a[da] = function() {
  3738. return UJ
  3739. };
  3740. h[Hm] = c
  3741. })(); (function() {
  3742. ba;
  3743. var c = function(b, a, d) {
  3744. this[ac](b, a, d)
  3745. },
  3746. a = c[G] = new h[Hm];
  3747. c[jo] = lH;
  3748. c[fq] = d;
  3749. c[Gt] = uC;
  3750. c[Zd] = Sa;
  3751. c[Oi] = qa;
  3752. c[hd] = Jw;
  3753. c[yc] = xv;
  3754. c[vd] = DL;
  3755. c[Kb] = Em;
  3756. c[Ni] = qH;
  3757. c[Ld] = ho;
  3758. c[Mi] = V;
  3759. c[Li] = vp;
  3760. c[Uk] = Uk;
  3761. c[Ki] = Ki;
  3762. a[Ol] = e;
  3763. a[ge] = E;
  3764. a[Gf] = q;
  3765. a[fx] = l;
  3766. a[Tk] = q;
  3767. a[U] = e;
  3768. a[Om] = e;
  3769. a[Sk] = e;
  3770. a[mm] = l;
  3771. a[yq] = g;
  3772. a[Ql] = e;
  3773. a[lc] = e;
  3774. a[Md] = e;
  3775. a[cf] = e;
  3776. a[dd] = e;
  3777. a[Ff] = e;
  3778. a[Ef] = e;
  3779. a[pg] = e;
  3780. a[og] = d;
  3781. a[Df] = d;
  3782. a[eh] = e;
  3783. a[Yd] = e;
  3784. a[ac] = function(b, a, c) {
  3785. this[og] = this[Df] = d;
  3786. this[ab] = l;
  3787. this[mm] = l;
  3788. this[lc] = [];
  3789. this[Md] = [];
  3790. this[cf] = [];
  3791. this[eh] = [];
  3792. this[Yd] = [];
  3793. this[dd] = {};
  3794. this[Ff] = {};
  3795. this[Ef] = {};
  3796. this[pg] = {};
  3797. this[Om] = {};
  3798. this[Sk] = {};
  3799. this[Ol] = a;
  3800. this[Bt](b);
  3801. this[ge] = c === q ? Ew: c === l || c == e ? E: c
  3802. };
  3803. a[Bt] = function(b) {
  3804. this[Gf] = b != l && L[eo] != e;
  3805. return this[Gf]
  3806. };
  3807. a[fC] = function() {
  3808. this[Qj]()
  3809. };
  3810. a[Qj] = function(b) {
  3811. var a = e;
  3812. if (b && !(b instanceof Rf)) a = [b];
  3813. else if (b) a = b;
  3814. else if (arguments[r] > d) return;
  3815. var c = l;
  3816. if (a) {
  3817. for (; a[r];) {
  3818. for (var h = a[mg](), k = this[ng](h), p = this[Md][r] - g; p >= d; p--) if (n = this[Md][p][zb](), n[Da] == h || n[ja] == h) {
  3819. this[Md][Qb](p, g)[d][Xh]();
  3820. break
  3821. }
  3822. for (p = this[cf][r] - g; p >= d; p--) if (n = this[cf][p][zb](), n[Da] == h || n[ja] == h) {
  3823. this[cf][Qb](p, g)[d][Xh]();
  3824. break
  3825. }
  3826. if (k) delete this[dd][k[Da]],
  3827. delete this[Ff][k[ja]],
  3828. this[Rl](k);
  3829. else for (var p = this[lc][r] - g; p >= d; p--) {
  3830. var n = this[lc][p][zb]();
  3831. if (n[Da] == h || n[ja] == h) {
  3832. this[lc][Qb](p, g)[d][Xh]();
  3833. c = q;
  3834. break
  3835. }
  3836. }
  3837. }
  3838. if (c) this[dh]()
  3839. } else {
  3840. this[al]();
  3841. for (h in this[dd]) this[Rl](this[dd][h]);
  3842. this[ac](this[Gf], this[Ol], this[ge])
  3843. }
  3844. };
  3845. a[Lh] = function() {
  3846. this[al]();
  3847. for (var b in this[dd]) this[Rl](this[dd][b]);
  3848. b = [];
  3849. for (var a = d,
  3850. c = this[cf][r]; a < c; a++) b[S](this[cf][a][zb]());
  3851. this[co](b, l)
  3852. };
  3853. c[At] = function(b) {
  3854. switch (b) {
  3855. case h[A][Oi]:
  3856. case h[A][Gt]:
  3857. return q;
  3858. default:
  3859. return l
  3860. }
  3861. };
  3862. c[zt] = function(b) {
  3863. switch (b) {
  3864. case h[A][Mi]:
  3865. case h[A][yc]:
  3866. case h[A][Kb]:
  3867. case h[A][Li]:
  3868. case h[A][hL]:
  3869. case h[A][Zd]:
  3870. case h[A][Ld]:
  3871. case h[A][hd]:
  3872. return q;
  3873. default:
  3874. return l
  3875. }
  3876. };
  3877. a[bo] = function(b) {
  3878. if (b != e && b[Fv] != e) {
  3879. var a = b[Fv]();
  3880. a[yt] = b;
  3881. if (a[ao] != e) {
  3882. b = d;
  3883. for (var c = a[ao][r]; b < c; b++) this[Om][a[ao][b]] = a
  3884. }
  3885. if (a[Zn] != e) for (b = d, c = a[Zn][r]; b < c; b++) this[Sk][a[Zn][b]] = a
  3886. }
  3887. };
  3888. a[gJ] = function(b) {
  3889. this[yq] = b;
  3890. if (!this[ab] && this[Md][r] > d) this[dh]()
  3891. };
  3892. a[bC] = function(b, a, d) {
  3893. if (b == e) b = new h[Ca](Pb),
  3894. b[V] = nM,
  3895. this[vc](b);
  3896. else if (this[Yn](b, e, d), a !== l) this[Sb](l);
  3897. else this[Sb](q)
  3898. };
  3899. a[co] = function(b, a, g) {
  3900. var m = e,
  3901. k = e;
  3902. if (b instanceof Rf) {
  3903. if (b[r] == d) {
  3904. m = new h[Ca](Pb);
  3905. m[V] = BH;
  3906. this[vc](m);
  3907. return
  3908. }
  3909. m = b
  3910. } else if (typeof b === fc) {
  3911. var m = {},
  3912. p = c[Kb];
  3913. m[ja] = b;
  3914. m[H] = p;
  3915. m = [m]
  3916. } else if (typeof b == jd) b[ja] !== oa ? (b[H] == e ? b[H] = c[Kb] : b[H] != c[Kb] && (m = new h[Ca](Pb), m[V] = bJ, this[vc](m)), m = [b]) : b[Em] !== oa && (m = b[Em], k = b[ad]);
  3917. else {
  3918. m = new h[Ca](Pb);
  3919. m[V] = aC;
  3920. this[vc](m);
  3921. return
  3922. }
  3923. b = d;
  3924. for (p = m[r]; b < p; b++) this[Yn](m[b], k, g);
  3925. if (a !== l) this[Sb](l);
  3926. else this[Sb](q)
  3927. };
  3928. a[ae] = function() {
  3929. this[Sb](l)
  3930. };
  3931. a[zb] = function(b) {
  3932. return this[dd][b] || this[Ff][b]
  3933. };
  3934. a[ng] = function(b, a) {
  3935. var d = this[dd][b] || this[Ff][b];
  3936. if (d == e) return e;
  3937. d = d[Da];
  3938. return a && this[pg][d] ? this[pg][d] : this[Ef][d]
  3939. };
  3940. a[Sb] = function(b) {
  3941. this[ab] = b;
  3942. if (!this[ab]) this[dh]()
  3943. };
  3944. a[al] = function() {
  3945. for (; this[lc][r];) this[lc][mg]()[Xh]();
  3946. this[eh][r] = d;
  3947. this[Yd][r] = d;
  3948. this[$B] = l
  3949. };
  3950. a[Yn] = function(b, a, d) {
  3951. b = this[vt](b, a, d);
  3952. b != e && (a = this[ut](b), a != e && (b[Bp] = a, this[Md][S](a), this[cf][S](a), this[og]++, this[tj](), this[Tk] && b[H] == h[A][hd] || b[tt] === q)) && (this[eh][S](b), this[Yd][S](e))
  3953. };
  3954. a[vt] = function(b, a, d) {
  3955. var c = e;
  3956. switch (typeof b) {
  3957. case fc:
  3958. c = function(b, a) {
  3959. b[ja] = a;
  3960. return b
  3961. } ({},
  3962. b);
  3963. break;
  3964. case jd:
  3965. c = L[Ul] && b instanceof L[Ul] ?
  3966. function(b, a, d, c) {
  3967. b[Xb] = a;
  3968. b[ja] = d;
  3969. b[H] = c;
  3970. return b
  3971. } ({},
  3972. b, c[Xb][ja], h[A][Ni]) : b;
  3973. break;
  3974. default:
  3975. return e
  3976. }
  3977. var g = this[um](c[ja]);
  3978. g[oj] && (c[Qk] = g[oj]);
  3979. c[H] == e && (c[H] = this[Kv](c[Qk]));
  3980. b = E;
  3981. d = d || this[Ol];
  3982. var k = c[ja];
  3983. g[Ui] || g[Bm] || (a ? (b = a, g = this[um](a), k = a + k, d == e || (g[Ui] || g[Bm]) || (b = d + b)) : d != e && (b = d));
  3984. c[ja] = b + c[ja];
  3985. c[ad] = b;
  3986. if (c[H] == h[A][yc] || c[H] == h[A][Kb]) c[Xn] = c[Je] != e;
  3987. if (c[H] == h[A][vd] && c[Je] == e) throw new Zh([qt, aa][R](E));
  3988. if (c[Xb] === oa || c[Xb] === e) c[Xb] = this[pt](c);
  3989. if (c[Da] === oa || c[Da] === e || c[Da] === E) c[Da] = k;
  3990. if (a = this[Om][c[H]] || this[Sk][c[Qk]]) {
  3991. a = a[Je][Eb](a[yt], c[ja], c[H], c[Da], c[td], b, this);
  3992. if (a === l) return e;
  3993. a !== q && (a[ja] != e && (c[ja] = a[ja]), a[Da] != e && (c[Da] = a[Da]), a[Xb] != e && (c[Xb] = a[Xb]), a[Fi] != e && (c[Fi] = a[Fi]), a[H] && (c[H] = a[H]), g = this[um](c[ja]), g[oj] != e && (c[Qk] = g[oj]))
  3994. }
  3995. this[dd][c[Da]] = c;
  3996. return this[Ff][c[ja]] = c
  3997. };
  3998. a[ut] = function(b) {
  3999. var a = this[Gf];
  4000. switch (b[H]) {
  4001. case h[A][yc]:
  4002. case h[A][Kb]:
  4003. a = !b[Xn];
  4004. break;
  4005. case h[A][Li]:
  4006. case h[A][Mi]:
  4007. a = q;
  4008. break;
  4009. case h[A][Ni]:
  4010. case h[A][vd]:
  4011. a = l;
  4012. break;
  4013. case e:
  4014. return e
  4015. }
  4016. return a ? new h[gm](b, this[ge]) : new h[Wn](b)
  4017. };
  4018. a[dh] = function() {
  4019. if (!this[ab]) {
  4020. this[mm] || (this[ko](), this[mm] = q);
  4021. if (this[og] == this[Df]) {
  4022. if (this[jc] = q, this[Gj](), this[U] && this[U][ae]) this[U][ae]()
  4023. } else this[jc] = l;
  4024. for (var b = d; b < this[Md][r] && !(this[lc][r] >= this[yq]); b++) {
  4025. var a = this[Md][b];
  4026. this[Mv](a) && (this[Md][Qb](b, g), b--, this[ot](a))
  4027. }
  4028. }
  4029. };
  4030. a[ot] = function(b) {
  4031. b[Pc](Qa, this[Pk], this);
  4032. b[Pc](ub, this[Ov], this);
  4033. b[Pc](Pb, this[xw], this);
  4034. this[lc][S](b);
  4035. this[nt](b[zb]());
  4036. b[ae]()
  4037. };
  4038. a[xw] = function(b) {
  4039. b = b[xa];
  4040. this[Df]++;
  4041. this[Dp](b, q);
  4042. this[tj]();
  4043. var a = new h[Ca](Pb);
  4044. a[V] = XB;
  4045. a[Vl] = b[zb]();
  4046. this[vc](a);
  4047. this[fx] || (this[Ep](b), this[dh]())
  4048. };
  4049. a[Ov] = function(b) {
  4050. b = b[xa];
  4051. var a = b[zb]();
  4052. this[Ef][a[Da]] = b[ng]();
  4053. b instanceof h[gm] && (this[pg][a[Da]] = b[ng](q));
  4054. this[Ep](b);
  4055. if (!this[Dp](b)) this[Un](a, b)
  4056. };
  4057. a[Dp] = function(b, a) {
  4058. var d = b[zb]();
  4059. if (this[Tk] && d[H] == h[A][hd] || d[tt]) {
  4060. b instanceof h[Wn] && d[H] == h[A][hd] && (this[Ql] = l);
  4061. var c = h[tc](this[eh], d);
  4062. if (c == -g) return l;
  4063. this[Yd][c] = a === q ? q: d;
  4064. this[lt]();
  4065. return q
  4066. }
  4067. return l
  4068. };
  4069. a[lt] = function() {
  4070. for (var b = this[Yd][r], a = d; a < b; a++) {
  4071. var c = this[Yd][a];
  4072. if (c === e) break;
  4073. if (c !== q) {
  4074. var g = this[Ef][c[Da]];
  4075. if (c[H] == h[A][hd])(Z[Ch] || Z[Wl](Ch)[d])[Di](g);
  4076. this[Un](c, c[Bp]);
  4077. this[Yd][a] = q
  4078. }
  4079. }
  4080. };
  4081. a[Un] = function(b, a) {
  4082. if (b[H] == h[A][Kb]) {
  4083. var d = a[ng]();
  4084. if (d != e && d[Em] !== oa) this[co](d, q)
  4085. }
  4086. this[Df]++;
  4087. this[tj]();
  4088. this[vw](b, a);
  4089. this[dh]()
  4090. };
  4091. a[Mv] = function(b) {
  4092. if (!this[Tk] || b instanceof h[gm]) return q;
  4093. b = b[zb]();
  4094. if (b[H] != h[A][hd]) return q;
  4095. if (this[Ql]) return l;
  4096. b = this[eh][tc](b);
  4097. for (var a = d; a < b;) {
  4098. if (this[Yd][a] == e) return l;
  4099. a++
  4100. }
  4101. return this[Ql] = q
  4102. };
  4103. a[Ep] = function(b) {
  4104. var a = b[zb]();
  4105. delete a[Bp];
  4106. delete a[Xn];
  4107. for (var a = this[lc][r], c = d; c < a; c++) if (this[lc][c] == b) {
  4108. this[lc][Qb](c, g);
  4109. break
  4110. }
  4111. };
  4112. a[Pk] = function(b) {
  4113. b = b[xa];
  4114. this[kt](b[zb](), b[Qa]);
  4115. this[tj]()
  4116. };
  4117. a[tj] = function() {
  4118. var b = this[Df] / this[og],
  4119. a = this[og] - this[Df];
  4120. if (a > d) {
  4121. for (var c = d,
  4122. g = d,
  4123. e = this[lc][r]; g < e; g++) c += this[lc][g][Qa];
  4124. b += c / a * (a / this[og])
  4125. }
  4126. this[lq](b)
  4127. };
  4128. a[Rl] = function(b) {
  4129. delete this[Ef][b[Da]];
  4130. delete this[pg][b[Da]];
  4131. delete this[dd][b[Da]];
  4132. delete this[Ff][b[ja]]
  4133. };
  4134. a[pt] = function(b) {
  4135. var a = e;
  4136. switch (b[H]) {
  4137. case h[A][Oi]:
  4138. return a = Z[sa](Ud),
  4139. this[ge] == E || this[It](b) || (a[jt] = this[ge]),
  4140. a;
  4141. case h[A][Ni]:
  4142. return a = Z[sa](KI),
  4143. a[VB] = l,
  4144. a;
  4145. case h[A][yc]:
  4146. case h[A][vd]:
  4147. case h[A][hd]:
  4148. case h[A][Kb]:
  4149. return a = Z[sa](xx),
  4150. a[H] = [V, Vb, Jw][R](E),
  4151. a;
  4152. case h[A][Zd]:
  4153. return a = this[Gf] ? Z[sa](Xa) : Z[sa](UB),
  4154. a[SB] = QB,
  4155. a[H] = [V, Vb, Sa][R](E),
  4156. a;
  4157. case h[A][Ld]:
  4158. return this[Gf] ? a = Z[sa](ho) : (a = Z[sa](jd), a[H] = [qa, Vb, Tv][R](E)),
  4159. a
  4160. }
  4161. return e
  4162. };
  4163. a[Kv] = function(b) {
  4164. if (b == e) return h[A][Mi];
  4165. switch (b[Cm]()) {
  4166. case PB:
  4167. case RH:
  4168. case OB:
  4169. case Ii:
  4170. case NB:
  4171. case hM:
  4172. return h[A][Oi];
  4173. case MB:
  4174. case VH:
  4175. case LB:
  4176. return h[A][Ni];
  4177. case xv:
  4178. return h[A][yc];
  4179. case vp:
  4180. return h[A][Li];
  4181. case Sa:
  4182. return h[A][Zd];
  4183. case KB:
  4184. return h[A][hd];
  4185. case ho:
  4186. return h[A][Ld];
  4187. default:
  4188. return h[A][Mi]
  4189. }
  4190. };
  4191. a[kt] = function(b, a) {
  4192. if (this[Ue]()) this[BI]();
  4193. else if (this[Zb](dt)) {
  4194. var d = new h[Ca](dt);
  4195. d[Qa] = a;
  4196. d[jc] = a;
  4197. d[gh] = g;
  4198. d[Vl] = b;
  4199. this[Ra](d)
  4200. }
  4201. };
  4202. a[vw] = function(b, a) {
  4203. if (!this[Ue]()) {
  4204. var d = new h[Ca](at);
  4205. d[YH] = a;
  4206. d[Vl] = b;
  4207. d[IB] = this[Ef][b[Da]];
  4208. d[HB] = this[pg][b[Da]];
  4209. if (b[Fi]) b[Fi](d);
  4210. this[Zb](at) && this[Ra](d)
  4211. }
  4212. };
  4213. a[nt] = function(b) {
  4214. var a = new h[Ca]($s);
  4215. a[Vl] = b;
  4216. this[Zb]($s) && this[Ra](a)
  4217. };
  4218. a[da] = function() {
  4219. return yI
  4220. };
  4221. h[A] = c;
  4222. var b = function() {};
  4223. b[ac] = function() {
  4224. var a = Uw[Zs];
  4225. b[aI] = a[tc](GB) > -g;
  4226. b[FB] = L[wI] != e;
  4227. b[vI] = a[tc](bI) > -g;
  4228. b[CL] = a[tc](EB) > -g || a[tc](cI) > -g || a[tc](dI) > -g
  4229. };
  4230. b[ac]();
  4231. h[A][eI] = b
  4232. })(); (function() {
  4233. ba;
  4234. var c = function(b) {
  4235. this[ac](b)
  4236. },
  4237. a = c[G] = new h[Hm];
  4238. a[Xd] = e;
  4239. a[Zl] = e;
  4240. a[Ai] = l;
  4241. a[Kk] = e;
  4242. a[tq] = e;
  4243. a[ac] = function(b) {
  4244. this[Ob] = b;
  4245. this[Kk] = b[Xb];
  4246. this[Ai] = L[Ul] && b[Xb] instanceof L[Ul];
  4247. this[Zl] = h[ob](this[jg], this)
  4248. };
  4249. a[ng] = function() {
  4250. return this[Ob][H] == h[A][vd] || this[Ob][H] == h[A][Kb] ? this[tq] : this[Kk]
  4251. };
  4252. a[Xh] = function() {
  4253. this[Lm] = q;
  4254. this[Ic]()
  4255. };
  4256. a[ae] = function() {
  4257. var b = this[Ob],
  4258. a = this[Kk];
  4259. qf(this[Xd]);
  4260. var c = h[A][fq];
  4261. c == d && (c = h[A][jo]);
  4262. this[Xd] = pc(h[ob](this[Tf], this), c);
  4263. this[Ai] && (a[ja] = e, a[fI] = Mq);
  4264. a[Jk] = h[ob](this[Ug], this);
  4265. this[Ai] ? (a[rx] = h[ob](this[Ws], this), a[pa](Ss, this[Zl], l)) : (a[xf] = h[ob](this[jg], this), a[On] = h[ob](this[am], this));
  4266. c = this[Kl](b[ja], b[Sh]);
  4267. switch (b[H]) {
  4268. case h[A][Zd]:
  4269. a[Jj] = c;
  4270. break;
  4271. case h[A][Ld]:
  4272. a[td] = c;
  4273. break;
  4274. default:
  4275. a[ja] = c
  4276. }
  4277. if (b[H] == h[A][vd] || b[H] == h[A][yc] || b[H] == h[A][Kb]) {
  4278. if (b[Je] == e) throw new Zh([qt, aa][R](E));
  4279. if (L[b[Je]] != e) throw new Zh(hI + b[Je] + [AB, aa, BB, aa, CB, aa][R](E));
  4280. L[b[Je]] = h[ob](this[zx], this)
  4281. }
  4282. if (b[H] == h[A][Ld] || b[H] == h[A][vd] || b[H] == h[A][yc] || b[H] == h[A][Kb] || b[H] == h[A][hd] || b[H] == h[A][Zd]) {
  4283. this[Ms] = a[Xa][Aj];
  4284. a[Xa][Aj] = ou;
  4285. c = Z[Ch] || Z[Wl](Ch)[d];
  4286. if (c == e) {
  4287. if (b[H] == h[A][Ld]) {
  4288. this[Ls]();
  4289. return
  4290. }
  4291. c = Z[Jp] || Z[Wl](Jp)
  4292. }
  4293. c[Di](a)
  4294. }
  4295. if (a[ae] != e) a[ae]()
  4296. };
  4297. a[Ls] = function() {
  4298. this[Ic]();
  4299. var b = new h[Ca](Pb);
  4300. b[V] = yB;
  4301. this[vc](b)
  4302. };
  4303. a[zx] = function(b) {
  4304. this[tq] = b
  4305. };
  4306. a[Tf] = function() {
  4307. this[Ic]();
  4308. var b = new h[Ca](Pb);
  4309. b[V] = Ks;
  4310. this[vc](b)
  4311. };
  4312. a[Ws] = function() {};
  4313. a[Ug] = function(b) {
  4314. this[Ic]();
  4315. b = new h[Ca](Pb);
  4316. this[vc](b)
  4317. };
  4318. a[am] = function() {
  4319. qf(this[Xd]);
  4320. var b = this[zb]()[Xb];
  4321. if (b[$d] == jc || b[$d] == ub) this[jg]()
  4322. };
  4323. a[jg] = function(b) {
  4324. if (!this[Ue]()) {
  4325. b = this[zb]();
  4326. var a = b[Xb];
  4327. if (! (this[jc] || this[Ai] && a[$d] !== Pa)) {
  4328. this[jc] = q;
  4329. switch (b[H]) {
  4330. case h[A][Ld]:
  4331. case h[A][yc]:
  4332. case h[A][vd]:
  4333. case h[A][Kb]:
  4334. case h[A][Zd]:
  4335. a[Xa][Aj] = this[Ms],
  4336. a[xj] && a[xj][rt](a) && a[xj][Gc](a)
  4337. }
  4338. this[Ic]();
  4339. this[Gj]()
  4340. }
  4341. }
  4342. };
  4343. a[Ic] = function() {
  4344. qf(this[Xd]);
  4345. var b = this[zb](),
  4346. a = b[Xb];
  4347. if (a != e && (a[xf] = e, a[ya] && a[ya](Ss, this[Zl], l), a[rx] = e, a[Mn] = e, a[Jk] = e, a[xj] != e && b[H] == h[A][Ld] && b[H] == h[A][yc] && b[H] == h[A][Kb] && b[H] == h[A][Zd] && b[H] == h[A][vd])) a[xj][Gc](a);
  4348. b = this[zb]();
  4349. if (b[H] == h[A][vd] || b[H] == h[A][Kb]) L[b[Je]] = e
  4350. };
  4351. a[da] = function() {
  4352. return qK
  4353. };
  4354. h[Wn] = c
  4355. })(); (function() {
  4356. ba;
  4357. var c = function(b, a) {
  4358. this[ac](b, a)
  4359. };
  4360. c[Kx] = [[Ln, aa, Gh, aa, Qr, aa, bg][R](E), [Ln, aa, Gh, aa, wv, aa, bg][R](E), [Ln, aa, Gh, aa, vv, aa, bg][R](E), [Is, aa, Gh, aa, Or, aa, bg][R](E), [Is, aa, Gh][R](E), [ew, aa, Gh][R](E)];
  4361. var a = c[G] = new h[Hm];
  4362. a[za] = e;
  4363. a[Xd] = e;
  4364. a[zm] = g;
  4365. a[Ga] = e;
  4366. a[je] = e;
  4367. a[ge] = E;
  4368. a[ac] = function(b, a) {
  4369. this[Ob] = b;
  4370. this[ge] = a;
  4371. this[lw](b)
  4372. };
  4373. a[ng] = function(b) {
  4374. return b && this[je] ? this[je] : this[Ga]
  4375. };
  4376. a[Xh] = function() {
  4377. this[Lm] = q;
  4378. this[Ic]();
  4379. this[za][yK]()
  4380. };
  4381. a[ae] = function() {
  4382. if (this[za] == e) this[Ug]();
  4383. else {
  4384. this[za][Xw] = h[ob](this[Yw], this);
  4385. this[za][Mn] = h[ob](this[Pk], this);
  4386. this[za][dw] = h[ob](this[cw], this);
  4387. this[za][Jk] = h[ob](this[Ug], this);
  4388. this[za][mw] = h[ob](this[Tf], this);
  4389. if (this[zm] == g) {
  4390. var b = h[A][fq];
  4391. b == d && (b = h[A][jo]);
  4392. this[Xd] = pc(h[ob](this[Tf], this), b)
  4393. }
  4394. this[za][xf] = h[ob](this[jg], this);
  4395. this[za][On] = h[ob](this[am], this);
  4396. try {
  4397. if (!this[Ob][Sh] || this[Ob][zi] == h[A][Ki]) this[za][Gs]();
  4398. else if (this[Ob][zi] == h[A][Uk]) this[za][Gs](this[Jl](this[Ob][Sh]))
  4399. } catch(a) {
  4400. b = new h[Ca](Pb),
  4401. b[Pb] = a,
  4402. this[vc](b)
  4403. }
  4404. }
  4405. };
  4406. a[Kn] = function() {
  4407. return this[za][Kn] instanceof Wq ? this[za][Kn]() : e
  4408. };
  4409. a[In] = function(b) {
  4410. return this[za][In] instanceof Wq ? this[za][In](b) : e
  4411. };
  4412. a[Pk] = function(b) {
  4413. if (b && !(b[jc] > d && b[gh] == d)) {
  4414. var a = new h[Ca](Qa);
  4415. a[jc] = b[jc];
  4416. a[gh] = b[gh];
  4417. this[lq](a)
  4418. }
  4419. };
  4420. a[Yw] = function(b) {
  4421. qf(this[Xd]);
  4422. this[ko]()
  4423. };
  4424. a[cw] = function(b) {
  4425. this[Ic]();
  4426. b = new h[Ca](Pb);
  4427. b[V] = rB;
  4428. this[vc](b)
  4429. };
  4430. a[Ug] = function(b) {
  4431. this[Ic]();
  4432. b = new h[Ca](Pb);
  4433. this[vc](b)
  4434. };
  4435. a[am] = function(b) {
  4436. if (this[za][$d] == Pa) this[jg]()
  4437. };
  4438. a[jg] = function(b) {
  4439. if (!this[jc]) if (this[jc] = q, this[Gx]()) {
  4440. if (this[Ga] = this[Es](), this[Ic](), this[Ds]()) this[Gj]()
  4441. } else this[Ug]()
  4442. };
  4443. a[Tf] = function(b) {
  4444. this[Ic](); (new h[Ca](Pb))[V] = Ks;
  4445. this[vc](b)
  4446. };
  4447. a[Gx] = function() {
  4448. switch (ke(this[za][NK])) {
  4449. case qI:
  4450. case d:
  4451. return l
  4452. }
  4453. return q
  4454. };
  4455. a[Es] = function() {
  4456. if (this[Ga] != e) return this[Ga];
  4457. if (this[za][Cs] != e) return this[za][Cs];
  4458. try {
  4459. if (this[za][$v] != e) return this[za][$v]
  4460. } catch(b) {}
  4461. try {
  4462. if (this[za][nw] != e) return this[za][nw]
  4463. } catch(a) {}
  4464. return e
  4465. };
  4466. a[lw] = function(b) {
  4467. var a = this[Kt](b),
  4468. k = {},
  4469. M = e;
  4470. if (L[eo]) M = new XMLHttpRequest,
  4471. a && (M[qB] === oa && L[pB]) && (M = new XDomainRequest);
  4472. else {
  4473. for (var m = d,
  4474. p = c[Kx][r]; m < p; m++) try {
  4475. M = new ActiveXObject(axVersions);
  4476. break
  4477. } catch(s) {}
  4478. if (M == e) return l
  4479. }
  4480. if (h[A][zt](b[H]) && M[yx]) M[yx]([V, Vb, uI][R](E));
  4481. this[zm] = typeof M[Bs] === fc ? n: g;
  4482. m = e;
  4483. m = b[zi] == h[A][Ki] ? this[Kl](b[ja], b[Sh]) : b[ja];
  4484. M[SK](b[zi] || h[A][Ki], m, q);
  4485. a && (M instanceof XMLHttpRequest && this[zm] == g) && (k[oB] = Cu[TK]);
  4486. b[Sh] && b[zi] == h[A][Uk] && (k[kL] = [nB, Vb, xI][R](E));
  4487. a || k[zs] || (k[zs] = eo);
  4488. if (b[Hn]) for (var w in b[Hn]) k[w] = b[Hn][w];
  4489. h[A][At](b[H]) && (M[Bs] = $H);
  4490. for (w in k) M[ZH](w, k[w]);
  4491. this[za] = M;
  4492. return q
  4493. };
  4494. a[Ic] = function() {
  4495. qf(this[Xd]);
  4496. var b = this[za];
  4497. b[Xw] = e;
  4498. b[Mn] = e;
  4499. b[dw] = e;
  4500. b[Jk] = e;
  4501. b[xf] = e;
  4502. b[mw] = e;
  4503. b[mB] = e;
  4504. b[On] = e
  4505. };
  4506. a[Ds] = function() {
  4507. var b = this[Ob][Xb];
  4508. switch (this[Ob][H]) {
  4509. case h[A][Oi]:
  4510. return b[xf] = h[ob](this[Vv], this),
  4511. this[ge] != E && (b[jt] = Ew),
  4512. b[ja] = this[Kl](this[Ob][ja], this[Ob][Sh]),
  4513. this[je] = this[Ga],
  4514. this[Ga] = b,
  4515. l;
  4516. case h[A][hd]:
  4517. b = Z[sa](xx);
  4518. b[V] = this[Ga];
  4519. this[je] = this[Ga];
  4520. this[Ga] = b;
  4521. break;
  4522. case h[A][Zd]:
  4523. Z[Wl](Jp)[d][Di](b);
  4524. if (b[Uv]) b[Uv][lB] = this[Ga];
  4525. else {
  4526. var a = Z[iB](this[Ga]);
  4527. b[Di](a)
  4528. }
  4529. this[je] = this[Ga];
  4530. this[Ga] = b;
  4531. break;
  4532. case h[A][Li]:
  4533. a = this[Gn](this[Ga], [V, Vb, vp][R](E));
  4534. this[je] = this[Ga];
  4535. this[Ga] = a;
  4536. break;
  4537. case h[A][Ld]:
  4538. a = this[Gn](this[Ga], [qa, Vb, Tv][R](E));
  4539. this[je] = this[Ga];
  4540. a[ts] != e ? (b[Di](a[ts]), this[Ga] = b) : this[Ga] = a;
  4541. break;
  4542. case h[A][yc]:
  4543. case h[A][Kb]:
  4544. b = {};
  4545. try {
  4546. b = JSON[Xl](this[Ga])
  4547. } catch(c) {
  4548. b = c
  4549. }
  4550. this[je] = this[Ga];
  4551. this[Ga] = b
  4552. }
  4553. return q
  4554. };
  4555. a[Gn] = function(b, a) {
  4556. var d = e;
  4557. try {
  4558. L[CI] ? d = (new DOMParser)[WH](b, a) : (d = new ActiveXObject([ew, aa, gB][R](E)), d[VK] = l, d[fB](b))
  4559. } catch(c) {}
  4560. return d
  4561. };
  4562. a[Vv] = function() {
  4563. var b = this[Ob][Xb];
  4564. b && (b[xf] = e);
  4565. this[Gj]()
  4566. };
  4567. a[da] = function() {
  4568. return dB
  4569. };
  4570. h[gm] = c
  4571. })();
  4572. typeof JSON !== jd && (JSON = {}); (function() {
  4573. function c(b) {
  4574. return b < Ba ? bg + b: b
  4575. }
  4576. function a(b) {
  4577. h[Qv] = d;
  4578. return h[Hf](b) ? xi + b[wi](h,
  4579. function(b) {
  4580. var a = l[b];
  4581. return typeof a === fc ? a: ms + (ls + b[Pv](d)[da](x))[$a]( - Pa)
  4582. }) + xi: xi + b + xi
  4583. }
  4584. function b(c, f) {
  4585. var e, h, t, l, p = k,
  4586. u, n = f[c];
  4587. n && (typeof n === jd && typeof n[gg] === ld) && (n = n[gg](c));
  4588. typeof q === ld && (n = q[Eb](f, c, n));
  4589. switch (typeof n) {
  4590. case fc:
  4591. return a(n);
  4592. case Te:
  4593. return Uq(n) ? mh(n) : vi;
  4594. case is:
  4595. case vi:
  4596. return mh(n);
  4597. case jd:
  4598. if (!n) return vi;
  4599. k += m;
  4600. u = [];
  4601. if (oc[G][da][gf](n) === zL) {
  4602. l = n[r];
  4603. for (e = d; e < l; e += g) u[e] = b(e, n) || vi;
  4604. t = u[r] === d ? NA: k ? MA + k + u[R](Lv + k) + Si + p + Vp: EH + u[R](ec) + Vp;
  4605. k = p;
  4606. return t
  4607. }
  4608. if (q && typeof q === jd) for (l = q[r], e = d; e < l; e += g) {
  4609. if (typeof q[e] === fc && (h = q[e], t = b(h, n))) u[S](a(h) + (k ? hs: Jm) + t)
  4610. } else for (h in n) if (oc[G][bd][Eb](n, h) && (t = b(h, n))) u[S](a(h) + (k ? hs: Jm) + t);
  4611. t = u[r] === d ? LA: k ? KA + k + u[R](Lv + k) + Si + p + ds: DH + u[R](ec) + ds;
  4612. k = p;
  4613. return t
  4614. }
  4615. }
  4616. ba;
  4617. typeof Od[G][gg] !== ld && (Od[G][gg] = function(b) {
  4618. return Uq(this[ss]()) ? this[QH]() + tw + c(this[bB]() + g) + tw + c(this[XA]()) + mq + c(this[VA]()) + Jm + c(this[NH]()) + Jm + c(this[UA]()) + sx: e
  4619. },
  4620. mh[G][gg] = Pm[G][gg] = Vq[G][gg] = function(b) {
  4621. return this[ss]()
  4622. });
  4623. var f = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
  4624. h = /[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
  4625. k, m, l = function(b, a, d, c, f, g, e, h) {
  4626. b[TA] = a;
  4627. b[MH] = d;
  4628. b[Si] = c;
  4629. b[QA] = f;
  4630. b[xo] = g;
  4631. b[xi] = e;
  4632. b[KH] = h;
  4633. return b
  4634. } ({},
  4635. PA, OA, iM, JH, NI, $K, PI),
  4636. q;
  4637. typeof JSON[zq] !== ld && (JSON[zq] = function(a, c, f) {
  4638. var e;
  4639. m = k = E;
  4640. if (typeof f === Te) for (e = d; e < f; e += g) m += Kf;
  4641. else typeof f === fc && (m = f);
  4642. if ((q = c) && typeof c !== ld && (typeof c !== jd || typeof c[r] !== Te)) throw new Zh([yc, aa, zq][R](E));
  4643. c = b;
  4644. f = E;
  4645. e = {};
  4646. e[E] = a;
  4647. return c(f, e)
  4648. });
  4649. typeof JSON[Xl] !== ld && (JSON[Xl] = function(b, a) {
  4650. function c(b, d) {
  4651. var f, g, e = b[d];
  4652. if (e && typeof e === jd) for (f in e) oc[G][bd][Eb](e, f) && (g = c(e, f), g !== oa ? e[f] = g: delete e[f]);
  4653. return a[Eb](b, d, e)
  4654. }
  4655. var g;
  4656. b = mh(b);
  4657. f[Qv] = d;
  4658. f[Hf](b) && (b = b[wi](f,
  4659. function(b) {
  4660. return ms + (ls + b[Pv](d)[da](x))[$a]( - Pa)
  4661. }));
  4662. if ($I[Hf](b[wi](/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, aJ)[wi](/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, Vp)[wi](/(?:^|:|,)(?:\s*\[)+/g, E))) return g = Mx(JA + b + Wj),
  4663. typeof a === ld ? c(function(b, a) {
  4664. b[E] = a;
  4665. return b
  4666. } ({},
  4667. g), E) : g;
  4668. throw new mL([yc, aa, Xl][R](E));
  4669. })
  4670. })(); (function() {
  4671. ba;
  4672. var c = function(b, a, d) {
  4673. this[y](b, a, d)
  4674. },
  4675. a = c[G] = new h[ue];
  4676. c[Aq] = l;
  4677. c[Tl] = d;
  4678. c[CH] = g;
  4679. c[cJ] = n;
  4680. c[Zp] = {};
  4681. c[Jb] = [];
  4682. c[IA] = function() {
  4683. return c[Jb][r] > d
  4684. };
  4685. c[ri] = {};
  4686. c[nd] = function(b, a, d, g) {
  4687. if (g) c[Ap](b);
  4688. return new c(b, a, d)
  4689. };
  4690. c[Fb] = function(b, a) {
  4691. for (var e = c[Jb][$a](), h = e[r] - g; h >= d; h--) {
  4692. var k = e[h];
  4693. if (! (a && !k[Cf] || k[ab])) k[Fb](k[Xe] ? g: b)
  4694. }
  4695. };
  4696. c[af] = function(b) {
  4697. if (b[H] == Fb) this[Fb](b[Hg], b[Db])
  4698. };
  4699. c[Ap] = function(b) {
  4700. if (b[We]) {
  4701. for (var a = c[Jb], e = a[r] - g; e >= d; e--) {
  4702. var h = a[e];
  4703. h[Wd] == b && (h[ab] = q, a[Qb](e, g))
  4704. }
  4705. b[We] = d
  4706. }
  4707. };
  4708. c[AH] = function() {
  4709. for (var b = c[Jb], a = d, g = b[r]; a < g; a++) {
  4710. var e = b[a];
  4711. e[ab] = q;
  4712. e[xa][We] = d
  4713. }
  4714. b[r] = d
  4715. };
  4716. c[hJ] = function(b) {
  4717. return b ? b[We] : c[Jb] && !!c[Jb][r]
  4718. };
  4719. c[bo] = function(b, a) {
  4720. var g = b[Ek];
  4721. g == e && (b[Ek] = g = d);
  4722. for (var h = d,
  4723. k = a[r], l = c[ri]; h < k; h++) {
  4724. var q = a[h];
  4725. if (l[q]) {
  4726. for (var p = l[q], n = d, s = p[r]; n < s && !(g < p[n][Ek]); n++);
  4727. l[q][Qb](n, d, b)
  4728. } else l[q] = [b]
  4729. }
  4730. };
  4731. c[Tj] = function(b, a) {
  4732. var d = b[Wd],
  4733. e = c[Jb];
  4734. if (a) {
  4735. if (d && (d[We] = d[We] ? d[We] + g: g), e[S](b), !c[od]) {
  4736. if (c[Aq] && h[bk]) h[bk][pa](Fb, c);
  4737. c[od] = q
  4738. }
  4739. } else for (d && d[We]--, d = e[r]; d--;) if (e[d] == b) {
  4740. e[Qb](d, g);
  4741. break
  4742. }
  4743. };
  4744. a[Cf] = l;
  4745. a[le] = l;
  4746. a[Fa] = d;
  4747. a[Cw] = e;
  4748. a[xa] = e;
  4749. a[Mb] = e;
  4750. a[Dk] = l;
  4751. a[ab] = l;
  4752. a[id] = e;
  4753. a[Rg] = e;
  4754. a[eg] = e;
  4755. a[Qg] = e;
  4756. a[Fh] = d;
  4757. a[Cx] = d;
  4758. a[Hd] = -g;
  4759. a[Wd] = e;
  4760. a[Xe] = l;
  4761. a[od] = l;
  4762. a[y] = function(b, a, d) {
  4763. this[xa] = this[Wd] = b;
  4764. if (a && (this[Xe] = a[Dv], this[Cf] = a[Cf], this[le] = a[le], a[Ck] && this[pa](jm, a[Ck]), a[oJ])) c[Ap](b);
  4765. this[Cw] = d || {};
  4766. this[id] = {};
  4767. this[Rg] = {};
  4768. this[eg] = [];
  4769. this[Qg] = [];
  4770. if (a && a[Db]) this[ab] = q;
  4771. else c[Tj](this, q);
  4772. if (a && a[Mb] != e) this[Vd](a[Mb], c[Tl])
  4773. };
  4774. a[$r] = function(b, a) {
  4775. if (b == e || b <= d) return this;
  4776. var c = this[Bk](this[id]);
  4777. return this[En](function(b, a, d, c, f, g) {
  4778. b[W] = a;
  4779. b[Dn] = d;
  4780. b[Mg] = c;
  4781. b[bq] = f;
  4782. b[tk] = g;
  4783. return b
  4784. } ({},
  4785. b, c, this[HA], c, a))
  4786. };
  4787. a[Fm] = function(b, a, c) {
  4788. if (Lb(a) || a < d) a = d;
  4789. return this[En](function(b, a, d, c, f) {
  4790. b[W] = a;
  4791. b[Dn] = d;
  4792. b[Mg] = c;
  4793. b[bq] = f;
  4794. return b
  4795. } ({},
  4796. a || d, this[Bk](this[id]), c, this[Bk](this[xp](b))))
  4797. };
  4798. a[Eb] = function(b, a, d) {
  4799. return this[cq](function(b, a, d, c) {
  4800. b[Ja] = a;
  4801. b[Kj] = d;
  4802. b[Ll] = c;
  4803. return b
  4804. } ({},
  4805. b, a ? a: [this], d ? d: this[Wd]))
  4806. };
  4807. a[Cg] = function(b, a) {
  4808. return this[cq](function(b, a, d, c) {
  4809. b[Ja] = a;
  4810. b[Ll] = d;
  4811. b[Kj] = c;
  4812. return b
  4813. } ({},
  4814. this[Cv], this, [b, a ? a: this[Wd]]))
  4815. };
  4816. a[Ej] = function(b) {
  4817. b || (b = this);
  4818. return this[Eb](b[Sb], [l], b)
  4819. };
  4820. a[gL] = function(b) {
  4821. b || (b = this);
  4822. return this[Eb](b[Sb], [q], b)
  4823. };
  4824. a[Vd] = function(b, a) {
  4825. b < d && (b = d);
  4826. a == e && (a = g);
  4827. var c = b,
  4828. h = l;
  4829. c >= this[Fa] && (this[le] ? c %= this[Fa] : (c = this[Fa], h = q));
  4830. if (c == this[Hd]) return h;
  4831. var k = this[Hd];
  4832. this[Mb] = this[Hd] = c;
  4833. this[Fh] = b;
  4834. if (this[Wd]) if (h) this[dq](e, g);
  4835. else if (this[eg][r] > d) {
  4836. for (var n = d,
  4837. p = this[eg][r]; n < p && !(this[eg][n][qc] > c); n++);
  4838. n = this[eg][n - g];
  4839. this[dq](n, (this[Cx] = c - n[qc]) / n[W])
  4840. }
  4841. if (a != d && this[Qg][r] > d) if (this[Xe]) this[qj](c, c);
  4842. else if (a == g && c < k) {
  4843. if (k != this[Fa]) this[qj](k, this[Fa]);
  4844. this[qj](d, c, q)
  4845. } else this[qj](k, c);
  4846. if (h) this[Sb](q);
  4847. this[Ra](jm);
  4848. return h
  4849. };
  4850. a[Fb] = function(a) {
  4851. if (!this[ab]) this[Vd](this[Fh] + a)
  4852. };
  4853. a[Sb] = function(a) {
  4854. if (this[ab] === !!a) return this;
  4855. this[ab] = !!a;
  4856. c[Tj](this, !a);
  4857. return this
  4858. };
  4859. a[Yc] = a[$r];
  4860. a[qc] = a[Fm];
  4861. a[$] = a[Eb];
  4862. a[sn] = a[Cg];
  4863. a[da] = function() {
  4864. return GA
  4865. };
  4866. a[la] = function() {
  4867. throw [uJ, aa][R](E);
  4868. };
  4869. a[dq] = function(a, f) {
  4870. var h, k, m, n;
  4871. if (a || f != g) {
  4872. this[Dk] = !!a[tk];
  4873. if (this[Dk]) return;
  4874. a[Mg] && (f = a[Mg](f, d, g, g));
  4875. h = a[Dn];
  4876. k = a[bq]
  4877. } else this[Dk] = l,
  4878. h = k = this[id];
  4879. for (var p in this[Rg]) { (m = h[p]) == e && (h[p] = m = this[Rg][p]); (n = k[p]) == e && (k[p] = n = m);
  4880. m = m == n || f == d || f == g || typeof m != Te ? f == g ? n: m: m + (n - m) * f;
  4881. var s = l;
  4882. if (n = c[ri][p]) for (var w = d,
  4883. x = n[r]; w < x; w++) {
  4884. var z = n[w][Ak](this, p, m, h, k, f, !!a && h == k, !a);
  4885. z == c[Zp] ? s = q: m = z
  4886. }
  4887. s || (this[Wd][p] = m)
  4888. }
  4889. };
  4890. a[qj] = function(a, d, c) {
  4891. var e = a,
  4892. h = d,
  4893. k = -g,
  4894. l = this[Qg][r],
  4895. n = g;
  4896. a > d && (e = d, h = a, k = l, l = n = -g);
  4897. for (; (k += n) != l;) {
  4898. d = this[Qg][k];
  4899. var q = d[qc];
  4900. if (q == h || q > e && q < h || c && q == a) d[Ja][gf](d[Ll], d[Kj])
  4901. }
  4902. };
  4903. a[xp] = function(a) {
  4904. var f, g, h, k, l, n;
  4905. for (n in a) if (this[Rg][n] === oa) {
  4906. g = this[Wd][n];
  4907. if (f = c[ri][n]) for (h = d, k = f[r]; h < k; h++) g = f[h][ac](this, n, g);
  4908. this[Rg][n] = this[id][n] = g === oa ? e: g
  4909. }
  4910. for (n in a) {
  4911. g = this[id][n];
  4912. if (f = c[ri][n]) for (l = l || {},
  4913. h = d, k = f[r]; h < k; h++) if (f[h][Cn]) f[h][Cn](this, n, g, a[n], l);
  4914. this[id][n] = a[n]
  4915. }
  4916. if (l) this[xp](l);
  4917. return this[id]
  4918. };
  4919. a[Bk] = function(a) {
  4920. var d = {},
  4921. c;
  4922. for (c in a) d[c] = a[c];
  4923. return d
  4924. };
  4925. a[En] = function(a) {
  4926. a[W] > d && (this[eg][S](a), a[qc] = this[Fa], this[Fa] += a[W]);
  4927. return this
  4928. };
  4929. a[cq] = function(a) {
  4930. a[qc] = this[Fa];
  4931. this[Qg][S](a);
  4932. return this
  4933. };
  4934. a[Cv] = function(a, d) {
  4935. for (var c in a) d[c] = a[c]
  4936. };
  4937. h[Ee] = c
  4938. })(); (function() {
  4939. ba;
  4940. var c = function(a, d, c) {
  4941. this[y](a, d, c)
  4942. },
  4943. a = c[G] = new h[ue];
  4944. a[Cf] = l;
  4945. a[Fa] = d;
  4946. a[le] = l;
  4947. a[Mb] = e;
  4948. a[ab] = l;
  4949. a[Jb] = e;
  4950. a[jh] = e;
  4951. a[zk] = e;
  4952. a[Fh] = d;
  4953. a[Hd] = -g;
  4954. a[Xe] = l;
  4955. a[y] = function(a, d, c) {
  4956. this[Jb] = [];
  4957. c && (this[Xe] = c[Dv], this[le] = c[le], this[Cf] = c[Cf], c[Ck] && this[pa](jm, c[Ck]));
  4958. if (a) this[wp][gf](this, a);
  4959. this[Xr](d);
  4960. if (c && c[Db]) this[ab] = q;
  4961. else h[Ee][Tj](this, q);
  4962. if (c && c[Mb] != e) this[Vd](c[Mb], h[Ee][Tl])
  4963. };
  4964. a[wp] = function(a) {
  4965. var c = arguments[r];
  4966. if (c > g) {
  4967. for (var k = d; k < c; k++) this[wp](arguments[k]);
  4968. return arguments[d]
  4969. }
  4970. if (c == d) return e;
  4971. this[Bn](a);
  4972. this[Jb][S](a);
  4973. a[Sb](q);
  4974. a[ab] = l;
  4975. a[Xe] = this[Xe];
  4976. a[Fa] > this[Fa] && (this[Fa] = a[Fa]);
  4977. if (this[Hd] >= d) a[Vd](this[Hd], h[Ee][Tl]);
  4978. return a
  4979. };
  4980. a[Bn] = function(a) {
  4981. var c = arguments[r];
  4982. if (c > g) {
  4983. for (var e = q,
  4984. h = d; h < c; h++) e = e && this[Bn](arguments[h]);
  4985. return e
  4986. }
  4987. if (c == d) return l;
  4988. c = this[Jb];
  4989. for (h = c[r]; h--;) if (c[h] == a) {
  4990. c[Qb](h, g);
  4991. if (a[Fa] >= this[Fa]) this[Av]();
  4992. return q
  4993. }
  4994. return l
  4995. };
  4996. a[DA] = function(a, c) {
  4997. this[jh][a] = c;
  4998. var g = this[zk];
  4999. if (g) {
  5000. for (var e = d,
  5001. h = g[r]; e < h && !(c < g[e][Mb]); e++);
  5002. g[Qb](e, d,
  5003. function(a, b, c) {
  5004. a[ej] = b;
  5005. a[Mb] = c;
  5006. return a
  5007. } ({},
  5008. a, c))
  5009. }
  5010. };
  5011. a[Xr] = function(a) {
  5012. this[jh] = a ? a: {}
  5013. };
  5014. a[zv] = function() {
  5015. var a = this[zk];
  5016. if (!a) {
  5017. var a = this[zk] = [],
  5018. c = this[jh],
  5019. d;
  5020. for (d in c) a[S](function(a, b, c) {
  5021. a[ej] = b;
  5022. a[Mb] = c;
  5023. return a
  5024. } ({},
  5025. d, c[d]));
  5026. a[Ei](function(a, b) {
  5027. return a[Mb] - b[Mb]
  5028. })
  5029. }
  5030. return a
  5031. };
  5032. a[CA] = function() {
  5033. var a = this[zv](),
  5034. c = this[Mb],
  5035. h = a[r];
  5036. if (h) {
  5037. for (var k = d; k < h && !(c < a[k][Mb]); k++);
  5038. return k == d ? e: a[k - g][ej]
  5039. }
  5040. return e
  5041. };
  5042. a[Se] = function(a) {
  5043. this[Sb](l);
  5044. this[xg](a)
  5045. };
  5046. a[ye] = function(a) {
  5047. this[Sb](q);
  5048. this[xg](a)
  5049. };
  5050. a[Vd] = function(a, c) {
  5051. a < d && (a = d);
  5052. var g = this[le] ? a % this[Fa] : a,
  5053. e = !this[le] && a >= this[Fa];
  5054. if (g == this[Hd]) return e;
  5055. this[Fh] = a;
  5056. this[Mb] = this[Hd] = g;
  5057. for (var h = d,
  5058. k = this[Jb][r]; h < k; h++) if (this[Jb][h][Vd](g, c), g != this[Hd]) return l;
  5059. if (e) this[Sb](q);
  5060. this[Ra](jm);
  5061. return e
  5062. };
  5063. a[Sb] = function(a) {
  5064. this[ab] = !!a;
  5065. h[Ee][Tj](this, !a)
  5066. };
  5067. a[Av] = function() {
  5068. for (var a = this[Fa] = d, c = this[Jb][r]; a < c; a++) {
  5069. var g = this[Jb][a];
  5070. g[Fa] > this[Fa] && (this[Fa] = g[Fa])
  5071. }
  5072. };
  5073. a[Fb] = function(a) {
  5074. this[Vd](this[Fh] + a)
  5075. };
  5076. a[ix] = function(a) {
  5077. var c = bF(a);
  5078. Lb(c) && (c = this[jh][a]);
  5079. return c
  5080. };
  5081. a[da] = function() {
  5082. return BJ
  5083. };
  5084. a[la] = function() {
  5085. throw [BA, aa][R](E);
  5086. };
  5087. a[xg] = function(a) {
  5088. a = this[ix](a);
  5089. if (a != e) this[Vd](a)
  5090. };
  5091. h[AA] = c
  5092. })(); (function() {
  5093. ba;
  5094. var c = function() {
  5095. throw [zA, aa][R](E);
  5096. };
  5097. c[Np] = function(a) {
  5098. return a
  5099. };
  5100. c[xh] = c[Np];
  5101. c[nd] = function(a) {
  5102. a < -g && (a = -g);
  5103. a > g && (a = g);
  5104. return function(b) {
  5105. return a == d ? b: a < d ? b * (b * -a + g + a) : b * ((n - b) * a + (g - a))
  5106. }
  5107. };
  5108. c[pi] = function(a) {
  5109. return function(b) {
  5110. return p[Ec](b, a)
  5111. }
  5112. };
  5113. c[Dj] = function(a) {
  5114. return function(b) {
  5115. return g - p[Ec](g - b, a)
  5116. }
  5117. };
  5118. c[oi] = function(a) {
  5119. return function(b) {
  5120. return (b *= n) < g ? ia * p[Ec](b, a) : g - ia * p[yA](p[Ec](n - b, a))
  5121. }
  5122. };
  5123. c[wH] = c[pi](n);
  5124. c[xA] = c[Dj](n);
  5125. c[vH] = c[oi](n);
  5126. c[sH] = c[pi](ha);
  5127. c[GJ] = c[Dj](ha);
  5128. c[wA] = c[oi](ha);
  5129. c[vA] = c[pi](Pa);
  5130. c[UK] = c[Dj](Pa);
  5131. c[rH] = c[oi](Pa);
  5132. c[uA] = c[pi](Ka);
  5133. c[tA] = c[Dj](Ka);
  5134. c[sA] = c[oi](Ka);
  5135. c[rA] = function(a) {
  5136. return g - p[Ub](a * p[fd] / n)
  5137. };
  5138. c[qA] = function(a) {
  5139. return p[tb](a * p[fd] / n)
  5140. };
  5141. c[nH] = function(a) {
  5142. return - ia * (p[Ub](p[fd] * a) - g)
  5143. };
  5144. c[Iw] = function(a) {
  5145. return function(b) {
  5146. return b * b * ((a + g) * b - a)
  5147. }
  5148. };
  5149. c[pA] = c[Iw](vk);
  5150. c[Rr] = function(a) {
  5151. return function(b) {
  5152. return--b * b * ((a + g) * b + a) + g
  5153. }
  5154. };
  5155. c[NJ] = c[Rr](vk);
  5156. c[Kw] = function(a) {
  5157. a *= OJ;
  5158. return function(b) {
  5159. return (b *= n) < g ? ia * b * b * ((a + g) * b - a) : ia * ((b -= n) * b * ((a + g) * b + a) + n)
  5160. }
  5161. };
  5162. c[PJ] = c[Kw](vk);
  5163. c[oA] = function(a) {
  5164. return - (p[Wf](g - a * a) - g)
  5165. };
  5166. c[QJ] = function(a) {
  5167. return p[Wf](g - --a * a)
  5168. };
  5169. c[jA] = function(a) {
  5170. return (a *= n) < g ? -ia * (p[Wf](g - a * a) - g) : ia * (p[Wf](g - (a -= n) * a) + g)
  5171. };
  5172. c[Pr] = function(a) {
  5173. return g - c[un](g - a)
  5174. };
  5175. c[un] = function(a) {
  5176. return a < g / qg ? uk * a * a: a < n / qg ? uk * (a -= Ml / qg) * a + KK: a < bu / qg ? uk * (a -= cu / qg) * a + WL: uk * (a -= wL / qg) * a + TJ
  5177. };
  5178. c[kH] = function(a) {
  5179. return a < ia ? c[Pr](a * n) * ia: c[un](a * n - g) * ia + ia
  5180. };
  5181. c[uv] = function(a, b) {
  5182. var c = p[fd] * n;
  5183. return function(e) {
  5184. if (e == d || e == g) return e;
  5185. var h = b / c * p[tn](g / a);
  5186. return - (a * p[Ec](n, Ba * (e -= g)) * p[tb]((e - h) * c / b))
  5187. }
  5188. };
  5189. c[iA] = c[uv](g, bf);
  5190. c[Nr] = function(a, b) {
  5191. var c = p[fd] * n;
  5192. return function(e) {
  5193. if (e == d || e == g) return e;
  5194. var h = b / c * p[tn](g / a);
  5195. return a * p[Ec](n, -Ba * e) * p[tb]((e - h) * c / b) + g
  5196. }
  5197. };
  5198. c[WJ] = c[Nr](g, bf);
  5199. c[Zw] = function(a, b) {
  5200. var c = p[fd] * n;
  5201. return function(d) {
  5202. var e = b / c * p[tn](g / a);
  5203. return (d *= n) < g ? -ia * a * p[Ec](n, Ba * (d -= g)) * p[tb]((d - e) * c / b) : a * p[Ec](n, -Ba * (d -= g)) * p[tb]((d - e) * c / b) * ia + g
  5204. }
  5205. };
  5206. c[fA] = c[Zw](g, bf * Ml);
  5207. h[hH] = c
  5208. })(); (function() {
  5209. ba;
  5210. var c = function() {
  5211. throw [fH, aa][R](E);
  5212. };
  5213. c[Ek] = d;
  5214. c[YJ];
  5215. c[eH];
  5216. c[eA];
  5217. c[dA];
  5218. c[aA] = function() {
  5219. h[Ee][bo](c, [nj, B, w, ea]);
  5220. return h[Ee][Zp]
  5221. };
  5222. c[ac] = function(a, b, c) {
  5223. var g = a[xa];
  5224. g[bd](B) || (g[B] = d);
  5225. g[bd](w) || (g[w] = d);
  5226. g[bd](ea) || (g[ea] = d);
  5227. b == ea && (a[jq] = q);
  5228. return b == nj ? e: c
  5229. };
  5230. c[Cn] = function(a, b, f, e, h) {
  5231. b == ea && (a[Ah] = f, a[Uh] = e, c[rn](a, h));
  5232. if (b != nj) return e;
  5233. var k;
  5234. e[bd](ad) || (e[ad] = []);
  5235. b = e[ad];
  5236. e[bd](qe) || (e[qe] = g);
  5237. e[bd](If) || (e[If] = f && f[bd](qe) && f[ad] === b ? f[qe] : d);
  5238. if (e[bd](zh) && e[Ij]) return e;
  5239. f = b[r];
  5240. var u = Ba;
  5241. if (f >= ze && (f - n) % Pa == d) {
  5242. e[zh] = [];
  5243. e[Ij] = d;
  5244. for (var s = n; s < f; s += Pa) {
  5245. for (var w = b[s - n], x = b[s - g], A = b[s + d], z = b[s + g], B = b[s + n], v = b[s + ha], C = w, y = x, E, D, F = d, G = [], H = g; H <= u; H++) {
  5246. D = H / u;
  5247. var I = g - D;
  5248. E = I * I * w + n * I * D * A + D * D * B;
  5249. D = I * I * x + n * I * D * z + D * D * v;
  5250. F += G[G[S](p[Wf]((k = E - C) * k + (k = D - y) * k)) - g];
  5251. C = E;
  5252. y = D
  5253. }
  5254. e[zh][S](F);
  5255. e[zh][S](G);
  5256. e[Ij] += F
  5257. }
  5258. } else throw DK;
  5259. k = e[Nc];
  5260. e[Nc] = q;
  5261. b = {};
  5262. c[li](e, e[If], b);
  5263. a[kq] = Pm(b[ea][Lr](Ka));
  5264. c[li](e, e[qe], b);
  5265. a[Kr] = Pm(b[ea][Lr](Ka));
  5266. e[Nc] = l;
  5267. c[li](e, e[qe], h);
  5268. e[Nc] = k;
  5269. if (!e[Nc]) return e;
  5270. a[rk] = e;
  5271. c[rn](a, h);
  5272. return e
  5273. };
  5274. c[rn] = function(a, b) {
  5275. if (a[Ah] === oa || a[Uh] === oa) {
  5276. if (a[jq]) return;
  5277. a[Ah] = a[id][ea] !== oa ? a[Uh] = a[id][ea] : a[Uh] = b[ea] = a[xa][ea] || d
  5278. }
  5279. if (a[rk] !== oa) {
  5280. var c = a[rk],
  5281. g = a[Uh] - a[Ah],
  5282. e = a[Kr] - a[kq],
  5283. h = g - e;
  5284. if (c[Nc] == Mq) h > Xc ? h -= xb: h < -Xc && (h += xb);
  5285. else if (c[Nc] == Jr) {
  5286. for (; h < d;) h += xb;
  5287. h == d && (g > d && g != Xc) && (h += xb)
  5288. } else if (c[Nc] == qv) {
  5289. for (h = g - (e > Xc ? xb - e: e); h > d;) h -= xb;
  5290. h == d && (g < d && g != -Xc) && (h -= xb)
  5291. }
  5292. c[pv] = h;
  5293. c[nq] = a[Ah] - a[kq];
  5294. a[Ah] = a[Uh] = a[rk] = a[jq] = oa
  5295. }
  5296. };
  5297. c[Ak] = function(a, b, d, g, e, h, k, l) {
  5298. e = e[nj];
  5299. if (e == oa || e === g[nj]) return d;
  5300. if (e[Pw] != h) {
  5301. c[li](e, (e[qe] - e[If]) * (k ? e[qe] : h) + e[If], a[xa]);
  5302. switch (e[Nc]) {
  5303. case Jr:
  5304. case qv:
  5305. case Mq:
  5306. a[xa][ea] += e[nq] + e[pv] * h;
  5307. break;
  5308. default:
  5309. a[xa][ea] += e[nq]
  5310. }
  5311. e[Pw] = h
  5312. }
  5313. return b != ea || e[Nc] && e[Nc] != AK ? a[xa][b] : d
  5314. };
  5315. c[li] = function(a, b, f) {
  5316. if (a[zh] == oa) c[RL](a);
  5317. if (f == oa) {
  5318. f = {};
  5319. var e = d,
  5320. h = d;
  5321. f[B] = d;
  5322. f[w] = e;
  5323. f[ea] = h
  5324. }
  5325. var k = a[zh],
  5326. e = a[ad],
  5327. h = a[Ij] * b,
  5328. l = k[r] - n;
  5329. for (b = d; h > k[b] && b < l;) h -= k[b],
  5330. b += n;
  5331. for (var k = k[b + g], q = d, l = k[r] - g; h > k[q] && q < l;) h -= k[q],
  5332. q++;
  5333. h = q / ++l + h / (l * k[q]);
  5334. b = b * n + n;
  5335. l = g - h;
  5336. f[B] = l * l * e[b - n] + n * l * h * e[b + d] + h * h * e[b + n];
  5337. f[w] = l * l * e[b - g] + n * l * h * e[b + g] + h * h * e[b + ha];
  5338. a[Nc] && (f[ea] = $G * p[Gq]((e[b + g] - e[b - g]) * l + (e[b + ha] - e[b + g]) * h, (e[b + d] - e[b - n]) * l + (e[b + n] - e[b + d]) * h));
  5339. return f
  5340. };
  5341. h[Wz] = c
  5342. })(); (function() {
  5343. function c(a) {
  5344. if (typeof _hmt !== Uz) _hmt[S](a)
  5345. }
  5346. function a() {}
  5347. function b(a) {
  5348. var b = a[Na],
  5349. c = a[Cb],
  5350. f = b / Mc,
  5351. e = Ba,
  5352. k = e + b,
  5353. m = u[sa](K),
  5354. r = u[sa](K),
  5355. s = new h[Ok](r);
  5356. s[yp](l);
  5357. var t = new h[ag];
  5358. if (a[oq] === mp) t[gb][Ja](c)[yi](k, b, b)[Oj]()[Ja](hv)[yi](e + b * Yu | d, b | d, f)[Oj]();
  5359. else {
  5360. t[gb][Ja](c)[Fn](e + d, b * Cl | d, b * Ar | d, b * Ar | d, bf * b | d)[Oj]();
  5361. var v = new h[ag];
  5362. v[B] = e + b * Ml | d;
  5363. v[w] = b * ym | d;
  5364. v[Ma] = b * $p | d;
  5365. v[Oa] = b * mx | d;
  5366. v[ea] = Zc;
  5367. c = p[Lf](b * Cl | d, g);
  5368. v[gb][Ja](hv)[Na](d, d, b * ia | d, c)[Oj]()
  5369. }
  5370. var x = b * Pa / Ba | d,
  5371. f = new h[ag],
  5372. c = Ba,
  5373. y = yn,
  5374. A = Km,
  5375. e = (y + A) * n / c | d;
  5376. f[gb][Ja](yr)[fm](d, d, x, ha, d, Zc);
  5377. f[B] = k;
  5378. f[w] = b;
  5379. f[Ma] = d;
  5380. f[Oa] = -b;
  5381. f[ea] = -y;
  5382. f[mj] = c;
  5383. var z = new h[ag];
  5384. z[gb][Ja](yr)[fm](d, d, x, ha, d, Zc);
  5385. z[B] = k;
  5386. z[w] = b;
  5387. z[Ma] = d;
  5388. z[Oa] = -b;
  5389. z[ea] = A;
  5390. z[mj] = -c;
  5391. s[Kc](f);
  5392. s[Kc](t);
  5393. if (v) s[Kc](v);
  5394. s[Kc](z);
  5395. v = m[Ia](Ib);
  5396. k = n * b + Zc;
  5397. b = n * b + Be;
  5398. x = m[C] = (e + g) * k;
  5399. m[D] = b;
  5400. if (t = Vq(a[vm])) v[bn](x, d),
  5401. v[we]( - g, g);
  5402. for (x = d; x < e; ++x) s[ch](),
  5403. v[Dc](r, d, d, k, b, x * k, d, k, b),
  5404. [f, z][ne](function(a) {
  5405. a[ea] += a[mj];
  5406. if (a[ea] <= -y || a[ea] >= A) a[mj] = -a[mj]
  5407. }); [f, z][ne](function(a) {
  5408. a[ea] = Zc
  5409. });
  5410. s[ch]();
  5411. v[Dc](r, d, d, k, b, x * k, d, k, b);
  5412. m = new h[on](function(a, b, La, c) {
  5413. a[sg] = b;
  5414. a[Va] = La;
  5415. a[mn] = c;
  5416. return a
  5417. } ({},
  5418. [m],
  5419. function(a, b, La, c, d, f) {
  5420. a[Ma] = b;
  5421. a[D] = La;
  5422. a[wh] = c;
  5423. a[Oa] = d;
  5424. a[C] = f;
  5425. return a
  5426. } ({},
  5427. d, b, e + g, d, k),
  5428. function(a, b, La) {
  5429. a[pk] = b;
  5430. a[Jd] = La;
  5431. return a
  5432. } ({},
  5433. [t ? g: d, t ? e: e - g, q, zl], [t ? d: e])));
  5434. m = new h[Hj](m, pk);
  5435. m[Ma] = k / n | d;
  5436. m[Oa] = b / n | d;
  5437. m[Td] = g;
  5438. m[Az] = c;
  5439. m[D] = b;
  5440. m[C] = k;
  5441. m[vm] = t;
  5442. m[Cb] = a[Cb];
  5443. return m
  5444. }
  5445. function f() {
  5446. function a(c) {
  5447. return p[he](c * b)
  5448. }
  5449. var b = N / kn,
  5450. c = u[sa](K),
  5451. f = [Nw, aa, xr][R](E);
  5452. c[C] = a(xb);
  5453. c[D] = a(Go);
  5454. var e = c[Ia](Ib);
  5455. e[Mj] = f;
  5456. e[bm]();
  5457. e[na](a(Pe), a(fa));
  5458. e[k](a(ql), a(fa), a(kp), a(Ea), a(kp), a(jb));
  5459. e[k](a(kp), a(eb), a(ql), a(O), a(Pe), a(O));
  5460. e[k](a($l), a(O), a(jp), a(eb), a(jp), a(jb));
  5461. e[k](a(jp), a(Ea), a($l), a(fa), a(Pe), a(fa));
  5462. e[na](a(Pe), a(ca));
  5463. e[k](a(cm), a(ca), a(ll), a(yd), a(ll), a(jb));
  5464. e[k](a(ll), a(Sd), a(cm), a(ka), a(Pe), a(ka));
  5465. e[k](a(Uo), a(ka), a(em), a(wr), a(em), a(jb));
  5466. e[k](a(em), a(yd), a(Uo), a(ca), a(Pe), a(ca));
  5467. e[na](a(ep), a(fa));
  5468. e[k](a(vr), a(fa), a(ur), a(Bc), a(hq), a(Ea));
  5469. e[s](a(cc), a(Ea));
  5470. e[s](a(cc), a(Pf));
  5471. e[k](a(cc), a(jk), a(SJ), a(ib), a(ik), a(ib));
  5472. e[s](a(ik), a(ib));
  5473. e[k](a(ik), a(ib), a(ph), a(ib), a(ph), a(ib));
  5474. e[s](a(ph), a(ca));
  5475. e[k](a(ph), a(I), a(ik), a(O), a(Mo), a(O));
  5476. e[s](a(cc), a(O));
  5477. e[k](a(cc), a(O), a(cc), a(I), a(cc), a(I));
  5478. e[s](a(cc), a(eb));
  5479. e[s](a(hq), a(eb));
  5480. e[k](a(ur), a(Ab), a(vr), a(O), a(ep), a(O));
  5481. e[k](a(FG), a(O), a(cj), a(Nb), a(cj), a(jb));
  5482. e[k](a(cj), a(uc), a(Oo), a(fa), a(ep), a(fa));
  5483. e[na](a(nl), a(ca));
  5484. e[k](a(Cq), a(ca), a(hq), a(Rb), a(cc), a(wf));
  5485. e[k](a(cc), a(wf), a(cc), a(va), a(cc), a(jb));
  5486. e[k](a(cc), a(Sd), a(Cq), a(ka), a(nl), a(ka));
  5487. e[k](a(tl), a(ka), a(dv), a(Sd), a(dv), a(jb));
  5488. e[k](a(Pu), a(yd), a(tl), a(ca), a(nl), a(ca));
  5489. e[na](a(sr), a(O));
  5490. e[s](a(So), a(O));
  5491. e[k](a(gi), a(O), a(gi), a(I), a(gi), a(I));
  5492. e[s](a(gi), a(Pf));
  5493. e[k](a(gi), a(jk), a(So), a(ib), a(No), a(ib));
  5494. e[s](a(df), a(ib));
  5495. e[k](a(df), a(ib), a(df), a(ib), a(df), a(ib));
  5496. e[s](a(df), a(ca));
  5497. e[k](a(df), a(I), a(df), a(O), a(sr), a(O));
  5498. e[na](a(qh), a(eb));
  5499. e[s](a(Lq), a(Rb));
  5500. e[k](a(dp), a(Re), a(Op), a(ca), a(yj), a(ca));
  5501. e[k](a(cv), a(ca), a(bv), a(Rb), a(Qf), a(va));
  5502. e[s](a(Qf), a(va));
  5503. e[s](a(xb), a(va));
  5504. e[k](a(xb), a(va), a(xb), a(jb), a(xb), a(jb));
  5505. e[k](a(xb), a(uc), a(dp), a(db), a(yj), a(db));
  5506. e[k](a(Io), a(db), a(gn), a(Ea), a(gn), a(jb));
  5507. e[k](a(gn), a(eb), a(Io), a(O), a(yj), a(O));
  5508. e[k](a(Op), a(O), a(dp), a(I), a(qh), a(ca));
  5509. e[k](a(qh), a(Re), a(Kq), a(Re), a(Kq), a(Nb));
  5510. e[k](a(Kq), a(Nb), a(qh), a(eb), a(qh), a(eb));
  5511. e[na](a(Qf), a(tg));
  5512. e[k](a(bv), a(Sd), a(cv), a(ka), a(yj), a(ka));
  5513. e[k](a(oz), a(ka), a(Au), a(Ea), a(Lq), a(tg));
  5514. e[s](a(Lq), a(uh));
  5515. e[s](a(Qf), a(uh));
  5516. e[s](a(Qf), a(tg));
  5517. e[na](a(Ne), a(ib));
  5518. e[k](a(gk), a(ib), a(ce), a(jk), a(ce), a(Jc));
  5519. e[k](a(ce), a(fi), a(gk), a(Pf), a(Ne), a(Pf));
  5520. e[k](a(Nj), a(Pf), a(xd), a(fi), a(xd), a(Jc));
  5521. e[k](a(xd), a(jk), a(Nj), a(ib), a(Ne), a(ib));
  5522. e[na](a(Ne), a(O));
  5523. e[s](a(xd), a(O));
  5524. e[k](a(xd), a(O), a(xd), a(I), a(xd), a(I));
  5525. e[s](a(xd), a(cb));
  5526. e[k](a(xd), a(Bc), a(Nj), a(db), a(Ne), a(db));
  5527. e[s](a(gk), a(db));
  5528. e[k](a(ce), a(db), a(ce), a(db), a(ce), a(db));
  5529. e[s](a(ce), a(ca));
  5530. e[k](a(ce), a(I), a(gk), a(O), a(Ne), a(O));
  5531. e[na](a(av), a(O));
  5532. e[s](a(Jg), a(O));
  5533. e[k](a(Jg), a(O), a(Jg), a(O), a(Jg), a(I));
  5534. e[s](a(Jg), a(ta));
  5535. e[k](a(Jg), a(ka), a(bx), a(fa), a(rr), a(fa));
  5536. e[k](a(Xf), a(fa), a(fn), a(Bc), a(Mh), a(uc));
  5537. e[s](a(Mh), a(uc));
  5538. e[s](a(Mh), a(uc));
  5539. e[k](a(AG), a(Bc), a(gz), a(fa), a(zu), a(fa));
  5540. e[k](a(Iu), a(fa), a(Qo), a(Cd), a(pe), a(uc));
  5541. e[s](a(pe), a(cb));
  5542. e[k](a(pe), a(Bc), a(xu), a(db), a(Zu), a(db));
  5543. e[s](a(wl), a(db));
  5544. e[k](a(wl), a(db), a(pm), a(db), a(pm), a(db));
  5545. e[s](a(pm), a(ca));
  5546. e[k](a(pm), a(I), a(wl), a(O), a(Zu), a(O));
  5547. e[s](a(pe), a(O));
  5548. e[k](a(pe), a(O), a(pe), a(I), a(pe), a(I));
  5549. e[s](a(pe), a(wa));
  5550. e[k](a(pe), a(Ea), a(xG), a(cb), a(DJ), a(cb));
  5551. e[k](a(FL), a(cb), a(oh), a(Ea), a(oh), a(wa));
  5552. e[s](a(oh), a(ca));
  5553. e[k](a(oh), a(I), a(oh), a(I), a(wx), a(I));
  5554. e[s](a(Mh), a(I));
  5555. e[k](a(Mh), a(I), a(Yi), a(I), a(Yi), a(I));
  5556. e[s](a(Yi), a(wa));
  5557. e[k](a(Yi), a(Ea), a(Xf), a(cb), a(fz), a(cb));
  5558. e[k](a(fM), a(cb), a(Xi), a(Ea), a(Xi), a(wa));
  5559. e[s](a(Xi), a(ca));
  5560. e[k](a(Xi), a(I), a(bx), a(O), a(av), a(O));
  5561. e[na](a(nh), a(Nb));
  5562. e[k](a(Ho), a(Nb), a(xl), a(Rb), a(xl), a(vg));
  5563. e[k](a(xl), a(va), a(Ho), a(jb), a(qr), a(jb));
  5564. e[k](a(El), a(jb), a(om), a(jb), a(ic), a(va));
  5565. e[k](a(Zi), a(va), a(ic), a(wf), a(ic), a(Ko));
  5566. e[k](a(ic), a(yd), a(qu), a(Nb), a(nh), a(Nb));
  5567. e[na](a(Mf), a(I));
  5568. e[s](a(Mf), a(ta));
  5569. e[k](a(Mf), a(cb), a(Ro), a(Ya), a(qr), a(Ya));
  5570. e[k](a(jf), a(Ya), a(pr), a(Sc), a(AJ), a(fa));
  5571. e[k](a(tG), a(db), a(ex), a(cb), a(ez), a(uc));
  5572. e[k](a(Of), a(uc), a(Of), a(uc), a(Of), a(uc));
  5573. e[k](a(pr), a(Cd), a(en), a(ka), a(nh), a(ka));
  5574. e[k](a(om), a(ka), a(ic), a(Ea), a(ic), a(ta));
  5575. e[k](a(ic), a(ta), a(ic), a(ta), a(ic), a(ta));
  5576. e[k](a(om), a(ta), a(El), a(ei), a(dn), a(ei));
  5577. e[k](a(Of), a(ei), a(ap), a(tg), a(ap), a(Gb));
  5578. e[k](a(ap), a(ca), a(Of), a(O), a(jf), a(O));
  5579. e[k](a(ow), a(O), a(om), a(Ab), a(ic), a(Re));
  5580. e[k](a(ic), a(Re), a(ic), a(Re), a(ic), a(Re));
  5581. e[k](a(ic), a(Ab), a(cz), a(I), a(rG), a(I));
  5582. e[s](a(bz), a(I));
  5583. e[k](a(Mf), a(I), a(Mf), a(I), a(Mf), a(I));
  5584. e[na](a(Wb), a(Gb));
  5585. e[k](a(rb), a(Rb), a(qd), a(eb), a(F), a(eb));
  5586. e[k](a(lf), a(eb), a(Ce), a(vg), a(Ce), a(tg));
  5587. e[k](a(Be), a(Sd), a(lf), a(ka), a(F), a(ka));
  5588. e[k](a(qd), a(ka), a(Gd), a(uc), a(Wb), a(Ea));
  5589. e[k](a(rd), a(Ea), a(rd), a(Ea), a(rd), a(Ea));
  5590. e[k](a(rd), a(Ea), a(wk), a(uc), a(Hq), a(uc));
  5591. e[k](a(Ng), a(Cd), a(Ng), a(Bc), a(wk), a(db));
  5592. e[k](a(Gd), a(Sc), a(mi), a(Ya), a(Q), a(Ya));
  5593. e[k](a(Ce), a(Sc), a(g), a(Cd), d, a(uh));
  5594. e[k]( - d, a(eb), a(Ce), a(O), a(F), a(O));
  5595. e[k](a(vn), a(O), a(Wb), a(I), a(wk), a(ca));
  5596. e[k](a(Ng), a(Nb), a(Ng), a(Rb), a(rd), a(Gb));
  5597. e[k](a(Wb), a(Gb), a(Wb), a(Gb), a(Wb), a(Gb));
  5598. e[na](a(nr), a(Ya));
  5599. e[k](a(Ix), a(Ya), a(pl), a(fa), a(Yb), a(Bc));
  5600. e[k](a(Yb), a(cb), a(Yb), a(cb), a(Yb), a(cb));
  5601. e[k](a(Yb), a(cb), a(Yb), a(Bc), a(Yb), a(Bc));
  5602. e[s](a(Yb), a(fi));
  5603. e[k](a(Yb), a(ib), a(an), a(gc), a(mr), a(gc));
  5604. e[s](a(Jo), a(gc));
  5605. e[k](a(gj), a(gc), a(gj), a(gc), a(gj), a(sh));
  5606. e[s](a(gj), a(ca));
  5607. e[k](a(gj), a(I), a(Jo), a(I), a(mr), a(I));
  5608. e[s](a(an), a(I));
  5609. e[k](a(Yb), a(I), a(Yb), a(I), a(Yb), a(I));
  5610. e[s](a(Yb), a(wa));
  5611. e[k](a(Yb), a(Ea), a(vf), a(ka), a(rJ), a(ka));
  5612. e[k](a(iL), a(ka), a(dk), a(Ea), a(dk), a(wa));
  5613. e[s](a(dk), a(ca));
  5614. e[k](a(dk), a(I), a(vx), a(I), a($y), a(I));
  5615. e[s](a(rl), a(I));
  5616. e[k](a(rl), a(I), a(be), a(I), a(be), a(I));
  5617. e[s](a(be), a(ei));
  5618. e[k](a(rl), a(cb), a(yu), a(Ya), a(nr), a(Ya));
  5619. e[na](a(Sd), a(Ya));
  5620. e[k](a(fa), a(Ya), a(Jc), a(Cd), a(Jc), a(uh));
  5621. e[k](a(Jc), a(eb), a(Sc), a(O), a(Sd), a(O));
  5622. e[k](a(wa), a(O), a(jb), a(I), a(Ko), a(ca));
  5623. e[k](a(yd), a(Nb), a(Gb), a(Rb), a(wf), a(Gb));
  5624. e[k](a(wf), a(Gb), a(va), a(Gb), a(va), a(Gb));
  5625. e[k](a(uh), a(eb), a(wa), a(Nb), a(wr), a(Nb));
  5626. e[k](a(ka), a(Nb), a(db), a(yd), a(fa), a(wf));
  5627. e[k](a(fa), a(va), a(fa), a(va), a(db), a(va));
  5628. e[s](a(vg), a(va));
  5629. e[k](a(yd), a(va), a(Rb), a(va), a(Rb), a(jb));
  5630. e[k](a(eb), a(Ea), a(vg), a(Ya), a(Sd), a(Ya));
  5631. e[na](a(jb), a(wa));
  5632. e[s](a(db), a(wa));
  5633. e[k](a(fa), a(wa), a(fa), a(ta), a(fa), a(ta));
  5634. e[k](a(fa), a(ta), a(fa), a(ta), a(fa), a(ta));
  5635. e[k](a(db), a(Ea), a(ka), a(ka), a(Sd), a(ka));
  5636. e[k](a(wa), a(ka), a(va), a(Ea), a(va), a(ta));
  5637. e[k](a(va), a(ta), a(va), a(ta), a(va), a(ta));
  5638. e[k](a(va), a(ta), a(va), a(wa), a(jb), a(wa));
  5639. e[na](a($m), a(Ya));
  5640. e[k](a(Ad), a(Ya), a(zc), a(Cd), a(zc), a(uh));
  5641. e[k](a(zc), a(eb), a(Lp), a(O), a(sl), a(O));
  5642. e[k](a(wq), a(O), a(hc), a(I), a(Cj), a(ca));
  5643. e[k](a(gc), a(Nb), a(uf), a(Rb), a(aj), a(Gb));
  5644. e[k](a(aj), a(Gb), a(aj), a(Gb), a(hc), a(Gb));
  5645. e[k](a(jr), a(eb), a(nx), a(Nb), a(sl), a(Nb));
  5646. e[k](a(Mp), a(Nb), a(Oe), a(yd), a(Ad), a(wf));
  5647. e[k](a(Ad), a(va), a(Oe), a(va), a(Oe), a(va));
  5648. e[s](a(Po), a(va));
  5649. e[k](a(gc), a(va), a(sh), a(va), a(sh), a(jb));
  5650. e[k](a(ib), a(Ea), a(Po), a(Ya), a($m), a(Ya));
  5651. e[na](a(uq), a(wa));
  5652. e[s](a(Oe), a(wa));
  5653. e[k](a(Ad), a(wa), a(Ad), a(ta), a(Ad), a(ta));
  5654. e[k](a(Ad), a(ta), a(Ad), a(ta), a(Ad), a(ta));
  5655. e[k](a(Oe), a(Ea), a(Vy), a(ka), a($m), a(ka));
  5656. e[k](a(wq), a(ka), a(hc), a(Ea), a(hc), a(ta));
  5657. e[k](a(hc), a(ta), a(hc), a(ta), a(hc), a(ta));
  5658. e[k](a(hc), a(ta), a(hc), a(wa), a(uq), a(wa));
  5659. e[na](a(de), a(Cd));
  5660. e[s](a(ul), a(Cd));
  5661. e[k](a(Wi), a(Cd), a(ml), a(ka), a(tf), a(cb));
  5662. e[s](a(Ym), a(Sc));
  5663. e[k](a(dj), a(Sc), a(dj), a(Sc), a(dj), a(Sc));
  5664. e[k](a(dj), a(Sc), a(Ym), a(Sc), a(Ym), a(Sc));
  5665. e[s](a(de), a(Sc));
  5666. e[s](a(de), a(Hu));
  5667. e[k](a(de), a(Pf), a(Uy), a(Jc), a(I), a(Jc));
  5668. e[s](a(Ab), a(Jc));
  5669. e[k](a(ca), a(Jc), a(ca), a(Jc), a(ca), a(Jc));
  5670. e[s](a(ca), a(Gb));
  5671. e[k](a(ca), a(Ab), a(Go), a(O), a(ul), a(O));
  5672. e[k](a(Wi), a(O), a(Vu), a(O), a(tf), a(I));
  5673. e[k](a(tf), a(I), a(zd), a(Ab), a(zd), a(ca));
  5674. e[s](a(zd), a(Rb));
  5675. e[k](a(zd), a(Rb), a(tf), a(Rb), a(tf), a(Rb));
  5676. e[k](a(ml), a(eb), a(Vu), a(eb), a(Wi), a(eb));
  5677. e[k](a(kG), a(eb), a(de), a(Rb), a(de), a(vg));
  5678. e[s](a(de), a(Cd));
  5679. e[na](a(xk), a(Ya));
  5680. e[k](a(xq), a(Ya), a(zn), a(fa), a(Dh), a(Bc));
  5681. e[k](a(Dh), a(cb), a(Dh), a(cb), a(Dh), a(cb));
  5682. e[k](a(wc), a(cb), a(wc), a(Bc), a(wc), a(Bc));
  5683. e[s](a(wc), a(fi));
  5684. e[k](a(wc), a(ib), a(Yj), a(gc), a(te), a(gc));
  5685. e[s](a(yf), a(gc));
  5686. e[k](a(yf), a(gc), a(yf), a(gc), a(yf), a(sh));
  5687. e[s](a(yf), a(ca));
  5688. e[k](a(yf), a(I), a(ni), a(I), a(te), a(I));
  5689. e[s](a(wc), a(I));
  5690. e[k](a(wc), a(I), a(wc), a(I), a(wc), a(I));
  5691. e[s](a(wc), a(wa));
  5692. e[k](a(wc), a(Ea), a(Bx), a(ka), a(Sr), a(ka));
  5693. e[k](a(Qd), a(ka), a(Eh), a(Ea), a(Eh), a(wa));
  5694. e[s](a(Eh), a(ca));
  5695. e[k](a(Eh), a(I), a(Vr), a(I), a(Pl), a(I));
  5696. e[s](a(De), a(I));
  5697. e[k](a(De), a(I), a(De), a(I), a(De), a(I));
  5698. e[s](a(De), a(ei));
  5699. e[k](a(De), a(cb), a(Pl), a(Ya), a(xk), a(Ya));
  5700. e[na](a(zc), a(Zc));
  5701. e[k](a(zc), a(Zc), a(Nd), a(pj), a(Nd), a(pj));
  5702. e[k](a(Nd), a(ni), a($c), a(te), a(Yr), a(te));
  5703. e[s](a(ta), a(te));
  5704. e[k](a(wa), a(te), a(wa), a(te), a(wa), a(wg));
  5705. e[k](a(wa), a(wg), a(wa), a(xn), a(wa), a(xn));
  5706. e[s](a(Ya), a(yv));
  5707. e[k](a(Ty), a(Pl), a(fi), a(Og), a(sh), a(Og));
  5708. e[s](a(Km), a(Og));
  5709. e[k](a(yk), a(Og), a(xq), a(Og), a(Yj), a(Qd));
  5710. e[k](a(Ng), a(An), a(Zc), a(pj), a(wc), a(qd));
  5711. e[k](a(xk), a(Be), a(De), d, a(sl), d);
  5712. e[s](a(ml), d);
  5713. e[k](a(tf), d, a(zd), a(g), a(zd), a(g));
  5714. e[k](a(zd), a(n), a(zd), a(n), a(tf), a(n));
  5715. e[s](a(Ab), a(vq));
  5716. e[k](a(Re), a(qd), a(Rb), a(rb), a(vg), a(rb));
  5717. e[s](a(Lo), a(rb));
  5718. e[k](a(Oe), a(rb), a(Lp), a(Gd), a(Sy), a(Wb));
  5719. e[s](a(zc), a(Zc));
  5720. e[na](a(Zi), d);
  5721. e[k](a(El), d, a(nh), a(n), a(en), a(Ka));
  5722. e[s](a(en), a(Ka));
  5723. e[s](a(uf), a(hc));
  5724. e[k](a(uf), a(hc), a(uf), a(hc), a(uf), a(hc));
  5725. e[k](a(uf), a(aj), a(uf), a(Cj), a(gc), a(Cj));
  5726. e[s](a(tg), a(Cj));
  5727. e[k](a(va), a(Cj), a(vg), a(hc), a(yd), a(jr));
  5728. e[s](a(Zi), a(wn));
  5729. e[k](a(tu), a(rd), a(su), a(rb), a(Ku), a(rb));
  5730. e[s](a(pl), a(rb));
  5731. e[k](a(pl), a(rb), a(vf), a(Gd), a(vf), a(Gd));
  5732. e[k](a(vf), a(Wb), a(vf), a(Wb), a(vf), a(Wb));
  5733. e[s](a(dn), a(Nd));
  5734. e[k](a(jf), a(Nd), a(jf), a(zc), a(jf), a(zc));
  5735. e[k](a(jf), a($c), a(dn), a($c), a(nh), a($c));
  5736. e[s](a(an), a($c));
  5737. e[k](a(Ry), a($c), a(vf), a(zc), a(Ix), a(eq));
  5738. e[s](a(Qo), a(wn));
  5739. e[k](a(iJ), a(rd), a(cG), a(rb), a(wx), a(rb));
  5740. e[s](a(fn), a(rb));
  5741. e[k](a(fn), a(rb), a(Xf), a(Gd), a(Xf), a(Gd));
  5742. e[k](a(Xf), a(Wb), a(Xf), a(Wb), a(Xf), a(Wb));
  5743. e[s](a(be), a(Nd));
  5744. e[k](a(be), a(Nd), a(be), a(Nd), a(be), a(zc));
  5745. e[k](a(be), a(zc), a(gr), a($c), a(gr), a($c));
  5746. e[s](a(My), a($c));
  5747. e[k](a(Mh), a($c), a(Ly), a(eq), a(rr), a(yk));
  5748. e[s](a(Eo), a(Wb));
  5749. e[k](a(bG), a(Gd), a(qL), a(rb), a(eJ), a(rb));
  5750. e[s](a(Nj), a(rb));
  5751. e[k](a(df), a(rb), a(eM), a(mi), a(gx), a(Q));
  5752. e[s](a(bi), a(n));
  5753. e[k](a(bi), a(n), a(bi), a(n), a(bi), a(g));
  5754. e[k](a(bi), a(g), a(ol), d, a(ol), d);
  5755. e[s](a(Ro), d);
  5756. e[s](a(Zi), d);
  5757. e[yg]();
  5758. e[Jn]();
  5759. return c
  5760. }
  5761. function t(a, b, c) {
  5762. var d = ZK;
  5763. a === oa ? (a = ty, b = LI) : a = b = QF + a + sy + b + ry + c + II;
  5764. LBShare[ny](function(a, b, c, d, e) {
  5765. a[my] = b;
  5766. a[ly] = c;
  5767. a[ky] = d;
  5768. a[JF] = e;
  5769. return a
  5770. } ({},
  5771. d, a, b, [Ud, Vb, jy, aa, Ii][R](E)))
  5772. }
  5773. function x() {
  5774. function a(b) {
  5775. b = Da[b % Da[r]];
  5776. b !== W && (W = b, da[Sa](function(a, b) {
  5777. a[Cb] = b;
  5778. return a
  5779. } ({},
  5780. W[d])), P[Sa](function(a, b) {
  5781. a[dr] = b;
  5782. return a
  5783. } ({},
  5784. W[g])), T[Sa](function(a, b) {
  5785. a[dr] = b;
  5786. return a
  5787. } ({},
  5788. W[d])))
  5789. }
  5790. function k() {
  5791. var a = mh(V)[r] || g;
  5792. da[Sa](function(a, b, c) {
  5793. a[Oc] = b;
  5794. a[cr] = c;
  5795. return a
  5796. } ({},
  5797. (Il * N | d) + Vc, (a < ha ? El * N / kn | d: Nj * N / kn / a | d) + Vc));
  5798. da[ii](V)
  5799. }
  5800. function s() {++V;
  5801. k();
  5802. G(N / n | d, $ * br | d, Rd, N * ku)
  5803. }
  5804. function F() {
  5805. var a = innerWidth,
  5806. b = innerHeight,
  5807. c = l,
  5808. e = p[re](a / Fa, b / Ga);
  5809. a / b > er ? (N = Fa * e | d, $ = Ga * e | d) : (c = q, N = a, $ = b);
  5810. ja = (b - $) / n | d;
  5811. la = (a - N) / n | d;
  5812. X[C] = N;
  5813. X[D] = $;
  5814. a = function(a, b, c) {
  5815. a[C] = b;
  5816. a[D] = c;
  5817. return a
  5818. } ({},
  5819. N + Vc, $ + Vc);
  5820. ba[Sa](a);
  5821. y[Vw](a,
  5822. function(a, b, c) {
  5823. a[Lc] = b;
  5824. a[bc] = c;
  5825. return a
  5826. } ({},
  5827. la + Vc, ja + Vc));
  5828. P[Sa](a);
  5829. z[Sa](a);
  5830. c ? a[Um] = Su: a = function(a, b, c, d, e, f) {
  5831. a[Lc] = b;
  5832. a[bc] = c;
  5833. a[C] = d;
  5834. a[D] = e;
  5835. a[Um] = f;
  5836. return a
  5837. } ({},
  5838. E, E, E, E, E);
  5839. za[Sa](a);
  5840. qa[Sa](a);
  5841. Aa[Sa](function(a, b) {
  5842. a[cr] = b;
  5843. return a
  5844. } ({},
  5845. (te * e | d) + Vc));
  5846. c = N * Il | d;
  5847. da[Sa](function(a, b, c, d, e) {
  5848. a[C] = b;
  5849. a[D] = c;
  5850. a[bc] = d;
  5851. a[Lc] = e;
  5852. return a
  5853. } ({},
  5854. c + Vc, c + Vc, ($ * br - c / n | d) + Vc, ((N - c) / n | d) + Vc));
  5855. k();
  5856. if (ca) U[Gc](ca);
  5857. c = f();
  5858. ca = new h[tm](c);
  5859. ca[D] = c[D];
  5860. ca[C] = c[C];
  5861. ca[B] = (N - ca[C]) / n | d;
  5862. ca[w] = ym * $ - ca[D] / n | d;
  5863. U[Kc](ca)
  5864. }
  5865. function G(a, b, c, f) {
  5866. if (!ta) {
  5867. ta = q;
  5868. var h = Tb[Na];
  5869. Tb[B] = a;
  5870. Tb[w] = b;
  5871. Tb[Oa] = h;
  5872. Tb[nb] = Tb[mb] = f ? f / h: Cl;
  5873. Tb[ma] = g;
  5874. a = N * ia / h; ++na;
  5875. Y[nd](Tb)[Fm](function(a, b, c, d) {
  5876. a[nb] = b;
  5877. a[mb] = c;
  5878. a[ma] = d;
  5879. return a
  5880. } ({},
  5881. a, a, d), c)[Eb](function() {
  5882. U[Gc](Tb);
  5883. ta = l; --na;
  5884. Tb[Ak] = e
  5885. });
  5886. U[Kc](Tb)
  5887. }
  5888. }
  5889. function I(a, b, c) {++na;
  5890. var f = ak[c];
  5891. c = N * $p;
  5892. for (var h = hy,
  5893. k = f[r] - g; k > -g; --k) {
  5894. var l = f[k];
  5895. l[nb] = l[mb] = ia + p[Fc]() * ia;
  5896. l[B] = a + p[Fc]() * Ba * (p[Fc]() > ia ? g: -g) | d;
  5897. l[w] = b + p[Fc]() * Ba * (p[Fc]() > ia ? g: -g) | d;
  5898. Y[nd](l)[Fm](function(a, b, c) {
  5899. a[B] = b;
  5900. a[w] = c;
  5901. return a
  5902. } ({},
  5903. a + p[Fc]() * c * (p[Fc]() > ia ? g: -g) | d, b + p[Fc]() * c * (p[Fc]() > ia ? g: -g) | d), h);
  5904. U[Kc](l)
  5905. }
  5906. pc(function() {
  5907. for (var a = f[r] - g; a > -g; --a) {
  5908. var b = f[a];
  5909. b[Ak] = e;
  5910. U[Gc](b)
  5911. }--na
  5912. },
  5913. h + Ba)
  5914. }
  5915. function L() {
  5916. V = oa = d;
  5917. k();
  5918. var b = function(a, b, c) {
  5919. a[Ou] = b;
  5920. a[Lx] = c;
  5921. return a
  5922. } ({},
  5923. xh, xh);
  5924. P[Sa](b);
  5925. T[Sa](b);
  5926. a(V / Ka | d);
  5927. pc(function() {
  5928. var a = {},
  5929. b = E;
  5930. a[Ou] = E;
  5931. a[Lx] = b;
  5932. P[Sa](a);
  5933. T[Sa](a)
  5934. },
  5935. A)
  5936. }
  5937. function K(b) {
  5938. function c(a) {
  5939. if (sa) for (var b = sa[r] - g; b > -g; --b) {
  5940. var l = sa[b];
  5941. if (l !== a[H]) {
  5942. sa = e;
  5943. wa = a[H];
  5944. J(u, l, c);
  5945. break
  5946. }
  5947. }
  5948. b = (a = (a[To] && a[To][d] ? a[To][d][hf] : a[hf]) > innerWidth / n) ? h: f;
  5949. b[Jd] || (b[ea] = a ? Ba: -Ba, b[Jd] = q, b[Se](Jd), b[kd] = -n * k[D] * sI * t / k[C])
  5950. }
  5951. if (b) var f = Qq,
  5952. h = va,
  5953. k = f,
  5954. m = h;
  5955. else f = Rq,
  5956. k = h = ua,
  5957. m = f;
  5958. f[Jd] = h[Jd] = l;
  5959. f[ve] = f[B] = -f[C];
  5960. h[ve] = h[B] = N;
  5961. f[kd] = h[kd] = d;
  5962. k[Ac] = k[Eg] = k[w] = ($ * zl | d) - (k[D] / n | d) + Pa;
  5963. m[Ac] = m[Eg] = m[w] = ($ * zl | d) - (m[D] / n | d) + g;
  5964. U[Kc](f);
  5965. U[Kc](h);
  5966. var t = b = p[Lf](N / Km | d, g);
  5967. V >= Q ? t = b * vk: V >= Ba ? t = b * Ml: V >= Ka && (t = b * Ow); ++oa;
  5968. var x = n * k[D] * p[Ec](t / k[C], n),
  5969. z = l,
  5970. y = l,
  5971. A = l;
  5972. pf = function() {
  5973. var b = f[ve],
  5974. e = h[ve]; ! z && (b + f[C] / n | d) >= e && (z = q, (m[w] + m[D] / n | d) < k[w] ? A = y = q: (U[Gc](k), I(k[B], k[w], k[Cb])), J(u, wa, c));
  5975. f[ve] = b + t;
  5976. f[B] = p[he](f[ve]);
  5977. h[ve] = e - t;
  5978. h[B] = p[he](h[ve]);
  5979. f[Jd] && (b = f[kd], f[Ac] += b, f[w] = p[he](f[Ac]), f[kd] += x, b > d && f[Ac] >= f[Eg] && (b = f[kd] = d, f[Ac] = f[w] = f[Eg], f[Jd] = l, f[ea] = d, f[Se](pk), y && (y = l, s())));
  5980. h[Jd] && (b = h[kd], h[Ac] += b, h[w] = p[he](h[Ac]), h[kd] += x, b > d && h[Ac] >= h[Eg] && (b = h[kd] = d, h[Ac] = h[w] = h[Eg], h[Jd] = l, h[ea] = d, h[Se](pk), y && (y = l, s())));
  5981. if (b = f[B] >= N + f[C] * n) U[Gc](f);
  5982. if (e = h[B] <= -h[C]) U[Gc](h);
  5983. b && e && (pf = l, A ? (a(V / Ka | d), pc(function() {
  5984. K(p[Fc]() < ia)
  5985. },
  5986. fa)) : O())
  5987. };
  5988. v(u, wa, c)
  5989. }
  5990. function M() {
  5991. var a = d;
  5992. ya = q;
  5993. pc(function Sq(b) {
  5994. if (ya) {
  5995. b || (b = y[Ig]());
  5996. if (a !== d) {
  5997. var c = l,
  5998. e = b - a;
  5999. pf && (c = q, pf());
  6000. if (na !== d && (c = q, a !== d)) Y[Fb](e);
  6001. c && (Ea && (X[Xa][qk] = ey, X[dy], X[Xa][qk] = E), U[ch]())
  6002. }
  6003. a = b;
  6004. pc(Sq, A)
  6005. }
  6006. },
  6007. A)
  6008. }
  6009. function O() {++oa;
  6010. LBShare[Vh](function(a, b) {
  6011. a[Dg] = b;
  6012. return a
  6013. } ({},
  6014. bc));
  6015. LBShare[Vh](function(a, b) {
  6016. a[Dg] = b;
  6017. return a
  6018. } ({},
  6019. Zq));
  6020. if (oa === n || oa === Pa) LBShare[Vh](function(a, b) {
  6021. a[Dg] = b;
  6022. return a
  6023. } ({},
  6024. Yq));
  6025. a(d);
  6026. ya = l;
  6027. for (var b = LBShare[Yx](V,
  6028. function(a, b, c, e, f, g) {
  6029. a[d] = b;
  6030. a[Km] = c;
  6031. a[nx] = e;
  6032. a[sh] = f;
  6033. a[fa] = g;
  6034. return a
  6035. } ({},
  6036. d, Ka, Ba, Q, wg)) || [bg, aa, rF][R](E), c = Ia[r] - g; c > -g; --c) {
  6037. var e = Ia[c];
  6038. if (V > e[d]) break
  6039. }
  6040. c = e[g];
  6041. e = e[n];
  6042. t(V, b, c);
  6043. b = nF + V + Xx + b + [Wx, Vb, FK][R](E) + c + [Ux, Vb, Vx][R](E) + e;
  6044. Aa[ii](b);
  6045. qa[kv]();
  6046. LBShare[Tx](V)
  6047. }
  6048. function Z() {
  6049. LBShare[Vh](function(a, b, c) {
  6050. a[Dg] = b;
  6051. a[Bg] = c;
  6052. return a
  6053. } ({},
  6054. bc, q));
  6055. LBShare[Vh](function(a, b, c) {
  6056. a[Dg] = b;
  6057. a[Bg] = c;
  6058. return a
  6059. } ({},
  6060. Zq, q));
  6061. LBShare[Vh](function(a, b, c) {
  6062. a[Dg] = b;
  6063. a[Bg] = c;
  6064. return a
  6065. } ({},
  6066. Yq, q));
  6067. qa[Bg]();
  6068. L();
  6069. t();
  6070. M();
  6071. pc(function() {
  6072. K(p[Fc]() > ia)
  6073. },
  6074. Rd)
  6075. }
  6076. c([Ru, Qu, If]);
  6077. za[ii](E)[Bg]();
  6078. Ca[ig]();
  6079. var W = Da[d],
  6080. da = y(iy),
  6081. V = d,
  6082. ca,
  6083. ka = AI,
  6084. pa = zI,
  6085. ua = b(function(a, b, c, d) {
  6086. a[Na] = b;
  6087. a[Cb] = c;
  6088. a[vm] = d;
  6089. return a
  6090. } ({},
  6091. N / wg | d, ka, q)),
  6092. va = b(function(a, b, c, d) {
  6093. a[Na] = b;
  6094. a[Cb] = c;
  6095. a[vm] = d;
  6096. return a
  6097. } ({},
  6098. N / qd | d, ka, q)),
  6099. Qq = b(function(a, b, c, d) {
  6100. a[Na] = b;
  6101. a[Cb] = c;
  6102. a[oq] = d;
  6103. return a
  6104. } ({},
  6105. N / wg | d, pa, mp)),
  6106. Rq = b(function(a, b, c, d) {
  6107. a[Na] = b;
  6108. a[Cb] = c;
  6109. a[oq] = d;
  6110. return a
  6111. } ({},
  6112. N / qd | d, pa, mp)),
  6113. pf,
  6114. ak = {},
  6115. Tb; (function() { [ka, pa][ne](function(a) {
  6116. var b = Ba,
  6117. c = b * n,
  6118. e = new h[ag];
  6119. e[gb][Ja](a)[yi](b, b, b);
  6120. e[Yl](d, d, c, c); (b = ak[a]) || (b = ak[a] = []);
  6121. for (a = d; a < Ba; ++a) b[S](new h[tm](e[fb]));
  6122. e[Nk]()
  6123. });
  6124. var a = new h[ag],
  6125. b = fa,
  6126. c = b * n;
  6127. a[gb][Ja]([Nw, aa, xr][R](E))[yi](b, b, b);
  6128. a[Yl](d, d, c, c);
  6129. Tb = new h[tm](a[fb]);
  6130. Tb[Na] = b;
  6131. Tb[Ma] = b;
  6132. a[Nk]()
  6133. })();
  6134. var na = d,
  6135. ta = l,
  6136. oa = d,
  6137. sa = [ug, dl],
  6138. wa = sa[R](Kf),
  6139. ya = l,
  6140. Ea = RK[Hf](Uw[Zs]);
  6141. pc(function() {
  6142. M();
  6143. K(p[Fc]() > ia)
  6144. },
  6145. Rd);
  6146. F();
  6147. v(m, cy, F);
  6148. P[Sa](function(a, b) {
  6149. a[yw] = b;
  6150. return a
  6151. } ({},
  6152. g));
  6153. U[ch]();
  6154. var Ia = [[d, OK, ay], [Ka, CF, AF], [Ba, zF, yF], [qd, xF, MK], [rd, uF, tF], [Zc, dM, $x], [yn, Zx, nI]],
  6155. oa = d;
  6156. qa[Pc](Ik,
  6157. function(a) {
  6158. switch (a[xa][lI](Sx)) {
  6159. case Rx:
  6160. c([Ru, Qu, lF]);
  6161. Z();
  6162. break;
  6163. case Qx:
  6164. LBShare[by]();
  6165. break;
  6166. case Xq:
  6167. LBShare[Xq]()
  6168. }
  6169. })
  6170. }
  6171. var m = L,
  6172. u = Z,
  6173. A = Rd / Nd | d;
  6174. oc[yh] || (oc[yh] = function(b) {
  6175. a[G] = b;
  6176. return new a
  6177. });
  6178. var y = function() {
  6179. function a(b) {
  6180. var c = typeof b;
  6181. return c === e ? vi: c === jd ? s[Eb](b)[$a](Be, -g)[Cm]() || jd: c
  6182. }
  6183. function b(c) {
  6184. if (!c || typeof c === fc) return l;
  6185. var e = c[r];
  6186. if (typeof e !== Te || Lb(e) || e < d) return l;
  6187. var f = a(c);
  6188. if (f === ld || f === fK) return l;
  6189. if (f === Tz || c[Hr] === g || e === d || e - g in c) return q
  6190. }
  6191. function c(e, f) {
  6192. if (e) {
  6193. if (typeof e === fc) {
  6194. if (e[$a](d, g) === Rz) {
  6195. var h = c;
  6196. u || (u = p[sa](tK));
  6197. u[qn] = e;
  6198. return h(u[ua])
  6199. }
  6200. var h = c,
  6201. k; (k = f) || (k = p);
  6202. if (t[Hf](e)) k = k[Jq](e[$a](g));
  6203. else if (k[Gr]) k = k[Gr](e);
  6204. else throw QL;
  6205. return h(k)
  6206. }
  6207. if (e instanceof c) return e;
  6208. if (a(e) === ld) return n(e);
  6209. if (b(e)) {
  6210. h = oc[yh](B);
  6211. k = h[r] = e[r];
  6212. for (var l = d; l < k; ++l) h[l] = e[l];
  6213. return h
  6214. }
  6215. if (e[Hr]) return h = oc[yh](B),
  6216. h[d] = e,
  6217. h[r] = g,
  6218. h
  6219. }
  6220. return oc[yh](B)
  6221. }
  6222. function f(a, b) {
  6223. for (var c in b) b[bd](c) && (a[c] = b[c]);
  6224. return a
  6225. }
  6226. function h(a) {
  6227. var b = a[Er];
  6228. return b ? b: a[Er] = ++v
  6229. }
  6230. function k(b, c, e, f, g) {
  6231. a(e) === ld && (g = f, f = e, e = oa);
  6232. var m = h(b),
  6233. n = w[m];
  6234. n || (n = w[m] = []);
  6235. var p = e ?
  6236. function(a) {
  6237. var b = a[xa];
  6238. if (!y) {
  6239. for (var c = x[r], g = d; g < c; ++g) {
  6240. var h = x[g];
  6241. b[h] && (y = h)
  6242. }
  6243. if (!y) throw [Dz, aa, G, aa, Ez][R](E);
  6244. }
  6245. b[y](e) && f(a)
  6246. }: f;
  6247. g = g ? q: l;
  6248. c[jj](Kf)[ne](function(a) {
  6249. n[S](function(a, b, c, d, e, f) {
  6250. a[nn] = b;
  6251. a[Dr] = c;
  6252. a[ob] = d;
  6253. a[Cr] = e;
  6254. a[pp] = f;
  6255. return a
  6256. } ({},
  6257. a, f, p, e, g));
  6258. b[pa](a, p, g)
  6259. })
  6260. }
  6261. function m(b, c, e, f, k) {
  6262. if (c && c[tc](Kf) !== -g) return c[jj](Kf)[ne](function(a) {
  6263. m(b, a, e, f, k)
  6264. });
  6265. a(e) === ld && (k = f, f = e, e = oa);
  6266. k = k ? q: l;
  6267. var n = h(b),
  6268. p = w[n];
  6269. if (p) {
  6270. for (var s = d,
  6271. t = p[r], u = d; u < t; ++u) {
  6272. var v = p[u];
  6273. v ? c && v[nn] !== c || (e && v[Cr] !== e || f && v[Dr] !== f || typeof k === is && v[pp] !== k) || (b[ya](v[nn], v[ob], v[pp]), delete p[u], ++s) : ++s
  6274. }
  6275. s === t && (p[r] = d, delete w[n])
  6276. }
  6277. }
  6278. function n(a) { (z = p[$d] === ub) ? a() : A[S](a) === g && k(p, lv,
  6279. function pf() {
  6280. p[$d] === ub && (m(p, lv, pf), pc(function() {
  6281. z = q;
  6282. for (var a = A[r], b = d; b < a; ++b) A[b]();
  6283. A[r] = d;
  6284. A = e
  6285. },
  6286. Pa))
  6287. })
  6288. }
  6289. var p = Z,
  6290. s = oc[G][da],
  6291. t = Lz,
  6292. u,
  6293. w = oc[yh](e),
  6294. v = d,
  6295. x = [WG, VG, Iz, Hz, Gz],
  6296. y,
  6297. z = p[$d] === ub;
  6298. if (!z) var A = [];
  6299. f(c,
  6300. function(a, b, c, d, e, f) {
  6301. a[Vw] = b;
  6302. a[Pc] = c;
  6303. a[ig] = d;
  6304. a[Ig] = e;
  6305. a[Cz] = f;
  6306. return a
  6307. } ({},
  6308. f, k, m,
  6309. function() {
  6310. return Od[Ig] ? Od[Ig]() : (new Od)[Hh]()
  6311. },
  6312. n));
  6313. var B = c[G];
  6314. f(B,
  6315. function(a, b, c, d, e, f, g, h, k, l, m, n) {
  6316. a[r] = b;
  6317. a[ne] = c;
  6318. a[Pc] = d;
  6319. a[ig] = e;
  6320. a[Sa] = f;
  6321. a[ii] = g;
  6322. a[V] = h;
  6323. a[kv] = k;
  6324. a[Bg] = l;
  6325. a[Bz] = m;
  6326. a[NG] = n;
  6327. return a
  6328. } ({},
  6329. d,
  6330. function(a) {
  6331. for (var b = this[r], c = d; c < b; ++c) a(this[c], c)
  6332. },
  6333. function(a, b, c, e) {
  6334. this[r] !== d && k(this[d], a, b, c, e);
  6335. return this
  6336. },
  6337. function(a, b, c, e) {
  6338. this[r] !== d && m(this[d], a, b, c, e);
  6339. return this
  6340. },
  6341. function(a) {
  6342. return this[ne](function(b) {
  6343. f(b[Xa], a)
  6344. })
  6345. },
  6346. function(a) {
  6347. var b = this[d];
  6348. return typeof a !== oa ? (b && (b[qn] = a), this) : b ? b[qn] : E
  6349. },
  6350. function(a) {
  6351. var b = this[d];
  6352. if (typeof a !== oa) {
  6353. if (b) {
  6354. var c = jv;
  6355. np in b && (c = np);
  6356. b[c] = a
  6357. }
  6358. return this
  6359. }
  6360. return b ? b[np] || b[jv] || E: E
  6361. },
  6362. function() {
  6363. return this[Sa](function(a, b) {
  6364. a[qk] = b;
  6365. return a
  6366. } ({},
  6367. hK))
  6368. },
  6369. function() {
  6370. return this[Sa](function(a, b) {
  6371. a[qk] = b;
  6372. return a
  6373. } ({},
  6374. xh))
  6375. },
  6376. function(a) {
  6377. return this[ne](function(b) {
  6378. b[Br][MG](a)
  6379. })
  6380. },
  6381. function(a) {
  6382. return this[ne](function(b) {
  6383. b[Br][Qj](a)
  6384. })
  6385. }));
  6386. return c
  6387. } (),
  6388. P = y(bK),
  6389. T = y(zz),
  6390. z = y(oL),
  6391. Y = h[Ee],
  6392. v = y[Pc],
  6393. J = y[ig],
  6394. W = y(yz);
  6395. y(xz)[ii](Ba); [Ud, Vb][R](E);
  6396. y[Ig]();
  6397. v(u, wm,
  6398. function(a) {
  6399. a[Uc]();
  6400. a[Gu]()
  6401. });
  6402. var ba = y(Ky),
  6403. X = ba[d]; (function(a) {
  6404. a[ht] = d;
  6405. a[Sv] = d;
  6406. a[it] = d;
  6407. a[gt] = e
  6408. })(X[Ia](Ib));
  6409. var U = new h[Ok](X);
  6410. U[yp](l);
  6411. var N, $, ja, la, qa = y(Jy),
  6412. Aa = y(ZF),
  6413. za = y(YF),
  6414. Ca = y(uL),
  6415. Fa = N = X[C],
  6416. Ga = $ = X[D],
  6417. Da = [[XF, Hy], [Fy, Ey], [Dy, Cy], [ZI, kM], [By, Ay], [UI, TI], [yy, RF], [xy, wy], [RI, uy], [OI, MI]];
  6418. h[bk][Lh]();
  6419. Y[Aq] = l;
  6420. t();
  6421. y(function() {
  6422. if (innerWidth / innerHeight <= er) za[Sa](function(a, b) {
  6423. a[Um] = b;
  6424. return a
  6425. } ({},
  6426. Su));
  6427. W[Bg]();
  6428. Ca[Pc](Ik, x)
  6429. })
  6430. })()
  6431. })()
  6432. })(" y=", "use strict", eval, "type", null, "target", isFinite, Boolean, Number, "bubbles", !1, Function, Error, "defaultPrevented", "propagationStopped", "immediatePropagationStopped", "removed", Infinity, "preventDefault", clearInterval, document, "stopImmediatePropagation", Object, setTimeout, Math, "toString", clearTimeout, window, "Event", "addEventListener", Date, "removeEventListener", "more", "share", "retry", "data-action", "_dispatchEvent", "statScore", "\u3011\u79f0\u53f7<br ", "_captureListeners", ">", "\u7684\u4eba\uff01<br ", "call", "length", 1, "\u5206\u8d85\u8fc7", "getRank", "parent", 2, 3, "banner", "slice", "EventDispatcher", "footer", "pos", "\u70b9\u8d5e\u72c2\u9b54", "\u5927\u5e08\u7ea7\u522b\u554a\uff0c\u8d76\u7d27\u70ab\u8000\u4e00\u4e0b\u5427", "\u4f60\u8fd9\u6218\u6597\u529b\u53ea\u67095\u7684\u6e23\u6e23\uff01", "callShare", "get", "resize", ".", "clientWidth", "inline-block", "join", "RAF_SYNCHED", "ry", "RAF", "raf", "TIMEOUT", "_y", "useRAF", "timingMode", "_x", 400, "_inited", 0.165, "_paused", "px", "fontSize", "#wrapper-score", "backgroundColor", "backgroundSize", 50, "_lastTime", 0.7, "logo", "_timerId", "wxFriendDesc", "_getTime", "setInterval", "desc", "title", "updateData", "mozCancelAnimationFrame", "oCancelAnimationFrame", "msCancelAnimationFrame", "tick", "\u7684\u4eba\uff01\u83b7\u5f97\u3010", "\u5206\uff0c\u8d85\u8fc7", "\u53f2\u4e0a\u6700\u840c\u6700\u8d31\u5c0f\u9e1f\u6765\u88ad\uff0c\u5feb\u6765\u8bd5\u8bd5\u5427\uff01", 1E3, "#691953", "getMeasuredTickTime", "#7f3e1d", "#b25322", "#8851bc", "getPaused", "#283725", "#ccd7ca", "_handleSynch", "#887391", "_tick", "#e7dcec", "#957856", "#ebddcd", "webkitRequestAnimationFrame", "#3f5864", "oRequestAnimationFrame", "#board", "delta", "#canvas", 346, "runTime", 236, 224, 204, "performance", "now", "mozNow", "msNow", "oNow", 184, "Ticker", 65, "stageY", 96, "rawY", 132, "pointerID", 142, "_get_localX", 140, 72, "_get_localY", 82, "defineProperties", "localX", "localY", "Event_initialize", "[MouseEvent (type=", " stageX=", 88, "MouseEvent", "identity", 76, 198, 180, 196, "b", "c", 186, 178, "ty", "alpha", 182, "compositeOperation", "visible", "prepend", "append", "prependMatrix", 192, "appendMatrix", 170, "prependTransform", 360, "cos", 166, "appendTransform", 120, "skew", "scale", "translate", "invert", 156, 110, 154, 148, 152, "scaleY", 158, "rotation", 238, 226, 233, 239, "[Matrix2D (a=", 111, " c=", 249, " tx=", " ty=", "Matrix2D", "[Point (x=", 103, 94, "width", "height", "[Rectangle (x=", " width=", 318, 352, 334, 101, "downLabel", 330, 328, "_enabled", "cursor", "pointer", "rollover", 117, 286, 92, "getEnabled", "enabled", 102, 292, "mouseChildren", "over", "out", "down", "actionsEnabled", "gotoAndStop", "hitArea", 296, 109, "ButtonHelper", 108, "offsetX", "offsetY", "blur", "[Shadow]", 123, "Shadow", "6)", "framerate", 640, "_frames", "#loading-progress", "#loading", "_loadCount", "#wrapper-upper", "_frameWidth", "bird_jump", "runSpeed", "run", "#ffb400", "createElement", "img", "src", "getContext", "onload", "_handleImageLoad", "frames", 1.8, "rect", "regX", "classList", 4, 5, 6, "display", "_calculateFrames", "animations", "name", "addClass", "speed", "next", "html", "ready", "getAnimation", "filter", "fn", "ev", "SpriteSheet", "Element", 255, 8, "matches not supported", "rgb(", ",", "oMatchesSelector", "msMatchesSelector", "mozMatchesSelector", "_kId", "%,", "innerHTML", "hsla(", "BASE_64", "querySelectorAll", "B", /^#[^. >#:]+$/, "D", "E", "F", "G", "H", "<", "nodeType", "K", "L", "array", "undefined", "O", "MotionGuidePlugin", "cw", "R", "S", "__guideData", "U", "__rotPathE", "toFixed", "X", "calc", "testRotData", "e", "f", "install", "h", "i", "j", "k", "l", "_rotNormE", "_rotNormS", "elasticInOut", "getElasticOut", "q", "r", "s", "t", "u", "v", "w", "elasticIn", "asin", 7.5625, "bounceOut", "3", "bounceIn", "circInOut", "6", "7", "8", "9", "+", "/", 7, "circIn", 10, "getBackOut", 1.7, "backIn", 14, 15, 17, "sineOut", 19, 20, 21, 22, "sineIn", 24, 25, 26, "quintInOut", 28, 29, 30, "quintOut", 32, 33, "quintIn", "quartIn", 36, "cubicInOut", "quadOut", "abs", 40, 41, "getPowInOut", 43, "getPowIn", "Ease cannot be instantiated", 46, 47, 48, 49, "Timeline", "Timeline can not be cloned", 53, "getCurrentLabel", 55, 56, 57, 58, "addLabel", "removeTween", "setLabels", 62, 63, "_labelList", "Tween", "step", "square", "STROKE_JOINTS_MAP", "miter", "tween", "createCanvas", "[Tween]", "_linearEase", "2d", "command", "_stroke", "p0", "_addStep", "_cloneProps", "wait", "_commitIndex", "setPosition", "_dirty", "onChange", "_actions", "draw", "_updateInstructions", "exec", "_initQueueProps", "path", "moveTo", "MoveTo", "lineTo", "passive", "arcTo", "priority", "arc", "_target", "ignoreGlobalPause", "_plugins", "bezierCurveTo", "BezierCurveTo", "hasTweens", "_tweens", "ClosePath", "(", "_setFill", "}", "{\n", "linearGradient", "beginRadialGradientFill", "radialGradient", "beginBitmapFill", "bitmap", "{}", "hasOwnProperty", "StrokeStyle", ": ", "[\n", "[]", "boolean", "beginLinearGradientStroke", "beginRadialGradientStroke", "null", "0000", "\\u", "replace", "drawRoundRect", "\\t", "\\b", "drawCircle", "Circle", "drawEllipse", "Ellipse", '"', "PolyStar", "\f", "charAt", "bad path data (@", "): ", "\b", "getUTCSeconds", "getUTCHours", "lt", "getUTCDate", "bt", "qt", "cp", "lf", "getUTCMonth", "bf", "valueOf", "[PreloadJS XHRLoader]", "ls", "loadXML", "XMLDOM", "documentElement", "_parseXML", "rr", "createTextNode", "dc", "de", "dp", "beginCmd", "cssText", "y1", "x2", "y2", "onloadend", "headers", "endAngle", "anticlockwise", "X-Requested-With", "cpy", "application", "Origin", "responseType", "XDomainRequest", "withCredentials", "response", "style", "_generateTag", "_getResponse", "XHR_ABORTED", "getResponseHeader", "fill", "restore", "createLinearGradient", "addColorStop", "getAllResponseHeaders", "send", "ratios", "method", "_response", "MSXML2", "createRadialGradient", "r0", "r1", "Msxml2", "createPattern", "repetition", "strokeStyle", "setTransform", "onprogress", "PRELOAD_TIMEOUT", "joints", "miterLimit", "lineWidth", "SVG_NO_BODY", "lineJoin", "_handleSVGError", "_startTagVisibility", '" already exists on window', "radiusBR", " You need to specify a different callback", 0.5522848, " Or re-name the current one", "onreadystatechange", "angle", "Graphics", "_MOUSE_EVENTS", "click", "canplaythrough", "mouseout", "mouseover", "pressmove", "_handleStalled", "_handleError", "_hitTestCanvas", "_hitTestContext", "onerror", "cacheCanvas", "id", "_tag", "tickEnabled", "snapToPixel", "_isAudio", "cacheID", "mask", "_cacheOffsetX", "_cacheOffsetY", "_cacheScale", "_cacheDataURLID", "_cacheDataURL", "_loadTimeout", "iPod", "_bounds", "isOpera", "_applyFilterBounds", "drawImage", "updateContext", "graphics", "getMatrix", "Firefox", "userAgent", "filestart", "rawResult", "result", "fileload", "_cacheWidth", "_cacheHeight", "updateCache", "cache() must be called before updateCache()", "ceil", "fileprogress", "js", "uncache", "wav", "toDataURL", "getStage", "Stage", "ogg", "getConcatenatedMatrix", "localToLocal", "webp", "gif", "jpeg", "stylesheet", "_getBounds", "setBounds", "rel", "[DisplayObject (name=", "shadowColor", "shadowOffsetX", "link", "shadowBlur", "autoplay", "data", " This is most likely due to security restrictions on reading canvas pixel data with local or cross-domain images", "crossOrigin", "_sendFileProgress", "appendChild", "_checkScriptLoadOrder", "_processFinishedLoad", "children", "tickChildren", "FILE_LOAD_ERROR", "DisplayObject_draw", "_sendFileStart", "_handleProgress", "_loadItem", "removeChildAt", "sort", "TagLoader", "completeHandler", "getChildByName", "_createTag", "callback is required for loading JSONP requests", "callback", "swapChildrenAt", "_loadAsJSONP", "ext", "contains", "getObjectUnderPoint", "tag", "maintainOrder", "DisplayObject_getBounds", "_createLoader", "DisplayObject__tick", "_createLoadItem", "loadStartWasDispatched", "autoClear", "PRELOAD_MANIFEST_NULL", "mouseY", "_addItem", "loadFile", "extensions", "mouseMoveOutside", "_get_nextStage", "_nextStage", "types", "_prevStage", "scope", "_pointerData", "_pointerCount", "installPlugin", "isText", "Container_initialize", "isBinary", "update", "loadManifest", "_loadNext", "tickstart", "params", "removeAll", "png", "XMLHttpRequest", "setUseXHR", "putImageData", "enableMouseOver", "_loadedScripts", "_scriptOrder", "_eventListeners", "_numItemsLoaded", "_handleMouseUp", "_loadedResults", "_loadItemsBySrc", "_handleDoubleClick", "_loadItemsById", "_extensionCallbacks", "_getElementRect", "getBoundingClientRect", "maintainScriptOrder", "useXHR", "GET", "offsetLeft", "offsetWidth", "POST", "pageXOffset", "scrollLeft", "clientLeft", "XML", "TEXT", "scrollTop", "clientTop", "getComputedStyle", "currentStyle", "svg", "borderLeftWidth", "paddingTop", "SOUND", "MANIFEST", "borderRightWidth", "paddingBottom", "borderBottomWidth", "right", "bottom", "JSONP", "IMAGE", "_handlePointerMove", "CSS", "pageY", "binary", "_updatePointerPosition", "BINARY", "loadTimeout", "file:", "stagemousemove", "posEvtObj", "_isLocal", "port", "_handlePointerDown", "hostname", "_isCrossDomain", "=", "_mouseOverTarget", "match", "readyState", "[Bitmap (name=", "test", "?", "currentAnimation", "total", "loadstart", "_sendLoadStart", "close", "load", "getItem", "_normalizeFrame", /^(?:\w+:)?\/{2}/i, "Touch", "srcElement", "[Sprite (name=", "_dispatchAnimationEnd", "animationend", "DisplayObject_cloneProps", "pointerId", "touchAction", "BitmapAnimation is deprecated in favour of Sprite", "BitmapAnimation", "[Shape (name=", "pointermove", "MSPointerCancel", "H_OFFSETS", "start", "center", "MSPointerUp", "_IE_handleEvent", "hanging", "_handleEnd", "alphabetic", "_handleStart", 0.01, "identifier", "touchend", "touchstart", "_IOS_handleEvent", "_IE_disable", "textAlign", "_IOS_disable", "maxWidth", "multitouch", "enable", "_drawText", "msMaxTouchPoints", "getMeasuredWidth", "measureText", "msPointerEnabled", "navigator", "ontouchstart", "isSupported", "ColorMatrixFilter", "[ColorMatrixFilter]", "ColorMatrix", "substr", "[ColorMatrix]", "_fixMatrix", /(\s)/, 0.283, 0.072, 65535, "fillText", 127, "maxPoolSize", "_spritePool", "_cleanValue", "adjustContrast", "adjustHue", "copyMatrix", "adjustColor", "Container_getBounds", "_getFrameIndex", "LENGTH", 9.8, 9.4, 8.4, 7.3, " ", "\n", "\r", 4.9, "SpriteSheetUtils cannot be instantiated", 4.7, "addFlippedFrames", 3.6, 3.2, "mergeAlpha", "max", 2.5, 2.25, 2.12, "SpriteSheetUtils", "ERR_DIMENSIONS", 1.78, 1.72, 1.42, 2048, 1.36, 1.06, "timeSlice", 0.98, "progress", 0.95, "_index", 0.89, 0.83, 0.62, "bounds", "nominalBounds", 0.48, "funct", 0.46, "addAnimation", 0.38, 0.36, 0.32, "timeline", 0.28, "_setupMovieClipFrame", "_labels", 0.27, "build", "_startBuild", "_drawNext", 0.24, 0.22, "_run", 0.99, 0.21, "SpriteSheetBuilder cannot be cloned", 0.2, "_fillRow", 0.15, "pow", "floor", "SpriteSheetBuilder", "htmlElement", 0.11, 0.08, 0.07, "absolute", "transformOrigin", "WebkitTransformOrigin", "msTransformOrigin", 0.06, 0.04, "ColorFilter", "DOMElement cannot be cloned", "[ColorFilter]", "_handleDrawEnd", "hidden", "alphaOffset", "redOffset", "alphaMultiplier", "matrix(", "WebkitTransform", "OTransform", "msTransform", "MozTransform", "blueMultiplier", "greenMultiplier", "DOMElement", "[AlphaMaskFilter]", "Filter", "blurX", "AlphaMapFilter", "quality", "[AlphaMapFilter]", 171, 205, 293, 373, "_prepAlphaMap", 137, 241, "_alphaMap", "alphaMap", "BlurFilter", 265, "shg_table", 257, 130, 421, 191, 131, 139, 291, 161, 295, 149, 299, 269, 153, 505, 245, 315, 231, 449, 321, 339, 415, 175, 395, 193, 377, 369, 177, 353, 345, 169, 331, 91, 319, 183, 185, 301, 145, 95, 281, 69, 383, 387, 396, 259, 509, 501, 493, 243, 479, 118, 465, 399, 401, 202, 435, 203, 423, 419, 211, 427, 199, 393, 433, 221, 235, 371, 367, 237, 359, 355, 477, 481, 121, 337, 333, 165, 491, 495, 317, 503, 311, 77, 305, 511, 75, 297, 129, 260, 133, 135, 71, 141, 68, 277, "localToGlobal", parseFloat, 287, "currentTarget", location, 262, escape, "timeStamp", 303, String, 157, 499, 323, 327, 85, isNaN, void 0, 363, 375, "stopPropagation", 232, 115, ")]", 227, 451, 445, Array, "removeAllEventListeners", 218, 97, 215, "restart", 425, "\u4f60\u5f97\u4e86", 209, 417, 207, 411, "1%", "string", "[EventDispatcher]", "indexOf", "\u624b\u6b8b\u764c\u7684\u9006\u88ad\uff01", 263, "\u65e0\u5f71\u624b", 389, 267, 385, "\u8f7b\u5ea6\u624b\u6b8b", 285, "\u4e0d\u8981\u653e\u5f03\u6cbb\u7597\u554a\uff01", "\u624b\u6b8b\u624b\u6296\u7efc\u5408\u75c7", "\u5feb\u627e\u670b\u53cb\u6765\u6cbb\u7597\uff01", 307, 313, 325, 181, "\u624b\u6b8b\u764c\u665a\u671f", 89, 361, "_nextID", 87, 173, 343, 341, 213, 167, "UID", 329, "touches", "synched", "maxDelta", "webkitTransition", 475, 309, "random", 151, "button", "_trackEvent", "cover", "_interval", 143, "imgUrl", 273, "_raf", "cancelAnimationFrame", 469, 497, 0.6, "[BlurFilter]", 283, 357, "getInterval", "\u6211\u5f97\u4e86", "#5d3a7e", 0.97, "blurY", "_handleRAF", "AlphaMaskFilter", "redMultiplier", "_handleTimeout", "px,", "requestAnimationFrame", 1E4, "mozRequestAnimationFrame", "#cde1eb", "#start", "#board-text", "0% 0%", "DELTA_INDEX", 0.02, "time", 266, "unshift", "position", 100, 0.1, 222, 0.12, 0.14, "_getSize", 0.16, "webkitNow", 0.18, "[SpriteSheetBuilder]", "stopAsync", "buildAsync", "_endBuild", "stageX", "label", "rawX", 134, 138, "primary", "frequency", 0.42, "globalToLocal", "index", "x", 0.53, "y", 84, "addFrame", "PI", 90, 176, 0.74, 0.77, "shadow", 0.86, "appendProperties", 168, "sin", 144, "padding", "scaleX", 1.18, 146, 1.3, "sqrt", "a build is already running", 164, 160, 1.6, 1.66, "ERR_RUNNING", 216, 112, 210, 1.96, 105, "skewY", 2.37, "destination-in", 228, 234, " b=", 247, "Point", " height=", 114, "Rectangle", "_workingCanvas", "overLabel", 338, 6.5, 342, 125, 7.5, 354, 310, 116, "_getFrame", "rollout", 106, 124, 306, "pressup", "_isOver", 300, "spaceWidth", "gotoAndPlay", "adjustSaturation", "letterSpacing", "_multiplyMatrix", "Text", "color", 0.6094, 0.082, 282, "transparent", "strokeText", 0.143, 107, 253, "toArray", "split", "complete", "vOffset", "lines", "_animations", "_data", "getMeasuredHeight", "_regX", "getMeasuredLineHeight", "_prepContext", "pointerEnabled", "rS", "#fff", "circle", "add", "count", "textContent", "_IE_enable", "innerText", "textBaseline", "removeClass", "number", 0.85, "show", "getAnimations", "touchcancel", "changedTouches", 0.4, "ideographic", "readystatechange", "middle", "capture", "getFrame", "MSPointerMove", 16, "_workingContext", "msTouchAction", "none", "pointerdown", "Shape", "pointerup", "pointercancel", " See VERSIONS file for info on changes", "activeIDs", "webkitMatchesSelector", "advance", "matches", "%)", "stop", "RELATIVE_PATT", "create", "P", 57.2957795, "loaded", "rotDelta", "_item", "ccw", "_animation", "_advanceCount", "currentAnimationFrame", "_isCanceled", "offset", "W", "spriteSheet", "Y", "_sendError", "_segments", "__rotGlobalS", "guide", "_rotOffE", "MotionGuidePlugin cannot be instantiated", "sourceRect", "extension", "_formatQueryString", "You must specify data", "_mouseOverY", "&", "buildPath", "_mouseOverX", "Ease", "o", "stagemouseup", "protocol", "0", "mouseenter", "getElasticIn", "bounceInOut", 1.5, 8E3, "1", "_dispatchMouseEvent", "inBounds", "2", "4", "5", "JAVASCRIPT", 13, "sineInOut", "json", "_getPointerData", 23, "paddingRight", 31, "borderTopWidth", "sound", "quartInOut", "cubicIn", "pageYOffset", "body", "xml", "offsetHeight", "quadInOut", "_basePath", "_crossOrigin", 38, "quadIn", 39, 51, 52, 54, "getLabels", "_currentlyLoadingScript", "_currentLoads", "updateDuration", "addTween", "butt", "round", "bevel", "_runActions", "_set", "_appendQueueProps", "enableDOMEvents", "_testMouseOver", "fillRect", "_fill", "_activeInstructions", "useTicks", "_disposeItem", "_prevPos", "_prevPosition", "drawend", "drawstart", "isEmpty", "LoadQueue", "_steps", "drawAsPath", "_curQueueProps", "getPreloadHandlers", "removeAllTweens", "_set_nextStage", "tweenjs_count", "_useTicks", "quadraticCurveTo", "removeTweens", "Rect", "PRELOAD_MANIFEST_EMPTY", "object", "LOOP", "NONE", "{", "#000", "Fill", "_loader", "_updateProgress", "setStrokeStyle", "HTMLAudioElement", "[", "setChildIndex", "_getTypeByExtension", "swapChildren", ",\n", "getChildIndex", "sortChildren", "beginStroke", "_setStroke", "Stroke", "_canStartLoad", "beginBitmapStroke", "removeChild", "_handleFileComplete", "charCodeAt", "lastIndex", "_finishOrderedItem", "DisplayObject_initialize", "item", "_removeLoadItem", "\\f", "_hasMouseEventListener", "getElementsByTagName", "_transformBounds", "\\", "applyFilter", "An error has occurred", "decodePath", "\t", "getUTCMinutes", "shadowOffsetY", "at", "rf", "svg+xml", "getUTCFullYear", "jpg", "toJSON", "ss", "rs", "bs", "mp3", "parseFromString", "parse", "rc", "clearRect", "cache", "loader", "styleSheet", "_handleTagReady", "radius", "setRequestHeader", "arraybuffer", "isFirefox", "startAngle", "isVisible", "cp1y", "cp2x", "Chrome", "BeginPath", "responseText", "iPhone", "iPad", "BrowserDetect", "_matrix", "_tagCompleteProxy", "filters", "save", "transform", "props", "_clean", "preload", "colors", "_nextCacheID", "_handleAbort", "onabort", "_rawResponse", "_request", "Microsoft", "radial", "XMLHTTP", 'JSONP callback "', "sides", "radiusBL", "radiusTR", "stroke", "V_OFFSETS", 275, "head", "prototype", "caps", "parentNode", 67, 73, "getTime", 347, "_handleReadyStateChange", "linear", "pointSize", parseInt, !0, "y0", "suppressCrossDomainErrors", "_createXHR", 351, "clone", "off", 439, 403, "ontimeout", "hasEventListener", "getAttribute", "_handleLoad", "handleEvent", 446, "\u65e0\u4eba\u80fd\u654c\uff01", 459, "matrix", 187, 404, "beginPath", 93, "responseXML", "Ticker cannot be instantiated", 1.05, "timeout", "plain; charset=utf-8", "isChrome", "vy", "opera", 159, 261, "x-www-form-urlencoded", "cp1x", "_addEventListener", "clip", 0.5, "[PreloadJS LoadQueue]", "globalAlpha", "#3963cf", "#d44a7b", "x1", "_cleanUp", "_startTime", "_pausedTime", "_applyFilters", "DOMParser", "getCacheDataURL", 279, "_ticks", "_pausedTicks", 278, "_times", "function", 365, "getBounds", "-", "getTransformedBounds", "reset", "mt", 443, "webkitCancelAnimationFrame", "\u3011\u79f0\u53f7\uff01\u4e0d\u670d\u6765\u6218\uff01", "getInstructions", "getImageData", "audio", "drawPolyStar", "_sendFileComplete", "RoundRect", "drawRoundRectComplex", "\u8fd9\u662f\u6211\u73a9\u8fc7\u7684\u6700\u840c\u6700\u8d31\u5c0f\u9e1f\uff0c\u770b\u4f60\u80fd\u8e66\u8df6\u591a\u4e45\u5427\uff1f", "#5a2c36", "\\r", "#904052", "\\\\", "addChild", "drawRect", "curveTo", "getFPS", "_handleFileError", "#8c3975", "removeAllChildren", "#44a72f", "XHRLoader", "#478939", "getNumChildren", "]", "getObjectsUnderPoint", "getEventTime", "getTicks", "#e6c8c1", "mul_table", "opacity", "Container", "blueOffset", /^[\],:{}\s]*$/, "@", "beginFill", "visibility", "mouseX", "PRELOAD_MANIFEST_ERROR", "REVERSE", "IGNORE", "msRequestAnimationFrame", "paused", 270, "MozTransformOrigin", "mouseInBounds", "setMaxConnections", "tickOnUpdate", "Arc", "pop", "hasActiveTweens", "ArcTo", 217, "loop", "pluginData", "LineTo", 0.17, 0.25, "frameBounds", 0.34, "nativeEvent", "addMovieClip", "getResult", " stageY=", 86, "change", "override", "destination-over", "_instructions", "Anonymous", 0.59, "a", "p1", 190, 0.68, "mouseup", "_addAction", "_numItems", "tx", "_updateTargetProps", "_loadedRawResults", "_scale", "Tween can not be cloned", "_timerID", 0.92, 0.3, "isIdentity", "_loadQueueBackup", "transformPoint", "decompose", 1.12, 59, 150, "_loadStartWasDispatched", "maxHeight", "[Timeline]", "[Stage (name=", 98, 45, 162, "getPowOut", 220, 1.84, 208, "left", "offsetTop", "__tmp", "cubicOut", 230, "reinitialize", 2.75, "copy", "extractFrame", "initialize", 3.4, "_flip", 4.3, "BitmapText", "getBackIn", "javascript", 5.5, 7.8, "backOut", "getBackInOut", 1.525, "backInOut", 9, "circOut", 326, "play", "_getLineHeight", "LOAD_TIMEOUT", "mouseleave", "IDENTITY_MATRIX", 128, 288, 0.984375, "_updateText", "[PreloadJS AbstractLoader]", "_handlePointerUp", "z", 290, "elasticOut", "adjustBrightness", "stagemousedown", 104, "Bitmap", "_rotOffS", 0.715, "_drawTextLine", "m", "g", /(?:\r\n|\r|\n)/, "__needsRot", "_parseURI", "rgba(255,255,255,0", "Touch cannot be instantiated", "_images", "_frameHeight", "#wrapper", "orient", "_sendComplete", "__rotPathS", "_sendProgress", 1.2, "T", "Q", "_currentFrame", "jump", "rotOffS", "lastRatio", "back", "maxTouchPoints", "image", "lineHeight", "EXTENSION_PATT", "__touch", /^[./]*?\//i,"window","shape","J","block","outline","A","_IOS_enable","disable","touchmove","hsl(","getNumFrames","Sprite","forEach","rgba(",0.44,"radiusTL","getRGB","getHSL",0,"cancelable","MSPointerDown","10",navigator,"extend",0.8,"[PreloadJS TagLoader]",507,"dblclick","text",setInterval,
  6433. "div",
  6434. "_xhrLevel",
  6435. "C",
  6436. "I",
  6437. "regY",
  6438. "pointers",
  6439. "M",
  6440. "N",
  6441. /\/?[^/]+\.(\w{1,5})$/i,
  6442. "abort",
  6443. 467,
  6444. "images",
  6445. "false",
  6446. "fixed",
  6447. "onloadstart",
  6448. "[Event (type=",
  6449. 379,
  6450. "on",
  6451. "invalid 'path' data, please see documentation for valid paths",
  6452. "_length",
  6453. "_handleLoadStart",
  6454. "getMetrics",
  6455. "error",
  6456. "_snapToPixelEnabled",
  6457. "dispatchEvent",
  6458. "willTrigger",
  6459. "relative",
  6460. "_listeners",
  6461. "push",
  6462. 0.213,
  6463. 126,
  6464. "_jsonResult",
  6465. "href",
  6466. "getElasticInOut",
  6467. ">\u83b7\u5f97\u3010",
  6468. "splice",
  6469. 413,
  6470. 409,
  6471. "p",
  6472. 429,
  6473. "proxy",
  6474. "apply",
  6475. "concat",
  6476. "toUpperCase",
  6477. 0.75,
  6478. "toLowerCase",
  6479. 122,
  6480. 9.6,
  6481. "fillStyle",
  6482. "pageX",
  6483. "\u6df1\u547c\u5438\uff0c\u653e\u8f7b\u677e\uff0c\u518d\u6765\u4e00\u6b21\uff01",
  6484. "css",
  6485. 271,
  6486. "status",
  6487. "_rectangle",
  6488. "\u624b\u6b8b\u661f\u4eba",
  6489. 6.8,
  6490. 405,
  6491. "outLabel",
  6492. "JSON",
  6493. 83,
  6494. 18,
  6495. "",
  6496. /android 4.[12]/i,
  6497. "cp2y",
  6498. 320,
  6499. "manifest",
  6500. 81,
  6501. "open",
  6502. "origin",
  6503. 246,
  6504. "cpx",
  6505. "quartOut",
  6506. "_applyShadow",
  6507. "init",
  6508. "async",
  6509. "paddingLeft",
  6510. 155,
  6511. 212,
  6512. 147,
  6513. "stopOnError",
  6514. 335,
  6515. "_tickTimes",
  6516. "ef",
  6517. "cloneProps",
  6518. 391,
  6519. "skewX",
  6520. "setFPS",
  6521. "\u8d31\u9e1f\u8df3\u8df3",
  6522. '\\"',
  6523. 1.54,
  6524. 44,
  6525. 1.48,
  6526. "addChildAt",
  6527. "resolve",
  6528. 99,
  6529. "_maxConnections",
  6530. 1.24,
  6531. 79,
  6532. "_getObjectsUnderPoint",
  6533. 61,
  6534. "stringify",
  6535. "_handleMouseDown",
  6536. "useTicker",
  6537. "_nextFrameIndex",
  6538. "QuadraticCurveTo",
  6539. 0.05,
  6540. "prependProperties",
  6541. "_visible",
  6542. "nextStage",
  6543. "pause",
  6544. "HTML",
  6545. "to",
  6546. "d",
  6547. "_mouseOverIntervalID",
  6548. 194,
  6549. "end",
  6550. "source",
  6551. "DEG_TO_RAD",
  6552. "_strokeIgnoreScale",
  6553. 80,
  6554. 0.56,
  6555. "Content-Type",
  6556. "tickend",
  6557. SyntaxError,
  6558. "eventPhase",
  6559. 294,
  6560. "ABSOLUTE_PATT",
  6561. "values",
  6562. "_ctx",
  6563. "duration",
  6564. 0.71,
  6565. "_primaryPointerID",
  6566. "font",
  6567. "_oldMtx",
  6568. "canvas",
  6569. "remove",
  6570. "#game",
  6571. "mousemove",
  6572. 268,
  6573. "_handleMouseMove",
  6574. "onstalled",
  6575. "OTransformOrigin",
  6576. "Z",
  6577. "[Text (text=",
  6578. "[DOMElement (name=",
  6579. "__rotGlobalE",
  6580. "#start-btn",
  6581. "n",
  6582. 0.3086,
  6583. "Container_draw",
  6584. "_isPressed",
  6585. "AbstractLoader",
  6586. 113,
  6587. "endFill",
  6588. 2.625,
  6589. "mousedown",
  6590. 8.7,
  6591. "getChildAt",
  6592. "[object Array]",
  6593. 197,
  6594. "setEnabled",
  6595. "event",
  6596. "min",
  6597. "UID cannot be instantiated",
  6598. 12,
  6599. "atan2",
  6600. "DisplayObject",
  6601. 119,
  6602. "isIOS",
  6603. "jsonp",
  6604. "_mapData",
  6605. 229,
  6606. 27,
  6607. "[Graphics]",
  6608. "script",
  6609. "overrideMimeType",
  6610. 225,
  6611. 2.87,
  6612. "SVG",
  6613. 35,
  6614. "_testHit",
  6615. "top",
  6616. 2.62,
  6617. "hitTest",
  6618. "[Filter]",
  6619. "_",
  6620. 1.9,
  6621. "es",
  6622. "dr",
  6623. "lineCap",
  6624. "_handleJSONPLoad",
  6625. "[SpriteSheet]",
  6626. 349,
  6627. "getFrameBounds",
  6628. 42,
  6629. "_goto",
  6630. "_stepPosition",
  6631. "getElementById",
  6632. ":",
  6633. "_register",
  6634. "Selector not supported",
  6635. "validate",
  6636. 70,
  6637. 3.8,
  6638. "canceled",
  6639. 358,
  6640. "endStroke",
  6641. "_getSpaceWidth",
  6642. "_numFrames",
  6643. 179,
  6644. "x0",
  6645. 356,
  6646. 189,
  6647. "getMeasuredFPS",
  6648. "_loadQueue",
  6649. "setPaused",
  6650. "ignoreScale",
  6651. "auto",
  6652. 0.9375,
  6653. "greenOffset",
  6654. "_checkError",
  6655. "_oldProps",
  6656. "[ButtonHelper]",
  6657. "mouseEnabled",
  6658. "_regY",
  6659. ")",
  6660. "px)",
  6661. "[Container (name=",
  6662. 0.65,
  6663. "showAd",
  6664. 60,
  6665. "frame dimensions exceed max spritesheet dimensions",
  6666. "STROKE_CAPS_MAP",
  6667. "rotate",
  6668. "\u76d6\u4e16\u795e\u624b",
  6669. "closePath",
  6670. 11,
  6671. "snapToPixelEnabled",
  6672. 332,
  6673. "_strokeStyle",
  6674. "globalCompositeOperation",
  6675. "clear",
  6676. 289,
  6677. 244,
  6678. 437,
  6679. "bmp",
  6680. 188,
  6681. "\\n",
  6682. "_setupTick",
  6683. " d=",
  6684. "hide",
  6685. "_handleMove",
  6686. "beginLinearGradientFill",
  6687. "cancel",
  6688. "ACTIVEX_VERSIONS",
  6689. "#a74e3a",
  6690. 37,
  6691. 457,
  6692. 163,
  6693. "currentFrame",
  6694. "transition",
  6695. "PRELOAD_NO_FILE",
  6696. "V",
  6697. "set",
  6698. 34,
  6699. "_typeCallbacks");
  6700. </script>
  6701. </body>
  6702. </html>