main.js 118 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729
  1. (function() {
  2. function _ga(a) {
  3. var b = this;
  4. b.container = UD,
  5. b.zc = UD,
  6. b.UP = UD,
  7. b.z9 = UD,
  8. b.uP = UD,
  9. b.g = UD,
  10. b.dh = 1,
  11. b.uI = a.uI != UD ? a.uI: 20,
  12. b.uc = b[W_] = a[zl] | 320,
  13. b.ul = b[w_] = a[zL] | 480,
  14. b.zj = 8888,
  15. b.zD = 400,
  16. b.ut = 20,
  17. b.Us(uf, a),
  18. b.UU = tq,
  19. b.UG = tq,
  20. b.moused = tq
  21. }
  22. function km() {
  23. var a = this;
  24. a.kn = 40,
  25. a.kb = {
  26. r: 12,
  27. R: 8
  28. },
  29. a.kc = [0, .003, .004, .005, .006, .008, .01, .04, .08],
  30. a.d8 = [0, .003 * .8, .0032, .004, .006 * .8, .0064, .008, .032, .064],
  31. a.kx = 450,
  32. a.kz = 350,
  33. a.d7 = 10,
  34. a.KW = new KQ(5, 140, 1, 6, 3, 800, 15, null),
  35. a.KE = new KQ(0, 80, 2, 10, 3, 800, 15, new qg(255, 255, 255)),
  36. a.kl = new qg(255, 140, 62, 1),
  37. a.kj = [new qg(255, 68, 0, 1), new qg(238, 0, 204, 1), new qg(34, 238, 0, 1), new qg(255, 34, 153, 1), new qg(105, 255, 0, 1), new qg(255, 255, 0, 1), new qg(0, 204, 255, 1)],
  38. a.kh = new qg(255, 255, 255, 1),
  39. a.dl = "",
  40. a.kg = [[0, "Cadet"], [10, "Lieutenant"], [25, "Captain"], [50, "Major"], [100, "Colonel"], [150, "Brigadier"], [200, "General"], [250, "Field Marshall"]],
  41. a.kf = [[0, 0, "Crawler"], [0, .5, "Walker"], [1, .4, "Walker"], [1, .8, "Runner"], [2, .5, "Sprinter"], [2, 1, "Racer"]],
  42. a.kd = [[0, "简介", "首先选择一个点,然后走线。 "], [2, "驱逐", "会有一条线一直追逐你!"], [6, "路线", "记住,每一条线必须仍然被使用一次。"]],
  43. a.KH = [[3, "10 个等级", "There are loads more levels to be released soon. \n \nHelp me improve the game by giving me some feedback and sharing it with your friends."]],
  44. a.dc = {},
  45. a.dc.dQ = "No Thanks",
  46. a.dc.dv = "Rate/Review",
  47. a.dc.dn = "If you are enjoying playing Pathuku, help us by giving us a good review/rating. \n \nThanks \nPathuku Team",
  48. a.ks = [],
  49. a.ka = ["this is madness", "please try harder.", "hurry up, you're wasting your battery!"]
  50. }
  51. function wF(a, b, c, d, e, f, g, h) {
  52. var i = this;
  53. i.s = a,
  54. i.zV = b,
  55. i.raduis = c,
  56. i.angle = e,
  57. i[Zk] = f,
  58. g == UD ? i[ZK] = i[Zk].kX( - 100) : i[ZK] = g,
  59. i[ZJ] = 2,
  60. i.t = h,
  61. i.ps = d,
  62. i.lineJoin = "round",
  63. i.t == "qd" && (i.ps += i.ps, i.lineJoin = "miter"),
  64. i.uz = 360 / i.ps
  65. }
  66. function UA(a) {
  67. var b = this;
  68. b.s = a,
  69. b.Gs = new Array,
  70. b.uU = 0,
  71. b.uY = 359
  72. }
  73. function _G(a, b, c, d, e, f, g, h, i, j, k) {
  74. var l,
  75. m,
  76. n,
  77. o = this;
  78. o.ls = [],
  79. o.s = a,
  80. d != UD ? (o.pn = 360 / e, o.ls[pZ] = e, o.Uz = c, o.qmzZ = d, o.zn = f, o.zI = g, o.Y = h, o.color = i == UD ? new qg(255, 255, 255) : i) : (o.pn = 360 / c.ls, o.ls[pZ] = c.ls, o.Uz = c.Uz, o.qmzZ = c.qmzZ, o.zn = c.zn, o.zI = c.zI, o.Y = c.Y, o.color = c.color),
  81. o.zg = 0,
  82. o.aF = 0,
  83. o.zV = b,
  84. o.gI = 0,
  85. o.yq = 0;
  86. for (l = 0, m = mr, n = mn; l < o.ls[pZ]; l++) o.ls[l] = new _tmppp(j + n(m() * k), m() * o.Y)
  87. }
  88. function _tmppp(a, b) {
  89. this.angle = a,
  90. this.Y = b
  91. }
  92. function KQ(a, b, c, d, e, f, g, h) {
  93. var i = this;
  94. i.ls = c,
  95. i.KI = [c, d],
  96. i.Uz = a,
  97. i.qmzZ = b,
  98. i.zn = e,
  99. i.zI = f,
  100. i.Y = g,
  101. i.color = h
  102. }
  103. function qg(a, b, c, d) {
  104. var e = this;
  105. e.r = a,
  106. e.g = b,
  107. e.b = c,
  108. e.a = d
  109. }
  110. function _cr(a) {
  111. var b = this;
  112. b.s = a,
  113. b.cHs = new Array,
  114. b.cH = 0,
  115. b.cqk = 0,
  116. b.aF = 0,
  117. b.TTime = 0,
  118. b.qe = 0,
  119. b.enabled = a1,
  120. b.gI = 0,
  121. b.zs = .02
  122. }
  123. function h(a, b) {
  124. this.x = a,
  125. this.y = b
  126. }
  127. function _D(a, b) {
  128. var c = this;
  129. c.s = a,
  130. c.S = b,
  131. c.inner = new wF(c.s, new h(50, 100), 14, 3, 90, b.kq),
  132. c.outer = new wF(c.s, new h(50, 100), 17, 3, 45, b.kM),
  133. c.ub = .3,
  134. c.qe = 0,
  135. c.visible = tq
  136. }
  137. function un(a, b, c, d) {
  138. var e = this;
  139. e.s = a,
  140. e.sGrid = b,
  141. e.KY = 0,
  142. e.Zz = -1,
  143. e.level = 0,
  144. e[W_] = c,
  145. e[w_] = d,
  146. e.zy = a1,
  147. e.g = UD,
  148. e.KZ = 0
  149. }
  150. function um() {
  151. var a,
  152. b = this;
  153. b.d = [],
  154. b.l = [],
  155. b.qa = 1,
  156. b.t = 0,
  157. b.Uo = new Array(1111, 2222, 3333),
  158. b[pZ] = 0,
  159. a = new Date,
  160. b.id = "RB" + a.getFullYear() + a.getMonth() + "_" + a.getTime()
  161. }
  162. function _l() {
  163. this.p = [],
  164. this.zn = 0
  165. }
  166. function _p(a, b, c) {
  167. this.x = a,
  168. this.y = b,
  169. this.t = c
  170. }
  171. function U8(a, b, c, d) {
  172. var e = this;
  173. e.s = a,
  174. e.Uj = d || 50,
  175. e[W_] = b || 100,
  176. e[w_] = c || 100,
  177. e.uR = 1 / (e.Uj / 1e3),
  178. e.fps = 0,
  179. e.sfps = "FPS",
  180. e.zu = 0,
  181. e.lastTime = new Date
  182. }
  183. function _aJ() {
  184. this.aJ = [],
  185. this.KC = UD
  186. }
  187. function z3(a, b, c, d, e, f, g) {
  188. var h = this;
  189. h.x = a,
  190. h.y = b,
  191. h[W_] = c,
  192. h[w_] = d,
  193. h.aD = e,
  194. h.z4 = f,
  195. h.KN = g
  196. }
  197. function U9() {
  198. this.aDs = [],
  199. this.g = UD
  200. }
  201. function U0() {
  202. this.Zzs = []
  203. }
  204. function _Zz(a, b, c, d) {
  205. var e = this;
  206. e.id = a,
  207. e.KY = b || 0,
  208. e.z5 = b || 0,
  209. e.KU = 0,
  210. e.qds = 0,
  211. e.uN = d
  212. }
  213. function z2(a, b, c, d, e) {
  214. var f,
  215. g,
  216. h,
  217. i,
  218. j,
  219. k,
  220. l,
  221. m,
  222. n = this;
  223. n.a = a,
  224. n.b = b,
  225. n.c = c,
  226. n.d = d,
  227. n.t = e || 0,
  228. n.len = 10,
  229. n.gH = new Array(n.len + 1),
  230. n.gH[0] = 0,
  231. f = n.x(0),
  232. g = n.y(0),
  233. h = 0;
  234. for (i = 1; i <= n.len; i += 1) j = n.x(i * 1 / n.len),
  235. k = n.y(i * 1 / n.len),
  236. l = f - j,
  237. m = g - k,
  238. h += mS(l * l + m * m),
  239. n.gH[i] = h,
  240. f = j,
  241. g = k;
  242. n[pZ] = h
  243. }
  244. function _W(a, b, c, d, e) {
  245. var f = this;
  246. f.s = a,
  247. f[W_] = d,
  248. f[w_] = e,
  249. f.x = b,
  250. f.y = c,
  251. f.row = 0,
  252. f.col = 0,
  253. f.color = "#FF1F98",
  254. f.uM = f.x + f[W_] / 2,
  255. f.z6 = f.y + f[w_] / 2,
  256. f.d = UD
  257. }
  258. function zU(a, b, c, d) {
  259. var e = this;
  260. e.s = a,
  261. e.text = b,
  262. e[W_] = c,
  263. e[w_] = 0,
  264. e.r = [""],
  265. e.textHeight = d | 12,
  266. e.textLineSpacing = 2,
  267. e.uW = tq
  268. }
  269. function _g(a, b, c, d, e, f, g) {
  270. var h = this;
  271. h.version = "1.29",
  272. h.dd = "lieqicun.com/game/list.html",
  273. h.df = "http://www." + h.dd,
  274. h.data = {},
  275. h.z7 = a,
  276. h.s = a[Zs]("2d"),
  277. h.z7Es = b,
  278. h.sEs = b[Zs]("2d"),
  279. h.z7Bg = c,
  280. h.sBg = c[Zs]("2d"),
  281. h.dh = 1,
  282. h.z8 = 30,
  283. h.leftOffset = 0,
  284. h[W_] = f,
  285. h[w_] = g,
  286. h.zP = tq,
  287. h.dt = UD,
  288. h.r = d,
  289. h.R = e,
  290. h.K = h[W_] / h.R,
  291. h.k = (h[w_] - h.z8) / h.r,
  292. h.Ws = new Array,
  293. h.g = new Array,
  294. h.O = new _O,
  295. h.S = new km,
  296. h.S.ki(),
  297. h.level = new um,
  298. h.aJ = new _aJ,
  299. h.aJ.g = h,
  300. h.Y4 = new _Y4(h, h.O, h[W_], h[w_], h.S, h.aJ),
  301. h.cr = new _cr(h.s),
  302. h.cr.S = h.S,
  303. h.cr.pp = h,
  304. h.cr.uE = function(a) {
  305. var b = this,
  306. c = b.pp.pN(a),
  307. d = b.pp.Ger.us(c, b.S.KW),
  308. e = b.pp.Ger.us(c, b.S.KE);
  309. b.pp.D.move(c)
  310. },
  311. h.cr.ze = function(a) {
  312. var b = this.pp.pN(a);
  313. if (this.pp.qw) return;
  314. this.pp.po()
  315. },
  316. h.Ger = new UA(h.sEs),
  317. h.Ger.pp = h,
  318. h.D = new _D(h.sEs, h.S),
  319. h.zX = new un(h.sEs, h.s, h[W_], 20),
  320. h.zX.g = h,
  321. h.Zzs = new U0,
  322. h.fps = new U8(h.sEs, h[W_], 50, h.S.kn),
  323. h.gc = new _gc(h.s, h.O),
  324. h.gc.g = h,
  325. h.aDs = new U9,
  326. h.m = new _m,
  327. h.Uw = new _Uw(h.sBg, h[W_], h[w_], h.R, h.r, h.S.kO, h.S.kh),
  328. h.Uq = 1,
  329. h.dW = 0,
  330. h.aB = 0,
  331. h.aA = 0,
  332. h.time = 0,
  333. h.u9 = tq,
  334. h.qw = tq,
  335. h.zw = tq,
  336. h.u0 = tq,
  337. h.qq = a1,
  338. h.UJ = 0,
  339. h.gC = 0,
  340. h.UL = 0,
  341. h.KJ = 0,
  342. h.dn = 19,
  343. h.UZ = UD,
  344. h.ZC = 20,
  345. h.Zc = 2,
  346. h.d3 = tq,
  347. h.UU = a1,
  348. h.dp = ""
  349. }
  350. function _m() {
  351. var a = this;
  352. a.db = UD,
  353. tq && window.openDatabase && (a.db = openDatabase("Pathuku", "1.0", "m", 2097152), zK("DB CREATED"), a.db.zo(function(a) {
  354. a.executeSql("CREATE TABLE IF NOT EXISTS rbMemory(NamePK TEXT PRIMARY KEY,Val TEXT)")
  355. },
  356. a.zA), a.db.zo(function(a) {
  357. zK("Create"),
  358. a.executeSql("INSERT INTO rbMemory (NamePK,Val) VALUES (?,?)", ["rbdata", "nothinge"])
  359. },
  360. a.zA))
  361. }
  362. function _O() {}
  363. function _gc(a, b) {
  364. var c = this;
  365. c.s = a,
  366. c.R = 4,
  367. c.r = 5,
  368. c.O = b,
  369. c.g = UD
  370. }
  371. function _Y4(a, b, c, d, e, f) {
  372. var g = this;
  373. g.g = a,
  374. g.O = b,
  375. g[W_] = c,
  376. g[w_] = d,
  377. g.S = e,
  378. g.aJ = f,
  379. g.zC = 10,
  380. g.da = 0,
  381. g.dg = UD
  382. }
  383. function _Y4I(a, b, c) {
  384. var d = this;
  385. d[w_] = 35,
  386. d.text = a,
  387. d.aD = b,
  388. d.para = c,
  389. d.selected = tq
  390. }
  391. function _Uw(a, b, c, d, e, f, g) {
  392. this.gds = [new Uc(a, b, c, d, e, f, g), new u2(a, b, c, d, e, f, g, 1), new u2(a, b, c, d, e, f, g, 2), new uk(a, b, c, d, e, f, g)],
  393. this.eE = this.gds[0]
  394. }
  395. function uk(a, b, c, d, e, f, g) {
  396. var h = this;
  397. h.s = a,
  398. h[W_] = b,
  399. h[w_] = c,
  400. h.gb = .005,
  401. h.gb = .005,
  402. h.ls = 18,
  403. h.uw = f,
  404. h.u5 = g
  405. }
  406. function Uc(a, b, c, d, e, f, g) {
  407. var h = this;
  408. h.s = a,
  409. h[W_] = b,
  410. h[w_] = c,
  411. h.z8 = 30,
  412. h.gb = .005,
  413. h.R = d,
  414. h.r = e,
  415. h.K = h[W_] / h.R,
  416. h.k = (h[w_] - h.z8) / h.r,
  417. h.Y = 14,
  418. h.uw = f,
  419. h.u5 = g
  420. }
  421. function u2(a, b, c, d, e, f, g, h) {
  422. var i = this;
  423. i.s = a,
  424. i[W_] = b,
  425. i[w_] = c,
  426. i.gb = .009,
  427. i.K = i[W_] / i.R,
  428. i.k = i[w_] / i.r,
  429. i.uw = f,
  430. i.Uq = h,
  431. i.ps = [],
  432. i.u5 = g
  433. }
  434. var uf,
  435. width,
  436. height,
  437. zl,
  438. zL,
  439. _,
  440. length,
  441. W_,
  442. w_,
  443. pZ,
  444. zK,
  445. a1,
  446. tq,
  447. mm; (function() {
  448. var a = {
  449. x: 0,
  450. y: 0,
  451. t: 0
  452. },
  453. b = {
  454. x: 0,
  455. y: 0,
  456. t: 1
  457. },
  458. c = {
  459. x: 0,
  460. y: 1,
  461. t: 0
  462. },
  463. d = {
  464. x: 0,
  465. y: 1,
  466. t: 1
  467. },
  468. e = {
  469. x: 0,
  470. y: 2,
  471. t: 0
  472. },
  473. f = {
  474. x: 0,
  475. y: 2,
  476. t: 1
  477. },
  478. g = {
  479. x: 0,
  480. y: 3,
  481. t: 0
  482. },
  483. h = {
  484. x: 0,
  485. y: 3,
  486. t: 1
  487. },
  488. i = {
  489. x: 0,
  490. y: 4,
  491. t: 0
  492. },
  493. j = {
  494. x: 0,
  495. y: 4,
  496. t: 1
  497. },
  498. k = {
  499. x: 0,
  500. y: 5,
  501. t: 0
  502. },
  503. l = {
  504. x: 0,
  505. y: 5,
  506. t: 1
  507. },
  508. m = {
  509. x: 0,
  510. y: 6,
  511. t: 0
  512. },
  513. n = {
  514. x: 0,
  515. y: 6,
  516. t: 1
  517. },
  518. o = {
  519. x: 0,
  520. y: 7,
  521. t: 0
  522. },
  523. p = {
  524. x: 0,
  525. y: 7,
  526. t: 1
  527. },
  528. q = {
  529. x: 0,
  530. y: 8,
  531. t: 0
  532. },
  533. r = {
  534. x: 0,
  535. y: 8,
  536. t: 1
  537. },
  538. s = {
  539. x: 0,
  540. y: 9,
  541. t: 0
  542. },
  543. t = {
  544. x: 0,
  545. y: 9,
  546. t: 1
  547. },
  548. u = {
  549. x: 0,
  550. y: 10,
  551. t: 0
  552. },
  553. v = {
  554. x: 0,
  555. y: 10,
  556. t: 1
  557. },
  558. w = {
  559. x: 1,
  560. y: 0,
  561. t: 0
  562. },
  563. x = {
  564. x: 1,
  565. y: 0,
  566. t: 1
  567. },
  568. y = {
  569. x: 1,
  570. y: 1,
  571. t: 0
  572. },
  573. z = {
  574. x: 1,
  575. y: 1,
  576. t: 1
  577. },
  578. A = {
  579. x: 1,
  580. y: 2,
  581. t: 0
  582. },
  583. B = {
  584. x: 1,
  585. y: 2,
  586. t: 1
  587. },
  588. C = {
  589. x: 1,
  590. y: 3,
  591. t: 0
  592. },
  593. D = {
  594. x: 1,
  595. y: 3,
  596. t: 1
  597. },
  598. E = {
  599. x: 1,
  600. y: 4,
  601. t: 0
  602. },
  603. F = {
  604. x: 1,
  605. y: 4,
  606. t: 1
  607. },
  608. G = {
  609. x: 1,
  610. y: 5,
  611. t: 0
  612. },
  613. H = {
  614. x: 1,
  615. y: 5,
  616. t: 1
  617. },
  618. I = {
  619. x: 1,
  620. y: 6,
  621. t: 0
  622. },
  623. J = {
  624. x: 1,
  625. y: 6,
  626. t: 1
  627. },
  628. K = {
  629. x: 1,
  630. y: 7,
  631. t: 0
  632. },
  633. L = {
  634. x: 1,
  635. y: 7,
  636. t: 1
  637. },
  638. M = {
  639. x: 1,
  640. y: 8,
  641. t: 0
  642. },
  643. N = {
  644. x: 1,
  645. y: 8,
  646. t: 1
  647. },
  648. O = {
  649. x: 1,
  650. y: 9,
  651. t: 0
  652. },
  653. P = {
  654. x: 1,
  655. y: 9,
  656. t: 1
  657. },
  658. Q = {
  659. x: 1,
  660. y: 10,
  661. t: 0
  662. },
  663. R = {
  664. x: 1,
  665. y: 10,
  666. t: 1
  667. },
  668. S = {
  669. x: 1,
  670. y: 11,
  671. t: 0
  672. },
  673. T = {
  674. x: 1,
  675. y: 12,
  676. t: 0
  677. },
  678. U = {
  679. x: 2,
  680. y: 0,
  681. t: 0
  682. },
  683. V = {
  684. x: 2,
  685. y: 0,
  686. t: 1
  687. },
  688. W = {
  689. x: 2,
  690. y: 1,
  691. t: 0
  692. },
  693. X = {
  694. x: 2,
  695. y: 1,
  696. t: 1
  697. },
  698. Y = {
  699. x: 2,
  700. y: 2,
  701. t: 0
  702. },
  703. Z = {
  704. x: 2,
  705. y: 2,
  706. t: 1
  707. },
  708. $ = {
  709. x: 2,
  710. y: 3,
  711. t: 0
  712. },
  713. _ = {
  714. x: 2,
  715. y: 3,
  716. t: 1
  717. },
  718. ba = {
  719. x: 2,
  720. y: 4,
  721. t: 0
  722. },
  723. bb = {
  724. x: 2,
  725. y: 4,
  726. t: 1
  727. },
  728. bc = {
  729. x: 2,
  730. y: 5,
  731. t: 0
  732. },
  733. bd = {
  734. x: 2,
  735. y: 5,
  736. t: 1
  737. },
  738. be = {
  739. x: 2,
  740. y: 6,
  741. t: 0
  742. },
  743. bf = {
  744. x: 2,
  745. y: 6,
  746. t: 1
  747. },
  748. bg = {
  749. x: 2,
  750. y: 7,
  751. t: 0
  752. },
  753. bh = {
  754. x: 2,
  755. y: 7,
  756. t: 1
  757. },
  758. bi = {
  759. x: 2,
  760. y: 8,
  761. t: 0
  762. },
  763. bj = {
  764. x: 2,
  765. y: 8,
  766. t: 1
  767. },
  768. bk = {
  769. x: 2,
  770. y: 9,
  771. t: 0
  772. },
  773. bl = {
  774. x: 2,
  775. y: 9,
  776. t: 1
  777. },
  778. bm = {
  779. x: 2,
  780. y: 10,
  781. t: 0
  782. },
  783. bn = {
  784. x: 2,
  785. y: 10,
  786. t: 1
  787. },
  788. bo = {
  789. x: 3,
  790. y: 0,
  791. t: 0
  792. },
  793. bp = {
  794. x: 3,
  795. y: 0,
  796. t: 1
  797. },
  798. bq = {
  799. x: 3,
  800. y: 1,
  801. t: 0
  802. },
  803. br = {
  804. x: 3,
  805. y: 1,
  806. t: 1
  807. },
  808. bs = {
  809. x: 3,
  810. y: 2,
  811. t: 0
  812. },
  813. bt = {
  814. x: 3,
  815. y: 2,
  816. t: 1
  817. },
  818. bu = {
  819. x: 3,
  820. y: 3,
  821. t: 0
  822. },
  823. bv = {
  824. x: 3,
  825. y: 3,
  826. t: 1
  827. },
  828. bw = {
  829. x: 3,
  830. y: 4,
  831. t: 0
  832. },
  833. bx = {
  834. x: 3,
  835. y: 4,
  836. t: 1
  837. },
  838. by = {
  839. x: 3,
  840. y: 5,
  841. t: 0
  842. },
  843. bz = {
  844. x: 3,
  845. y: 5,
  846. t: 1
  847. },
  848. bA = {
  849. x: 3,
  850. y: 6,
  851. t: 0
  852. },
  853. bB = {
  854. x: 3,
  855. y: 6,
  856. t: 1
  857. },
  858. bC = {
  859. x: 3,
  860. y: 7,
  861. t: 0
  862. },
  863. bD = {
  864. x: 3,
  865. y: 7,
  866. t: 1
  867. },
  868. bE = {
  869. x: 3,
  870. y: 8,
  871. t: 0
  872. },
  873. bF = {
  874. x: 3,
  875. y: 8,
  876. t: 1
  877. },
  878. bG = {
  879. x: 3,
  880. y: 9,
  881. t: 0
  882. },
  883. bH = {
  884. x: 3,
  885. y: 9,
  886. t: 1
  887. },
  888. bI = {
  889. x: 3,
  890. y: 10,
  891. t: 0
  892. },
  893. bJ = {
  894. x: 3,
  895. y: 10,
  896. t: 1
  897. },
  898. bK = {
  899. x: 4,
  900. y: 0,
  901. t: 0
  902. },
  903. bL = {
  904. x: 4,
  905. y: 0,
  906. t: 1
  907. },
  908. bM = {
  909. x: 4,
  910. y: 1,
  911. t: 0
  912. },
  913. bN = {
  914. x: 4,
  915. y: 1,
  916. t: 1
  917. },
  918. bO = {
  919. x: 4,
  920. y: 2,
  921. t: 0
  922. },
  923. bP = {
  924. x: 4,
  925. y: 2,
  926. t: 1
  927. },
  928. bQ = {
  929. x: 4,
  930. y: 3,
  931. t: 0
  932. },
  933. bR = {
  934. x: 4,
  935. y: 3,
  936. t: 1
  937. },
  938. bS = {
  939. x: 4,
  940. y: 4,
  941. t: 0
  942. },
  943. bT = {
  944. x: 4,
  945. y: 4,
  946. t: 1
  947. },
  948. bU = {
  949. x: 4,
  950. y: 5,
  951. t: 0
  952. },
  953. bV = {
  954. x: 4,
  955. y: 5,
  956. t: 1
  957. },
  958. bW = {
  959. x: 4,
  960. y: 6,
  961. t: 0
  962. },
  963. bX = {
  964. x: 4,
  965. y: 6,
  966. t: 1
  967. },
  968. bY = {
  969. x: 4,
  970. y: 7,
  971. t: 0
  972. },
  973. bZ = {
  974. x: 4,
  975. y: 7,
  976. t: 1
  977. },
  978. b$ = {
  979. x: 4,
  980. y: 8,
  981. t: 0
  982. },
  983. b_ = {
  984. x: 4,
  985. y: 8,
  986. t: 1
  987. },
  988. ca = {
  989. x: 4,
  990. y: 9,
  991. t: 0
  992. },
  993. cb = {
  994. x: 4,
  995. y: 9,
  996. t: 1
  997. },
  998. cc = {
  999. x: 4,
  1000. y: 10,
  1001. t: 0
  1002. },
  1003. cd = {
  1004. x: 4,
  1005. y: 10,
  1006. t: 1
  1007. },
  1008. ce = {
  1009. x: 5,
  1010. y: 0,
  1011. t: 0
  1012. },
  1013. cf = {
  1014. x: 5,
  1015. y: 0,
  1016. t: 1
  1017. },
  1018. cg = {
  1019. x: 5,
  1020. y: 1,
  1021. t: 0
  1022. },
  1023. ch = {
  1024. x: 5,
  1025. y: 1,
  1026. t: 1
  1027. },
  1028. ci = {
  1029. x: 5,
  1030. y: 2,
  1031. t: 0
  1032. },
  1033. cj = {
  1034. x: 5,
  1035. y: 2,
  1036. t: 1
  1037. },
  1038. ck = {
  1039. x: 5,
  1040. y: 3,
  1041. t: 0
  1042. },
  1043. cl = {
  1044. x: 5,
  1045. y: 3,
  1046. t: 1
  1047. },
  1048. cm = {
  1049. x: 5,
  1050. y: 4,
  1051. t: 0
  1052. },
  1053. cn = {
  1054. x: 5,
  1055. y: 4,
  1056. t: 1
  1057. },
  1058. co = {
  1059. x: 5,
  1060. y: 5,
  1061. t: 0
  1062. },
  1063. cp = {
  1064. x: 5,
  1065. y: 5,
  1066. t: 1
  1067. },
  1068. cq = {
  1069. x: 5,
  1070. y: 6,
  1071. t: 0
  1072. },
  1073. cr = {
  1074. x: 5,
  1075. y: 6,
  1076. t: 1
  1077. },
  1078. cs = {
  1079. x: 5,
  1080. y: 7,
  1081. t: 0
  1082. },
  1083. ct = {
  1084. x: 5,
  1085. y: 7,
  1086. t: 1
  1087. },
  1088. cu = {
  1089. x: 5,
  1090. y: 8,
  1091. t: 0
  1092. },
  1093. cv = {
  1094. x: 5,
  1095. y: 8,
  1096. t: 1
  1097. },
  1098. cw = {
  1099. x: 5,
  1100. y: 9,
  1101. t: 0
  1102. },
  1103. cx = {
  1104. x: 5,
  1105. y: 9,
  1106. t: 1
  1107. },
  1108. cy = {
  1109. x: 5,
  1110. y: 10,
  1111. t: 0
  1112. },
  1113. cz = {
  1114. x: 5,
  1115. y: 10,
  1116. t: 1
  1117. },
  1118. cA = {
  1119. x: 6,
  1120. y: 0,
  1121. t: 0
  1122. },
  1123. cB = {
  1124. x: 6,
  1125. y: 0,
  1126. t: 1
  1127. },
  1128. cC = {
  1129. x: 6,
  1130. y: 1,
  1131. t: 0
  1132. },
  1133. cD = {
  1134. x: 6,
  1135. y: 1,
  1136. t: 1
  1137. },
  1138. cE = {
  1139. x: 6,
  1140. y: 2,
  1141. t: 0
  1142. },
  1143. cF = {
  1144. x: 6,
  1145. y: 2,
  1146. t: 1
  1147. },
  1148. cG = {
  1149. x: 6,
  1150. y: 3,
  1151. t: 0
  1152. },
  1153. cH = {
  1154. x: 6,
  1155. y: 3,
  1156. t: 1
  1157. },
  1158. cI = {
  1159. x: 6,
  1160. y: 4,
  1161. t: 0
  1162. },
  1163. cJ = {
  1164. x: 6,
  1165. y: 4,
  1166. t: 1
  1167. },
  1168. cK = {
  1169. x: 6,
  1170. y: 5,
  1171. t: 0
  1172. },
  1173. cL = {
  1174. x: 6,
  1175. y: 5,
  1176. t: 1
  1177. },
  1178. cM = {
  1179. x: 6,
  1180. y: 6,
  1181. t: 0
  1182. },
  1183. cN = {
  1184. x: 6,
  1185. y: 6,
  1186. t: 1
  1187. },
  1188. cO = {
  1189. x: 6,
  1190. y: 7,
  1191. t: 0
  1192. },
  1193. cP = {
  1194. x: 6,
  1195. y: 7,
  1196. t: 1
  1197. },
  1198. cQ = {
  1199. x: 6,
  1200. y: 8,
  1201. t: 0
  1202. },
  1203. cR = {
  1204. x: 6,
  1205. y: 8,
  1206. t: 1
  1207. },
  1208. cS = {
  1209. x: 6,
  1210. y: 9,
  1211. t: 0
  1212. },
  1213. cT = {
  1214. x: 6,
  1215. y: 9,
  1216. t: 1
  1217. },
  1218. cU = {
  1219. x: 6,
  1220. y: 10,
  1221. t: 0
  1222. },
  1223. cV = {
  1224. x: 6,
  1225. y: 10,
  1226. t: 1
  1227. },
  1228. cW = {
  1229. x: 7,
  1230. y: 0,
  1231. t: 0
  1232. },
  1233. cX = {
  1234. x: 7,
  1235. y: 0,
  1236. t: 1
  1237. },
  1238. cY = {
  1239. x: 7,
  1240. y: 1,
  1241. t: 0
  1242. },
  1243. cZ = {
  1244. x: 7,
  1245. y: 1,
  1246. t: 1
  1247. },
  1248. c$ = {
  1249. x: 7,
  1250. y: 2,
  1251. t: 0
  1252. },
  1253. c_ = {
  1254. x: 7,
  1255. y: 2,
  1256. t: 1
  1257. },
  1258. da = {
  1259. x: 7,
  1260. y: 3,
  1261. t: 0
  1262. },
  1263. db = {
  1264. x: 7,
  1265. y: 3,
  1266. t: 1
  1267. },
  1268. dc = {
  1269. x: 7,
  1270. y: 4,
  1271. t: 0
  1272. },
  1273. dd = {
  1274. x: 7,
  1275. y: 4,
  1276. t: 1
  1277. },
  1278. de = {
  1279. x: 7,
  1280. y: 5,
  1281. t: 0
  1282. },
  1283. df = {
  1284. x: 7,
  1285. y: 5,
  1286. t: 1
  1287. },
  1288. dg = {
  1289. x: 7,
  1290. y: 6,
  1291. t: 0
  1292. },
  1293. dh = {
  1294. x: 7,
  1295. y: 6,
  1296. t: 1
  1297. },
  1298. di = {
  1299. x: 7,
  1300. y: 7,
  1301. t: 0
  1302. },
  1303. dj = {
  1304. x: 7,
  1305. y: 7,
  1306. t: 1
  1307. },
  1308. dk = {
  1309. x: 7,
  1310. y: 8,
  1311. t: 0
  1312. },
  1313. dl = {
  1314. x: 7,
  1315. y: 8,
  1316. t: 1
  1317. },
  1318. dm = {
  1319. x: 7,
  1320. y: 9,
  1321. t: 0
  1322. },
  1323. dn = {
  1324. x: 7,
  1325. y: 9,
  1326. t: 1
  1327. },
  1328. dp = {
  1329. x: 7,
  1330. y: 10,
  1331. t: 0
  1332. },
  1333. dq = {
  1334. x: 7,
  1335. y: 10,
  1336. t: 1
  1337. },
  1338. dr = {
  1339. x: 8,
  1340. y: 2,
  1341. t: 0
  1342. },
  1343. ds = {
  1344. x: 8,
  1345. y: 4,
  1346. t: 0
  1347. },
  1348. dt = {
  1349. x: 8,
  1350. y: 6,
  1351. t: 0
  1352. },
  1353. du = {
  1354. x: 8,
  1355. y: 8,
  1356. t: 0
  1357. };
  1358. uf = {
  1359. version: "1.4",
  1360. levels: [{
  1361. d: [bQ, bc, bY, cK, bc, bg, bY, cO, cK, bQ],
  1362. l: [{
  1363. p: [bQ, bc]
  1364. },
  1365. {
  1366. p: [bc, bY]
  1367. },
  1368. {
  1369. p: [bY, cK]
  1370. },
  1371. {
  1372. p: [cK, bc]
  1373. },
  1374. {
  1375. p: [bc, bg]
  1376. },
  1377. {
  1378. p: [bg, bY]
  1379. },
  1380. {
  1381. p: [bY, cO]
  1382. },
  1383. {
  1384. p: [cO, cK]
  1385. },
  1386. {
  1387. p: [cK, bQ]
  1388. }],
  1389. qa: 0,
  1390. t: 0,
  1391. id: "4246224664",
  1392. gI: 1e3
  1393. },
  1394. {
  1395. d: [cG, bg, $, bQ, bY, cG, cO, bY, bg, bQ, cG],
  1396. l: [{
  1397. p: [cG, bg]
  1398. },
  1399. {
  1400. p: [bg, $]
  1401. },
  1402. {
  1403. p: [$, bQ]
  1404. },
  1405. {
  1406. p: [bQ, bY]
  1407. },
  1408. {
  1409. p: [bY, cG]
  1410. },
  1411. {
  1412. p: [cG, cO]
  1413. },
  1414. {
  1415. p: [cO, bY]
  1416. },
  1417. {
  1418. p: [bY, bg]
  1419. },
  1420. {
  1421. p: [bg, bQ]
  1422. },
  1423. {
  1424. p: [bQ, cG]
  1425. }],
  1426. qa: 0,
  1427. t: 0,
  1428. id: "62244664246",
  1429. gI: 1e3
  1430. },
  1431. {
  1432. d: [o, ce, w, dp, o, cG, w, o],
  1433. l: [{
  1434. p: [o, ce]
  1435. },
  1436. {
  1437. p: [ce, w]
  1438. },
  1439. {
  1440. p: [w, dp]
  1441. },
  1442. {
  1443. p: [dp, o]
  1444. },
  1445. {
  1446. p: [o, cG]
  1447. },
  1448. {
  1449. p: [cG, w]
  1450. },
  1451. {
  1452. p: [w, o]
  1453. }],
  1454. qa: 3,
  1455. t: 0,
  1456. id: "05170610",
  1457. gI: 1e3
  1458. },
  1459. {
  1460. d: [E, cI, A, E, cM, cI, I, cM, M, I],
  1461. l: [{
  1462. p: [E, cI]
  1463. },
  1464. {
  1465. p: [cI, A]
  1466. },
  1467. {
  1468. p: [A, E]
  1469. },
  1470. {
  1471. p: [E, cM]
  1472. },
  1473. {
  1474. p: [cM, cI]
  1475. },
  1476. {
  1477. p: [cI, I]
  1478. },
  1479. {
  1480. p: [I, cM]
  1481. },
  1482. {
  1483. p: [cM, M]
  1484. },
  1485. {
  1486. p: [M, I]
  1487. }],
  1488. qa: 2,
  1489. t: 0,
  1490. id: "1611661611",
  1491. gI: 1e3
  1492. },
  1493. {
  1494. d: [Y, cC, cQ, bk, Y, cQ, cU, bk, cC, U, Y],
  1495. l: [{
  1496. p: [Y, cC]
  1497. },
  1498. {
  1499. p: [cC, cQ]
  1500. },
  1501. {
  1502. p: [cQ, bk]
  1503. },
  1504. {
  1505. p: [bk, Y]
  1506. },
  1507. {
  1508. p: [Y, cQ]
  1509. },
  1510. {
  1511. p: [cQ, cU]
  1512. },
  1513. {
  1514. p: [cU, bk]
  1515. },
  1516. {
  1517. p: [bk, cC]
  1518. },
  1519. {
  1520. p: [cC, U]
  1521. },
  1522. {
  1523. p: [U, Y]
  1524. }],
  1525. qa: 3,
  1526. t: 0,
  1527. id: "26622662622",
  1528. gI: 3064
  1529. },
  1530. {
  1531. d: [bs, bw, cm, cq, dg, cu, cq, bw, E, bs],
  1532. l: [{
  1533. p: [bs, bw]
  1534. },
  1535. {
  1536. p: [bw, cm]
  1537. },
  1538. {
  1539. p: [cm, cq]
  1540. },
  1541. {
  1542. p: [cq, dg]
  1543. },
  1544. {
  1545. p: [dg, cu]
  1546. },
  1547. {
  1548. p: [cu, cq]
  1549. },
  1550. {
  1551. p: [cq, bw]
  1552. },
  1553. {
  1554. p: [bw, E]
  1555. },
  1556. {
  1557. p: [E, bs]
  1558. }],
  1559. qa: 2,
  1560. t: 0,
  1561. id: "3355755313",
  1562. gI: 2040
  1563. },
  1564. {
  1565. d: [$, cg, cm, $, be, cm, cs, be, bk, cs],
  1566. l: [{
  1567. p: [$, cg]
  1568. },
  1569. {
  1570. p: [cg, cm]
  1571. },
  1572. {
  1573. p: [cm, $]
  1574. },
  1575. {
  1576. p: [$, be]
  1577. },
  1578. {
  1579. p: [be, cm]
  1580. },
  1581. {
  1582. p: [cm, cs]
  1583. },
  1584. {
  1585. p: [cs, be]
  1586. },
  1587. {
  1588. p: [be, bk]
  1589. },
  1590. {
  1591. p: [bk, cs]
  1592. }],
  1593. qa: 2,
  1594. t: 0,
  1595. id: "2552255225",
  1596. gI: 1e3
  1597. },
  1598. {
  1599. d: [m, g, Y, ci, da, dg, Y, m, ci, dg, m, M, cQ, dg],
  1600. l: [{
  1601. p: [m, g]
  1602. },
  1603. {
  1604. p: [g, {
  1605. x: 2,
  1606. y: 2,
  1607. t: 3,
  1608. s: g,
  1609. cp1: e,
  1610. cp2: e,
  1611. e: Y
  1612. }]
  1613. },
  1614. {
  1615. p: [Y, ci]
  1616. },
  1617. {
  1618. p: [ci, {
  1619. x: 7,
  1620. y: 3,
  1621. t: 3,
  1622. s: ci,
  1623. cp1: c$,
  1624. cp2: c$,
  1625. e: da
  1626. }]
  1627. },
  1628. {
  1629. p: [da, dg]
  1630. },
  1631. {
  1632. p: [dg, Y]
  1633. },
  1634. {
  1635. p: [Y, m]
  1636. },
  1637. {
  1638. p: [m, ci]
  1639. },
  1640. {
  1641. p: [ci, dg]
  1642. },
  1643. {
  1644. p: [dg, cs, cq, {
  1645. x: 2,
  1646. y: 6,
  1647. t: 2,
  1648. s: cq,
  1649. cp1: ck,
  1650. cp2: $,
  1651. e: be
  1652. },
  1653. bg, m]
  1654. },
  1655. {
  1656. p: [m, M]
  1657. },
  1658. {
  1659. p: [M, cQ]
  1660. },
  1661. {
  1662. p: [cQ, dg]
  1663. }],
  1664. qa: 1,
  1665. t: 0,
  1666. id: "00257720570167",
  1667. gI: 1e3
  1668. },
  1669. {
  1670. d: [bc, de, bO, bc, b$, de, cY, bO, C, bc, K, b$, dm, de, C, K, de],
  1671. l: [{
  1672. p: [bc, de]
  1673. },
  1674. {
  1675. p: [de, bO]
  1676. },
  1677. {
  1678. p: [bO, bc]
  1679. },
  1680. {
  1681. p: [bc, b$]
  1682. },
  1683. {
  1684. p: [b$, de]
  1685. },
  1686. {
  1687. p: [de, cY]
  1688. },
  1689. {
  1690. p: [cY, bO]
  1691. },
  1692. {
  1693. p: [bO, C]
  1694. },
  1695. {
  1696. p: [C, bc]
  1697. },
  1698. {
  1699. p: [bc, K]
  1700. },
  1701. {
  1702. p: [K, b$]
  1703. },
  1704. {
  1705. p: [b$, dm]
  1706. },
  1707. {
  1708. p: [dm, de]
  1709. },
  1710. {
  1711. p: [de, C]
  1712. },
  1713. {
  1714. p: [C, K]
  1715. },
  1716. {
  1717. p: [K, de]
  1718. }],
  1719. qa: 2,
  1720. t: 0,
  1721. id: "27424774121477117",
  1722. gI: 1e3
  1723. },
  1724. {
  1725. d: [E, A, cE, cI, K, O, cS, cO, E, cE, K, cS, E],
  1726. l: [{
  1727. p: [E, A]
  1728. },
  1729. {
  1730. p: [A, cE]
  1731. },
  1732. {
  1733. p: [cE, cI]
  1734. },
  1735. {
  1736. p: [cI, K]
  1737. },
  1738. {
  1739. p: [K, O]
  1740. },
  1741. {
  1742. p: [O, cS]
  1743. },
  1744. {
  1745. p: [cS, cO]
  1746. },
  1747. {
  1748. p: [cO, E]
  1749. },
  1750. {
  1751. p: [E, cE]
  1752. },
  1753. {
  1754. p: [cE, K]
  1755. },
  1756. {
  1757. p: [K, cS]
  1758. },
  1759. {
  1760. p: [cS, E]
  1761. }],
  1762. qa: 2,
  1763. t: 0,
  1764. id: "1166116616161",
  1765. gI: 1e3
  1766. },
  1767. {
  1768. d: [bI, cw, cs, bA, bw, ck, cg, bo, bw, cs, bI, bA, ck, bo],
  1769. l: [{
  1770. p: [bI, cw]
  1771. },
  1772. {
  1773. p: [cw, {
  1774. x: 5,
  1775. y: 7,
  1776. t: 3,
  1777. s: cw,
  1778. cp1: dk,
  1779. cp2: dk,
  1780. e: cs
  1781. }]
  1782. },
  1783. {
  1784. p: [cs, bA]
  1785. },
  1786. {
  1787. p: [bA, {
  1788. x: 3,
  1789. y: 4,
  1790. t: 3,
  1791. s: bA,
  1792. cp1: G,
  1793. cp2: G,
  1794. e: bw
  1795. }]
  1796. },
  1797. {
  1798. p: [bw, ck]
  1799. },
  1800. {
  1801. p: [ck, {
  1802. x: 5,
  1803. y: 1,
  1804. t: 3,
  1805. s: ck,
  1806. cp1: c$,
  1807. cp2: c$,
  1808. e: cg
  1809. }]
  1810. },
  1811. {
  1812. p: [cg, bo]
  1813. },
  1814. {
  1815. p: [bo, bw]
  1816. },
  1817. {
  1818. p: [bw, cs]
  1819. },
  1820. {
  1821. p: [cs, bI]
  1822. },
  1823. {
  1824. p: [bI, bA]
  1825. },
  1826. {
  1827. p: [bA, ck]
  1828. },
  1829. {
  1830. p: [ck, bo]
  1831. }],
  1832. qa: 2,
  1833. t: 0,
  1834. id: "35533553353353",
  1835. gI: 1e3
  1836. },
  1837. {
  1838. d: [bg, bU, cG, bO, ba, bU, cM, b$, bg, ba, cG, cM, bg],
  1839. l: [{
  1840. p: [bg, bU]
  1841. },
  1842. {
  1843. p: [bU, cG]
  1844. },
  1845. {
  1846. p: [cG, bO]
  1847. },
  1848. {
  1849. p: [bO, ba]
  1850. },
  1851. {
  1852. p: [ba, bU]
  1853. },
  1854. {
  1855. p: [bU, cM]
  1856. },
  1857. {
  1858. p: [cM, b$]
  1859. },
  1860. {
  1861. p: [b$, bg]
  1862. },
  1863. {
  1864. p: [bg, ba]
  1865. },
  1866. {
  1867. p: [ba, cG]
  1868. },
  1869. {
  1870. p: [cG, cM]
  1871. },
  1872. {
  1873. p: [cM, bg]
  1874. }],
  1875. qa: 2,
  1876. t: 0,
  1877. id: "2464246422662",
  1878. gI: 1e3
  1879. },
  1880. {
  1881. d: [C, ci, cI, bc, C, K, bk, bc, cQ, bk, cI, cQ],
  1882. l: [{
  1883. p: [C, ci]
  1884. },
  1885. {
  1886. p: [ci, cI]
  1887. },
  1888. {
  1889. p: [cI, bc]
  1890. },
  1891. {
  1892. p: [bc, C]
  1893. },
  1894. {
  1895. p: [C, K]
  1896. },
  1897. {
  1898. p: [K, bk]
  1899. },
  1900. {
  1901. p: [bk, bc]
  1902. },
  1903. {
  1904. p: [bc, cQ]
  1905. },
  1906. {
  1907. p: [cQ, bk]
  1908. },
  1909. {
  1910. p: [bk, cI]
  1911. },
  1912. {
  1913. p: [cI, cQ]
  1914. }],
  1915. qa: 2,
  1916. t: 0,
  1917. id: "156211226266",
  1918. gI: 1e3
  1919. },
  1920. {
  1921. d: [K, cO, W, cg, K, O, dm, cO],
  1922. l: [{
  1923. p: [K, E, {
  1924. x: 2,
  1925. y: 3,
  1926. t: 3,
  1927. s: E,
  1928. cp1: C,
  1929. cp2: C,
  1930. e: $
  1931. },
  1932. ck, {
  1933. x: 6,
  1934. y: 4,
  1935. t: 3,
  1936. s: ck,
  1937. cp1: cG,
  1938. cp2: cG,
  1939. e: cI
  1940. },
  1941. cO]
  1942. },
  1943. {
  1944. p: [cO, W]
  1945. },
  1946. {
  1947. p: [W, cg]
  1948. },
  1949. {
  1950. p: [cg, K]
  1951. },
  1952. {
  1953. p: [K, O]
  1954. },
  1955. {
  1956. p: [O, s, i, {
  1957. x: 2,
  1958. y: 2,
  1959. t: 3,
  1960. s: i,
  1961. cp1: e,
  1962. cp2: e,
  1963. e: Y
  1964. },
  1965. bO, ci, {
  1966. x: 7,
  1967. y: 4,
  1968. t: 3,
  1969. s: ci,
  1970. cp1: c$,
  1971. cp2: c$,
  1972. e: dc
  1973. },
  1974. dm]
  1975. },
  1976. {
  1977. p: [dm, cS, cO]
  1978. }],
  1979. qa: 2,
  1980. t: 0,
  1981. id: "16251176",
  1982. gI: 1e3
  1983. },
  1984. {
  1985. d: [E, dc, by, E, ck, dc, cu, ck, by, cu, E],
  1986. l: [{
  1987. p: [E, Y, {
  1988. x: 6,
  1989. y: 2,
  1990. t: 3,
  1991. s: Y,
  1992. cp1: {
  1993. x: 4,
  1994. y: -2
  1995. },
  1996. cp2: {
  1997. x: 4,
  1998. y: -2
  1999. },
  2000. e: cE
  2001. },
  2002. dc]
  2003. },
  2004. {
  2005. p: [dc, by]
  2006. },
  2007. {
  2008. p: [by, E]
  2009. },
  2010. {
  2011. p: [E, ck]
  2012. },
  2013. {
  2014. p: [ck, dc]
  2015. },
  2016. {
  2017. p: [dc, cu]
  2018. },
  2019. {
  2020. p: [cu, ck]
  2021. },
  2022. {
  2023. p: [ck, by]
  2024. },
  2025. {
  2026. p: [by, cu]
  2027. },
  2028. {
  2029. p: [cu, E]
  2030. }],
  2031. qa: 1,
  2032. t: 0,
  2033. id: "17315755351",
  2034. gI: 1e3
  2035. },
  2036. {
  2037. d: [q, G, cK, dk, c$, e, q, c$, cK, cu, bi, G, e, dk],
  2038. l: [{
  2039. p: [q, G]
  2040. },
  2041. {
  2042. p: [G, {
  2043. x: 6,
  2044. y: 5,
  2045. t: 3,
  2046. s: G,
  2047. cp1: {
  2048. x: 3.5,
  2049. y: -2.5
  2050. },
  2051. cp2: {
  2052. x: 3.5,
  2053. y: -2.5
  2054. },
  2055. e: cK
  2056. }]
  2057. },
  2058. {
  2059. p: [cK, dk]
  2060. },
  2061. {
  2062. p: [dk, c$]
  2063. },
  2064. {
  2065. p: [c$, bQ, bu, e]
  2066. },
  2067. {
  2068. p: [e, q]
  2069. },
  2070. {
  2071. p: [q, c$]
  2072. },
  2073. {
  2074. p: [c$, cK]
  2075. },
  2076. {
  2077. p: [cK, cu]
  2078. },
  2079. {
  2080. p: [cu, bi]
  2081. },
  2082. {
  2083. p: [bi, G]
  2084. },
  2085. {
  2086. p: [G, e]
  2087. },
  2088. {
  2089. p: [e, dk]
  2090. }],
  2091. qa: 2,
  2092. t: 0,
  2093. id: "01677007652107",
  2094. gI: 1e3
  2095. },
  2096. {
  2097. d: [bg, E, bw, bg, bY, bw, cm, bY, cO, cm],
  2098. l: [{
  2099. p: [bg, E]
  2100. },
  2101. {
  2102. p: [E, {
  2103. x: 3,
  2104. y: 4,
  2105. t: 2,
  2106. s: E,
  2107. cp1: {
  2108. x: -0.26491106406735176,
  2109. y: .20526680779794493
  2110. },
  2111. cp2: {
  2112. x: 4.264911064067352,
  2113. y: .20526680779794493
  2114. },
  2115. e: bw
  2116. }]
  2117. },
  2118. {
  2119. p: [bw, bg]
  2120. },
  2121. {
  2122. p: [bg, {
  2123. x: 4,
  2124. y: 7,
  2125. t: 2,
  2126. s: bg,
  2127. cp1: {
  2128. x: .735088935932648,
  2129. y: 10.794733192202056
  2130. },
  2131. cp2: {
  2132. x: 5.264911064067352,
  2133. y: 10.794733192202056
  2134. },
  2135. e: bY
  2136. }]
  2137. },
  2138. {
  2139. p: [bY, bw]
  2140. },
  2141. {
  2142. p: [bw, {
  2143. x: 5,
  2144. y: 4,
  2145. t: 2,
  2146. s: bw,
  2147. cp1: {
  2148. x: 1.735088935932648,
  2149. y: .20526680779794493
  2150. },
  2151. cp2: {
  2152. x: 6.264911064067352,
  2153. y: .20526680779794493
  2154. },
  2155. e: cm
  2156. }]
  2157. },
  2158. {
  2159. p: [cm, bY]
  2160. },
  2161. {
  2162. p: [bY, {
  2163. x: 6,
  2164. y: 7,
  2165. t: 2,
  2166. s: bY,
  2167. cp1: {
  2168. x: 2.735088935932648,
  2169. y: 10.794733192202056
  2170. },
  2171. cp2: {
  2172. x: 7.264911064067352,
  2173. y: 10.794733192202056
  2174. },
  2175. e: cO
  2176. }]
  2177. },
  2178. {
  2179. p: [cO, cm]
  2180. }],
  2181. qa: 1,
  2182. t: 1,
  2183. id: "2132435465",
  2184. gI: 1e3
  2185. },
  2186. {
  2187. d: [e, bO, de, dm, e, m, bG, dm, bO, bG, e, de, m, dm],
  2188. l: [{
  2189. p: [e, bO]
  2190. },
  2191. {
  2192. p: [bO, {
  2193. x: 7,
  2194. y: 5,
  2195. t: 3,
  2196. s: bO,
  2197. cp1: c$,
  2198. cp2: c$,
  2199. e: de
  2200. }]
  2201. },
  2202. {
  2203. p: [de, dm]
  2204. },
  2205. {
  2206. p: [dm, e]
  2207. },
  2208. {
  2209. p: [e, m]
  2210. },
  2211. {
  2212. p: [m, {
  2213. x: 3,
  2214. y: 9,
  2215. t: 3,
  2216. s: m,
  2217. cp1: s,
  2218. cp2: s,
  2219. e: bG
  2220. }]
  2221. },
  2222. {
  2223. p: [bG, dm]
  2224. },
  2225. {
  2226. p: [dm, bO]
  2227. },
  2228. {
  2229. p: [bO, bG]
  2230. },
  2231. {
  2232. p: [bG, e]
  2233. },
  2234. {
  2235. p: [e, de]
  2236. },
  2237. {
  2238. p: [de, m]
  2239. },
  2240. {
  2241. p: [m, dm]
  2242. }],
  2243. qa: 1,
  2244. t: 1,
  2245. id: "04770037430707",
  2246. gI: 1e3
  2247. },
  2248. {
  2249. d: [C, cG, cQ, M, C, cQ, C],
  2250. l: [{
  2251. p: [C, ba, {
  2252. x: 5,
  2253. y: 4,
  2254. t: 3,
  2255. s: ba,
  2256. cp1: {
  2257. x: 3.5,
  2258. y: 5.5
  2259. },
  2260. cp2: {
  2261. x: 3.5,
  2262. y: 5.5
  2263. },
  2264. e: cm
  2265. },
  2266. cG]
  2267. },
  2268. {
  2269. p: [cG, cm, {
  2270. x: 5,
  2271. y: 7,
  2272. t: 3,
  2273. s: cm,
  2274. cp1: {
  2275. x: 3.5,
  2276. y: 5.5
  2277. },
  2278. cp2: {
  2279. x: 3.5,
  2280. y: 5.5
  2281. },
  2282. e: cs
  2283. },
  2284. cQ]
  2285. },
  2286. {
  2287. p: [cQ, cs, {
  2288. x: 2,
  2289. y: 7,
  2290. t: 3,
  2291. s: cs,
  2292. cp1: {
  2293. x: 3.5,
  2294. y: 5.5
  2295. },
  2296. cp2: {
  2297. x: 3.5,
  2298. y: 5.5
  2299. },
  2300. e: bg
  2301. },
  2302. M]
  2303. },
  2304. {
  2305. p: [M, bg, {
  2306. x: 2,
  2307. y: 4,
  2308. t: 3,
  2309. s: bg,
  2310. cp1: {
  2311. x: 3.5,
  2312. y: 5.5
  2313. },
  2314. cp2: {
  2315. x: 3.5,
  2316. y: 5.5
  2317. },
  2318. e: ba
  2319. },
  2320. C]
  2321. },
  2322. {
  2323. p: [C, ck, ci, c$, dc, cI, cQ]
  2324. },
  2325. {
  2326. p: [cQ, bi, bk, O, s, o, K, C]
  2327. }],
  2328. qa: 1,
  2329. t: 1,
  2330. id: "1661161",
  2331. gI: 1e3
  2332. },
  2333. {
  2334. d: [E, A, bw, cm, c$, dc, dg, dk, cq, bA, M, I, E, bs, ci, dc, cq, bw, I, bE, cu, dg, cm, bA, E],
  2335. l: [{
  2336. p: [E, A]
  2337. },
  2338. {
  2339. p: [A, bw]
  2340. },
  2341. {
  2342. p: [bw, cm]
  2343. },
  2344. {
  2345. p: [cm, c$]
  2346. },
  2347. {
  2348. p: [c$, dc]
  2349. },
  2350. {
  2351. p: [dc, dg]
  2352. },
  2353. {
  2354. p: [dg, dk]
  2355. },
  2356. {
  2357. p: [dk, cq]
  2358. },
  2359. {
  2360. p: [cq, bA]
  2361. },
  2362. {
  2363. p: [bA, M]
  2364. },
  2365. {
  2366. p: [M, I]
  2367. },
  2368. {
  2369. p: [I, E]
  2370. },
  2371. {
  2372. p: [E, bs]
  2373. },
  2374. {
  2375. p: [bs, ci]
  2376. },
  2377. {
  2378. p: [ci, dc]
  2379. },
  2380. {
  2381. p: [dc, cq]
  2382. },
  2383. {
  2384. p: [cq, bw]
  2385. },
  2386. {
  2387. p: [bw, I]
  2388. },
  2389. {
  2390. p: [I, bE]
  2391. },
  2392. {
  2393. p: [bE, cu]
  2394. },
  2395. {
  2396. p: [cu, dg]
  2397. },
  2398. {
  2399. p: [dg, cm]
  2400. },
  2401. {
  2402. p: [cm, bA]
  2403. },
  2404. {
  2405. p: [bA, E]
  2406. }],
  2407. qa: 1,
  2408. t: 1,
  2409. id: "1135777753111357531357531",
  2410. gI: 1e3
  2411. },
  2412. {
  2413. d: [bI, dp, cY, bq, bI, co, bq, G, bI, Q, G, co, cY],
  2414. l: [{
  2415. p: [bI, dp]
  2416. },
  2417. {
  2418. p: [dp, cY]
  2419. },
  2420. {
  2421. p: [cY, bq]
  2422. },
  2423. {
  2424. p: [bq, bI]
  2425. },
  2426. {
  2427. p: [bI, co]
  2428. },
  2429. {
  2430. p: [co, bq]
  2431. },
  2432. {
  2433. p: [bq, G]
  2434. },
  2435. {
  2436. p: [G, bI]
  2437. },
  2438. {
  2439. p: [bI, Q]
  2440. },
  2441. {
  2442. p: [Q, G]
  2443. },
  2444. {
  2445. p: [G, co]
  2446. },
  2447. {
  2448. p: [co, cY]
  2449. }],
  2450. qa: 3,
  2451. t: 1,
  2452. id: "3773353131157",
  2453. gI: 1e3
  2454. },
  2455. {
  2456. d: [by, bg, cO, de, by, $, cG, de, bg, G, $, de],
  2457. l: [{
  2458. p: [by, bg]
  2459. },
  2460. {
  2461. p: [bg, cO]
  2462. },
  2463. {
  2464. p: [cO, de]
  2465. },
  2466. {
  2467. p: [de, by]
  2468. },
  2469. {
  2470. p: [by, $]
  2471. },
  2472. {
  2473. p: [$, cG]
  2474. },
  2475. {
  2476. p: [cG, de]
  2477. },
  2478. {
  2479. p: [de, bg]
  2480. },
  2481. {
  2482. p: [bg, G]
  2483. },
  2484. {
  2485. p: [G, $]
  2486. },
  2487. {
  2488. p: [$, de]
  2489. }],
  2490. qa: 3,
  2491. t: 1,
  2492. id: "326732672127",
  2493. gI: 1e3
  2494. },
  2495. {
  2496. d: [U, cW, e, c$, U, dc, e, dg, U, dk, e, dp, U, cy, e, bI, U, Q, e],
  2497. l: [{
  2498. p: [U, cW]
  2499. },
  2500. {
  2501. p: [cW, e]
  2502. },
  2503. {
  2504. p: [e, c$]
  2505. },
  2506. {
  2507. p: [c$, U]
  2508. },
  2509. {
  2510. p: [U, dc]
  2511. },
  2512. {
  2513. p: [dc, e]
  2514. },
  2515. {
  2516. p: [e, dg]
  2517. },
  2518. {
  2519. p: [dg, U]
  2520. },
  2521. {
  2522. p: [U, dk]
  2523. },
  2524. {
  2525. p: [dk, e]
  2526. },
  2527. {
  2528. p: [e, dp]
  2529. },
  2530. {
  2531. p: [dp, U]
  2532. },
  2533. {
  2534. p: [U, cy]
  2535. },
  2536. {
  2537. p: [cy, e]
  2538. },
  2539. {
  2540. p: [e, bI]
  2541. },
  2542. {
  2543. p: [bI, U]
  2544. },
  2545. {
  2546. p: [U, Q]
  2547. },
  2548. {
  2549. p: [Q, e]
  2550. }],
  2551. qa: 1,
  2552. t: 1,
  2553. id: "2707270727072503210",
  2554. gI: 1e3
  2555. },
  2556. {
  2557. d: [e, dk, cy, i, bq, da, bq, e, i],
  2558. l: [{
  2559. p: [e, A, C, $, ba, bw, by, bU, bW, cq, cs, cO, cQ, dk]
  2560. },
  2561. {
  2562. p: [dk, cy]
  2563. },
  2564. {
  2565. p: [cy, cw, ca, b$, bE, bC, bg, be, I, G, k, i]
  2566. },
  2567. {
  2568. p: [i, bq]
  2569. },
  2570. {
  2571. p: [bq, bs, bO, ck, cm, cI, cK, de, da]
  2572. },
  2573. {
  2574. p: [da, bq]
  2575. },
  2576. {
  2577. p: [bq, e]
  2578. },
  2579. {
  2580. p: [e, i]
  2581. }],
  2582. qa: 3,
  2583. t: 1,
  2584. id: "075037300",
  2585. gI: 1e3
  2586. },
  2587. {
  2588. d: [bk, cw, cs, bg, bc, co, ck, $, bc, co, cs, bg, bk, cw],
  2589. l: [{
  2590. p: [bk, M, {
  2591. x: 6,
  2592. y: 8,
  2593. t: 2,
  2594. s: M,
  2595. cp1: {
  2596. x: -1.8284271247461903,
  2597. y: 5.17157287525381
  2598. },
  2599. cp2: {
  2600. x: 8.82842712474619,
  2601. y: 5.17157287525381
  2602. },
  2603. e: cQ
  2604. },
  2605. cw]
  2606. },
  2607. {
  2608. p: [cw, cs]
  2609. },
  2610. {
  2611. p: [cs, cM, {
  2612. x: 1,
  2613. y: 6,
  2614. t: 2,
  2615. s: cM,
  2616. cp1: {
  2617. x: 8.82842712474619,
  2618. y: 3.17157287525381
  2619. },
  2620. cp2: {
  2621. x: -1.8284271247461903,
  2622. y: 3.17157287525381
  2623. },
  2624. e: I
  2625. },
  2626. bg]
  2627. },
  2628. {
  2629. p: [bg, bc]
  2630. },
  2631. {
  2632. p: [bc, E, {
  2633. x: 6,
  2634. y: 4,
  2635. t: 2,
  2636. s: E,
  2637. cp1: {
  2638. x: -1.8284271247461903,
  2639. y: 1.1715728752538102
  2640. },
  2641. cp2: {
  2642. x: 8.82842712474619,
  2643. y: 1.1715728752538102
  2644. },
  2645. e: cI
  2646. },
  2647. co]
  2648. },
  2649. {
  2650. p: [co, ck]
  2651. },
  2652. {
  2653. p: [ck, cE, {
  2654. x: 1,
  2655. y: 2,
  2656. t: 2,
  2657. s: cE,
  2658. cp1: {
  2659. x: 8.82842712474619,
  2660. y: -0.8284271247461898
  2661. },
  2662. cp2: {
  2663. x: -1.8284271247461903,
  2664. y: -0.8284271247461898
  2665. },
  2666. e: A
  2667. },
  2668. $]
  2669. },
  2670. {
  2671. p: [$, bc]
  2672. },
  2673. {
  2674. p: [bc, co]
  2675. },
  2676. {
  2677. p: [co, cs]
  2678. },
  2679. {
  2680. p: [cs, bg]
  2681. },
  2682. {
  2683. p: [bg, bk]
  2684. },
  2685. {
  2686. p: [bk, bG, bq, bM, ca, cw]
  2687. }],
  2688. qa: 1,
  2689. t: 1,
  2690. id: "25522552255225",
  2691. gI: 1e3
  2692. },
  2693. {
  2694. d: [c, W, dk, dp, cs, cm, cY, cg, q, u, bg, ba, c, g, cy, dp, u, bm, da, cY, c],
  2695. l: [{
  2696. p: [c, W]
  2697. },
  2698. {
  2699. p: [W, {
  2700. x: 7,
  2701. y: 8,
  2702. t: 3,
  2703. s: W,
  2704. cp1: cY,
  2705. cp2: cY,
  2706. e: dk
  2707. }]
  2708. },
  2709. {
  2710. p: [dk, dp]
  2711. },
  2712. {
  2713. p: [dp, cs]
  2714. },
  2715. {
  2716. p: [cs, cm]
  2717. },
  2718. {
  2719. p: [cm, cY]
  2720. },
  2721. {
  2722. p: [cY, cg]
  2723. },
  2724. {
  2725. p: [cg, {
  2726. x: 0,
  2727. y: 8,
  2728. t: 3,
  2729. s: cg,
  2730. cp1: c,
  2731. cp2: c,
  2732. e: q
  2733. }]
  2734. },
  2735. {
  2736. p: [q, u]
  2737. },
  2738. {
  2739. p: [u, bg]
  2740. },
  2741. {
  2742. p: [bg, ba]
  2743. },
  2744. {
  2745. p: [ba, c]
  2746. },
  2747. {
  2748. p: [c, g]
  2749. },
  2750. {
  2751. p: [g, {
  2752. x: 5,
  2753. y: 10,
  2754. t: 3,
  2755. s: g,
  2756. cp1: u,
  2757. cp2: u,
  2758. e: cy
  2759. }]
  2760. },
  2761. {
  2762. p: [cy, dp]
  2763. },
  2764. {
  2765. p: [dp, cw, bk, u]
  2766. },
  2767. {
  2768. p: [u, bm]
  2769. },
  2770. {
  2771. p: [bm, {
  2772. x: 7,
  2773. y: 3,
  2774. t: 3,
  2775. s: bm,
  2776. cp1: dp,
  2777. cp2: dp,
  2778. e: da
  2779. }]
  2780. },
  2781. {
  2782. p: [da, cY]
  2783. },
  2784. {
  2785. p: [cY, ci, Y, c]
  2786. }],
  2787. qa: 1,
  2788. t: 1,
  2789. id: "027755750022005702770",
  2790. gI: 1e3
  2791. },
  2792. {
  2793. d: [bs, de, bE, cO, G, cG, bs, G, bE, cS, cO, de, cG, cC, bs],
  2794. l: [{
  2795. p: [bs, bu, {
  2796. x: 6,
  2797. y: 5,
  2798. t: 3,
  2799. s: bu,
  2800. cp1: by,
  2801. cp2: by,
  2802. e: cK
  2803. },
  2804. de]
  2805. },
  2806. {
  2807. p: [de, cK, {
  2808. x: 3,
  2809. y: 7,
  2810. t: 3,
  2811. s: cK,
  2812. cp1: by,
  2813. cp2: by,
  2814. e: bC
  2815. },
  2816. bE]
  2817. },
  2818. {
  2819. p: [bE, cO]
  2820. },
  2821. {
  2822. p: [cO, G]
  2823. },
  2824. {
  2825. p: [G, cG]
  2826. },
  2827. {
  2828. p: [cG, bs]
  2829. },
  2830. {
  2831. p: [bs, G]
  2832. },
  2833. {
  2834. p: [G, bE]
  2835. },
  2836. {
  2837. p: [bE, cS]
  2838. },
  2839. {
  2840. p: [cS, cO]
  2841. },
  2842. {
  2843. p: [cO, de]
  2844. },
  2845. {
  2846. p: [de, cG]
  2847. },
  2848. {
  2849. p: [cG, cC]
  2850. },
  2851. {
  2852. p: [cC, bs]
  2853. }],
  2854. qa: 1,
  2855. t: 1,
  2856. id: "373616313667663",
  2857. gI: 1e3
  2858. },
  2859. {
  2860. d: [k, de, ck, C, k, K, cs, de, c$, ck, cs, dk, de, C, c, k, s, K, de],
  2861. l: [{
  2862. p: [k, de]
  2863. },
  2864. {
  2865. p: [de, ck]
  2866. },
  2867. {
  2868. p: [ck, {
  2869. x: 1,
  2870. y: 3,
  2871. t: 3,
  2872. s: ck,
  2873. cp1: {
  2874. x: 2.333333333333333,
  2875. y: .33333333333333304
  2876. },
  2877. cp2: {
  2878. x: 2.333333333333333,
  2879. y: .33333333333333304
  2880. },
  2881. e: C
  2882. }]
  2883. },
  2884. {
  2885. p: [C, k]
  2886. },
  2887. {
  2888. p: [k, K]
  2889. },
  2890. {
  2891. p: [K, {
  2892. x: 5,
  2893. y: 7,
  2894. t: 3,
  2895. s: K,
  2896. cp1: {
  2897. x: 2.333333333333334,
  2898. y: 9.666666666666668
  2899. },
  2900. cp2: {
  2901. x: 2.333333333333334,
  2902. y: 9.666666666666668
  2903. },
  2904. e: cs
  2905. }]
  2906. },
  2907. {
  2908. p: [cs, de]
  2909. },
  2910. {
  2911. p: [de, c$]
  2912. },
  2913. {
  2914. p: [c$, ck]
  2915. },
  2916. {
  2917. p: [ck, {
  2918. x: 5,
  2919. y: 7,
  2920. t: 3,
  2921. s: ck,
  2922. cp1: G,
  2923. cp2: G,
  2924. e: cs
  2925. }]
  2926. },
  2927. {
  2928. p: [cs, dk]
  2929. },
  2930. {
  2931. p: [dk, de]
  2932. },
  2933. {
  2934. p: [de, C]
  2935. },
  2936. {
  2937. p: [C, c]
  2938. },
  2939. {
  2940. p: [c, k]
  2941. },
  2942. {
  2943. p: [k, s]
  2944. },
  2945. {
  2946. p: [s, K]
  2947. },
  2948. {
  2949. p: [K, de]
  2950. }],
  2951. qa: 1,
  2952. t: 1,
  2953. id: "0751015775577100017",
  2954. gI: 1e3
  2955. },
  2956. {
  2957. d: [A, dk, de, G, A, dk, cG, A, bg, dk],
  2958. l: [{
  2959. p: [A, dk]
  2960. },
  2961. {
  2962. p: [dk, de]
  2963. },
  2964. {
  2965. p: [de, G]
  2966. },
  2967. {
  2968. p: [G, A]
  2969. },
  2970. {
  2971. p: [A, bO, b$, dk]
  2972. },
  2973. {
  2974. p: [dk, cG]
  2975. },
  2976. {
  2977. p: [cG, A]
  2978. },
  2979. {
  2980. p: [A, bg]
  2981. },
  2982. {
  2983. p: [bg, dk]
  2984. }],
  2985. qa: 5,
  2986. t: 1,
  2987. id: "1771176127",
  2988. gI: 3064
  2989. },
  2990. {
  2991. d: [M, G, bS, de, dk, G, C, bS, da, de, M, dk],
  2992. l: [{
  2993. p: [M, G]
  2994. },
  2995. {
  2996. p: [G, bS]
  2997. },
  2998. {
  2999. p: [bS, de]
  3000. },
  3001. {
  3002. p: [de, dk]
  3003. },
  3004. {
  3005. p: [dk, G]
  3006. },
  3007. {
  3008. p: [G, C]
  3009. },
  3010. {
  3011. p: [C, bS]
  3012. },
  3013. {
  3014. p: [bS, da]
  3015. },
  3016. {
  3017. p: [da, de]
  3018. },
  3019. {
  3020. p: [de, M]
  3021. },
  3022. {
  3023. p: [M, bG, cu, ci, {
  3024. x: 3,
  3025. y: 2,
  3026. t: 2,
  3027. s: ci,
  3028. cp1: ce,
  3029. cp2: bo,
  3030. e: bs
  3031. },
  3032. bE, cw, dk]
  3033. }],
  3034. qa: 4,
  3035. t: 1,
  3036. id: "114771147717",
  3037. gI: 1e3
  3038. },
  3039. {
  3040. d: [G, $, ck, cK, cs, bg, G, ck, cs, $, bg, cK, G],
  3041. l: [{
  3042. p: [G, $]
  3043. },
  3044. {
  3045. p: [$, {
  3046. x: 5,
  3047. y: 3,
  3048. t: 3,
  3049. s: $,
  3050. cp1: {
  3051. x: 3.5,
  3052. y: 0
  3053. },
  3054. cp2: {
  3055. x: 3.5,
  3056. y: 0
  3057. },
  3058. e: ck
  3059. }]
  3060. },
  3061. {
  3062. p: [ck, cK]
  3063. },
  3064. {
  3065. p: [cK, cs]
  3066. },
  3067. {
  3068. p: [cs, {
  3069. x: 2,
  3070. y: 7,
  3071. t: 3,
  3072. s: cs,
  3073. cp1: {
  3074. x: 3.5,
  3075. y: 10
  3076. },
  3077. cp2: {
  3078. x: 3.5,
  3079. y: 10
  3080. },
  3081. e: bg
  3082. }]
  3083. },
  3084. {
  3085. p: [bg, G]
  3086. },
  3087. {
  3088. p: [G, ck]
  3089. },
  3090. {
  3091. p: [ck, cs]
  3092. },
  3093. {
  3094. p: [cs, $]
  3095. },
  3096. {
  3097. p: [$, bg]
  3098. },
  3099. {
  3100. p: [bg, cK]
  3101. },
  3102. {
  3103. p: [cK, G]
  3104. }],
  3105. qa: 3,
  3106. t: 1,
  3107. id: "1256521552261",
  3108. gI: 1e3
  3109. },
  3110. {
  3111. d: [k, $, bg, k, bc, bO, b$, bc, co, c$, dk, co, $, bc, bg, co],
  3112. l: [{
  3113. p: [k, $]
  3114. },
  3115. {
  3116. p: [$, {
  3117. x: 2,
  3118. y: 7,
  3119. t: 2,
  3120. s: $,
  3121. cp1: {
  3122. x: 4.82842712474619,
  3123. y: .17157287525381015
  3124. },
  3125. cp2: {
  3126. x: 4.82842712474619,
  3127. y: 9.82842712474619
  3128. },
  3129. e: bg
  3130. }]
  3131. },
  3132. {
  3133. p: [bg, k]
  3134. },
  3135. {
  3136. p: [k, bc]
  3137. },
  3138. {
  3139. p: [bc, bO]
  3140. },
  3141. {
  3142. p: [bO, {
  3143. x: 4,
  3144. y: 8,
  3145. t: 2,
  3146. s: bO,
  3147. cp1: {
  3148. x: 6.2188007849009175,
  3149. y: -1.3282011773513749
  3150. },
  3151. cp2: {
  3152. x: 6.2188007849009175,
  3153. y: 11.328201177351374
  3154. },
  3155. e: b$
  3156. }]
  3157. },
  3158. {
  3159. p: [b$, bc]
  3160. },
  3161. {
  3162. p: [bc, co]
  3163. },
  3164. {
  3165. p: [co, c$]
  3166. },
  3167. {
  3168. p: [c$, dk]
  3169. },
  3170. {
  3171. p: [dk, co]
  3172. },
  3173. {
  3174. p: [co, $]
  3175. },
  3176. {
  3177. p: [$, bc]
  3178. },
  3179. {
  3180. p: [bc, bg]
  3181. },
  3182. {
  3183. p: [bg, co]
  3184. }],
  3185. qa: 3,
  3186. t: 1,
  3187. id: "0220244257752225",
  3188. gI: 1e3
  3189. },
  3190. {
  3191. d: [cE, by, k, cE],
  3192. l: [{
  3193. p: [cE, cQ, M, C, ck, cs, bg, ba, bS, bW, bA, by]
  3194. },
  3195. {
  3196. p: [by, k]
  3197. },
  3198. {
  3199. p: [k, s, dm, cY, c, e, cE]
  3200. }],
  3201. qa: 6,
  3202. t: 1,
  3203. id: "6306",
  3204. gI: 1004
  3205. },
  3206. {
  3207. d: [G, g, da, cK, cs, bg, G, o, di, cK, ck, $, G, ck, cs, $, cK, bg, $, ck, bg, cs, G],
  3208. l: [{
  3209. p: [G, g]
  3210. },
  3211. {
  3212. p: [g, {
  3213. x: 7,
  3214. y: 3,
  3215. t: 2,
  3216. s: g,
  3217. cp1: {
  3218. x: -1.7888543819998322,
  3219. y: -0.5777087639996634
  3220. },
  3221. cp2: {
  3222. x: 8.788854381999831,
  3223. y: -0.5777087639996634
  3224. },
  3225. e: da
  3226. }]
  3227. },
  3228. {
  3229. p: [da, cK]
  3230. },
  3231. {
  3232. p: [cK, cs]
  3233. },
  3234. {
  3235. p: [cs, {
  3236. x: 2,
  3237. y: 7,
  3238. t: 3,
  3239. s: cs,
  3240. cp1: {
  3241. x: 3.5,
  3242. y: 10
  3243. },
  3244. cp2: {
  3245. x: 3.5,
  3246. y: 10
  3247. },
  3248. e: bg
  3249. }]
  3250. },
  3251. {
  3252. p: [bg, G]
  3253. },
  3254. {
  3255. p: [G, o]
  3256. },
  3257. {
  3258. p: [o, {
  3259. x: 7,
  3260. y: 7,
  3261. t: 2,
  3262. s: o,
  3263. cp1: {
  3264. x: -1.7888543819998322,
  3265. y: 10.577708763999663
  3266. },
  3267. cp2: {
  3268. x: 8.788854381999831,
  3269. y: 10.577708763999663
  3270. },
  3271. e: di
  3272. }]
  3273. },
  3274. {
  3275. p: [di, cK]
  3276. },
  3277. {
  3278. p: [cK, ck]
  3279. },
  3280. {
  3281. p: [ck, {
  3282. x: 2,
  3283. y: 3,
  3284. t: 3,
  3285. s: ck,
  3286. cp1: {
  3287. x: 3.5,
  3288. y: 0
  3289. },
  3290. cp2: {
  3291. x: 3.5,
  3292. y: 0
  3293. },
  3294. e: $
  3295. }]
  3296. },
  3297. {
  3298. p: [$, G]
  3299. },
  3300. {
  3301. p: [G, ck]
  3302. },
  3303. {
  3304. p: [ck, cs]
  3305. },
  3306. {
  3307. p: [cs, $]
  3308. },
  3309. {
  3310. p: [$, cK]
  3311. },
  3312. {
  3313. p: [cK, bg]
  3314. },
  3315. {
  3316. p: [bg, $]
  3317. },
  3318. {
  3319. p: [$, ck]
  3320. },
  3321. {
  3322. p: [ck, bg]
  3323. },
  3324. {
  3325. p: [bg, cs]
  3326. },
  3327. {
  3328. p: [cs, G]
  3329. }],
  3330. qa: 4,
  3331. t: 1,
  3332. id: "10765210765215526225251",
  3333. gI: 1e3
  3334. },
  3335. {
  3336. d: [Q, cU, dk, q, Q, be, cq, cU, cI, E, Q, dk, be, E, cI, cq, q, cU],
  3337. l: [{
  3338. p: [Q, bI, bo, bK, cc, cU]
  3339. },
  3340. {
  3341. p: [cU, dk]
  3342. },
  3343. {
  3344. p: [dk, {
  3345. x: 0,
  3346. y: 8,
  3347. t: 2,
  3348. s: dk,
  3349. cp1: {
  3350. x: 8.788854381999831,
  3351. y: 4.422291236000337
  3352. },
  3353. cp2: {
  3354. x: -1.7888543819998322,
  3355. y: 4.422291236000337
  3356. },
  3357. e: q
  3358. }]
  3359. },
  3360. {
  3361. p: [q, Q]
  3362. },
  3363. {
  3364. p: [Q, be]
  3365. },
  3366. {
  3367. p: [be, {
  3368. x: 5,
  3369. y: 6,
  3370. t: 3,
  3371. s: be,
  3372. cp1: {
  3373. x: 3.5,
  3374. y: 0
  3375. },
  3376. cp2: {
  3377. x: 3.5,
  3378. y: 0
  3379. },
  3380. e: cq
  3381. }]
  3382. },
  3383. {
  3384. p: [cq, cU]
  3385. },
  3386. {
  3387. p: [cU, cI]
  3388. },
  3389. {
  3390. p: [cI, {
  3391. x: 1,
  3392. y: 4,
  3393. t: 2,
  3394. s: cI,
  3395. cp1: {
  3396. x: 6,
  3397. y: -1
  3398. },
  3399. cp2: {
  3400. x: 1,
  3401. y: -1
  3402. },
  3403. e: E
  3404. }]
  3405. },
  3406. {
  3407. p: [E, Q]
  3408. },
  3409. {
  3410. p: [Q, dk]
  3411. },
  3412. {
  3413. p: [dk, be]
  3414. },
  3415. {
  3416. p: [be, E]
  3417. },
  3418. {
  3419. p: [E, cI]
  3420. },
  3421. {
  3422. p: [cI, cq]
  3423. },
  3424. {
  3425. p: [cq, q]
  3426. },
  3427. {
  3428. p: [q, cU]
  3429. }],
  3430. qa: 4,
  3431. t: 1,
  3432. id: "167012566117216506",
  3433. gI: 1e3
  3434. },
  3435. {
  3436. d: [co, bg, cs, bc, ck, $, co, dc, ck, bg, m, bc, i, $, cs, dg, co],
  3437. l: [{
  3438. p: [co, bg]
  3439. },
  3440. {
  3441. p: [bg, {
  3442. x: 5,
  3443. y: 7,
  3444. t: 2,
  3445. s: bg,
  3446. cp1: {
  3447. x: -0.4961508830135313,
  3448. y: 8.664100588675687
  3449. },
  3450. cp2: {
  3451. x: 7.496150883013531,
  3452. y: 8.664100588675687
  3453. },
  3454. e: cs
  3455. }]
  3456. },
  3457. {
  3458. p: [cs, bc]
  3459. },
  3460. {
  3461. p: [bc, ck]
  3462. },
  3463. {
  3464. p: [ck, {
  3465. x: 2,
  3466. y: 3,
  3467. t: 2,
  3468. s: ck,
  3469. cp1: {
  3470. x: 7.496150883013531,
  3471. y: 1.3358994113243128
  3472. },
  3473. cp2: {
  3474. x: -0.4961508830135313,
  3475. y: 1.3358994113243128
  3476. },
  3477. e: $
  3478. }]
  3479. },
  3480. {
  3481. p: [$, co]
  3482. },
  3483. {
  3484. p: [co, dc]
  3485. },
  3486. {
  3487. p: [dc, ck]
  3488. },
  3489. {
  3490. p: [ck, bg]
  3491. },
  3492. {
  3493. p: [bg, m]
  3494. },
  3495. {
  3496. p: [m, bc]
  3497. },
  3498. {
  3499. p: [bc, i]
  3500. },
  3501. {
  3502. p: [i, $]
  3503. },
  3504. {
  3505. p: [$, cs]
  3506. },
  3507. {
  3508. p: [cs, dg]
  3509. },
  3510. {
  3511. p: [dg, co]
  3512. }],
  3513. qa: 4,
  3514. t: 1,
  3515. id: "52525257520202575",
  3516. gI: 1e3
  3517. },
  3518. {
  3519. d: [cc, bi, cQ, cc, bY, bc, cK, bY, bS, Y, cE, bS, bc, bi, bm, cc, cU, cQ, cK, cE, bM, Y, bc, cc, cK, bS],
  3520. l: [{
  3521. p: [cc, bi]
  3522. },
  3523. {
  3524. p: [bi, {
  3525. x: 6,
  3526. y: 8,
  3527. t: 2,
  3528. s: bi,
  3529. cp1: {
  3530. x: -0.8284271247461903,
  3531. y: 5.17157287525381
  3532. },
  3533. cp2: {
  3534. x: 8.82842712474619,
  3535. y: 5.17157287525381
  3536. },
  3537. e: cQ
  3538. }]
  3539. },
  3540. {
  3541. p: [cQ, cc]
  3542. },
  3543. {
  3544. p: [cc, bY]
  3545. },
  3546. {
  3547. p: [bY, bc]
  3548. },
  3549. {
  3550. p: [bc, {
  3551. x: 6,
  3552. y: 5,
  3553. t: 2,
  3554. s: bc,
  3555. cp1: {
  3556. x: -0.8284271247461903,
  3557. y: 2.17157287525381
  3558. },
  3559. cp2: {
  3560. x: 8.82842712474619,
  3561. y: 2.17157287525381
  3562. },
  3563. e: cK
  3564. }]
  3565. },
  3566. {
  3567. p: [cK, bY]
  3568. },
  3569. {
  3570. p: [bY, bS]
  3571. },
  3572. {
  3573. p: [bS, Y]
  3574. },
  3575. {
  3576. p: [Y, {
  3577. x: 6,
  3578. y: 2,
  3579. t: 2,
  3580. s: Y,
  3581. cp1: {
  3582. x: -0.8284271247461903,
  3583. y: -0.8284271247461898
  3584. },
  3585. cp2: {
  3586. x: 8.82842712474619,
  3587. y: -0.8284271247461898
  3588. },
  3589. e: cE
  3590. }]
  3591. },
  3592. {
  3593. p: [cE, bS]
  3594. },
  3595. {
  3596. p: [bS, bc]
  3597. },
  3598. {
  3599. p: [bc, bi]
  3600. },
  3601. {
  3602. p: [bi, bm]
  3603. },
  3604. {
  3605. p: [bm, cc]
  3606. },
  3607. {
  3608. p: [cc, cU]
  3609. },
  3610. {
  3611. p: [cU, cQ]
  3612. },
  3613. {
  3614. p: [cQ, cK]
  3615. },
  3616. {
  3617. p: [cK, cE]
  3618. },
  3619. {
  3620. p: [cE, bM]
  3621. },
  3622. {
  3623. p: [bM, Y]
  3624. },
  3625. {
  3626. p: [Y, bc]
  3627. },
  3628. {
  3629. p: [bc, cc]
  3630. },
  3631. {
  3632. p: [cc, cK]
  3633. },
  3634. {
  3635. p: [cK, bS]
  3636. }],
  3637. qa: 1,
  3638. t: 1,
  3639. id: "42644264426422246666422464",
  3640. gI: 1e3
  3641. },
  3642. {
  3643. d: [bi, $, cu, ck, $, k, bi, cu, dg, ck, k, dg, bi],
  3644. l: [{
  3645. p: [bi, $]
  3646. },
  3647. {
  3648. p: [$, {
  3649. x: 5,
  3650. y: 8,
  3651. t: 2,
  3652. s: $,
  3653. cp1: {
  3654. x: 2,
  3655. y: -2.8309518948453007
  3656. },
  3657. cp2: {
  3658. x: 5,
  3659. y: 13.830951894845299
  3660. },
  3661. e: cu
  3662. }]
  3663. },
  3664. {
  3665. p: [cu, ck]
  3666. },
  3667. {
  3668. p: [ck, $]
  3669. },
  3670. {
  3671. p: [$, k]
  3672. },
  3673. {
  3674. p: [k, bi]
  3675. },
  3676. {
  3677. p: [bi, cu]
  3678. },
  3679. {
  3680. p: [cu, dg]
  3681. },
  3682. {
  3683. p: [dg, ck]
  3684. },
  3685. {
  3686. p: [ck, k]
  3687. },
  3688. {
  3689. p: [k, dg]
  3690. },
  3691. {
  3692. p: [dg, bi]
  3693. }],
  3694. qa: 3,
  3695. t: 1,
  3696. id: "2255202575072",
  3697. gI: 1e3
  3698. },
  3699. {
  3700. d: [k, ba, cm, de, cq, be, k, cm, be, de, ba, cq, k],
  3701. l: [{
  3702. p: [k, ba]
  3703. },
  3704. {
  3705. p: [ba, {
  3706. x: 5,
  3707. y: 4,
  3708. t: 3,
  3709. s: ba,
  3710. cp1: {
  3711. x: 3.5,
  3712. y: 3.25
  3713. },
  3714. cp2: {
  3715. x: 3.5,
  3716. y: 3.25
  3717. },
  3718. e: cm
  3719. }]
  3720. },
  3721. {
  3722. p: [cm, de]
  3723. },
  3724. {
  3725. p: [de, cq]
  3726. },
  3727. {
  3728. p: [cq, {
  3729. x: 2,
  3730. y: 6,
  3731. t: 3,
  3732. s: cq,
  3733. cp1: {
  3734. x: 3.5,
  3735. y: 6.75
  3736. },
  3737. cp2: {
  3738. x: 3.5,
  3739. y: 6.75
  3740. },
  3741. e: be
  3742. }]
  3743. },
  3744. {
  3745. p: [be, k]
  3746. },
  3747. {
  3748. p: [k, C, {
  3749. x: 4,
  3750. y: 3,
  3751. t: 3,
  3752. s: C,
  3753. cp1: W,
  3754. cp2: W,
  3755. e: bQ
  3756. },
  3757. cm]
  3758. },
  3759. {
  3760. p: [cm, be]
  3761. },
  3762. {
  3763. p: [be, bC, {
  3764. x: 6,
  3765. y: 7,
  3766. t: 3,
  3767. s: bC,
  3768. cp1: cw,
  3769. cp2: cw,
  3770. e: cO
  3771. },
  3772. de]
  3773. },
  3774. {
  3775. p: [de, cG, {
  3776. x: 3,
  3777. y: 3,
  3778. t: 3,
  3779. s: cG,
  3780. cp1: cg,
  3781. cp2: cg,
  3782. e: bu
  3783. },
  3784. ba]
  3785. },
  3786. {
  3787. p: [ba, cq]
  3788. },
  3789. {
  3790. p: [cq, bY, {
  3791. x: 1,
  3792. y: 7,
  3793. t: 3,
  3794. s: bY,
  3795. cp1: bk,
  3796. cp2: bk,
  3797. e: K
  3798. },
  3799. k]
  3800. }],
  3801. qa: 3,
  3802. t: 1,
  3803. id: "0257520527250",
  3804. gI: 1e3
  3805. },
  3806. {
  3807. d: [bO, de, b$, G, bO, cO, bg, $, cG, cO, G, cG, b$, $, de, bg, bO],
  3808. l: [{
  3809. p: [bO, de]
  3810. },
  3811. {
  3812. p: [de, b$]
  3813. },
  3814. {
  3815. p: [b$, G]
  3816. },
  3817. {
  3818. p: [G, bO]
  3819. },
  3820. {
  3821. p: [bO, cO]
  3822. },
  3823. {
  3824. p: [cO, bg]
  3825. },
  3826. {
  3827. p: [bg, $]
  3828. },
  3829. {
  3830. p: [$, cG]
  3831. },
  3832. {
  3833. p: [cG, cO]
  3834. },
  3835. {
  3836. p: [cO, G]
  3837. },
  3838. {
  3839. p: [G, cG]
  3840. },
  3841. {
  3842. p: [cG, b$]
  3843. },
  3844. {
  3845. p: [b$, $]
  3846. },
  3847. {
  3848. p: [$, de]
  3849. },
  3850. {
  3851. p: [de, bg]
  3852. },
  3853. {
  3854. p: [bg, bO]
  3855. }],
  3856. qa: 3,
  3857. t: 2,
  3858. id: "47414622661642724",
  3859. gI: 1e3
  3860. },
  3861. {
  3862. d: [bm, cw, cs, be, ba, ck, cg, U, Y, ck, co, be, bi, cw, cg, Y, ba, co, cs, bi, bm, U],
  3863. l: [{
  3864. p: [bm, cw]
  3865. },
  3866. {
  3867. p: [cw, {
  3868. x: 5,
  3869. y: 7,
  3870. t: 3,
  3871. s: cw,
  3872. cp1: du,
  3873. cp2: du,
  3874. e: cs
  3875. }]
  3876. },
  3877. {
  3878. p: [cs, be]
  3879. },
  3880. {
  3881. p: [be, {
  3882. x: 2,
  3883. y: 4,
  3884. t: 3,
  3885. s: be,
  3886. cp1: {
  3887. x: -1,
  3888. y: 5
  3889. },
  3890. cp2: {
  3891. x: -1,
  3892. y: 5
  3893. },
  3894. e: ba
  3895. }]
  3896. },
  3897. {
  3898. p: [ba, ck]
  3899. },
  3900. {
  3901. p: [ck, {
  3902. x: 5,
  3903. y: 1,
  3904. t: 3,
  3905. s: ck,
  3906. cp1: dr,
  3907. cp2: dr,
  3908. e: cg
  3909. }]
  3910. },
  3911. {
  3912. p: [cg, U]
  3913. },
  3914. {
  3915. p: [U, Y]
  3916. },
  3917. {
  3918. p: [Y, ck]
  3919. },
  3920. {
  3921. p: [ck, {
  3922. x: 5,
  3923. y: 5,
  3924. t: 3,
  3925. s: ck,
  3926. cp1: ds,
  3927. cp2: ds,
  3928. e: co
  3929. }]
  3930. },
  3931. {
  3932. p: [co, be]
  3933. },
  3934. {
  3935. p: [be, {
  3936. x: 2,
  3937. y: 8,
  3938. t: 3,
  3939. s: be,
  3940. cp1: {
  3941. x: -1,
  3942. y: 7
  3943. },
  3944. cp2: {
  3945. x: -1,
  3946. y: 7
  3947. },
  3948. e: bi
  3949. }]
  3950. },
  3951. {
  3952. p: [bi, cw]
  3953. },
  3954. {
  3955. p: [cw, cy, dp, cW, ce, cg]
  3956. },
  3957. {
  3958. p: [cg, Y]
  3959. },
  3960. {
  3961. p: [Y, {
  3962. x: 2,
  3963. y: 4,
  3964. t: 3,
  3965. s: Y,
  3966. cp1: {
  3967. x: -1,
  3968. y: 3
  3969. },
  3970. cp2: {
  3971. x: -1,
  3972. y: 3
  3973. },
  3974. e: ba
  3975. }]
  3976. },
  3977. {
  3978. p: [ba, co]
  3979. },
  3980. {
  3981. p: [co, {
  3982. x: 5,
  3983. y: 7,
  3984. t: 3,
  3985. s: co,
  3986. cp1: dt,
  3987. cp2: dt,
  3988. e: cs
  3989. }]
  3990. },
  3991. {
  3992. p: [cs, bi]
  3993. },
  3994. {
  3995. p: [bi, bm]
  3996. },
  3997. {
  3998. p: [bm, u, a, U]
  3999. }],
  4000. qa: 3,
  4001. t: 2,
  4002. id: "2552255225522552255222",
  4003. gI: 1e3
  4004. },
  4005. {
  4006. d: [A, cE, cO, K, A, cO, cU, Q, K, cU, cE, bU, bu, bU],
  4007. l: [{
  4008. p: [A, cE]
  4009. },
  4010. {
  4011. p: [cE, cO]
  4012. },
  4013. {
  4014. p: [cO, K]
  4015. },
  4016. {
  4017. p: [K, A]
  4018. },
  4019. {
  4020. p: [A, e, m, dg, di, cO]
  4021. },
  4022. {
  4023. p: [cO, cU]
  4024. },
  4025. {
  4026. p: [cU, Q]
  4027. },
  4028. {
  4029. p: [Q, K]
  4030. },
  4031. {
  4032. p: [K, o, s, dm, dp, cU]
  4033. },
  4034. {
  4035. p: [cU, cu, cg, cY, c$, cE]
  4036. },
  4037. {
  4038. p: [cE, cA, a, c, bM, bU]
  4039. },
  4040. {
  4041. p: [bU, bc, ba, dc, da, bu]
  4042. },
  4043. {
  4044. p: [bu, bE, b$, bU]
  4045. }],
  4046. qa: 2,
  4047. t: 2,
  4048. id: "16611661166434",
  4049. gI: 1e3
  4050. },
  4051. {
  4052. d: [E, bS, bs, E, I, bW, bE, I, bS, bs, A, bW, bE, M, bS, bW],
  4053. l: [{
  4054. p: [E, bS]
  4055. },
  4056. {
  4057. p: [bS, {
  4058. x: 3,
  4059. y: 2,
  4060. t: 2,
  4061. s: bS,
  4062. cp1: ds,
  4063. cp2: {
  4064. x: 5.82842712474619,
  4065. y: -0.8284271247461898
  4066. },
  4067. e: bs
  4068. }]
  4069. },
  4070. {
  4071. p: [bs, E]
  4072. },
  4073. {
  4074. p: [E, I]
  4075. },
  4076. {
  4077. p: [I, bW]
  4078. },
  4079. {
  4080. p: [bW, {
  4081. x: 3,
  4082. y: 8,
  4083. t: 2,
  4084. s: bW,
  4085. cp1: dt,
  4086. cp2: {
  4087. x: 5.82842712474619,
  4088. y: 10.82842712474619
  4089. },
  4090. e: bE
  4091. }]
  4092. },
  4093. {
  4094. p: [bE, I]
  4095. },
  4096. {
  4097. p: [I, bS]
  4098. },
  4099. {
  4100. p: [bS, bs]
  4101. },
  4102. {
  4103. p: [bs, A]
  4104. },
  4105. {
  4106. p: [A, bW]
  4107. },
  4108. {
  4109. p: [bW, bE]
  4110. },
  4111. {
  4112. p: [bE, M]
  4113. },
  4114. {
  4115. p: [M, bS]
  4116. },
  4117. {
  4118. p: [bS, cI, dg, dp, u, a, cW, dc, cM, bW]
  4119. }],
  4120. qa: 5,
  4121. t: 2,
  4122. id: "1431143143143144",
  4123. gI: 5096
  4124. },
  4125. {
  4126. d: [E, o, di, cI, c$, ci, cI, E, e, Y, E, be, cq, cI, cu, cq, bi, E],
  4127. l: [{
  4128. p: [E, o]
  4129. },
  4130. {
  4131. p: [o, {
  4132. x: 7,
  4133. y: 7,
  4134. t: 2,
  4135. s: o,
  4136. cp1: {
  4137. x: -1.2649110640673518,
  4138. y: 10.794733192202056
  4139. },
  4140. cp2: {
  4141. x: 8.264911064067352,
  4142. y: 10.794733192202056
  4143. },
  4144. e: di
  4145. }]
  4146. },
  4147. {
  4148. p: [di, cI]
  4149. },
  4150. {
  4151. p: [cI, c$]
  4152. },
  4153. {
  4154. p: [c$, {
  4155. x: 5,
  4156. y: 2,
  4157. t: 2,
  4158. s: c$,
  4159. cp1: {
  4160. x: 8.788854381999831,
  4161. y: -1.5777087639996634
  4162. },
  4163. cp2: {
  4164. x: 3.2111456180001676,
  4165. y: -1.5777087639996634
  4166. },
  4167. e: ci
  4168. }]
  4169. },
  4170. {
  4171. p: [ci, cI]
  4172. },
  4173. {
  4174. p: [cI, E]
  4175. },
  4176. {
  4177. p: [E, e]
  4178. },
  4179. {
  4180. p: [e, {
  4181. x: 2,
  4182. y: 2,
  4183. t: 2,
  4184. s: e,
  4185. cp1: {
  4186. x: -1.7888543819998322,
  4187. y: -1.5777087639996634
  4188. },
  4189. cp2: {
  4190. x: 3.7888543819998324,
  4191. y: -1.5777087639996634
  4192. },
  4193. e: Y
  4194. }]
  4195. },
  4196. {
  4197. p: [Y, E]
  4198. },
  4199. {
  4200. p: [E, be]
  4201. },
  4202. {
  4203. p: [be, bA, bo, bK, bW, cq]
  4204. },
  4205. {
  4206. p: [cq, cI]
  4207. },
  4208. {
  4209. p: [cI, dc, de, cM, cQ, dm, dp, cU, cw, cu]
  4210. },
  4211. {
  4212. p: [cu, cq]
  4213. },
  4214. {
  4215. p: [cq, bi]
  4216. },
  4217. {
  4218. p: [bi, bk, Q, u, s, M, I, k, i, E]
  4219. }],
  4220. qa: 3,
  4221. t: 2,
  4222. id: "107675610212565521",
  4223. gI: 1e3
  4224. },
  4225. {
  4226. d: [C, cG, cK, bU, bc, k, C, bc, bq, bU, cg, bq, cK],
  4227. l: [{
  4228. p: [C, cG]
  4229. },
  4230. {
  4231. p: [cG, cE, c$, di, cw, ca, cO, cK]
  4232. },
  4233. {
  4234. p: [cK, cq, cs, bG, bk, bY, bW, bU]
  4235. },
  4236. {
  4237. p: [bU, bA, bC, O, s, bg, bc]
  4238. },
  4239. {
  4240. p: [bc, k]
  4241. },
  4242. {
  4243. p: [k, C]
  4244. },
  4245. {
  4246. p: [C, bc]
  4247. },
  4248. {
  4249. p: [bc, W, bq]
  4250. },
  4251. {
  4252. p: [bq, bU]
  4253. },
  4254. {
  4255. p: [bU, cg]
  4256. },
  4257. {
  4258. p: [cg, bq]
  4259. },
  4260. {
  4261. p: [bq, cK]
  4262. }],
  4263. qa: 1,
  4264. t: 2,
  4265. id: "1664201234536",
  4266. gI: 1e3
  4267. },
  4268. {
  4269. d: [E, A, bw, E, I, M, bA, I, bw, cq, dc, dg, cm, bA, E, bM, c$, dc, cm, cq, dg, dk, ca, I],
  4270. l: [{
  4271. p: [E, A]
  4272. },
  4273. {
  4274. p: [A, {
  4275. x: 3,
  4276. y: 4,
  4277. t: 2,
  4278. s: A,
  4279. cp1: {
  4280. x: 1,
  4281. y: -2
  4282. },
  4283. cp2: dc,
  4284. e: bw
  4285. }]
  4286. },
  4287. {
  4288. p: [bw, E]
  4289. },
  4290. {
  4291. p: [E, I]
  4292. },
  4293. {
  4294. p: [I, M]
  4295. },
  4296. {
  4297. p: [M, {
  4298. x: 3,
  4299. y: 6,
  4300. t: 2,
  4301. s: M,
  4302. cp1: T,
  4303. cp2: dg,
  4304. e: bA
  4305. }]
  4306. },
  4307. {
  4308. p: [bA, I]
  4309. },
  4310. {
  4311. p: [I, bw]
  4312. },
  4313. {
  4314. p: [bw, cq]
  4315. },
  4316. {
  4317. p: [cq, dc]
  4318. },
  4319. {
  4320. p: [dc, dg]
  4321. },
  4322. {
  4323. p: [dg, cm]
  4324. },
  4325. {
  4326. p: [cm, bA]
  4327. },
  4328. {
  4329. p: [bA, E]
  4330. },
  4331. {
  4332. p: [E, bM]
  4333. },
  4334. {
  4335. p: [bM, c$]
  4336. },
  4337. {
  4338. p: [c$, dc]
  4339. },
  4340. {
  4341. p: [dc, cm]
  4342. },
  4343. {
  4344. p: [cm, cq]
  4345. },
  4346. {
  4347. p: [cq, dg]
  4348. },
  4349. {
  4350. p: [dg, dk]
  4351. },
  4352. {
  4353. p: [dk, ca]
  4354. },
  4355. {
  4356. p: [ca, I]
  4357. }],
  4358. qa: 2,
  4359. t: 2,
  4360. id: "113111313577531477557741",
  4361. gI: 1e3
  4362. },
  4363. {
  4364. d: [K, cs, G, co, K, ck, cC, bM, ck, bu, bM, W, bu, C, W, c, C, cC],
  4365. l: [{
  4366. p: [K, cs]
  4367. },
  4368. {
  4369. p: [cs, G]
  4370. },
  4371. {
  4372. p: [G, co]
  4373. },
  4374. {
  4375. p: [co, K]
  4376. },
  4377. {
  4378. p: [K, O, {
  4379. x: 5,
  4380. y: 3,
  4381. t: 3,
  4382. s: O,
  4383. cp1: S,
  4384. cp2: S,
  4385. e: ck
  4386. }]
  4387. },
  4388. {
  4389. p: [ck, cC]
  4390. },
  4391. {
  4392. p: [cC, bM]
  4393. },
  4394. {
  4395. p: [bM, ck]
  4396. },
  4397. {
  4398. p: [ck, bu]
  4399. },
  4400. {
  4401. p: [bu, bM]
  4402. },
  4403. {
  4404. p: [bM, W]
  4405. },
  4406. {
  4407. p: [W, bu]
  4408. },
  4409. {
  4410. p: [bu, C]
  4411. },
  4412. {
  4413. p: [C, W]
  4414. },
  4415. {
  4416. p: [W, c]
  4417. },
  4418. {
  4419. p: [c, C]
  4420. },
  4421. {
  4422. p: [C, ba, cm, cG, c$, cC]
  4423. }],
  4424. qa: 2,
  4425. t: 2,
  4426. id: "151515645342312016",
  4427. gI: 1e3
  4428. },
  4429. {
  4430. d: [G, bw, cm, de, ci, bs, G, bA, cq, de, cu, bE, G, C, bw, bA, cu, cq, cm, da, de, di, cq, bw, ci, cm, bs, bw, bA, bE, cq, K, bA, cm, C],
  4431. l: [{
  4432. p: [G, bw]
  4433. },
  4434. {
  4435. p: [bw, {
  4436. x: 5,
  4437. y: 4,
  4438. t: 3,
  4439. s: bw,
  4440. cp1: {
  4441. x: 4,
  4442. y: 3.5
  4443. },
  4444. cp2: {
  4445. x: 4,
  4446. y: 3.5
  4447. },
  4448. e: cm
  4449. }]
  4450. },
  4451. {
  4452. p: [cm, de]
  4453. },
  4454. {
  4455. p: [de, ci]
  4456. },
  4457. {
  4458. p: [ci, {
  4459. x: 3,
  4460. y: 2,
  4461. t: 3,
  4462. s: ci,
  4463. cp1: {
  4464. x: 4,
  4465. y: .5
  4466. },
  4467. cp2: {
  4468. x: 4,
  4469. y: .5
  4470. },
  4471. e: bs
  4472. }]
  4473. },
  4474. {
  4475. p: [bs, G]
  4476. },
  4477. {
  4478. p: [G, bA]
  4479. },
  4480. {
  4481. p: [bA, {
  4482. x: 5,
  4483. y: 6,
  4484. t: 3,
  4485. s: bA,
  4486. cp1: {
  4487. x: 4,
  4488. y: 6.5
  4489. },
  4490. cp2: {
  4491. x: 4,
  4492. y: 6.5
  4493. },
  4494. e: cq
  4495. }]
  4496. },
  4497. {
  4498. p: [cq, de]
  4499. },
  4500. {
  4501. p: [de, cu]
  4502. },
  4503. {
  4504. p: [cu, {
  4505. x: 3,
  4506. y: 8,
  4507. t: 3,
  4508. s: cu,
  4509. cp1: {
  4510. x: 4,
  4511. y: 9.5
  4512. },
  4513. cp2: {
  4514. x: 4,
  4515. y: 9.5
  4516. },
  4517. e: bE
  4518. }]
  4519. },
  4520. {
  4521. p: [bE, G]
  4522. },
  4523. {
  4524. p: [G, C]
  4525. },
  4526. {
  4527. p: [C, bw]
  4528. },
  4529. {
  4530. p: [bw, bA]
  4531. },
  4532. {
  4533. p: [bA, cu]
  4534. },
  4535. {
  4536. p: [cu, cq]
  4537. },
  4538. {
  4539. p: [cq, cm]
  4540. },
  4541. {
  4542. p: [cm, da]
  4543. },
  4544. {
  4545. p: [da, de]
  4546. },
  4547. {
  4548. p: [de, di]
  4549. },
  4550. {
  4551. p: [di, cq]
  4552. },
  4553. {
  4554. p: [cq, bw]
  4555. },
  4556. {
  4557. p: [bw, ci]
  4558. },
  4559. {
  4560. p: [ci, cm]
  4561. },
  4562. {
  4563. p: [cm, bs]
  4564. },
  4565. {
  4566. p: [bs, bw]
  4567. },
  4568. {
  4569. p: [bw, y, c, i, s, O, bA]
  4570. },
  4571. {
  4572. p: [bA, bE]
  4573. },
  4574. {
  4575. p: [bE, cq]
  4576. },
  4577. {
  4578. p: [cq, dm, bG, K, K]
  4579. },
  4580. {
  4581. p: [K, bA]
  4582. },
  4583. {
  4584. p: [bA, cm]
  4585. },
  4586. {
  4587. p: [cm, cY, bq, C]
  4588. }],
  4589. qa: 1,
  4590. t: 2,
  4591. id: "13575313575311335557775355333351351",
  4592. gI: 1e3
  4593. },
  4594. {
  4595. d: [k, bs, b$, de, da, bs, k, o, b$, de],
  4596. l: [{
  4597. p: [k, bs]
  4598. },
  4599. {
  4600. p: [bs, b$]
  4601. },
  4602. {
  4603. p: [b$, de]
  4604. },
  4605. {
  4606. p: [de, i, da]
  4607. },
  4608. {
  4609. p: [da, bs]
  4610. },
  4611. {
  4612. p: [bs, g, dc, k]
  4613. },
  4614. {
  4615. p: [k, dg, o]
  4616. },
  4617. {
  4618. p: [o, b$]
  4619. },
  4620. {
  4621. p: [b$, di, m, de]
  4622. }],
  4623. qa: 1,
  4624. t: 2,
  4625. id: "0347730047",
  4626. gI: 1e3
  4627. },
  4628. {
  4629. d: [q, dk, de, k, q, Y, ba, k, be, de, bW, be, bk, bW, ca, dk, bk, q, be, ca],
  4630. l: [{
  4631. p: [q, dk]
  4632. },
  4633. {
  4634. p: [dk, de]
  4635. },
  4636. {
  4637. p: [de, {
  4638. x: 0,
  4639. y: 5,
  4640. t: 2,
  4641. s: de,
  4642. cp1: {
  4643. x: 7,
  4644. y: -2
  4645. },
  4646. cp2: {
  4647. x: 4.440892098500626e-16,
  4648. y: -2
  4649. },
  4650. e: k
  4651. }]
  4652. },
  4653. {
  4654. p: [k, q]
  4655. },
  4656. {
  4657. p: [q, O, A, c, a, w, W, cg, cA, cW, cY, cE, Y]
  4658. },
  4659. {
  4660. p: [Y, $, cG, cI, ba]
  4661. },
  4662. {
  4663. p: [ba, k]
  4664. },
  4665. {
  4666. p: [k, be]
  4667. },
  4668. {
  4669. p: [be, bc, de]
  4670. },
  4671. {
  4672. p: [de, cM, bW]
  4673. },
  4674. {
  4675. p: [bW, be]
  4676. },
  4677. {
  4678. p: [be, bk]
  4679. },
  4680. {
  4681. p: [bk, bG, bC, bW]
  4682. },
  4683. {
  4684. p: [bW, ca]
  4685. },
  4686. {
  4687. p: [ca, cw, cs, cO, cS, dk]
  4688. },
  4689. {
  4690. p: [dk, dp, bI, bk]
  4691. },
  4692. {
  4693. p: [bk, Q, u, q]
  4694. },
  4695. {
  4696. p: [q, be]
  4697. },
  4698. {
  4699. p: [be, ca]
  4700. }],
  4701. qa: 3,
  4702. t: 2,
  4703. id: "07700220274224472024",
  4704. gI: 1e3
  4705. },
  4706. {
  4707. d: [C, bs, bw, dg, bW, bw, be, C, m, be, bE, M, m, bs],
  4708. l: [{
  4709. p: [C, ck, cs, cG, cO, da, c$, bO, bs]
  4710. },
  4711. {
  4712. p: [bs, bw]
  4713. },
  4714. {
  4715. p: [bw, dg]
  4716. },
  4717. {
  4718. p: [dg, di, cQ, cu, bY, bW]
  4719. },
  4720. {
  4721. p: [bW, bw]
  4722. },
  4723. {
  4724. p: [bw, be]
  4725. },
  4726. {
  4727. p: [be, C]
  4728. },
  4729. {
  4730. p: [C, m]
  4731. },
  4732. {
  4733. p: [m, be]
  4734. },
  4735. {
  4736. p: [be, bE]
  4737. },
  4738. {
  4739. p: [bE, M]
  4740. },
  4741. {
  4742. p: [M, m]
  4743. },
  4744. {
  4745. p: [m, g, A, bs]
  4746. }],
  4747. qa: 3,
  4748. t: 2,
  4749. id: "13374321023103",
  4750. gI: 1e3
  4751. },
  4752. {
  4753. d: [ba, bi, cu, bW, cM, cI, bS, I, bi, bW, ba, bs, bS, ci, cI, bW],
  4754. l: [{
  4755. p: [ba, bi]
  4756. },
  4757. {
  4758. p: [bi, cu]
  4759. },
  4760. {
  4761. p: [cu, bW]
  4762. },
  4763. {
  4764. p: [bW, cM]
  4765. },
  4766. {
  4767. p: [cM, cI]
  4768. },
  4769. {
  4770. p: [cI, bS]
  4771. },
  4772. {
  4773. p: [bS, I]
  4774. },
  4775. {
  4776. p: [I, bi]
  4777. },
  4778. {
  4779. p: [bi, bW]
  4780. },
  4781. {
  4782. p: [bW, ba]
  4783. },
  4784. {
  4785. p: [ba, bs]
  4786. },
  4787. {
  4788. p: [bs, bS]
  4789. },
  4790. {
  4791. p: [bS, ci]
  4792. },
  4793. {
  4794. p: [ci, cI]
  4795. },
  4796. {
  4797. p: [cI, bW]
  4798. }],
  4799. qa: 3,
  4800. t: 2,
  4801. id: "2254664124234564",
  4802. gI: 1e3
  4803. },
  4804. {
  4805. d: [cI, E, bq, E, cq, bq, cI, cq, ca, O, ca],
  4806. l: [{
  4807. p: [cI, E]
  4808. },
  4809. {
  4810. p: [E, i, k, bc, W, bq]
  4811. },
  4812. {
  4813. p: [bq, bA, I, E]
  4814. },
  4815. {
  4816. p: [E, C, ck, cq]
  4817. },
  4818. {
  4819. p: [cq, bW, bO, e, c, y, w, bo, bq]
  4820. },
  4821. {
  4822. p: [bq, bM, bK, ce, ci, cE, cA, cW, da, cG, cI]
  4823. },
  4824. {
  4825. p: [cI, cU, dp, dg, cq]
  4826. },
  4827. {
  4828. p: [cq, cw, cy, cc, ca]
  4829. },
  4830. {
  4831. p: [ca, bY, o, u, Q, O]
  4832. },
  4833. {
  4834. p: [O, M, bi, bm, bI, bG, ca]
  4835. }],
  4836. qa: 5,
  4837. t: 2,
  4838. id: "61315365414",
  4839. gI: 1e3
  4840. },
  4841. {
  4842. d: [O, o, di, cS, cI, c$, e, E, O, cI, e, W, cg, c$, E, cS, o, cI, W, E, cg, cI, di, E, o, cg, O, di, W, cS],
  4843. l: [{
  4844. p: [O, o]
  4845. },
  4846. {
  4847. p: [o, {
  4848. x: 7,
  4849. y: 7,
  4850. t: 2,
  4851. s: o,
  4852. cp1: {
  4853. x: -1.7888543819998322,
  4854. y: 3.422291236000337
  4855. },
  4856. cp2: {
  4857. x: 8.788854381999831,
  4858. y: 3.422291236000337
  4859. },
  4860. e: di
  4861. }]
  4862. },
  4863. {
  4864. p: [di, cS]
  4865. },
  4866. {
  4867. p: [cS, cI]
  4868. },
  4869. {
  4870. p: [cI, c$]
  4871. },
  4872. {
  4873. p: [c$, {
  4874. x: 0,
  4875. y: 2,
  4876. t: 2,
  4877. s: c$,
  4878. cp1: {
  4879. x: 8.788854381999831,
  4880. y: -1.5777087639996634
  4881. },
  4882. cp2: {
  4883. x: -1.7888543819998322,
  4884. y: -1.5777087639996634
  4885. },
  4886. e: e
  4887. }]
  4888. },
  4889. {
  4890. p: [e, E]
  4891. },
  4892. {
  4893. p: [E, O]
  4894. },
  4895. {
  4896. p: [O, cI]
  4897. },
  4898. {
  4899. p: [cI, e]
  4900. },
  4901. {
  4902. p: [e, W]
  4903. },
  4904. {
  4905. p: [W, cg]
  4906. },
  4907. {
  4908. p: [cg, c$]
  4909. },
  4910. {
  4911. p: [c$, E]
  4912. },
  4913. {
  4914. p: [E, cS]
  4915. },
  4916. {
  4917. p: [cS, o]
  4918. },
  4919. {
  4920. p: [o, cI]
  4921. },
  4922. {
  4923. p: [cI, W]
  4924. },
  4925. {
  4926. p: [W, E]
  4927. },
  4928. {
  4929. p: [E, cg]
  4930. },
  4931. {
  4932. p: [cg, cI]
  4933. },
  4934. {
  4935. p: [cI, di]
  4936. },
  4937. {
  4938. p: [di, E]
  4939. },
  4940. {
  4941. p: [E, o]
  4942. },
  4943. {
  4944. p: [o, cg]
  4945. },
  4946. {
  4947. p: [cg, O]
  4948. },
  4949. {
  4950. p: [O, di]
  4951. },
  4952. {
  4953. p: [di, W]
  4954. },
  4955. {
  4956. p: [W, cS]
  4957. }],
  4958. qa: 4,
  4959. t: 2,
  4960. id: "107667011602571606215671051726",
  4961. gI: 2040
  4962. },
  4963. {
  4964. d: [g, Y, bQ, cE, cI, bQ, ba, g, k, ba, bU, cI, cM, bU, be, k, o, be, bY, cM, cQ, bY, bi, o, s, bi, cQ, bU, bY, o, ba, Y, c, g, bQ, bU, cE, bM, Y, cE, cQ, ca, bi, be, g],
  4965. l: [{
  4966. p: [g, Y]
  4967. },
  4968. {
  4969. p: [Y, bQ]
  4970. },
  4971. {
  4972. p: [bQ, cE]
  4973. },
  4974. {
  4975. p: [cE, cI]
  4976. },
  4977. {
  4978. p: [cI, bQ]
  4979. },
  4980. {
  4981. p: [bQ, ba]
  4982. },
  4983. {
  4984. p: [ba, g]
  4985. },
  4986. {
  4987. p: [g, k]
  4988. },
  4989. {
  4990. p: [k, ba]
  4991. },
  4992. {
  4993. p: [ba, bU]
  4994. },
  4995. {
  4996. p: [bU, cI]
  4997. },
  4998. {
  4999. p: [cI, cM]
  5000. },
  5001. {
  5002. p: [cM, bU]
  5003. },
  5004. {
  5005. p: [bU, be]
  5006. },
  5007. {
  5008. p: [be, k]
  5009. },
  5010. {
  5011. p: [k, o]
  5012. },
  5013. {
  5014. p: [o, be]
  5015. },
  5016. {
  5017. p: [be, bY]
  5018. },
  5019. {
  5020. p: [bY, cM]
  5021. },
  5022. {
  5023. p: [cM, cQ]
  5024. },
  5025. {
  5026. p: [cQ, bY]
  5027. },
  5028. {
  5029. p: [bY, bi]
  5030. },
  5031. {
  5032. p: [bi, o]
  5033. },
  5034. {
  5035. p: [o, s]
  5036. },
  5037. {
  5038. p: [s, bi]
  5039. },
  5040. {
  5041. p: [bi, cQ]
  5042. },
  5043. {
  5044. p: [cQ, bU]
  5045. },
  5046. {
  5047. p: [bU, bY]
  5048. },
  5049. {
  5050. p: [bY, o]
  5051. },
  5052. {
  5053. p: [o, ba]
  5054. },
  5055. {
  5056. p: [ba, Y]
  5057. },
  5058. {
  5059. p: [Y, c]
  5060. },
  5061. {
  5062. p: [c, g]
  5063. },
  5064. {
  5065. p: [g, bQ]
  5066. },
  5067. {
  5068. p: [bQ, bU]
  5069. },
  5070. {
  5071. p: [bU, cE]
  5072. },
  5073. {
  5074. p: [cE, bM]
  5075. },
  5076. {
  5077. p: [bM, Y]
  5078. },
  5079. {
  5080. p: [Y, cE]
  5081. },
  5082. {
  5083. p: [cE, de, cQ]
  5084. },
  5085. {
  5086. p: [cQ, ca]
  5087. },
  5088. {
  5089. p: [ca, bi]
  5090. },
  5091. {
  5092. p: [bi, be]
  5093. },
  5094. {
  5095. p: [be, g]
  5096. }],
  5097. qa: 4,
  5098. t: 2,
  5099. id: "024664200246642002466420026440220044642664220",
  5100. gI: 1e3
  5101. },
  5102. {
  5103. d: [k, g, bc, co, da, de, Y, bc, ci, co, cu, bc, bi, o, k, bi, co, de, bi, cu, di, de, cu, Y, g, da, ci, Y, k, bc, o, di, co, Y, c, ci, bi, s, cu],
  5104. l: [{
  5105. p: [k, g]
  5106. },
  5107. {
  5108. p: [g, bc]
  5109. },
  5110. {
  5111. p: [bc, co]
  5112. },
  5113. {
  5114. p: [co, da]
  5115. },
  5116. {
  5117. p: [da, de]
  5118. },
  5119. {
  5120. p: [de, Y]
  5121. },
  5122. {
  5123. p: [Y, bc]
  5124. },
  5125. {
  5126. p: [bc, ci]
  5127. },
  5128. {
  5129. p: [ci, co]
  5130. },
  5131. {
  5132. p: [co, cu]
  5133. },
  5134. {
  5135. p: [cu, bc]
  5136. },
  5137. {
  5138. p: [bc, bi]
  5139. },
  5140. {
  5141. p: [bi, o]
  5142. },
  5143. {
  5144. p: [o, k]
  5145. },
  5146. {
  5147. p: [k, bi]
  5148. },
  5149. {
  5150. p: [bi, co]
  5151. },
  5152. {
  5153. p: [co, de]
  5154. },
  5155. {
  5156. p: [de, bi]
  5157. },
  5158. {
  5159. p: [bi, cu]
  5160. },
  5161. {
  5162. p: [cu, di]
  5163. },
  5164. {
  5165. p: [di, de]
  5166. },
  5167. {
  5168. p: [de, cu]
  5169. },
  5170. {
  5171. p: [cu, Y]
  5172. },
  5173. {
  5174. p: [Y, g]
  5175. },
  5176. {
  5177. p: [g, da]
  5178. },
  5179. {
  5180. p: [da, ci]
  5181. },
  5182. {
  5183. p: [ci, Y]
  5184. },
  5185. {
  5186. p: [Y, k]
  5187. },
  5188. {
  5189. p: [k, bc]
  5190. },
  5191. {
  5192. p: [bc, o]
  5193. },
  5194. {
  5195. p: [o, di]
  5196. },
  5197. {
  5198. p: [di, co]
  5199. },
  5200. {
  5201. p: [co, Y]
  5202. },
  5203. {
  5204. p: [Y, c]
  5205. },
  5206. {
  5207. p: [c, ci]
  5208. },
  5209. {
  5210. p: [ci, bi]
  5211. },
  5212. {
  5213. p: [bi, s]
  5214. },
  5215. {
  5216. p: [s, cu]
  5217. }],
  5218. qa: 4,
  5219. t: 2,
  5220. id: "002577225552200257257752075202075205205",
  5221. gI: 1e3
  5222. },
  5223. {
  5224. d: [bE, cu, dg, dc, ci, bs, E, I, bE, ci, I, dc, cu, E, dg, bs, cu, I, bs, dc, bE, E, ci, dg, bE],
  5225. l: [{
  5226. p: [bE, cu]
  5227. },
  5228. {
  5229. p: [cu, dg]
  5230. },
  5231. {
  5232. p: [dg, dc]
  5233. },
  5234. {
  5235. p: [dc, ci]
  5236. },
  5237. {
  5238. p: [ci, bs]
  5239. },
  5240. {
  5241. p: [bs, E]
  5242. },
  5243. {
  5244. p: [E, I]
  5245. },
  5246. {
  5247. p: [I, bE]
  5248. },
  5249. {
  5250. p: [bE, ci]
  5251. },
  5252. {
  5253. p: [ci, I]
  5254. },
  5255. {
  5256. p: [I, dc]
  5257. },
  5258. {
  5259. p: [dc, cu]
  5260. },
  5261. {
  5262. p: [cu, E]
  5263. },
  5264. {
  5265. p: [E, dg]
  5266. },
  5267. {
  5268. p: [dg, bs]
  5269. },
  5270. {
  5271. p: [bs, cu]
  5272. },
  5273. {
  5274. p: [cu, I]
  5275. },
  5276. {
  5277. p: [I, bs]
  5278. },
  5279. {
  5280. p: [bs, dc]
  5281. },
  5282. {
  5283. p: [dc, bE]
  5284. },
  5285. {
  5286. p: [bE, E]
  5287. },
  5288. {
  5289. p: [E, ci]
  5290. },
  5291. {
  5292. p: [ci, dg]
  5293. },
  5294. {
  5295. p: [dg, bE]
  5296. }],
  5297. qa: 4,
  5298. t: 2,
  5299. id: "3577531135175173513731573",
  5300. gI: 1e3
  5301. },
  5302. {
  5303. d: [bg, cm, o, bg, dc, cm, c$, dc, dg, bk, s, o, bk, bg, k, ci, dc],
  5304. l: [{
  5305. p: [bg, ba, {
  5306. x: 5,
  5307. y: 7,
  5308. t: 2,
  5309. s: ba,
  5310. cp1: {
  5311. x: 2,
  5312. y: -0.24264068711928477
  5313. },
  5314. cp2: {
  5315. x: 5,
  5316. y: 11.242640687119284
  5317. },
  5318. e: cs
  5319. },
  5320. cm]
  5321. },
  5322. {
  5323. p: [cm, o]
  5324. },
  5325. {
  5326. p: [o, bg]
  5327. },
  5328. {
  5329. p: [bg, dc]
  5330. },
  5331. {
  5332. p: [dc, cm]
  5333. },
  5334. {
  5335. p: [cm, c$]
  5336. },
  5337. {
  5338. p: [c$, dc]
  5339. },
  5340. {
  5341. p: [dc, dg]
  5342. },
  5343. {
  5344. p: [dg, bk]
  5345. },
  5346. {
  5347. p: [bk, s]
  5348. },
  5349. {
  5350. p: [s, o]
  5351. },
  5352. {
  5353. p: [o, bk]
  5354. },
  5355. {
  5356. p: [bk, bg]
  5357. },
  5358. {
  5359. p: [bg, k]
  5360. },
  5361. {
  5362. p: [k, ci]
  5363. },
  5364. {
  5365. p: [ci, dc]
  5366. }],
  5367. qa: 4,
  5368. t: 2,
  5369. id: "25027577720022057",
  5370. gI: 1e3
  5371. },
  5372. {
  5373. d: [bG, I, bW, bG, ba, cI, bW, ba, I, O, bG, cw, bW, cM, cw, dm, cM, cI, O],
  5374. l: [{
  5375. p: [bG, I]
  5376. },
  5377. {
  5378. p: [I, {
  5379. x: 4,
  5380. y: 6,
  5381. t: 2,
  5382. s: I,
  5383. cp1: {
  5384. x: -1.2188007849009166,
  5385. y: 2.6717988226486256
  5386. },
  5387. cp2: {
  5388. x: 5.264911064067352,
  5389. y: 2.205266807797945
  5390. },
  5391. e: bW
  5392. }]
  5393. },
  5394. {
  5395. p: [bW, bG]
  5396. },
  5397. {
  5398. p: [bG, ba]
  5399. },
  5400. {
  5401. p: [ba, {
  5402. x: 6,
  5403. y: 4,
  5404. t: 2,
  5405. s: ba,
  5406. cp1: {
  5407. x: 1.2155354594472643,
  5408. y: .07767729723631955
  5409. },
  5410. cp2: {
  5411. x: 8.82842712474619,
  5412. y: 1.1715728752538102
  5413. },
  5414. e: cI
  5415. }]
  5416. },
  5417. {
  5418. p: [cI, bW]
  5419. },
  5420. {
  5421. p: [bW, ba]
  5422. },
  5423. {
  5424. p: [ba, I]
  5425. },
  5426. {
  5427. p: [I, O]
  5428. },
  5429. {
  5430. p: [O, bG]
  5431. },
  5432. {
  5433. p: [bG, cw]
  5434. },
  5435. {
  5436. p: [cw, bW]
  5437. },
  5438. {
  5439. p: [bW, cM]
  5440. },
  5441. {
  5442. p: [cM, cw]
  5443. },
  5444. {
  5445. p: [cw, dm]
  5446. },
  5447. {
  5448. p: [dm, cM]
  5449. },
  5450. {
  5451. p: [cM, cI]
  5452. },
  5453. {
  5454. p: [cI, dg, cY, W, g, s, O]
  5455. }],
  5456. qa: 4,
  5457. t: 2,
  5458. id: "3143264211354657661",
  5459. gI: 1e3
  5460. },
  5461. {
  5462. d: [e, da, i, de, m, di, q, dm, u, q, m, i, e, cY, da, de, di, dm, bk, bg, bc, $, W, da, $, de, bc, di, bg, dm],
  5463. l: [{
  5464. p: [e, da]
  5465. },
  5466. {
  5467. p: [da, i]
  5468. },
  5469. {
  5470. p: [i, de]
  5471. },
  5472. {
  5473. p: [de, m]
  5474. },
  5475. {
  5476. p: [m, di]
  5477. },
  5478. {
  5479. p: [di, q]
  5480. },
  5481. {
  5482. p: [q, dm]
  5483. },
  5484. {
  5485. p: [dm, u]
  5486. },
  5487. {
  5488. p: [u, q]
  5489. },
  5490. {
  5491. p: [q, m]
  5492. },
  5493. {
  5494. p: [m, i]
  5495. },
  5496. {
  5497. p: [i, e]
  5498. },
  5499. {
  5500. p: [e, cY]
  5501. },
  5502. {
  5503. p: [cY, da]
  5504. },
  5505. {
  5506. p: [da, de]
  5507. },
  5508. {
  5509. p: [de, di]
  5510. },
  5511. {
  5512. p: [di, dm]
  5513. },
  5514. {
  5515. p: [dm, bk]
  5516. },
  5517. {
  5518. p: [bk, bg]
  5519. },
  5520. {
  5521. p: [bg, bc]
  5522. },
  5523. {
  5524. p: [bc, $]
  5525. },
  5526. {
  5527. p: [$, W]
  5528. },
  5529. {
  5530. p: [W, da]
  5531. },
  5532. {
  5533. p: [da, $]
  5534. },
  5535. {
  5536. p: [$, de]
  5537. },
  5538. {
  5539. p: [de, bc]
  5540. },
  5541. {
  5542. p: [bc, di]
  5543. },
  5544. {
  5545. p: [di, bg]
  5546. },
  5547. {
  5548. p: [bg, dm]
  5549. }],
  5550. qa: 4,
  5551. t: 2,
  5552. id: "070707070000077777222227272727",
  5553. gI: 1e3
  5554. }]
  5555. }
  5556. })(),
  5557. width = "width",
  5558. height = "height",
  5559. zl = "width",
  5560. zL = "height",
  5561. _ = "prototype",
  5562. length = "length",
  5563. hardScale = "scale",
  5564. _ga[_] = {
  5565. onclick: function() {},
  5566. Us: function(a, b) {
  5567. var c = this;
  5568. c.container = document.createElement("div"),
  5569. c.container.className = "clsContainer",
  5570. document.body.appendChild(c.container),
  5571. c.container.zF = c,
  5572. c.zc = c.zY(),
  5573. c.z9 = c.zY(),
  5574. c.zm = c.zY(),
  5575. c.z9[Zs] != UD && (c.uP = c.z9[Zs]("2d"), c.UP = c.zc[Zs]("2d"), c.uJ = c.zm[Zs]("2d"), c.zm.zF = c, c.zm.onclick = function(a) {
  5576. var b;
  5577. if (this.zF.UU || this.zF.moused) {
  5578. try {
  5579. a.preventDefault(),
  5580. a.bubbles = tq
  5581. } catch(c) {}
  5582. return
  5583. }
  5584. this.zF.UG = a1,
  5585. this.zF.g.UU = tq,
  5586. b = a,
  5587. b == UD && (b = event),
  5588. this.zF.g.onclick(b.clientX - this.zF.zD, b.clientY - this.zF.ut);
  5589. try {
  5590. a.preventDefault(),
  5591. a.bubbles = tq
  5592. } catch(c) {}
  5593. return tq
  5594. },
  5595. c.zm.onmousedown = function(a) {
  5596. var b;
  5597. if (this.zF.UU || this.zF.UG) {
  5598. try {
  5599. a.preventDefault(),
  5600. a.bubbles = tq
  5601. } catch(c) {}
  5602. return
  5603. }
  5604. this.zF.moused = a1,
  5605. this.zF.g.UU = tq,
  5606. b = a,
  5607. b == UD && (b = event),
  5608. this.zF.g.onclick(b.clientX - this.zF.zD, b.clientY - this.zF.ut);
  5609. try {
  5610. a.preventDefault(),
  5611. a.bubbles = tq
  5612. } catch(c) {}
  5613. return tq
  5614. },
  5615. c.zm.ontouchstart = function(a) {
  5616. var b;
  5617. if (this.zF.UG || this.zF.moused) {
  5618. try {
  5619. a.preventDefault(),
  5620. a.bubbles = tq
  5621. } catch(c) {}
  5622. return
  5623. }
  5624. this.zF.g.UU = this.zF.UU = a1,
  5625. b = a.touches[0],
  5626. this.zF.g.onclick(b.pageX - this.zF.zD, b.pageY - this.zF.ut);
  5627. try {
  5628. a.preventDefault(),
  5629. a.bubbles = tq
  5630. } catch(c) {}
  5631. return tq
  5632. },
  5633. c.zm.onmouseout = function() {
  5634. this.zF.g.onmove( - 1, -1)
  5635. },
  5636. c.zm.onmousemove = function(a) {
  5637. var b;
  5638. this.zF.UU || (b = a, b == UD && (b = event), this.zF.g.onmove(b.clientX - this.zF.zD, b.clientY - this.zF.ut))
  5639. },
  5640. window.onorientationchange = window.onresize = function() {
  5641. c.resize()
  5642. },
  5643. c.UI(document), c.UI(window), c.UI(document.body), b.dj != UD && (c.dj = b.dj), c.resize(a1), c.g = new _g(c.z9, c.zm, c.zc, c.r, c.R, c[W_], c[w_]), c.g.zP = c.zP, b.ZC != UD && (c.g.ZC = b.ZC, c.g.Zc = b.Zc, c.g.KL = b.KL, c.g.zX.KZ = b.KZ, c.g.d3 = b.d3), b.dp != UD && (c.g.dp = b.dp), b.dg != UD && (c.g.Y4.dg = b.dg), b.UJ != UD && (c.g.UJ = b.UJ), b.gC != UD && (c.g.gC = b.gC), b.handle != UD && (b.handle = c), b.dz != UD && (c.dz = b.dz), c.g.de = function() {},
  5644. c.g.sLs(a), navigator.userAgent.match(/Android/i) ? window.setTimeout(function() {
  5645. c.init()
  5646. },
  5647. 1e3) : c.init())
  5648. },
  5649. init: function() {
  5650. var a = this;
  5651. a.g.init(),
  5652. a.g.dh = a.dh,
  5653. a.dz(),
  5654. window.setInterval(function() {
  5655. a.T()
  5656. },
  5657. a.g.S.kn)
  5658. },
  5659. resize: function(a) {
  5660. var b,
  5661. c,
  5662. d,
  5663. e,
  5664. f,
  5665. g,
  5666. h,
  5667. i,
  5668. j,
  5669. k = this,
  5670. l = tq;
  5671. navigator.userAgent.match(/Android/i) ? (window.scrollTo(20, 20), k.uI = 0, k.dh = window.devicePixelRatio < 1 || window.devicePixelRatio == UD ? 1: window.devicePixelRatio) : (window.scrollTo(0, 1), window.navigator.standalone ? k.uI = 20: k.uI = 0),
  5672. b = window.innerWidth,
  5673. c = window.innerHeight,
  5674. d = k.uc,
  5675. e = k.ul,
  5676. f = 480,
  5677. g = 720,
  5678. h = k.rD,
  5679. b > f * k.dh && c > g * k.dh || c > f * k.dh && b > g * k.dh ? (d = f, e = g, k.rD = 18, k.RD = 12) : (k.rD = 12, k.RD = 8),
  5680. b > c && (i = d, d = e, e = i, l = a1),
  5681. e -= k.uI;
  5682. if (d > b || e > c) {
  5683. j = d / e;
  5684. if (d > b || e > c) k[W_] = b,
  5685. k[w_] = mn(b / j),
  5686. k[w_] > c && (k[W_] = mn(c * j), k[w_] = c);
  5687. a = a1
  5688. } else k[W_] = d,
  5689. k[w_] = e,
  5690. a = tq || a == a1;
  5691. h != k.rD && (a = a1),
  5692. k.zD = mf((b - k[W_] * k.dh) / 2),
  5693. k.ut = mf((c - k[w_] * k.dh) / 2),
  5694. k.up(k[W_], k[w_], k.zD, k.ut, a, l)
  5695. },
  5696. up: function(a, b, c, d, e, f) {
  5697. var g,
  5698. h = this,
  5699. i = a * h.dh,
  5700. j = b * h.dh;
  5701. if (h[W_] != a || h[w_] != b || e || h.zP != f) h.zc[zl] = h.z9[zl] = h.zm[zl] = i,
  5702. h.zc[zL] = h.z9[zL] = h.zm[zL] = j,
  5703. h.container[Zf][zl] = h.zc[Zf][zl] = h.z9[Zf][zl] = h.zm[Zf][zl] = i + "px",
  5704. h.container[Zf][zL] = h.zc[Zf][zL] = h.z9[Zf][zL] = h.zm[Zf][zL] = j + "px",
  5705. f ? (h.r = h.RD, h.R = h.rD) : (h.r = h.rD, h.R = h.RD),
  5706. h.uP[hardScale](h.dh, h.dh),
  5707. h.UP[hardScale](h.dh, h.dh),
  5708. h.uJ[hardScale](h.dh, h.dh),
  5709. h.g != UD && h.g.up(a, b, h.r, h.R, f, e);
  5710. g = {
  5711. zD: c,
  5712. ut: d + h.uI / 2,
  5713. w: a,
  5714. h: b
  5715. },
  5716. g = h.dj(g),
  5717. h.dk(g.zD, g.ut),
  5718. h.zP = f
  5719. },
  5720. dk: function(a, b) {
  5721. var c = this;
  5722. c.zD = a,
  5723. c.ut = b,
  5724. c.ut < 0 && (c.ut = 0),
  5725. c.zD < 0 && (c.zD = 0),
  5726. c.container[Zf].left = c.zD + "px",
  5727. c.container[Zf].top = c.ut + "px"
  5728. },
  5729. dj: function(a) {
  5730. return a
  5731. },
  5732. dz: function() {},
  5733. T: function() {
  5734. this.g.T()
  5735. },
  5736. clear: function(a) {
  5737. a[ZG](0, 0, this[W_], this[w_])
  5738. },
  5739. zY: function() {
  5740. var a = document.createElement("canvas");
  5741. return this.UI(a, a1),
  5742. a.innerText = "Sorry your browser does not support HTML5",
  5743. this.container.appendChild(a),
  5744. a
  5745. },
  5746. UI: function(a, b) {
  5747. b && (a.ontouchstart = function(a) {
  5748. try {
  5749. a.preventDefault(),
  5750. a.bubbles = tq
  5751. } catch(b) {}
  5752. return tq
  5753. },
  5754. a.touchmove = function(a) {
  5755. try {
  5756. a.preventDefault(),
  5757. a.bubbles = tq
  5758. } catch(b) {}
  5759. return tq
  5760. }),
  5761. a.onselectqdt = function(a) {
  5762. try {
  5763. a.preventDefault(),
  5764. a.bubbles = tq
  5765. } catch(b) {}
  5766. return tq
  5767. },
  5768. a.onclick = function(a) {
  5769. try {
  5770. a.preventDefault(),
  5771. a.bubbles = tq
  5772. } catch(b) {}
  5773. return tq
  5774. },
  5775. a.onselect = function(a) {
  5776. try {
  5777. a.preventDefault(),
  5778. a.bubbles = tq
  5779. } catch(b) {}
  5780. },
  5781. a.ondblclick = function(a) {
  5782. try {
  5783. a.preventDefault(),
  5784. a.bubbles = tq
  5785. } catch(b) {}
  5786. }
  5787. },
  5788. preventDefault: function() {}
  5789. },
  5790. km[_] = {
  5791. ki: function(a) {
  5792. var b,
  5793. c,
  5794. d = this;
  5795. a == null ? (c = mf(mr() * d.kj[pZ]), b = d.kj[c]) : b = d.kj[a],
  5796. d.kl = b,
  5797. d.kh = new qg(8, 8, 8),
  5798. d.klpb = new qg(255, 255, 255),
  5799. d.ke = d.klpb,
  5800. d.kq = d.kl,
  5801. d.kM = new qg(150, 150, 150),
  5802. d.kN = new h(220, 130),
  5803. d.kN.kV = 80,
  5804. d.kC = d.kl.kX(0),
  5805. d.kC.a = .8,
  5806. d.kL = new qg(0, 0, 0, .4),
  5807. d.kK = new h(220, 280),
  5808. d.kK.kV = 50,
  5809. d.kJ = new h(220, 330),
  5810. d.kJ.kV = 50,
  5811. d.kH = new h(220, 250),
  5812. d.kH.kV = 110,
  5813. d.kG = new h(220, 170),
  5814. d.kG.kV = 110,
  5815. d.kF = new h(220, 240),
  5816. d.kF.kV = 190,
  5817. d.KD = new h(220, 230),
  5818. d.KD.kV = 180,
  5819. d.KA = new h(220, 200),
  5820. d.KA.kV = 145,
  5821. d.kW = new h(220, 240),
  5822. d.kW.kV = 140,
  5823. d.db = new h(220, 270),
  5824. d.db.kV = 170,
  5825. d.kD = d.kC.kX(20),
  5826. d.kS = new qg(0, 0, 0, .4),
  5827. d.d9 = d.kD.kX(80).gL(.7),
  5828. d.d0 = d.kD.kX( - 250).gL(.5),
  5829. d.dq = d.kD.kX( - 250).gL(.5),
  5830. d.dw = d.kD.kX( - 190).gL(.6),
  5831. d.dy = d.kD.kX( - 200).gL(.6),
  5832. d.kA = 30,
  5833. d.kO = d.kl,
  5834. d.kP = d.kl.kX(80),
  5835. d.KW.color = d.kP
  5836. }
  5837. },
  5838. wF[_] = {
  5839. draw: function() {
  5840. var a,
  5841. b,
  5842. c = this;
  5843. c.s.save(),
  5844. c.s[ZJ] = c[ZJ],
  5845. c.s.lineJoin = c.lineJoin,
  5846. c.s[ZK] = c[ZK].gL(),
  5847. c.s[Zk] = c[Zk].gL(),
  5848. c.s[Zh]();
  5849. for (a = 0; a < c.ps; a++) b = mP * ((a * c.uz + c.angle) / 360),
  5850. a == 0 ? c.t == "qd" && a % 2 == 0 ? c.s[UO](c.zV.x + c.raduis * .4 * ms(b), c.zV.y + c.raduis * .4 * mc(b)) : c.s[UO](c.zV.x + c.raduis * ms(b), c.zV.y + c.raduis * mc(b)) : c.t == "qd" && a % 2 == 0 ? c.s[Zg](c.zV.x + c.raduis * .4 * ms(b), c.zV.y + c.raduis * .4 * mc(b)) : c.s[Zg](c.zV.x + c.raduis * ms(b), c.zV.y + c.raduis * mc(b));
  5851. c.s[ZD](),
  5852. c.s.fill(),
  5853. c.s[ZF](),
  5854. c.s[ZS]()
  5855. }
  5856. },
  5857. UA[_] = {
  5858. T: function(a, b) {
  5859. var c,
  5860. d = this;
  5861. d.s.save();
  5862. for (c = 0; c < d.Gs[pZ]; c++) d.Gs[c].T(a, b) || d.Gs.splice(c, 1);
  5863. d.s[ZS]()
  5864. },
  5865. us: function(a, b, c, d, e, f, g, h) {
  5866. var i = this,
  5867. j = new _G(i.s, a, b, c, d, e, f, g, h, i.uU, i.uY);
  5868. return j.zg = (new Date).getTime(),
  5869. j.gI = 0,
  5870. j.Ul = function() {},
  5871. i.Gs.push(j),
  5872. j
  5873. }
  5874. },
  5875. KQ[_] = {
  5876. UF: function(a) {
  5877. var b = this;
  5878. b.ls += a,
  5879. b.ls < b.KI[0] ? b.ls = b.KI[0] : b.ls > b.KI[1] && (b.ls = b.KI[1])
  5880. }
  5881. },
  5882. _G[_] = {
  5883. Ul: function() {},
  5884. T: function(a) {
  5885. var b,
  5886. c,
  5887. d,
  5888. e,
  5889. f,
  5890. g,
  5891. h,
  5892. i,
  5893. j,
  5894. k,
  5895. l,
  5896. m,
  5897. n,
  5898. o,
  5899. p,
  5900. q,
  5901. r = this;
  5902. if (a - r.gI < r.zg) return a1;
  5903. r.ql = (a - (r.zg + r.gI)) / r.zI;
  5904. if (r.ql < 0) return zK(888888),
  5905. a1;
  5906. if (r.ql > 1) return r.Ul(),
  5907. tq;
  5908. b = r.ql * (r.qmzZ - r.Uz) + r.Uz,
  5909. c = b + r.zn,
  5910. r.yq > 0 ? r.s[ZJ] = 1 + r.yq * mr() : r.s[ZJ] = 1,
  5911. r.color.a = 1.1 - r.ql,
  5912. r.s[Zk] = r.color.gL(),
  5913. r.s[Zh]();
  5914. for (d = 0, e = r.ls[pZ], f = r.s, g = r.zV.x, h = r.zV.y, i = ms, j = mc, k = mP; d < e; d++) l = r.ls[d],
  5915. m = k * (l.angle / 360),
  5916. n = i(m),
  5917. o = j(m),
  5918. p = b + l.Y,
  5919. q = c + l.Y,
  5920. f[UO](g + p * o, h + p * n),
  5921. f[Zg](g + q * o, h + q * n);
  5922. return r.s[ZF](),
  5923. a1
  5924. }
  5925. },
  5926. qg[_].gL = function(a) {
  5927. var b = this,
  5928. c = "",
  5929. d = b.a;
  5930. return a != UD && (d = a),
  5931. d != UD && d != 1 ? "rgba(" + b.r + "," + b.g + "," + b.b + "," + d + ")": "rgb(" + b.r + "," + b.g + "," + b.b + ")"
  5932. },
  5933. qg[_].Un = function(a) {
  5934. var b = this;
  5935. b.r += a,
  5936. b.g += a,
  5937. b.b += a,
  5938. b.uO()
  5939. },
  5940. qg[_].kX = function(a) {
  5941. var b = this,
  5942. c = new qg(b.r, b.g, b.b, b.a);
  5943. return c.Un(a),
  5944. c
  5945. },
  5946. qg[_].uO = function() {
  5947. var a = this;
  5948. a.r > 255 && (a.r = 255),
  5949. a.g > 255 && (a.g = 255),
  5950. a.b > 255 && (a.b = 255),
  5951. a.r < 0 && (a.r = 0),
  5952. a.g < 0 && (a.g = 0),
  5953. a.b < 0 && (a.b = 0),
  5954. a.a > 1 && (a.b = 1),
  5955. a.a < 0 && (a.b = 0)
  5956. },
  5957. _cr[_] = {
  5958. uE: function() {},
  5959. ze: function() {},
  5960. Zv: function() {
  5961. var a = this;
  5962. a.cHs = new Array,
  5963. a.cH = 0,
  5964. a.cqk = 0,
  5965. a.aF = 0,
  5966. a.qe = 0,
  5967. a.TTime = 0,
  5968. a.enabled = a1,
  5969. a.gI = 0
  5970. },
  5971. T: function(a, b) {
  5972. var c,
  5973. d,
  5974. e,
  5975. f,
  5976. g = this,
  5977. h = 0;
  5978. if (!g.enabled || g.zs == 0) return;
  5979. if (g.cH < g.cHs[pZ] - 1) {
  5980. g.gI -= a - b;
  5981. if (g.gI < 0) {
  5982. g.cH == 0 && g.cqk == 0 && (g.cqk += g.cHs[g.cH].zn),
  5983. c = .01,
  5984. d = a,
  5985. g.qe = b,
  5986. g.qe != 0 && (c = (d - g.qe) * g.zs),
  5987. g.qe = d,
  5988. h = g.aF / g.cqk;
  5989. if (h > 1) do {
  5990. if (g.cH + 2 == g.cHs[pZ]) {
  5991. g.qe = 0,
  5992. g.ze(g.cHs[g.cH + 1]);
  5993. return
  5994. }
  5995. e = g.aF - g.cqk,
  5996. g.aF = e,
  5997. g.cH++,
  5998. g.cqk = g.cHs[g.cH].zn,
  5999. h = g.aF / g.cqk
  6000. }
  6001. while (h > 1);
  6002. g.aF += c
  6003. }
  6004. f = new Object,
  6005. g.cHs[g.cH].t > 1 ? (g.cHs[g.cH].ge && (h = 1 - h), f.x = g.cHs[g.cH].bez.mx(h), f.y = g.cHs[g.cH].bez.my(h)) : (f.x = g.cHs[g.cH].x + (g.cHs[g.cH + 1].x - g.cHs[g.cH].x) * h, f.y = g.cHs[g.cH].y + (g.cHs[g.cH + 1].y - g.cHs[g.cH].y) * h),
  6006. g.uE(f)
  6007. }
  6008. },
  6009. Uds: function(a, b) {
  6010. var c,
  6011. d = this,
  6012. e = a.p[0].x == b.x && a.p[0].y == b.y;
  6013. if (!e) {
  6014. d.cHs[pZ] != 0;
  6015. for (c = 0; c < a.p[pZ]; c++) d.Ud(a.p[c], e)
  6016. } else {
  6017. d.cHs[pZ] != 0;
  6018. for (c = a.p[pZ] - 1; c + 1 > 0; c--) d.Ud(a.p[c], e)
  6019. }
  6020. },
  6021. Ud: function(a, b) {
  6022. var c,
  6023. d,
  6024. e,
  6025. f = this;
  6026. if (f.cHs[pZ] > 1 && f.cHs[f.cHs[pZ] - 1].x == a.x && f.cHs[f.cHs[pZ] - 1].y == a.y) {
  6027. a.t > 1 && (a.bez = new z2(a.s, a.cp1, a.cp2, a.e, a.t), a.zn = a.bez[pZ], a.ge = b, f.ZMHs(f.cHs[f.cHs[pZ] - 1], a));
  6028. return
  6029. }
  6030. f.cHs[f.cHs[pZ]] = a,
  6031. a.t > 1 ? (a.bez = new z2(a.s, a.cp1, a.cp2, a.e, a.t), a.zn = a.bez[pZ], a.ge = b, f.cHs[pZ] > 1 && (c = f.cHs[f.cHs[pZ] - 2], f.cHs[f.cHs[pZ] - 2].zn = a.bez[pZ], c.x == a.s.x && c.y == a.s.y && f.ZMHs(c, a))) : f.cHs[pZ] > 1 && f.cHs[f.cHs[pZ] - 2].t < 2 && (d = f.cHs[f.cHs[pZ] - 2].x - f.cHs[f.cHs[pZ] - 1].x, e = f.cHs[f.cHs[pZ] - 2].y - f.cHs[f.cHs[pZ] - 1].y, f.cHs[f.cHs[pZ] - 2].zn = mS(d * d + e * e), f.cHs[f.cHs[pZ] - 2].zn == 0 && zK("oh no"))
  6032. },
  6033. ZMHs: function(a, b) {
  6034. var c = a.s,
  6035. d = a.cp1,
  6036. e = a.cp2,
  6037. f = a.e,
  6038. g = a.t,
  6039. h = a.zn,
  6040. i = a.bez,
  6041. j = b.ge;
  6042. a.s = b.s,
  6043. a.cp1 = b.cp1,
  6044. a.cp2 = b.cp2,
  6045. a.e = b.e,
  6046. a.t = b.t,
  6047. a.zn = b.zn,
  6048. a.bez = b.bez,
  6049. a.ge = b.ge,
  6050. b.s = c,
  6051. b.cp1 = d,
  6052. b.cp2 = e,
  6053. b.e = f,
  6054. b.t = g,
  6055. b.zn = h,
  6056. b.bez = i,
  6057. b.ge = j
  6058. }
  6059. },
  6060. _D[_] = {
  6061. draw: function(a) {
  6062. var b,
  6063. c,
  6064. d = this;
  6065. if (!d.visible) return;
  6066. b = a,
  6067. d.qe == 0 && (d.qe = b),
  6068. c = (b - d.qe) * d.ub,
  6069. d.qe = b,
  6070. d.inner.angle += c,
  6071. d.outer.angle -= c,
  6072. d.outer.draw(),
  6073. d.inner.draw()
  6074. },
  6075. move: function(a) {
  6076. var b = this;
  6077. b.visible = a1,
  6078. b.outer.zV.x = b.inner.zV.x = a.x,
  6079. b.outer.zV.y = b.inner.zV.y = a.y
  6080. },
  6081. Zv: function() {
  6082. var a = this;
  6083. a.inner = new wF(a.s, new h(50, 100), 14, 3, 90, a.S.kq),
  6084. a.outer = new wF(a.s, new h(50, 100), 17, 3, 45, a.S.kM),
  6085. a.qe = 0,
  6086. a.visible = tq
  6087. }
  6088. },
  6089. un[_] = {
  6090. T: function() {
  6091. var a = this;
  6092. if (a.zy) return;
  6093. a.s.save(),
  6094. a.Ug(a.s),
  6095. a.s[ZS]()
  6096. },
  6097. Zv: function() {
  6098. var a,
  6099. b = this,
  6100. c = b.sGrid;
  6101. if (b.zy) return;
  6102. c.save(),
  6103. c[Zh](),
  6104. c[ZJ] = 2,
  6105. c[Zk] = b.g.S.kD.gL(.7),
  6106. a = c.createLinearGradient(0, 3, 0, 25),
  6107. a.addColorStop(0, b.g.S.d9),
  6108. a.addColorStop(.3, b.g.S.d0),
  6109. a.addColorStop(.6, b.g.S.dq),
  6110. a.addColorStop(1, b.g.S.dw),
  6111. c[ZK] = a,
  6112. c[UO](0, 0),
  6113. c[Zg](0, b[w_]),
  6114. c[Zj](b[W_] / 2, b[w_] + 19, b[W_], b[w_]),
  6115. c[Zg](b[W_], 0),
  6116. c[ZD](),
  6117. c.fill(),
  6118. c[Zh](),
  6119. c[UO](0, b[w_]),
  6120. c[Zj](b[W_] / 2, b[w_] + 19, b[W_], b[w_]),
  6121. c.shadowColor = b.g.S.kD.gL(1),
  6122. c.shadowBlur = 4,
  6123. c[ZF](),
  6124. c[ZJ] = 1,
  6125. c.font = "10pt Arial",
  6126. c.textBaseline = "middle",
  6127. c[Zk] = "white",
  6128. c[ZK] = "white",
  6129. c.textAlign = "left",
  6130. c[ZH]("最好成绩:" + b.zk(b.KY), 13, b[w_] / 2 + 2),
  6131. c.textAlign = "right",
  6132. c[ZH]("菜单", b[W_] - 13 - b.KZ, b[w_] / 2 + 2),
  6133. c[ZS]()
  6134. },
  6135. Ug: function(a) {
  6136. a[ZJ] = 1,
  6137. a.font = "12pt Arial",
  6138. a.textBaseline = "middle",
  6139. a[Zk] = "white",
  6140. a[ZK] = "white",
  6141. a.textAlign = "center",
  6142. a[ZH](this.zk(this.Zz), this[W_] / 2, this[w_] / 2 + 7)
  6143. },
  6144. zk: function(a) {
  6145. var b,
  6146. c;
  6147. return a > 0 ? (b = a + "", a > 999 || (a > 99 ? b = "0" + b: b = "00" + b), c = b[pZ] - 1, b.substring(0, c - 2) + ":" + b.substring(c - 2, c)) : "0:00"
  6148. }
  6149. },
  6150. um[_] = {
  6151. Uv: function(a, b) {
  6152. var c = this.d[this.d[pZ]] = new h(a, b);
  6153. return c
  6154. },
  6155. u8: function() {
  6156. var a = this.l[this.l[pZ]] = new _l;
  6157. return a
  6158. }
  6159. },
  6160. _l[_] = {
  6161. Ue: function(a, b, c) {
  6162. var d = this.p[this.p[pZ]] = new _p(a, b, c);
  6163. return d
  6164. }
  6165. },
  6166. U8[_] = {
  6167. T: function() {
  6168. var a = this,
  6169. b = new Date,
  6170. c = mC(b.getTime() - a.lastTime.getTime());
  6171. c >= 1e3 && (a.fps = a.zu, a.zu = 0, a.lastTime = b),
  6172. a.s.save(),
  6173. a.s[ZK] = "#FFF",
  6174. a.s.font = "bold 10px sans-serif",
  6175. a.s[ZH](a.sfps + ":" + a.fps + "/" + a.uR, 4, a[w_] - 10),
  6176. a.s[ZS](),
  6177. a.zu++
  6178. }
  6179. },
  6180. _aJ[_] = {
  6181. aG: function(a, b, c, d, e, f, g) {
  6182. var h = this,
  6183. i = h.aJ[h.aJ[pZ]] = new z3(a, b, c, d, e, f, g);
  6184. return i.g = h.g,
  6185. i
  6186. },
  6187. click: function(a, b) {
  6188. var c = this,
  6189. d = c.KX(a, b);
  6190. return d != UD ? (d.aD(d.z4), a1) : tq
  6191. },
  6192. KX: function(a, b) {
  6193. var c,
  6194. d = this;
  6195. d.KC = UD;
  6196. for (c = 0; c < d.aJ[pZ]; c++) if (d.aJ[c].ud(a, b)) return d.KC = d.aJ[c],
  6197. d.aJ[c]
  6198. },
  6199. clear: function(a, b) {
  6200. this.aJ[pZ] = a == UD ? 0: a,
  6201. b && (this.KC = UD)
  6202. }
  6203. },
  6204. z3[_] = {
  6205. ud: function(a, b) {
  6206. var c = this;
  6207. return a > c.x && a < c.x + c[W_] && b > c.y && b < c.y + c[w_] ? a1: tq
  6208. }
  6209. },
  6210. U9[_] = {
  6211. uD: function(a, b) {
  6212. var c = {
  6213. aD: a,
  6214. data: b
  6215. };
  6216. this.aDs.push(c)
  6217. },
  6218. Ut: function() {
  6219. var a,
  6220. b;
  6221. this.aDs[pZ] > 0 && (a = this.aDs.shift(), a.aD(a.data), b = this, window.setTimeout(function() {
  6222. b.Ut()
  6223. },
  6224. 0))
  6225. },
  6226. clear: function() {
  6227. this.aDs[pZ] = 0
  6228. }
  6229. },
  6230. U0[_] = {
  6231. load: function(a) {
  6232. a != UD && (this.Zzs = a)
  6233. },
  6234. zE: function(a) {
  6235. var b,
  6236. c,
  6237. d = this;
  6238. for (b = 0; b < d.Zzs[pZ]; b++) if (d.Zzs[b].id == a) return d.Zzs[b];
  6239. return c = new _Zz(a),
  6240. d.Zzs.push(c),
  6241. c
  6242. }
  6243. },
  6244. z2[_] = {
  6245. map: function(a) {
  6246. var b,
  6247. c = this,
  6248. d = a * c[pZ],
  6249. e = 0,
  6250. f = c.len,
  6251. g = 0;
  6252. while (e < f) g = e + ((f - e) / 2 | 0),
  6253. c.gH[g] < d ? e = g + 1: f = g;
  6254. return c.gH[g] > d && g--,
  6255. b = c.gH[g],
  6256. b == d ? g / c.len: (g + (d - b) / (c.gH[g + 1] - b)) / c.len
  6257. },
  6258. mx: function(a) {
  6259. return this.x(this.map(a))
  6260. },
  6261. my: function(a) {
  6262. return this.y(this.map(a))
  6263. },
  6264. x: function(a) {
  6265. var b = this;
  6266. return b.t == 3 ? b.a.x + a * (2 * (1 - a) * (b.b.x - b.a.x) + a * (b.d.x - b.a.x)) : (1 - a) * (1 - a) * (1 - a) * b.a.x + 3 * (1 - a) * (1 - a) * a * b.b.x + 3 * (1 - a) * a * a * b.c.x + a * a * a * b.d.x
  6267. },
  6268. y: function(a) {
  6269. var b = this;
  6270. return b.t == 3 ? b.a.y + a * (2 * (1 - a) * (b.b.y - b.a.y) + a * (b.d.y - b.a.y)) : (1 - a) * (1 - a) * (1 - a) * b.a.y + 3 * (1 - a) * (1 - a) * a * b.b.y + 3 * (1 - a) * a * a * b.c.y + a * a * a * b.d.y
  6271. }
  6272. },
  6273. _W[_].ud = function(a, b) {
  6274. var c = this,
  6275. d = a,
  6276. e = b;
  6277. return d > c.x && d < c.x + c[W_] && e > c.y && e < c.y + c[w_] ? a1: tq
  6278. },
  6279. zU[_] = {
  6280. uC: function() {
  6281. var a,
  6282. b,
  6283. c = this,
  6284. d = c.text.split(" "),
  6285. e = 0;
  6286. for (a = 0, b = d[pZ]; a < b; a++) c.measureText(c.r[e] + " " + d[a]) <= c[W_] && d[a].indexOf("\n") == -1 ? c.r[e] += d[a] + " ": (e++, c.r[e] = d[a] + " ");
  6287. c[w_] = c.r[pZ] * (c.textHeight + c.textLineSpacing),
  6288. c.uW = a1
  6289. },
  6290. fillText: function(a, b) {
  6291. var c,
  6292. d,
  6293. e,
  6294. f,
  6295. g = this;
  6296. g.uW || g.uC(),
  6297. c = g.textHeight;
  6298. for (d = 0, e = b, f = g.r[pZ]; d < f; d++) g.s[ZH](g.r[d], a, e),
  6299. e += c + g.textLineSpacing
  6300. },
  6301. measureText: function(a) {
  6302. var b = this;
  6303. try {
  6304. return b.s.measureText(a)[zl]
  6305. } catch(c) {
  6306. return a[pZ] * 6.5
  6307. }
  6308. }
  6309. },
  6310. "use strict",
  6311. _g[_] = {
  6312. init: function() {
  6313. var a,
  6314. b = this,
  6315. c = b.m.read("data");
  6316. c != UD && (b.Zzs.load(c.Zzs), b.UJ = c.UJ, b.gC = c.gC | 0, b.UL = c.UL | 0, b.KJ = c.KJ | 0, b.UZ = c.UZ, b.dn = c.dn || 19);
  6317. if (b.KJ < this.S.KH[0][0]) {
  6318. b.s[ZG](0, 0, b[W_], b[w_]),
  6319. b.s[ZK] = "rgba(1,1,1,0.7)",
  6320. b.s[Zd](0, 0, b[W_], b[w_]),
  6321. a = function() {
  6322. b.u7()
  6323. },
  6324. b.Y4.ZV(b.s, b.S.KH[0], a),
  6325. b.KJ = this.S.KH[0][0];
  6326. return
  6327. }
  6328. c == UD ? (b.uq(), b.UE(), b.u7()) : (b.uu(b.gC), b.sL(b.levels[b.UJ]))
  6329. },
  6330. UE: function() {
  6331. var a = this;
  6332. a.zX.Ug(a.s),
  6333. a.zX.zy = a1,
  6334. a.s[ZK] = "rgba(1,1,1,0.7)",
  6335. a.s[Zd](0, 0, a[W_], a[w_])
  6336. },
  6337. up: function(a, b, c, d, e, f) {
  6338. var g = this;
  6339. g.Y4[W_] = g.zX[W_] = g[W_] = a,
  6340. g.Y4[w_] = g[w_] = b,
  6341. g.r = c,
  6342. g.R = d,
  6343. g.K = g[W_] / g.R,
  6344. g.k = (g[w_] - g.z8) / g.r,
  6345. g.Uw.up(g[W_], g[w_], g.R, g.r),
  6346. g.zP != e ? (g.zP = e, g.zW(g.level), g.level.rotate = a1) : !f,
  6347. !g.qq && !g.zw && !g.qw && !g.u0 && g.UL > 0 ? g.sL(g.levels[g.UJ]) : g.u7()
  6348. },
  6349. uq: function() {
  6350. var a = this;
  6351. a.zX.Zv(),
  6352. a.aJ.KC = UD,
  6353. a.s[ZK] = a.S.kh.gL(),
  6354. a.s[Zk] = a.S.kC.gL(),
  6355. a.s[ZJ] = a.Zc,
  6356. a.O.uyOut(a.s, 0, 0, a[W_], a[w_], a.ZC, a1, tq),
  6357. a.O.uy(a.s, 1, 1, a[W_] - 2, a[w_] - 2, a.ZC, tq, a1)
  6358. },
  6359. d_: function() {
  6360. var a = this;
  6361. a.aJ.clear(),
  6362. a.zG(a.level),
  6363. a.uq(),
  6364. a.s[ZK] = "rgba(1,1,1,0.7)",
  6365. a.s[Zd](0, 0, a[W_], a[w_])
  6366. },
  6367. u3: function() {
  6368. var a = this,
  6369. b = {};
  6370. b.Zzs = a.Zzs.Zzs,
  6371. b.UJ = a.UJ,
  6372. b.gC = a.gC,
  6373. b.UL = a.UL,
  6374. b.KJ = a.KJ,
  6375. b.UZ = a.UZ,
  6376. b.dn = a.dn,
  6377. a.m.save("data", b)
  6378. },
  6379. T: function() {
  6380. var a = this;
  6381. a.u0 || (a.aB = (new Date).getTime()),
  6382. a.sEs[ZG](0, 0, a[W_], a[w_]),
  6383. a.u9 && (a.u9 = tq);
  6384. if (!a.qw || !a.aS) a.zw && !a.qw && !a.qq && (a.time += a.aB - a.aA),
  6385. a.zX.Zz = a.time;
  6386. a.KV(a.aJ.KC),
  6387. a.cr.T(a.aB, a.aA),
  6388. a.zX.T(),
  6389. a.UF(a.aB, a.aA),
  6390. a.Ger.T(a.aB, a.aA),
  6391. a.D.draw(a.aB, a.aA),
  6392. a.Uw.T(a.aB, a.aA),
  6393. a.aA = a.aB
  6394. },
  6395. UF: function(a, b) {
  6396. var c = this,
  6397. d = a - b;
  6398. if (d - c.S.kn < 10) {
  6399. if (c.Ger.Gs[pZ] < 35) return;
  6400. c.S.KW.UF(1),
  6401. c.S.KE.UF(1)
  6402. } else c.S.KW.UF( - 1),
  6403. c.S.KE.UF( - 1);
  6404. c.fps.sfps = c.S.KW.ls
  6405. },
  6406. KV: function(a) {
  6407. var b,
  6408. c,
  6409. d,
  6410. e,
  6411. f,
  6412. g = this;
  6413. if (g.hoverd1 == UD && a == UD) return;
  6414. b = g.sEs,
  6415. b.save(),
  6416. b[Zh](),
  6417. b.shadowColor = "white",
  6418. b.shadowBlur = 7,
  6419. b[ZJ] = 4,
  6420. b[Zk] = this.S.kD.gL(),
  6421. a != UD ? a.KN == 0 ? (c = g[W_] - 2, b[UO](2, 21), b[Zj](c / 2, 40, c, 21), b[Zj](c, 2, c - g.ZC, 2), b[Zg](g.ZC, 2), b[Zj](2, 2, 2, 21), b[ZF]()) : a.KN == 1 ? (d = new h(g[W_] - 32, 20), e = new wF(b, d, 12, 3, 90, new qg(255, 255, 255, .8), new qg(40, 40, 40, .2)), e[ZK] = new qg(255, 255, 255), e.draw()) : a.KN == 2 ? (d = new h(32, 20), f = new wF(b, d, 12, 3, 30, new qg(255, 255, 255, .8), new qg(255, 255, 255, 1)), f[ZK] = new qg(255, 255, 255), f.draw()) : g.O.uy(b, a.x - 1, a.y - 1, a[W_] + 2, a[w_] + 2, 5, tq, a1) : g.hoverd1 != UD && (b[Zh](), b[Zk] = "rgba(255,255,255,0.9)", b.shadowBlur = 6, b[ZJ] = 3, b.arc(g.z1(g.hoverd1.x), g.zB(g.hoverd1.y), 18, 0, mP, a1), b[ZF]()),
  6422. b[ZS]()
  6423. },
  6424. pause: function(a) {
  6425. var b = this;
  6426. b.u0 = a,
  6427. b.zG(b.level),
  6428. b.uq(),
  6429. a ? (b.s[ZK] = "rgba(1,1,1,0.7)", b.s[Zd](0, 0, b[W_], b[w_]), b.dr(a1)) : (b.addwHLayer(), b.dr(tq)),
  6430. b.aA = (new Date).getTime()
  6431. },
  6432. po: function() {
  6433. var a,
  6434. b,
  6435. c = this;
  6436. if (c.qq) return;
  6437. c.aJ.clear(),
  6438. c.qw = a1,
  6439. c.aS && (a = c.S.kl.kX( - 80), c.pl(c.aS.l, a), c.zJ(c.aS.ds[0], a), c.zJ(c.aS.ds[1], a)),
  6440. c.uq(),
  6441. c.UE(),
  6442. c.Y4.pq(c.s),
  6443. b = c.Zzs.zE(c.level.id),
  6444. b.KU++,
  6445. c.dr(a1)
  6446. },
  6447. uZ: function(a, b) {
  6448. var c = this;
  6449. c.zG(c.level),
  6450. c.uq(),
  6451. c.UE(),
  6452. c.Y4.ZB(c.s, a, b),
  6453. c.dr(a1)
  6454. },
  6455. KO: function() {
  6456. var a = this;
  6457. a.uq(),
  6458. a.qh(),
  6459. a.s[ZG](0, 0, a[W_], a[w_]),
  6460. a.UE(),
  6461. a.Y4.KP(a.s),
  6462. a.dr(a1)
  6463. },
  6464. UX: function() {
  6465. var a = this;
  6466. a.uq(),
  6467. a.qh(),
  6468. a.s[ZG](0, 0, a[W_], a[w_]),
  6469. a.UE(),
  6470. a.Y4.UC(a.s),
  6471. a.dr(a1)
  6472. },
  6473. d5: function(a) {
  6474. var b = this;
  6475. b.uq(),
  6476. b.qh(),
  6477. b.s[ZG](0, 0, b[W_], b[w_]),
  6478. b.UE(),
  6479. b.Y4.d2(b.s, a | 0),
  6480. b.dr(a1)
  6481. },
  6482. pw: function() {
  6483. var a,
  6484. b,
  6485. c,
  6486. d = this,
  6487. e = tq;
  6488. d.qq = a1,
  6489. d.aJ.clear(),
  6490. d.uq(),
  6491. a = d.Zzs.zE(d.level.id),
  6492. a.last = d.zX.Zz;
  6493. if (d.zX.Zz < a.KY || a.KY == 0) a.KY = d.zX.Zz,
  6494. d.zX.KY = d.zX.Zz,
  6495. e = a1;
  6496. a.qds = 1,
  6497. a.KY < d.level.d[pZ] * d.S.kx && (a.qds = 2),
  6498. a.KY < d.level.d[pZ] * d.S.kz && (a.qds = 3),
  6499. a.KU++,
  6500. b = {
  6501. level: d.g.level,
  6502. Zz: d.zX.zk(d.zX.Zz),
  6503. KY: d.zX.zk(d.zX.KY),
  6504. qds: a.qds,
  6505. newRecord: e
  6506. },
  6507. d.UE(),
  6508. d.qh() ? (b.rank = d.UZ.rank, d.Y4.Uh(d.s, b), d.di(d.UZ.rank, d.UZ.zjpr)) : d.UZ.qds[0] > d.dn ? d.Y4.dm(d.s, b) : d.Y4.pu(d.s, b),
  6509. d.u3();
  6510. try {
  6511. c = d.gC + " " + d.UJ + " " + d.level.id,
  6512. _gaq.push(["_trackEvent", "Pathuku", "Complete", c, d.zX.Zz])
  6513. } catch(f) {}
  6514. d.dr(a1),
  6515. d.du(d.UZ.zjpr, d.level.id, d.zX.Zz, a.KU, d.level.t, a.qds)
  6516. },
  6517. gD: function() {
  6518. var a = this;
  6519. a.qq = a1,
  6520. a.s[ZK] = "rgba(1,1,1,0.7)",
  6521. a.s[Zd](0, 0, a[W_], a[w_]),
  6522. a.sEs[ZG](0, 0, a[W_], a[w_]),
  6523. a.zX.zy = a1,
  6524. a.gc.draw(),
  6525. a.dr(tq)
  6526. },
  6527. u7: function() {
  6528. var a = this;
  6529. a.dW == 1 && (a.dW = 0),
  6530. a.zX.zy = a1,
  6531. a.s[ZG](0, 0, a[W_], a[w_]),
  6532. a.UE(),
  6533. a.cr.Zv(),
  6534. a.D.Zv(),
  6535. a.aJ.KC = UD,
  6536. a.sEs[ZG](0, 0, a[W_], a[w_]),
  6537. a.qh(),
  6538. a.Y4.Zn(a.s),
  6539. a.dr(a1)
  6540. },
  6541. KG: function() {
  6542. var a = this;
  6543. a.zX.zy = a1,
  6544. a.s[ZG](0, 0, a[W_], a[w_]),
  6545. a.UE(),
  6546. a.sEs[ZG](0, 0, a[W_], a[w_]),
  6547. a.qh(),
  6548. a.Y4.KF(a.s),
  6549. a.dr(a1)
  6550. },
  6551. onmove: function(a, b) {
  6552. var c = this,
  6553. d = a / c.dh,
  6554. e = b / c.dh,
  6555. f = c.aJ.KX(d, e);
  6556. c.qw || c.qq || c.u0 ? c.hoverd1 = UD: c.hoverd1 = c.uA(d, e, 35)
  6557. },
  6558. qh: function() {
  6559. var a,
  6560. b,
  6561. c,
  6562. d,
  6563. e,
  6564. f,
  6565. g,
  6566. h,
  6567. i,
  6568. j,
  6569. k = this,
  6570. l = {
  6571. qds: [0, 0, 0, 0],
  6572. t: [0, 0, 0, 0],
  6573. rank: "",
  6574. KU: 0,
  6575. zjpr: 0
  6576. },
  6577. m = k.gE[3];
  6578. for (a = 0, b = m[pZ]; a < b; ++a) {
  6579. c = k.Zzs.zE(m[a].id);
  6580. if (c != UD) {
  6581. for (d = 0, e = 4; d < e; d++) c.qds > d && l.qds[d]++;
  6582. c.qds > 0 && (m[a].t != UD ? l.t[m[a].t]++:l.t[2] = (l.t[2] | 0) + 1, f = m[a].d[pZ] * k.S.kx - c.KY, f > 150 ? l.zjpr += f: l.zjpr += 150),
  6583. l.KU += c.KU
  6584. }
  6585. }
  6586. g = l.qds[0],
  6587. h = 0;
  6588. for (a = 0, b = k.S.kg[pZ]; a < b; ++a) g >= k.S.kg[a][0] && (l.rank = k.S.kg[a][1], a + 1 < b ? h = k.S.kg[a + 1][0] : h = k.S.kg[a][0]);
  6589. i = "";
  6590. for (a = 0, b = k.S.kf[pZ]; a < b; ++a) l.qds[k.S.kf[a][0]] / h >= k.S.kf[a][1] && (i = k.S.kf[a][2]);
  6591. return l.rank += " " + i,
  6592. j = k.UZ != UD ? k.UZ.rank: l.rank,
  6593. k.UZ = l,
  6594. k.UZ.rank != j ? a1: tq
  6595. },
  6596. onclick: function(a, b) {
  6597. var c,
  6598. d,
  6599. e,
  6600. f = this,
  6601. g = a / f.dh,
  6602. h = b / f.dh;
  6603. if (f.aJ.click(g, h)) return tq;
  6604. if (f.u0 || f.qw) return;
  6605. if (f.qw) {
  6606. f.sL(f.level),
  6607. f.qw = tq;
  6608. return
  6609. }
  6610. c = f.uA(g, h);
  6611. if (c == UD) return;
  6612. d = f.pN(c);
  6613. if (f.Y2d1 != UD) {
  6614. e = f.U7(f.Y2d1, c);
  6615. if (e == UD) {
  6616. if (f.Y2d1.x == c.x && f.Y2d1.y == c.y) return;
  6617. f.aS = {
  6618. l: {
  6619. p: [{
  6620. x: f.Y2d1.x,
  6621. y: f.Y2d1.y,
  6622. t: 0
  6623. },
  6624. {
  6625. x: c.x,
  6626. y: c.y,
  6627. t: 1
  6628. }]
  6629. },
  6630. ds: [{
  6631. x: f.Y2d1.x,
  6632. y: f.Y2d1.y
  6633. },
  6634. {
  6635. x: c.x,
  6636. y: c.y
  6637. }]
  6638. },
  6639. f.po();
  6640. return
  6641. }
  6642. f.zw = a1,
  6643. e.selected = a1,
  6644. f.pl(e),
  6645. f.cr.Uds(e, c),
  6646. f.Y2d1.selected = tq,
  6647. f.zJ(f.Y2d1);
  6648. if (f.zQ()) {
  6649. c.selected = a1,
  6650. f.zJ(c),
  6651. f.pw(),
  6652. f.Ger.us(d, 5, 35, 30, 3, 700, 19, new qg(255, 210, 132)),
  6653. f.Ger.us(d, 20, 65, 30, 3, 600, 19, new qg(255, 210, 132)),
  6654. f.Ger.us(d, 30, 95, 90, 3, 400, 19, new qg(255, 210, 132)),
  6655. c.selected = a1;
  6656. return
  6657. }
  6658. }
  6659. c.selected = a1,
  6660. f.zJ(c),
  6661. f.Y2d1 = c,
  6662. f.Ger.us(d, 10, 45, 30, 3, 600, 25, new qg(255, 255, 255))
  6663. },
  6664. pB: function(a, b) {
  6665. var c = a.x - b.x,
  6666. d = a.y - b.y,
  6667. e = mS(c * c + d * d);
  6668. return e < 0 && (zK(e), e = e * -1),
  6669. e
  6670. },
  6671. uA: function(a, b, c) {
  6672. var d,
  6673. e,
  6674. f = this,
  6675. g = 9999,
  6676. i = UD,
  6677. j = new h(a, b);
  6678. for (d = 0; d < f.level.d[pZ]; d++) e = f.pB(j, f.pN(f.level.d[d])),
  6679. e < g && (g = e, i = f.level.d[d]);
  6680. if (c == UD || c > g) return i
  6681. },
  6682. dx: function(a) {
  6683. var b = this;
  6684. b.aJ.clear(),
  6685. b.UJ = a,
  6686. b.sL(b.levels[b.UJ]),
  6687. b.aDs.clear()
  6688. },
  6689. dE: function(a) {
  6690. var b = this;
  6691. b.dW = a,
  6692. b.uu( - 1),
  6693. b.dR()
  6694. },
  6695. dR: function() {
  6696. var a = this;
  6697. a.dW == 1 ? (a.UJ = mf(mr() * a.levels[pZ]), a.ds() && a.sL(a.levels[a.UJ])) : a.UJ + 1 < a.levels[pZ] ? (a.UJ++, a.aJ.clear(), a.ds() && a.sL(a.levels[a.UJ])) : (a.aJ.clear(0, a1), a.KG())
  6698. },
  6699. sL: function(a) {
  6700. var b,
  6701. c,
  6702. d = this;
  6703. if (d.S.kd[pZ] > d.UL && d.S.kd[d.UL][0] <= d.UJ) {
  6704. d.s[ZG](0, 0, d[W_], d[w_]),
  6705. d.s[ZK] = "rgba(1,1,1,0.7)",
  6706. d.s[Zd](0, 0, d[W_], d[w_]),
  6707. d.uq(),
  6708. d.Y4.ZV(d.s, d.S.kd[d.UL]),
  6709. d.UL++;
  6710. return
  6711. }
  6712. d.S.ki(),
  6713. b = UD,
  6714. d.s.globalCompositeOpeqln = "source-over",
  6715. b = d.zO(a),
  6716. d.cr.Zv(),
  6717. d.UU ? d.cr.zs = d.S.kc[b.qa] : d.cr.zs = d.S.d8[b.qa],
  6718. d.cr.gI = b.gI,
  6719. d.D.Zv(),
  6720. d.Uw.uw = d.S.kO,
  6721. d.Uw.Zv(),
  6722. d.aS = UD,
  6723. d.Y2w = UD,
  6724. d.Y2d1 = UD,
  6725. d.u9 = tq,
  6726. d.zw = tq,
  6727. d.u0 = tq,
  6728. d.qw = tq,
  6729. d.qq = tq,
  6730. c = d.Zzs.zE(b.id),
  6731. d.zX.zy = tq,
  6732. d.zX.KY = c.KY,
  6733. d.time = 0,
  6734. d.aDs.aDs[pZ] = 0,
  6735. d.addwHLayer(),
  6736. d.level = b,
  6737. d.zG(b),
  6738. d.uq(),
  6739. d.u3(),
  6740. d.ux != UD && d.ux(b),
  6741. d.dr(tq)
  6742. },
  6743. addwHLayer: function() {
  6744. var a = this;
  6745. a.aJ.aJ[pZ] = 0,
  6746. a.aJ.aG(0, 0, a[W_], 25,
  6747. function() {
  6748. this.g.aJ.clear(),
  6749. this.g.pause(a1),
  6750. this.g.Y4.ZN(this.g.s)
  6751. },
  6752. UD, 0)
  6753. },
  6754. sLs: function(a) {
  6755. var b,
  6756. c,
  6757. d = this;
  6758. d.UV = a.version,
  6759. d.levels = [],
  6760. d.gE = [[], [], [], a.levels];
  6761. for (b = 0, c = d.gE[3][pZ]; b < c; b++) d.gE[3][b].id != UD && d.gE[3][b].id != "" && d.gE[3][b].id != "",
  6762. d.gE[3][b].iid = b + 1,
  6763. d.gE[3][b].t != UD ? d.gE[d.gE[3][b].t].push(d.gE[3][b]) : d.gE[2].push(d.gE[3][b]);
  6764. d.uu(0)
  6765. },
  6766. uu: function(a) {
  6767. var b = this;
  6768. b.gC != a && (b.UJ = 0),
  6769. b.gC = a,
  6770. a == -1 ? (b.levels = b.gE[3], b.gC = 3) : b.levels = b.gE[a]
  6771. },
  6772. zG: function(a, b, c) {
  6773. var d,
  6774. e = this;
  6775. c != a1 && e.s[ZG](0, 0, e[W_], e[w_]);
  6776. for (d = 0; d < a.l[pZ]; d++) d == 2 && tq ? e.ur(e.s, oqst, oCp1, oEnd) : e.pl(a.l[d], b);
  6777. for (d = 0; d < a.d[pZ]; d++) e.zJ(a.d[d], b)
  6778. },
  6779. zf: function(a, b, c) {
  6780. var d,
  6781. e;
  6782. if (c == 0) return;
  6783. return d = Math.atan((b.y - a.y) / (b.x - a.x)),
  6784. e = c,
  6785. b.x < a.x && b.x != a.x && (e = e * -1, b.x != a.x),
  6786. new h(b.x + e * mc(d), b.y + e * ms(d))
  6787. },
  6788. qp: function(a, b, c, d, e) {
  6789. var f = this;
  6790. a[UO](f.z1(b.x), f.zB(b.y)),
  6791. a.bezierCurveTo(f.z1(c.x), f.zB(c.y), f.z1(d.x), f.zB(d.y), f.z1(e.x), f.zB(e.y))
  6792. },
  6793. ur: function(a, b, c, d) {
  6794. var e = this;
  6795. a[UO](e.z1(b.x), e.zB(b.y)),
  6796. a[Zj](e.z1(c.x), e.zB(c.y), e.z1(d.x), e.zB(d.y))
  6797. },
  6798. Um: function(a) {
  6799. var b,
  6800. c = {};
  6801. for (b in a) typeof a[b] == "object" ? c[b] = this.U2(a[b]) : c[b] = a[b];
  6802. return c
  6803. },
  6804. U2: function(a) {
  6805. function b() {}
  6806. return b[_] = a,
  6807. new b
  6808. },
  6809. zO: function(a) {
  6810. var b,
  6811. c,
  6812. d,
  6813. e,
  6814. f,
  6815. g,
  6816. i = this,
  6817. j = 0,
  6818. k = 999999999,
  6819. l = 0,
  6820. m = 999999999,
  6821. n = new um,
  6822. o = a;
  6823. for (b = 0; b < o.l[pZ]; b++) for (c = 1; c < o.l[b].p[pZ]; c++) o.l[b].p[c].x > j && (j = o.l[b].p[c].x),
  6824. o.l[b].p[c].x < k && (k = o.l[b].p[c].x),
  6825. o.l[b].p[c].y > l && (l = o.l[b].p[c].y),
  6826. o.l[b].p[c].y < m && (m = o.l[b].p[c].y);
  6827. d = mf((i.R - j - k) / 2),
  6828. e = mf((i.r - l - m) / 2 - .5),
  6829. i.zP && (d = 0, e = 0, d = mf((i.r - j - k) / 2 - .5), e = mf((i.R - l - m) / 2)),
  6830. o.qa != UD ? n.qa = o.qa: n.qa = 3,
  6831. n.gI = o.gI | 1e3,
  6832. n.t = o.t,
  6833. n.Uo = o.Uo,
  6834. n[pZ] = o[pZ],
  6835. n.id = o.id,
  6836. n.iid = o.iid;
  6837. for (b = 0; b < o.d[pZ]; b++) n.Uv(o.d[b].x + d, o.d[b].y + e);
  6838. for (b = 0; b < o.l[pZ]; b++) {
  6839. f = n.u8();
  6840. for (c = 0; c < o.l[b].p[pZ]; c++) g = f.Ue(o.l[b].p[c].x + d, o.l[b].p[c].y + e, o.l[b].p[c].t),
  6841. o.l[b].p[c].s != UD && (g.s = new h(o.l[b].p[c].s.x + d, o.l[b].p[c].s.y + e), g.cp1 = new h(o.l[b].p[c].cp1.x + d, o.l[b].p[c].cp1.y + e), g.cp2 = new h(o.l[b].p[c].cp2.x + d, o.l[b].p[c].cp2.y + e), g.e = new h(o.l[b].p[c].e.x + d, o.l[b].p[c].e.y + e))
  6842. }
  6843. return i.zP && i.zW(n),
  6844. n
  6845. },
  6846. zW: function(a) {
  6847. var b,
  6848. c,
  6849. d = this;
  6850. for (b = 0; b < a.d[pZ]; b++) d.ZM(a.d[b]);
  6851. for (b = 0; b < a.l[pZ]; b++) for (c = 0; c < a.l[b].p[pZ]; c++) d.ZM(a.l[b].p[c]),
  6852. a.l[b].p[c].s != UD && (d.ZM(a.l[b].p[c].s), d.ZM(a.l[b].p[c].cp1), d.ZM(a.l[b].p[c].cp2), d.ZM(a.l[b].p[c].e))
  6853. },
  6854. ZM: function(a) {
  6855. var b = 0;
  6856. this.zP ? (b = this.r - 1 - a.x, a.x = a.y, a.y = b) : (b = a.x, a.x = this.R - 1 - a.y, a.y = b)
  6857. },
  6858. pl: function(a, b) {
  6859. var c,
  6860. d,
  6861. e,
  6862. f = this,
  6863. g = b;
  6864. g == UD && (a.selected ? g = f.S.klpb: g = f.S.kl),
  6865. f.s[Zh](),
  6866. f.s.lineJoin = "round";
  6867. for (c = 0; c < a.p[pZ]; c++) a.p[c].t != 2 && a.p[c].t != 3 || a.p[c].cp2 == UD ? (d = f.z1(a.p[c].x), e = f.zB(a.p[c].y), c == 0 ? f.s[UO](d, e) : (f.s[Zk] = g.kX( - 60).gL(1), f.s[ZJ] = f.S.d7 + 6, f.s[Zg](d, e), f.s[ZF](), a.p[c].t == 2 ? f.s[Zk] = (new qg(0, 0, 255)).gL() : f.s[Zk] = g.gL(1), f.s[ZJ] = f.S.d7 + 3, f.s[Zg](d, e), f.s[ZF]())) : (f.s[Zh](), f.s[Zk] = g.kX( - 60).gL(1), f.s[ZJ] = f.S.d7 + 6, a.p[c].t == 3 ? f.ur(f.s, a.p[c].s, a.p[c].cp1, a.p[c].e) : f.qp(f.s, a.p[c].s, a.p[c].cp1, a.p[c].cp2, a.p[c].e), f.s[ZF](), f.s[ZJ] = f.S.d7 + 3, f.s[Zk] = g.gL(1), a.p[c].t == 3 ? f.ur(f.s, a.p[c].s, a.p[c].cp1, a.p[c].e) : f.qp(f.s, a.p[c].s, a.p[c].cp1, a.p[c].cp2, a.p[c].e), f.s[ZF]()),
  6868. f.lastH = a.p[c]
  6869. },
  6870. zJ: function(a, b) {
  6871. var c = this,
  6872. d = b,
  6873. e = c.z1(a.x),
  6874. f = c.zB(a.y);
  6875. d == UD && (a.selected ? d = c.S.kl: d = c.S.kl),
  6876. c.s[ZK] = d.gL(),
  6877. c.s[Zh](),
  6878. c.s.arc(e, f, c.S.d7 + 5, 0, mP, a1),
  6879. c.s.fill(),
  6880. c.s[ZJ] = 2,
  6881. c.s[Zk] = d.kX( - 60).gL(.4),
  6882. c.s[ZF](),
  6883. a.selected && (c.s[Zh](), c.s[ZK] = (new qg(255, 255, 255)).gL(), c.s.arc(e, f, c.S.d7 + 1, 0, mP, a1), c.s.fill(), c.s[ZJ] = 2, c.s[Zk] = d.kX( - 60).gL(.4), c.s[ZF]())
  6884. },
  6885. pN: function(a) {
  6886. return new h(this.z1(a.x), this.zB(a.y))
  6887. },
  6888. z1: function(a) {
  6889. return this.leftOffset + (a * this.K + this.K / 2)
  6890. },
  6891. zB: function(a) {
  6892. return this.z8 + (a * this.k + this.k / 2)
  6893. },
  6894. U7: function(a, b) {
  6895. var c,
  6896. d,
  6897. e = this;
  6898. for (c = 0; c < e.level.l[pZ]; c++) {
  6899. d = e.level.l[c];
  6900. if (!d.selected && (d.p[0].x == a.x && d.p[d.p[pZ] - 1].x == b.x && d.p[0].y == a.y && d.p[d.p[pZ] - 1].y == b.y || d.p[0].x == b.x && d.p[d.p[pZ] - 1].x == a.x && d.p[0].y == b.y && d.p[d.p[pZ] - 1].y == a.y)) return e.level.l[c]
  6901. }
  6902. },
  6903. zQ: function() {
  6904. var a;
  6905. for (a = 0; a < this.level.l[pZ]; a++) if (!this.level.l[a].selected) return tq;
  6906. return a1
  6907. },
  6908. KL: function(a, b, c, d) {
  6909. var e,
  6910. f;
  6911. d || a.indexOf("mailto:") > -1 ? window.location = a: window.navigator.standalone ? (e = document.createElement("a"), e.setAttribute("href", a), e.setAttribute("target", "_blank"), f = document.createEvent("HTMLEvents"), f.initEvent("click", a1, a1), e.dispatchEvent(f)) : window.open(a, b, c)
  6912. },
  6913. dr: function(a) {
  6914. var b = this;
  6915. b.dt != a && (b.dt = a, b.de(a))
  6916. },
  6917. de: function() {},
  6918. du: function() {},
  6919. di: function() {},
  6920. ds: function() {
  6921. return a1
  6922. }
  6923. },
  6924. _m[_] = {
  6925. save: function(a, b) {
  6926. var c = "rb" + a;
  6927. this.db ? this.db.zo(function(a) {
  6928. a.executeSql("UPDATE rbMemory SET Val=? WHERE NamePK=?", [JSON.stringify(b), c])
  6929. },
  6930. this.zA) : window.localStorage != UD && window.localStorage.setItem(c, JSON.stringify(b))
  6931. },
  6932. read: function(uV, oObj) {
  6933. var sJson = "UD",
  6934. sRbKey = "rb" + uV,
  6935. that = this;
  6936. return that.db ? that.db.zo(function(a) {
  6937. zK("before select" + sRbKey),
  6938. a.executeSql("SELECT Val FROM rbMemory WHERE NamePK=?", [sRbKey],
  6939. function(a, b) {
  6940. var c,
  6941. d;
  6942. for (c = 0, d = b.r[pZ]; c < d; c++) zK(b.r.item(c).Val),
  6943. sJson = b.r.item(c).Val
  6944. },
  6945. UD, that.zA)
  6946. }) : window.localStorage != UD && (sJson = window.localStorage.getItem(sRbKey)),
  6947. eval("sJson=" + sJson),
  6948. sJson
  6949. },
  6950. U6: function(a) {
  6951. return
  6952. },
  6953. zA: function() {}
  6954. },
  6955. _O[_] = {
  6956. uy: function(a, b, c, d, e, f, g, h) {
  6957. a[Zh](),
  6958. a[UO](b + f, c),
  6959. a[Zg](b + d - f, c),
  6960. a[Zj](b + d, c, b + d, c + f),
  6961. a[Zg](b + d, c + e - f),
  6962. a[Zj](b + d, c + e, b + d - f, c + e),
  6963. a[Zg](b + f, c + e),
  6964. a[Zj](b, c + e, b, c + e - f),
  6965. a[Zg](b, c + f),
  6966. a[Zj](b, c, b + f, c),
  6967. a[ZD](),
  6968. g && a.fill(),
  6969. h && a[ZF]()
  6970. },
  6971. uyOut: function(a, b, c, d, e, f, g, h) {
  6972. g && (a[Zh](), a[UO](b + d, c), a[Zg](b + d - f, c), a[Zj](b + d, c, b + d, c + f), a[ZD](), a.fill(), a[Zh](), a[UO](b + d, c + e), a[Zg](b + d, c + e - f), a[Zj](b + d, c + e, b + d - f, c + e), a[ZD](), a.fill(), a[Zh](), a[UO](b, c + e), a[Zg](b, c + e - f), a[Zj](b, c + e, b + f, c + e), a[ZD](), a.fill(), a[Zh](), a[UO](b, c), a[Zg](b, c + f), a[Zj](b, c, b + f, c), a[ZD](), a.fill()),
  6973. h && this.uy(a, b, c, d, e, f, tq, a1)
  6974. },
  6975. uj: function(a, b, c, d, e, f, g, i) {
  6976. var j,
  6977. k,
  6978. l,
  6979. m = d / 3,
  6980. n = b + d / 2 - m;
  6981. for (j = 0; j < 3; j++) {
  6982. k = new qg(20, 20, 20, 1);
  6983. if (g >= j + 1) k = new qg(255, 255, 255, 1);
  6984. else if (i == tq) return;
  6985. l = new wF(a, new h(n + j * m, c), f, 5, 0, new qg(255, 255, 255, .8), k, "qd"),
  6986. l[ZJ] = 1,
  6987. l.draw()
  6988. }
  6989. },
  6990. centerText: function(a, b, c, d, e) {
  6991. a.font = e || "10pt Arial",
  6992. a[ZK] = "white",
  6993. a.textAlign = "center",
  6994. a.textBaseline = "middle",
  6995. a[ZH](b, c, d)
  6996. },
  6997. uX: function(a) {
  6998. return a
  6999. }
  7000. },
  7001. _gc[_] = {
  7002. draw: function(a) {
  7003. var b,
  7004. c,
  7005. d,
  7006. e,
  7007. f,
  7008. g,
  7009. i,
  7010. j,
  7011. k,
  7012. l,
  7013. m,
  7014. n,
  7015. o,
  7016. p,
  7017. q,
  7018. r,
  7019. s = this,
  7020. t = a,
  7021. u = a,
  7022. v = 4,
  7023. w = 5;
  7024. if (s.g[W_] < 250 || s.g[w_] < 250) v = 2,
  7025. w = 3;
  7026. s.g.zP ? (s.R = w, s.r = v) : (s.R = v, s.r = w),
  7027. a == UD ? (u = mf(s.g.UJ / (s.R * s.r)), t = s.R * s.r * u) : t = s.R * s.r * a,
  7028. b = 10,
  7029. c = (s.g[W_] - b * 3) / s.R,
  7030. d = (s.g[w_] - 50) / s.r,
  7031. e = c - b,
  7032. f = d - b,
  7033. g = 7,
  7034. i = (f - b * 1.1) / s.g[w_],
  7035. s.g.aDs.clear(),
  7036. s.s[ZG](0, 0, s.g[W_], s.g[w_]),
  7037. s.g.zG(s.g.zO(s.g.level)),
  7038. s.s[ZK] = "rgba(1,1,1,0.7)",
  7039. s.s[Zd](0, 0, s.g[W_], s.g[w_]),
  7040. s.s.save(),
  7041. s.s.shadowColor = "white",
  7042. s.s.shadowBlur = 4,
  7043. s.g.aJ.clear(0, a1),
  7044. s.s.font = "14pt sans-serif",
  7045. s.s[ZK] = "white",
  7046. s.s.textAlign = "center",
  7047. s.s.textBaseline = "middle",
  7048. s.s[ZH]("Select Level", s.g[W_] / 2, 20),
  7049. s.s.shadowBlur = 10,
  7050. s.R * s.r * (u + 1) < s.g.levels[pZ] && (j = new h(s.g[W_] - (b * 2 + 12), 20), k = new wF(s.s, j, 10, 3, 90, new qg(255, 255, 255, .8), new qg(40, 40, 40, .2)), k[ZK] = new qg(255, 255, 255), k.draw(), s.g.aJ.aG(j.x - 12, j.y - 12, j.x + 12, j.y + 12,
  7051. function(a) {
  7052. this.g.aJ.aJ[pZ] = 0,
  7053. this.g.gc.draw(a + 1)
  7054. },
  7055. u, 1)),
  7056. u != 0 && (j = new h(b * 2 + 12, 20), l = new wF(s.s, j, 10, 3, 30, new qg(255, 255, 255, .8), new qg(40, 40, 40, .2)), l[ZK] = new qg(255, 255, 255), l.draw(), s.g.aJ.aG(0, j.y - 12, j.x + 12, j.y + 12,
  7057. function(a) {
  7058. this.g.aJ.aJ[pZ] = 0,
  7059. this.g.gc.draw(a - 1)
  7060. },
  7061. u, 2)),
  7062. s.s[ZS]();
  7063. for (m = 0; m < s.r; m++) {
  7064. n = 40 + m * d;
  7065. for (o = 0; o < s.R; o++) {
  7066. p = 20 + o * c,
  7067. s.s[Zk] = s.g.S.kC.gL(),
  7068. s.s[ZK] = "rgba(0,0,0,0.5)",
  7069. s.g.UJ == t ? (s.s[Zk] = "rgb(255,255,255)", s.s[ZJ] = 4) : (s.s[ZJ] = 2, s.s[Zk] = s.g.S.kC.gL()),
  7070. q = s.s.createLinearGradient(0, n, 0, n + f),
  7071. q.addColorStop(0, s.g.S.d9),
  7072. q.addColorStop(.2, s.g.S.d0),
  7073. q.addColorStop(.5, s.g.S.dq),
  7074. q.addColorStop(1, s.g.S.dw),
  7075. s.s[ZK] = q,
  7076. s.O.uy(s.s, p, n, e, f, 4, a1, a1),
  7077. r = {
  7078. s: s.s,
  7079. O: s.O,
  7080. g: s.g,
  7081. x: p,
  7082. y: n,
  7083. scaleRatio: i,
  7084. levelID: t,
  7085. qds: s.g.Zzs.zE(s.g.levels[t].id).qds,
  7086. ua: g,
  7087. g: s.g,
  7088. zC: b
  7089. },
  7090. s.g.aDs.uD(function(a) {
  7091. a.levelID != 17 || a.qds == 3,
  7092. a.s.save(),
  7093. a.g.zP ? a.s.translate(a.x + a.zC * 1.8 - 10, a.y) : a.s.translate(a.x + a.zC * 1.8, a.y),
  7094. a.s[hardScale](i, i),
  7095. a.s.globalAlpha = .5,
  7096. a.g.zG(a.g.zO(a.g.levels[a.levelID]), UD, a1),
  7097. a.s[ZS](),
  7098. a.s.save(),
  7099. a.s.font = "bold 12pt sans-serif",
  7100. a.s[ZK] = "white",
  7101. a.s.textAlign = "center",
  7102. a.s.textBaseline = "middle",
  7103. a.s.shadowColor = "white",
  7104. a.s.shadowBlur = 5,
  7105. a.s[ZH](a.levelID + 1, a.x + a.zC + 4, a.y + (a.zC + 4)),
  7106. a.s.shadowBlur = 10,
  7107. a.g.O.uj(a.s, a.x + 3, a.y + f - (g + 5), e - 6, 40, a.ua, a.qds),
  7108. a.s.shadowBlur = 0,
  7109. a.s[ZS]()
  7110. },
  7111. r),
  7112. s.g.aJ.aG(p, n, e, f,
  7113. function(a) {
  7114. var b,
  7115. c,
  7116. d = this;
  7117. d.g.aJ.clear(),
  7118. d.g.UJ = a,
  7119. d.g.sL(d.g.levels[d.g.UJ]),
  7120. b = d.x + d[W_] / 2,
  7121. c = d.y + d[w_] / 2,
  7122. d.g.aDs.clear()
  7123. },
  7124. t),
  7125. t++;
  7126. if (t == s.g.levels[pZ]) {
  7127. s.g.aDs.Ut();
  7128. return
  7129. }
  7130. }
  7131. }
  7132. s.g.aDs.Ut()
  7133. }
  7134. },
  7135. _Y4[_] = {
  7136. ZN: function(a) {
  7137. var b,
  7138. c = this,
  7139. d = (c[W_] - c.S.kK.x) / 2,
  7140. e = c.zC,
  7141. f = 0,
  7142. g = new Array;
  7143. g[g[pZ]] = new _Y4I("继续",
  7144. function() {
  7145. this.g.pause(tq),
  7146. this.g.aJ.aJ[pZ] = 1
  7147. }),
  7148. g[g[pZ]] = new _Y4I("重新开始",
  7149. function() {
  7150. var a;
  7151. this.g.sL(this.g.levels[this.g.UJ]),
  7152. this.g.aJ.aJ[pZ] = 1,
  7153. a = this.g.Zzs.zE(this.g.level.id),
  7154. a.KU++
  7155. }),
  7156. b = function() {
  7157. this.g.sL(this.g.levels[this.g.UJ]),
  7158. this.g.aJ.aJ[pZ] = 1;
  7159. var a = this.g.Zzs.zE(this.g.level.id);
  7160. a.KU++
  7161. },
  7162. g[g[pZ]] = new _Y4I("分享",
  7163. function(a) {
  7164. this.g.aJ.clear(),
  7165. this.g.uZ(1, a)
  7166. },
  7167. b),
  7168. g[g[pZ]] = new _Y4I("切换游戏难度",
  7169. function() {
  7170. this.g.aJ.clear(0, a1),
  7171. this.g.KG()
  7172. }),
  7173. g[g[pZ]] = new _Y4I("主菜单",
  7174. function() {
  7175. this.g.aJ.clear(),
  7176. this.g.u7()
  7177. }),
  7178. f = this.zC * 3 + (this.zC + this.S.kA) * g[pZ],
  7179. e = (this[w_] - f) / 2,
  7180. a[ZJ] = 2,
  7181. a[ZK] = this.S.kL.gL(),
  7182. a[Zk] = this.S.kC.gL(),
  7183. this.zv(a, this.S.kK, "菜单", "", g)
  7184. },
  7185. Zn: function(a) {
  7186. var b,
  7187. c,
  7188. d,
  7189. e,
  7190. f,
  7191. g = new Array,
  7192. i = this;
  7193. i.g.aJ.clear(),
  7194. b = g[g[pZ]] = new _Y4I("开始 (" + (i.g.UZ.t[0] + i.g.UZ.t[1] + i.g.UZ.t[2]) + "/" + (i.g.gE[0][pZ] + i.g.gE[1][pZ] + i.g.gE[2][pZ]) + ")",
  7195. function() {
  7196. i.g.aJ.clear(0, a1),
  7197. i.g.KG()
  7198. }),
  7199. i.dg != UD && (g[g[pZ]] = new _Y4I(i.dg[0], i.dg[1])),
  7200. b = g[g[pZ]] = new _Y4I("分享",
  7201. function() {
  7202. i.g.aJ.clear(),
  7203. i.g.uZ(0,
  7204. function() {
  7205. i.g.aJ.clear(),
  7206. i.g.u7()
  7207. })
  7208. }),
  7209. /*
  7210. g[g[pZ]] = new _Y4I("统计",
  7211. function() {
  7212. i.g.aJ.clear(),
  7213. i.g.KO()
  7214. }),
  7215. */
  7216. g[g[pZ]] = new _Y4I("游戏说明",
  7217. function() {
  7218. i.g.aJ.clear(),
  7219. i.g.d5(0)
  7220. }),
  7221. g[g[pZ]] = new _Y4I("更多游戏",
  7222. function() {
  7223. i.g.KL(i.g.df, UD, UD, a1)
  7224. }),
  7225. /*
  7226. i.dg == UD && (g[g[pZ]] = new _Y4I("关于",
  7227. function() {
  7228. i.g.aJ.clear(),
  7229. i.g.UX()
  7230. })),
  7231. */
  7232. i[W_] < i[w_] ? i.zv(a, i.S.kJ, "主菜单", "", g) : (c = 360 + i.zC * 4, d = (i[W_] - c) / 2, e = new h(c + i.zC, 195), f = 55 + (i[w_] - e.y) / 2, i.zv(a, e, "主菜单", "", ""), i.Ui(a, d + i.zC, f + i.da, 180, 0, g.slice(0, 3)), i.Ui(a, d + i.zC * 3 + 180, f + i.da, 180, 0, g.slice(3)))
  7233. },
  7234. KF: function(a) {
  7235. var b,
  7236. c;
  7237. this.g.aJ.clear(),
  7238. b = new Array,
  7239. c = b[b[pZ]] = new _Y4I("容易 (" + this.g.UZ.t[0] + "/" + this.g.gE[0][pZ] + ")",
  7240. function() {
  7241. this.g.aJ.clear(),
  7242. this.g.uu(0),
  7243. this.g.gD()
  7244. }),
  7245. c.selected = this.g.gC == 0,
  7246. c = b[b[pZ]] = new _Y4I("中等 (" + this.g.UZ.t[1] + "/" + this.g.gE[1][pZ] + ")",
  7247. function() {
  7248. this.g.aJ.clear(),
  7249. this.g.uu(1),
  7250. this.g.gD()
  7251. }),
  7252. c.selected = this.g.gC == 1,
  7253. c = b[b[pZ]] = new _Y4I("难 (" + this.g.UZ.t[2] + "/" + this.g.gE[2][pZ] + ")",
  7254. function() {
  7255. this.g.aJ.clear(),
  7256. this.g.uu(2),
  7257. this.g.gD()
  7258. }),
  7259. c.selected = this.g.gC == 2,
  7260. c = b[b[pZ]] = new _Y4I("所有 (" + (this.g.UZ.t[0] + this.g.UZ.t[1] + this.g.UZ.t[2]) + "/" + (this.g.gE[0][pZ] + this.g.gE[1][pZ] + this.g.gE[2][pZ]) + ")",
  7261. function() {
  7262. this.g.aJ.clear(),
  7263. this.g.uu( - 1),
  7264. this.g.gD()
  7265. }),
  7266. c.selected = this.g.gC == 3,
  7267. this.zv(a, {
  7268. x: 220,
  7269. y: 240,
  7270. kV: 50
  7271. },
  7272. "选择难度", "", b)
  7273. },
  7274. ZB: function(a, b, c) {
  7275. var d,
  7276. e,
  7277. f,
  7278. g,
  7279. h,
  7280. i,
  7281. j,
  7282. k,
  7283. l,
  7284. m = this.g.S.ks,
  7285. n = [];
  7286. n[n[pZ]] = new _Y4I("完成", c),
  7287. this.zv(a, this.S.KD, "点击右上角的分享按钮", "", n),
  7288. d = 0,
  7289. e = 0,
  7290. f = 14 + (this[W_] - this.S.KD.x) / 2,
  7291. g = 16 + (this[w_] - this.S.KD.y) / 2;
  7292. for (h = 0, i = m[pZ]; h < i; h++) j = m[h],
  7293. j[2] != "" && !(j[1].indexOf("mailto:") > -1 && this.g.d3) && (k = new Image, k.s = a, k.g = this.g, k.src = j[2], k.Zb = j, k.Zb.x = f + d * 40, k.Zb.y = g + e * 40 + this.da, k.Zb.url = this.g.df, b == 1 ? (l = this.g.Zzs.zE(this.g.level.id), l.qds > 0 ? (k.Zb.text = "I%20just%20completed%20Level%20" + this.g.level.iid + "%20of%20Pathuku", k.Zb.url += "/play/" + this.g.level.id + "/" + this.g.level.id.charAt(2)) : (k.Zb.text = "I'm%20stuck%20on%20Level%20" + this.g.level.iid + "%20of%20Pathuku.%20Try%20it.", k.Zb.url += "/play/" + this.g.level.id + "/00")) : k.Zb.text = "Check%20out%20Pathuku. It's%20addictive!!!", d++, d == 5 && (d = 0, e++), k.onload = function() {
  7294. var a = this;
  7295. a.g.aJ.aG(a.Zb.x, a.Zb.y, a.Zb[3], a.Zb[4],
  7296. function(a) {
  7297. var b = a[1].replace("[TITLE]", a.text).replace("[URL]", a.url);
  7298. this.g.KL(b, "newwindow")
  7299. },
  7300. a.Zb),
  7301. a.s.drawImage(a, a.Zb[5], a.Zb[6], a.Zb[3], a.Zb[4], a.Zb.x, a.Zb.y, a.Zb[3], a.Zb[4])
  7302. })
  7303. },
  7304. pq: function(a) {
  7305. var b = new Array;
  7306. b[b[pZ]] = new _Y4I("重新开始",
  7307. function() {
  7308. this.g.aJ.clear(),
  7309. this.g.sL(this.g.levels[this.g.UJ])
  7310. }),
  7311. this.zv(a, this.S.kN, "游戏结束", "继续努力", b)
  7312. },
  7313. KP: function(a) {
  7314. var b,
  7315. c,
  7316. d,
  7317. e,
  7318. f = new Array;
  7319. f[f[pZ]] = new _Y4I("继续",
  7320. function() {
  7321. this.g.aJ.clear(),
  7322. this.g.u7()
  7323. }),
  7324. b = this,
  7325. c = b.g.UZ,
  7326. d = "成功: " + c.qds[0] + " \n失败: " + c.KU + " \n3星: " + c.qds[2] + " \n2星: " + (c.qds[1] - c.qds[2]) + " \n1星: " + (c.qds[0] - c.qds[1]) + "",
  7327. e = new zU(a, d, 200, 14),
  7328. this.zv(a, b.S.KA, "统计", e, f)
  7329. },
  7330. UC: function(a) {
  7331. var b,
  7332. c,
  7333. d,
  7334. e = new Array;
  7335. e[e[pZ]] = new _Y4I(this.S.dc.dv,
  7336. function() {
  7337. this.g.KL(this.g.S.dl, "w")
  7338. }),
  7339. e[e[pZ]] = new _Y4I("继续",
  7340. function() {
  7341. this.g.aJ.clear(),
  7342. this.g.u7()
  7343. }),
  7344. b = this,
  7345. c = "Pathuku Version: " + b.g.version + " \nLevel Pack: " + b.g.UV + " \nContact:\n feedback@pathuku.com",
  7346. d = new zU(a, c, 200, 14),
  7347. this.zv(a, b.S.kW, "关于", d, e)
  7348. },
  7349. d2: function(a, b) {
  7350. var c,
  7351. d = new Array,
  7352. e = {
  7353. x: this.S.kF.x,
  7354. y: this.S.kF.y + 10,
  7355. kV: this.S.kF.kV + 10
  7356. };
  7357. b + 1 < this.S.kd[pZ] && (d[d[pZ]] = new _Y4I("Next",
  7358. function() {
  7359. this.g.aJ.clear(),
  7360. this.g.d5(b + 1)
  7361. }), e.kV -= 45),
  7362. d[d[pZ]] = new _Y4I("完成",
  7363. function() {
  7364. this.g.aJ.clear(),
  7365. this.g.u7()
  7366. }),
  7367. c = new zU(a, this.S.kd[b][2], 200, 14),
  7368. this.zv(a, e, this.S.kd[b][1] + " (" + (b + 1) + "/" + this.S.kd[pZ] + ")", c, d)
  7369. },
  7370. ZV: function(a, b, c) {
  7371. var d,
  7372. e = new Array,
  7373. f = c;
  7374. f == UD && (f = function() {
  7375. this.g.aJ.clear(),
  7376. this.g.sL(this.g.levels[this.g.UJ])
  7377. }),
  7378. e[e[pZ]] = new _Y4I("继续", f),
  7379. d = new zU(a, b[2], 200, 14),
  7380. this.zv(a, this.S.kF, b[1], d, e)
  7381. },
  7382. Uh: function(a, b) {
  7383. var c,
  7384. d = new Array,
  7385. e = {
  7386. s: a,
  7387. U4: b
  7388. };
  7389. d[d[pZ]] = new _Y4I("继续",
  7390. function(a) {
  7391. this.g.d_(),
  7392. this.g.Y4.pu(a.s, a.U4)
  7393. },
  7394. e),
  7395. c = new zU(a, "You have been promoted to:\n" + b.rank, 200, 15),
  7396. this.zv(a, this.S.kG, "祝贺你", c, d)
  7397. },
  7398. dm: function(a, b) {
  7399. var c,
  7400. d = new Array,
  7401. e = {
  7402. s: a,
  7403. U4: b
  7404. };
  7405. d[d[pZ]] = new _Y4I(this.S.dc.dv,
  7406. function(a) {
  7407. this.g.KL(this.g.S.dl, "w"),
  7408. this.g.dn = 60,
  7409. this.g.d_(),
  7410. this.g.Y4.pu(a.s, a.U4)
  7411. },
  7412. e),
  7413. d[d[pZ]] = new _Y4I(this.S.dc.dQ,
  7414. function(a) {
  7415. this.g.dn += 10,
  7416. this.g.d_(),
  7417. this.g.Y4.pu(a.s, a.U4)
  7418. },
  7419. e),
  7420. c = new zU(a, this.S.dc.dn, 200, 15),
  7421. this.zv(a, this.S.db, this.S.dc.dv, c, d)
  7422. },
  7423. pu: function(a, b) {
  7424. var c,
  7425. d = new Array,
  7426. e = function() {
  7427. var a = this;
  7428. a.g.dR()
  7429. };
  7430. d[d[pZ]] = new _Y4I("下一关", e),
  7431. d[d[pZ]] = new _Y4I("Share Completed Level",
  7432. function(a) {
  7433. this.g.aJ.clear(),
  7434. this.g.uZ(1, a)
  7435. },
  7436. e),
  7437. d[d[pZ]] = new _Y4I("重新再玩",
  7438. function() {
  7439. this.g.sL(this.g.levels[this.g.UJ]),
  7440. this.g.aJ.clear()
  7441. }),
  7442. b.KY > b.Zz ? this.zv(a, this.S.kH, "用时:" + b.Zz, "", d) : this.zv(a, this.S.kH, "完成", "点击右上角的分享按钮!", d),
  7443. a.save(),
  7444. a.font = "10pt Arial",
  7445. a[ZK] = "white",
  7446. a.textAlign = "center",
  7447. a.textBaseline = "middle",
  7448. a.shadowColor = "white",
  7449. a.shadowBlur = 6,
  7450. c = (this[w_] - this.S.kH.y) / 2 + 50 + this.da,
  7451. b.newRecord ? a[ZH]("新纪录时间:" + b.Zz, this[W_] / 2, c) : a[ZH]("Time:" + b.Zz, this[W_] / 2, c),
  7452. a.shadowBlur = 8,
  7453. this.O.uj(a, (this[W_] - this.S.kH.x) / 2 + 10, (this[w_] - this.S.kH.y) / 2 + 80 + this.da, this.S.kH.x - 20, 40, 15, b.qds),
  7454. a[ZS]()
  7455. },
  7456. zv: function(a, b, c, d, e) {
  7457. var f,
  7458. g,
  7459. h,
  7460. i = this,
  7461. j = (i[w_] - b.y) / 2 + i.da,
  7462. k = (i[W_] - b.x) / 2;
  7463. a[ZJ] = 2,
  7464. a[ZK] = i.S.kL.gL(),
  7465. a[Zk] = i.S.kC.gL(),
  7466. f = a.createLinearGradient(0, j, 0, j + b.y),
  7467. f.addColorStop(0, this.S.dy),
  7468. f.addColorStop(.4, this.S.dq),
  7469. f.addColorStop(.5, this.S.dq),
  7470. f.addColorStop(1, this.S.d0),
  7471. a[ZK] = f,
  7472. i.O.uy(a, k, j, b.x, b.y, 10, a1, a1),
  7473. a.save(),
  7474. a.shadowColor = "white",
  7475. a.shadowBlur = 7,
  7476. a.font = "14pt Arial",
  7477. a[ZK] = "white",
  7478. a.textAlign = "center",
  7479. a.textBaseline = "middle",
  7480. a[ZH](c, i[W_] / 2, j + 24),
  7481. a.font = "10pt Arial",
  7482. d.text != UD ? d[ZH](i[W_] / 2, j + 60) : a[ZH](d, i[W_] / 2, j + 60),
  7483. a[ZS](),
  7484. g = 90,
  7485. b.kV != UD && (g = b.kV);
  7486. for (h = 0; h < e[pZ]; h++) i.Ub(a, k + 20, j + g + h * (e[h][w_] + 10), b.x - 40, e[h][w_], e[h].text, e[h].aD, e[h].selected, e[h].para)
  7487. },
  7488. Ui: function(a, b, c, d, e, f) {
  7489. var g;
  7490. for (g = 0; g < f[pZ]; g++) this.Ub(a, b, c + g * (f[g][w_] + this.zC), d, f[g][w_], f[g].text, f[g].aD, f[g].selected, f[g].para)
  7491. },
  7492. Ub: function(a, b, c, d, e, f, g, h, i) {
  7493. var j;
  7494. a.save(),
  7495. a[ZK] = this.S.kS.gL(),
  7496. h ? (a[Zk] = "rgb(255,255,255)", a[ZJ] = 4) : (a[ZJ] = 2, a[Zk] = this.S.kD.gL()),
  7497. j = a.createLinearGradient(0, c, 0, c + e),
  7498. j.addColorStop(0, this.S.d9),
  7499. j.addColorStop(.3, this.S.d0),
  7500. j.addColorStop(.4, this.S.dq),
  7501. j.addColorStop(1, this.S.dw),
  7502. a[ZK] = j,
  7503. this.O.uy(a, b, c, d, e, 5, a1, a1),
  7504. a.shadowColor = "white",
  7505. a.shadowBlur = 6,
  7506. a.font = "10pt Arial",
  7507. a[ZK] = "white",
  7508. a.textAlign = "center",
  7509. a.textBaseline = "middle",
  7510. a[ZH](f, b + d / 2, c + e / 2),
  7511. this.aJ.aG(b, c, d, e, g, i),
  7512. a[ZS]()
  7513. }
  7514. },
  7515. _Uw[_] = {
  7516. T: function(a, b) {
  7517. if (a - b > 2e3) return;
  7518. this.eE.T(a, b)
  7519. },
  7520. Zv: function() {
  7521. var a = this;
  7522. a.eE = a.gds[mf(a.gds[pZ] * mr())],
  7523. a.eE.uw = a.uw.kX( - 120),
  7524. a.eE.Zv()
  7525. },
  7526. up: function(a, b, c, d) {
  7527. var e,
  7528. f = this;
  7529. for (e = 0; e < f.gds[pZ]; e++) f.gds[e][W_] = a,
  7530. f.gds[e][w_] = b,
  7531. f.gds[e].r = d,
  7532. f.gds[e].R = c
  7533. }
  7534. },
  7535. uk[_] = {
  7536. T: function(a, b) {
  7537. var c,
  7538. d = this;
  7539. d.zj = d.zj + (a - b) * d.gb || 0,
  7540. d.s[Zk] = d.uw.gL(.5),
  7541. d.s[Zh](),
  7542. d.s.lineCap = "round",
  7543. d.s[ZJ] = mr() * 8 + 2,
  7544. c = d.u5.gL(.04);
  7545. while (d.zj - 1 > 0) d.pl(),
  7546. d.zj--,
  7547. d.s[ZK] = c,
  7548. d.s[Zd](0, 0, d[W_], d[w_]);
  7549. d.s[ZF]()
  7550. },
  7551. Zv: function() {
  7552. this.s[ZG](0, 0, this[W_], this[w_]),
  7553. this.za()
  7554. },
  7555. za: function() {
  7556. var a,
  7557. b = this;
  7558. b.s[Zk] = b.uw.gL(.4),
  7559. b.s[Zh](),
  7560. b.s[ZJ] = 2,
  7561. b.s.lineCap = "round";
  7562. for (a = 0; a < b.ls; a++) b.pl(),
  7563. b.s[ZF]()
  7564. },
  7565. pl: function() {
  7566. var a = this,
  7567. b = a[w_],
  7568. c = a[W_];
  7569. a.s[UO](mr() * c, mr() * b),
  7570. a.s.bezierCurveTo(mr() * c, mr() * b, mr() * c, mr() * b, mr() * c, mr() * b)
  7571. }
  7572. },
  7573. Uc[_] = {
  7574. T: function(a, b) {
  7575. var c,
  7576. d,
  7577. e,
  7578. f = this;
  7579. f.zj = f.zj + (a - b) * f.gb || 0,
  7580. f.s[Zk] = f.uw.gL(),
  7581. f.s[Zh](),
  7582. f.s[ZJ] = 1,
  7583. c = f.u5.gL(.05);
  7584. while (f.zj - 1 > 0) d = mn(mr() * f.R),
  7585. e = mn(mr() * f.r),
  7586. f.zR(d),
  7587. f.zr(e),
  7588. f.zj--,
  7589. f.s[ZK] = c,
  7590. f.s[Zd](0, 0, f[W_], f[w_]);
  7591. f.s[ZF]()
  7592. },
  7593. Zv: function() {
  7594. var a = this;
  7595. a.s[ZG](0, 0, a[W_], a[w_]),
  7596. a.Y = 14 + mn(mr() * 25),
  7597. a.za()
  7598. },
  7599. za: function() {
  7600. var a,
  7601. b = this,
  7602. c = 0;
  7603. b.s[Zk] = b.uw.gL(),
  7604. b.s[Zh](),
  7605. b.s[ZJ] = 1;
  7606. for (a = 0; a < b.R + 1; a++) b.zR(a);
  7607. for (a = 0; a < b.r + 1; a++) b.zr(a);
  7608. b.s[ZF]()
  7609. },
  7610. zR: function(a) {
  7611. var b = this;
  7612. b.pl(new h(a * b.K + mr() * b.Y, 0), new h(a * b.K + mr() * b.Y, b[w_]))
  7613. },
  7614. zr: function(a) {
  7615. var b = this;
  7616. b.pl(new h(0, a * b.k + b.z8 + mr() * b.Y), new h(b[W_], a * b.k + b.z8 + mr() * b.Y))
  7617. },
  7618. pl: function(a, b) {
  7619. this.s[UO](a.x, a.y),
  7620. this.s[Zg](b.x, b.y)
  7621. }
  7622. },
  7623. u2[_] = {
  7624. T: function(a, b) {
  7625. var c,
  7626. d = this;
  7627. d.zj = d.zj + (a - b) * d.gb || 0,
  7628. d.s[Zk] = d.uw.gL(),
  7629. c = d.u5.gL(.0035),
  7630. d.s[ZK] = c,
  7631. d.s[Zd](0, 0, d[W_], d[w_]);
  7632. while (d.zj - 1 > 0) d.uv(d.ps[mf(d.ps[pZ] * mr())]),
  7633. d.zj--
  7634. },
  7635. Zv: function() {
  7636. var a = this;
  7637. a.s[ZG](0, 0, a[W_], a[w_]),
  7638. a.za()
  7639. },
  7640. za: function() {
  7641. var a,
  7642. b,
  7643. c,
  7644. d,
  7645. e,
  7646. f,
  7647. g,
  7648. h,
  7649. i,
  7650. j,
  7651. k,
  7652. l,
  7653. m,
  7654. n,
  7655. o,
  7656. p = this;
  7657. p.ps[pZ] = 0,
  7658. a = 150 + 150 * mr(),
  7659. b = 250 + 150 * mr(),
  7660. c = 22,
  7661. d = 3 + mn(mr() * 3),
  7662. e = 24,
  7663. p.ua = 10 + mn(mr() * 18),
  7664. p.alpha = .4,
  7665. p.uS = 30,
  7666. p.ua > 13 && (p.alpha = .2),
  7667. f = mr() * 500,
  7668. g = mr() * 500,
  7669. p.s.save();
  7670. for (h = 1; h < c; h++) {
  7671. i = h * e,
  7672. j = 360 / (h * d);
  7673. for (k = 0; k < h * d; k++) l = mP * (k * j / 360),
  7674. m = a + ms(l) * i,
  7675. n = b + mc(l) * i,
  7676. m > -p.uS && m < p[W_] + p.uS && n > -p.uS && n < p[w_] + p.uS && (o = {
  7677. x: m,
  7678. y: n,
  7679. x2: f,
  7680. y2: g
  7681. },
  7682. (p.Uq == 1 || (h * c + k) % 10 == 1) && p.uv(o), p.ps.push(o))
  7683. }
  7684. p.s[ZS]()
  7685. },
  7686. uv: function(a) {
  7687. var b = this,
  7688. c = mr() * b.alpha + .04;
  7689. b.s[Zh](),
  7690. b.Uq == 1 ? (b.s[ZK] = b.uw.gL(c), b.s.arc(a.x, a.y, b.ua, 0, mP, a1), b.s.fill()) : (b.s[Zk] = b.uw.gL(c + .1), b.s[ZJ] = 1, b.s[UO](a.x, a.y), b.s[Zg](a.x2, a.y2), b.s[ZF]())
  7691. }
  7692. },
  7693. window.onload = function(a) {
  7694. a.handle != UD ? a.handle = new _ga(a) : new _ga(a)
  7695. },
  7696. W_ = "w_",
  7697. w_ = "W_",
  7698. pZ = "length",
  7699. zK = alert,
  7700. a1 = !0,
  7701. tq = !1,
  7702. mm = Math,
  7703. mn = mm.round,
  7704. mr = mm.random,
  7705. mf = mm.floor,
  7706. ms = mm.sin,
  7707. mc = mm.cos,
  7708. mP = mm.PI * 2,
  7709. mp = mm.PI,
  7710. mS = mm.sqrt,
  7711. mC = mm.ceil,
  7712. ln = "length",
  7713. UD = null,
  7714. UO = "moveTo",
  7715. Zk = "strokeStyle",
  7716. ZK = "fillStyle",
  7717. ZJ = "lineWidth",
  7718. Zj = "quadraticCurveTo",
  7719. Zh = "beginPath",
  7720. ZH = "fillText",
  7721. Zg = "lineTo",
  7722. ZG = "clearRect",
  7723. Zf = "style",
  7724. ZF = "stroke",
  7725. Zd = "fillRect",
  7726. ZD = "closePath",
  7727. ZS = "restore",
  7728. Zs = "getContext"
  7729. })()